openvpn-mgt/Makefile

22 lines
257 B
Makefile
Raw Normal View History

2019-08-16 15:23:19 +00:00
all: build
build: fmt lint gobuild
deps: godeps
fmt: gofmt
lint: golint
test: gotest
gobuild:
statik -src=./web/
go build
godeps:
go get -v -u -t ./...
go get github.com/rakyll/statik
gofmt:
go fmt ./...
golint:
go vet ./...
gotest:
go test ./...