freedoom/lumps/genmidi/Makefile
Mike Swanson eca25952ad make: use $(RM) for removing files
This is one of the built-in variables for Make and can increase
portability on different operating systems (eg, on Windows, the
built-in $(RM) may be defined as "del" instead of "rm -f").
2019-09-04 14:22:49 -07:00

8 lines
153 B
Makefile

genmidi.lmp: config.py instruments/*
./mkgenmidi $@
cp $@ ../
clean:
$(RM) genmidi.lmp ../genmidi.lmp *.pyc
$(RM) __pycache__/*
-rmdir __pycache__