summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index a7970e1..50e5b08 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,7 @@
+PREFIX ?= /usr
+DESTDIR ?=
BINARY=qulay
SRC=main.go
-PREFIX=/usr
.PHONY: all clean install uninstall deps
@@ -11,12 +12,12 @@ deps:
go mod tidy
install: all
- install -Dm755 $(BINARY) $(PREFIX)/bin/$(BINARY)
- @echo "qulay installed to $(PREFIX)/bin"
+ install -Dm755 $(BINARY) $(DESTDIR)$(PREFIX)/bin/$(BINARY)
+ @echo "qulay installed to $(DESTDIR)$(PREFIX)/bin"
uninstall:
- rm -f $(PREFIX)/bin/$(BINARY)
- @echo "qulay removed from $(PREFIX)/bin"
+ rm -f $(DESTDIR)$(PREFIX)/bin/$(BINARY)
+ @echo "qulay removed from $(DESTDIR)$(PREFIX)/bin"
clean:
rm -f $(BINARY)