Don't fail "make clean" when some files are missing

It appears that some of the files listed in "make clean" don't
actually get created when I run "make".  This patch simply papers over
the issue by running "rm -f" instead of "rm", which doesn't fail on
missing files.
This commit is contained in:
Palmer Dabbelt 2015-03-02 16:12:38 -08:00 committed by Dave Hansen
parent e7142e6eb2
commit 610e317489

View file

@ -21,7 +21,7 @@ eyefi-config: $(OBJS)
$(CC) $(CFLAGS) $(OBJS) -o $@
clean:
rm eyefi-config core $(OBJS) cscope*
rm -f eyefi-config core $(OBJS) cscope*
eyefi-chdk.o: eyefi-config.h
eyefi-config.o: eyefi-config.h