mirror of
https://github.com/freedoom/freedoom.git
synced 2025-09-01 22:25:46 -04:00
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").
8 lines
153 B
Makefile
8 lines
153 B
Makefile
genmidi.lmp: config.py instruments/*
|
|
./mkgenmidi $@
|
|
cp $@ ../
|
|
|
|
clean:
|
|
$(RM) genmidi.lmp ../genmidi.lmp *.pyc
|
|
$(RM) __pycache__/*
|
|
-rmdir __pycache__
|