From: plugwash Date: Sun, 6 Nov 2011 22:45:21 +0000 (+0000) Subject: use rm -f in clean target X-Git-Url: http://www.lcore.org/git/lcore.git/commitdiff_plain/94bbdfffcfac987de199779e92ac317393bb21d4 use rm -f in clean target git-svn-id: file:///svnroot/lcore/trunk@104 b1de8a11-f9be-4011-bde0-cc7ace90066a --- diff --git a/Makefile b/Makefile index 2d70069..604864d 100755 --- a/Makefile +++ b/Makefile @@ -7,11 +7,11 @@ lcoretest: *.pas *.inc lcoretest.dpr fpc -Sd -gl -dipv6 lcoretest.dpr clean: - -rm *.o - -rm *.ppu - -rm *.exe - -rm *.dcu - -rm lcoretest + -rm -f *.o + -rm -f *.ppu + -rm -f *.exe + -rm -f *.dcu + -rm -f lcoretest date := $(shell date +%Y%m%d)