Merge pull request #1 from Ranndom/master

Update Makefile to install into DESTDIR
This commit is contained in:
Artem Savkov 2015-11-26 09:35:21 +01:00
commit 0d2866c2a2
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ $(TARGET): discord.c
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
install: $(TARGET)
install -m=755 $(TARGET) /usr/lib64/bitlbee
install -Dm=755 $(TARGET) "$(DESTDIR)/usr/lib64/bitlbee/$(TARGET)"
clean:
rm -rf $(TARGET) *.o