Files
vpngate/Makefile
2021-01-30 18:38:52 -05:00

15 lines
284 B
Makefile

BIN ?= dist/vpngate
build: ## Builds the binary
go build -o $(BIN)
.PHONY: build
test: ## Run unit tests
go get github.com/rakyll/gotest@v0.0.5
gotest -v ./...
.PHONY: test
lint: ## Run lint
go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.27.0
golangci-lint run