From: Robert Dickenson Date: Sun, 10 Nov 2002 14:27:45 +0000 (+0000) Subject: changed "$(RM) *.various" to "- $(RM) *.various" in order to keep the clean rule... X-Git-Tag: ReactOS-0.1.0~351 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=5acde91b05ac5385c39cedb5b49c8d24220f14ff;ds=inline changed "$(RM) *.various" to "- $(RM) *.various" in order to keep the clean rule going. svn path=/trunk/; revision=3736 --- diff --git a/rosapps/welcome/makefile b/rosapps/welcome/makefile index f844748651c..9d92dea3ff3 100644 --- a/rosapps/welcome/makefile +++ b/rosapps/welcome/makefile @@ -25,9 +25,9 @@ welcome.exe: welcome.o welcome.coff -lkernel32 -lgdi32 -luser32 -o welcome.exe clean: - $(RM) *.o - $(RM) *.coff - $(RM) *.exe + - $(RM) *.o + - $(RM) *.coff + - $(RM) *.exe include $(PATH_TO_TOP)/rules.mak