aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 0bb0693d71cdfd4e52d149046a54cf5a222809fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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