npm-cache-proxy/Makefile
2019-04-16 15:13:14 +03:00

12 lines
147 B
Makefile

.PHONY: run
run:
go run main.go
.PHONY: build
build:
CGO_ENABLED=0 go build -ldflags="-w -s" -o build/router
.PHONY: test
test:
go test ./...