diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2023-08-26 21:47:47 +0200 |
---|---|---|
committer | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2023-08-26 21:47:47 +0200 |
commit | 33727db8bee991115906d3408145d5e0806a2455 (patch) | |
tree | 29676f914f103e6198e48ff5514aace1ca3a97d4 /Makefile | |
parent | dd2a1c38a5a9f561d58b58da56d3230fd715fcde (diff) | |
download | apkdoc-33727db8bee991115906d3408145d5e0806a2455.tar.gz apkdoc-33727db8bee991115906d3408145d5e0806a2455.tar.bz2 apkdoc-33727db8bee991115906d3408145d5e0806a2455.zip |
feat: Add initial template renderer for markdown
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -4,10 +4,14 @@ GO_BUILD?= go build -v all: build -run: +run: tmpl $(GO_RUN) . -build: +build: tmpl $(GO_BUILD) \ -o bin/$(BIN) \ . + +tmpl: + cd ./templates && \ + qtc * |