aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGuangxiong Lin <[email protected]>2023-01-20 23:05:54 +0800
committerGuangxiong Lin <[email protected]>2023-01-20 23:24:56 +0800
commit3f6aeea8c795b8bff59c1a8b45700d7bc44da4b9 (patch)
tree63dbe7f72fd397a55023a014b9a4eff8ded45400 /Makefile
downloadzk-3f6aeea8c795b8bff59c1a8b45700d7bc44da4b9.tar.gz
zk-3f6aeea8c795b8bff59c1a8b45700d7bc44da4b9.tar.bz2
zk-3f6aeea8c795b8bff59c1a8b45700d7bc44da4b9.zip
First commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..45238f4
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+.PHONY: all
+all: zk
+
+zk: main.go command.go go.mod go.sum map.go set.go doc.go
+ go build .
+
+.PHONY: install
+install: zk
+ @install -vm0755 zk /usr/bin/zk
+
+uninstall:
+ @rm -vrf /usr/bin/zk