diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2023-09-03 14:55:23 +0200 |
---|---|---|
committer | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2023-09-03 14:55:23 +0200 |
commit | 3b21449468a1b20b3ff706fe00a04556a804e627 (patch) | |
tree | 8054ddc0f47f5731aa89ecb65b962da75a56bdaa /Makefile | |
parent | 1507d12b6398448c53bdffe18a32018a3ef627e7 (diff) | |
download | apkdoc-3b21449468a1b20b3ff706fe00a04556a804e627.tar.gz apkdoc-3b21449468a1b20b3ff706fe00a04556a804e627.tar.bz2 apkdoc-3b21449468a1b20b3ff706fe00a04556a804e627.zip |
ref: Remove quicktemplate
This is done in preparation to use text-html/template. This will allow
the user to input their own template file
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -10,14 +10,10 @@ all: build run: tmpl $(GO_RUN) . -build: tmpl +build: $(GO_BUILD) \ -o $(OUT) \ . install: build install -Dm755 $(OUT) $(BINDIR)/$(BIN) - -tmpl: - cd ./templates && \ - qtc * |