aboutsummaryrefslogblamecommitdiffstats
path: root/Makefile
blob: 4c1c83bc75fe44e1a6e823f1bcd7173bae5a066e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                       
all: build

build: git-bug
	go generate
	go build -tags=deploy_build .

install:
	go generate
	go install -tags=deploy_build .

.PHONY: install