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
176 B
Makefile
8 lines
176 B
Makefile
ultramid.ini : gen-ultramid config.py stats.py
|
|
./gen-ultramid $@
|
|
cp $@ ../dmxgus.lmp
|
|
|
|
clean:
|
|
$(RM) ultramid.ini ../dmxgus.lmp *.pyc
|
|
$(RM) __pycache__/*
|
|
-rmdir __pycache__
|