Skip to content

Commit

Permalink
Merge pull request #6 from Debian/fix-makefile-clean
Browse files Browse the repository at this point in the history
[makefile] add -f to rm on clean target
  • Loading branch information
joswr1ght authored Nov 30, 2018
2 parents f235613 + 04c6fd9 commit 28cd7f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ sha1: sha1.c sha1.h
$(CC) $(CFLAGS) sha1.c -c

clean:
@rm $(PROGOBJ) $(PROG)
@rm -f $(PROGOBJ) $(PROG)

strip:
@ls -l $(PROG)
Expand Down

0 comments on commit 28cd7f9

Please sign in to comment.