mirror of
https://github.com/moul/sshportal.git
synced 2024-11-15 04:36:51 +08:00
13 lines
250 B
Makefile
13 lines
250 B
Makefile
.PHONY: install
|
|
install:
|
|
go install .
|
|
|
|
.PHONY: dev
|
|
dev:
|
|
-go get github.com/githubnemo/CompileDaemon
|
|
CompileDaemon -exclude-dir=.git -exclude=".#*" -color=true -command="./sshportal --demo --debug" .
|
|
|
|
.PHONY: test
|
|
test:
|
|
go test -i .
|
|
go test -v .
|