aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/kkHAIKE/contextcheck/Makefile
blob: 613d35e9394c2cb6918a207db03f150cbc811999 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.PHONY: clean test build

default: test build

clean:
	rm -rf dist/ cover.out

test: clean
	go test -v -cover ./...

build:
	go  build -ldflags '-s -w' -o contextcheck ./cmd/contextcheck/main.go

install:
	go install -ldflags '-s -w' ./cmd/contextcheck