Substitute the conditional checks with a 'rm -f'

modified:   Makefile
This commit is contained in:
Brian Barto 2017-01-17 19:39:16 -05:00
parent 79cfbf0b71
commit 5ffdfb5e40
1 changed files with 2 additions and 2 deletions

View File

@ -43,5 +43,5 @@ install:
cd $(BIN) && install * $(DESTDIR)$(bindir)
uninstall:
if [ -f $(DESTDIR)$(bindir)/nms ]; then rm $(DESTDIR)$(bindir)/nms; fi;
if [ -f $(DESTDIR)$(bindir)/sneakers ]; then rm $(DESTDIR)$(bindir)/sneakers; fi;
rm -f $(DESTDIR)$(bindir)/nms;
rm -f $(DESTDIR)$(bindir)/sneakers;