sshportal/Makefile

14 lines
250 B
Makefile
Raw Normal View History

2017-10-31 16:31:36 +08:00
.PHONY: install
install:
go install .
.PHONY: dev
dev:
-go get github.com/githubnemo/CompileDaemon
2017-10-31 17:17:06 +08:00
CompileDaemon -exclude-dir=.git -exclude=".#*" -color=true -command="./sshportal --demo --debug" .
2017-11-13 17:13:17 +08:00
.PHONY: test
test:
go test -i .
go test -v .