mirror of
https://github.com/freedoom/freedoom.git
synced 2025-09-01 22:25:46 -04:00
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").
This commit is contained in:
parent
fe7d6f864a
commit
eca25952ad
8 changed files with 32 additions and 29 deletions
|
@ -9,6 +9,6 @@ colormap.lmp: $(PLAYPAL) colormap.py
|
|||
./colormap.py $(PLAYPAL) > colormap.lmp
|
||||
|
||||
clean:
|
||||
rm -f $(COLORMAPS) ../$(COLORMAPS)
|
||||
$(RM) $(COLORMAPS) ../$(COLORMAPS)
|
||||
|
||||
.PHONY: clean
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue