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:
parent
e7142e6eb2
commit
610e317489
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue