Merge pull request #66 from rofl0r/destdir2

Makefile: add missing DESTDIR
This commit is contained in:
wiire-a 2017-11-11 12:31:05 +01:00 committed by GitHub
commit 0b56be18c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@ debug:
$(CC) $(CFLAGS) $(CPPFLAGS) -DDEBUG -o $(TARGET) $(SOURCE) $(LIBS) $(LDFLAGS)
install:
install -d $(BINDIR)
install -d $(DESTDIR)$(BINDIR)
install -m 755 $(TARGET) $(DESTDIR)$(BINDIR)
uninstall: