aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 0d23689aff24b743dae499868a69b2a1cc11a059 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.PHONY: all
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