aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 45238f4..0d23689 100644
--- a/Makefile
+++ b/Makefile
@@ -4,9 +4,14 @@ all: zk
zk: main.go command.go go.mod go.sum map.go set.go doc.go
go build .
+.PHONY: test
+test:
+ go test ./...
+
.PHONY: install
install: zk
@install -vm0755 zk /usr/bin/zk
+.PHONY: uninstall
uninstall:
@rm -vrf /usr/bin/zk