aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGabriel Arakaki Giovanini <mail@gabrielgio.me>2023-08-26 17:32:58 +0200
committerGabriel Arakaki Giovanini <mail@gabrielgio.me>2023-08-26 17:36:15 +0200
commitdd2a1c38a5a9f561d58b58da56d3230fd715fcde (patch)
treed4161e5f1c0e9718ef739745f6a9619c10701f8e /Makefile
downloadapkdoc-dd2a1c38a5a9f561d58b58da56d3230fd715fcde.tar.gz
apkdoc-dd2a1c38a5a9f561d58b58da56d3230fd715fcde.tar.bz2
apkdoc-dd2a1c38a5a9f561d58b58da56d3230fd715fcde.zip
Initial commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..e3ed19e
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,13 @@
+BIN?=apkdoc
+GO_RUN?= go run -v
+GO_BUILD?= go build -v
+
+all: build
+
+run:
+ $(GO_RUN) .
+
+build:
+ $(GO_BUILD) \
+ -o bin/$(BIN) \
+ .