aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 8c3ea9860d7b1625a9b66a450fd451b1339faf6c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
GEN = pkgid_gen.go
TEST = $(wildcard *_test.go)
SRC = $(filter-out ${GEN} ${TEST}, $(wildcard *.go))

build: ${SRC} ${GEN}
	go build

${GEN}: ${SRC}
	go generate

clean:
	rm -f ${GEN}

.PHONY: build clean