freedoom/lumps/dmxgus/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
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__