From: Alan Cox Date: Thu, 2 Jun 2016 21:52:20 +0000 (+0100) Subject: Makefile: add -f to avoid rm errors X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=a25c582d478152d381fc0eb64d7ce0d744263a97;p=FUZIX.git Makefile: add -f to avoid rm errors --- diff --git a/Applications/cave/Makefile b/Applications/cave/Makefile index 1774fdec..2527e85d 100644 --- a/Applications/cave/Makefile +++ b/Applications/cave/Makefile @@ -28,4 +28,4 @@ advent: $(OBJ) $(FCC) $(PLATFORM) $(FCCOPTS) -o $@ $(OBJ) clean: - rm advent advent.db advgen *.rel *.asm *.lst core *.sym *.map *.noi *.lk *.ihx *.tmp *.bin + rm -f advent advent.db advgen *.rel *.asm *.lst core *.sym *.map *.noi *.lk *.ihx *.tmp *.bin