Allow using a different binary for strip

This commit is contained in:
yemou 2021-08-12 03:19:33 -04:00 committed by diamondburned
parent 52655c2859
commit 6513b377ab
1 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,7 @@
BIN ?= cchat-gtk
GO ?= go
STRIP ?= strip
PREFIX ?= /usr/local
BINDIR ?= $(PREFIX)/bin
@ -7,7 +9,7 @@ DATADIR ?= $(PREFIX)/share
cchat-gtk:
$(GO) build -v -o bin/$(BIN)
@strip bin/$(BIN)
@$(STRIP) bin/$(BIN)
install:
install -Dm775 bin/$(BIN) $(DESTDIR)$(BINDIR)/$(BIN)