git-bug/Makefile

15 lines
175 B
Makefile
Raw Normal View History

all: build
2018-07-16 23:39:25 +03:00
build:
go generate
go build -tags=deploy_build .
install:
go generate
go install -tags=deploy_build .
2018-07-17 00:20:23 +03:00
test: build
go test ./...
.PHONY: build install test