Skip to content

Commit

Permalink
use 'rm -f' instead of 'test ! -f || rm'
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Zimmermann committed Feb 26, 2015
1 parent d263eca commit 0e33d81
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,7 @@ install: META byte
-optional $(CMX) $(O) biniou.cmxa biniou.a biniou.cmxs

uninstall:
test -f $(BINDIR)/bdump && rm $(BINDIR)/bdump
test -f $(BINDIR)/bdump.exe && rm $(BINDIR)/bdump.exe
rm -f $(BINDIR)/bdump{.exe,}
ocamlfind remove biniou

.PHONY: clean
Expand Down

0 comments on commit 0e33d81

Please sign in to comment.