From 1507d12b6398448c53bdffe18a32018a3ef627e7 Mon Sep 17 00:00:00 2001 From: Gabriel Arakaki Giovanini Date: Sun, 3 Sep 2023 14:35:27 +0200 Subject: feat: Add install rule --- Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0c1a1f6..820d664 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,7 @@ +PREFIX ?= /usr/local +BINDIR ?= $(PREFIX)/bin BIN?=apkdoc +OUT=./bin/$(BIN) GO_RUN?= go run -v GO_BUILD?= go build -v @@ -9,9 +12,12 @@ run: tmpl build: tmpl $(GO_BUILD) \ - -o bin/$(BIN) \ + -o $(OUT) \ . +install: build + install -Dm755 $(OUT) $(BINDIR)/$(BIN) + tmpl: cd ./templates && \ qtc * -- cgit v1.2.3