changed "$(RM) *.various" to "- $(RM) *.various" in order to keep the clean rule going.

svn path=/trunk/; revision=3736
This commit is contained in:
Robert Dickenson 2002-11-10 14:27:45 +00:00
parent 9a3d4ea3c6
commit 5acde91b05

View file

@ -25,9 +25,9 @@ welcome.exe: welcome.o welcome.coff
-lkernel32 -lgdi32 -luser32 -o welcome.exe -lkernel32 -lgdi32 -luser32 -o welcome.exe
clean: clean:
$(RM) *.o - $(RM) *.o
$(RM) *.coff - $(RM) *.coff
$(RM) *.exe - $(RM) *.exe
include $(PATH_TO_TOP)/rules.mak include $(PATH_TO_TOP)/rules.mak