Use "rm -f" in clean rules to ignore errors

This commit is contained in:
maralvira 2010-11-07 14:14:47 +00:00
parent 2e87143381
commit 2ac88222f6
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ CFLAGS = -Wall -Wextra #-Werror
all: $(TARGETS)
clean:
-rm $(TARGETS)
-rm -f $(TARGETS)
install: all
cp bbmc $(INSTALL)