Skip to content

Commit

Permalink
Makefile: replaced rm -f with $(RM)
Browse files Browse the repository at this point in the history
Should be more portable
  • Loading branch information
DankRank committed Jun 23, 2017
1 parent ae8d7ab commit d95b76d
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 @@ -63,7 +63,7 @@ rec: rec.c
gcc -Wall -Werror rec.c -o rec

clean:
rm -f $(OBJS) $(BIN) core rec
$(RM) $(OBJS) $(BIN) core rec

strip: $(BIN)
$(STRIP) $(BIN)

0 comments on commit d95b76d

Please sign in to comment.