git-bug/Makefile
2018-07-16 23:23:43 +02:00

15 lines
175 B
Makefile

all: build
build:
go generate
go build -tags=deploy_build .
install:
go generate
go install -tags=deploy_build .
test: build
go test ./...
.PHONY: build install test