Removing unused var DESTDIR from makefile

modified:   Makefile
This commit is contained in:
Brian Barto 2016-05-04 10:23:33 -04:00
parent 5927e52444
commit 4c5e2c7f74
1 changed files with 2 additions and 2 deletions

View File

@ -58,8 +58,8 @@ clean:
install:
install -d $(bindir)
cd $(BIN) && install $(EXES) $(DESTDIR)$(bindir)
cd $(BIN) && install $(EXES) $(bindir)
uninstall:
for exe in $(EXES); do rm $(DESTDIR)$(bindir)/$$exe; done
for exe in $(EXES); do rm $(bindir)/$$exe; done