-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile
62 lines (49 loc) · 1.18 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
VERSION = $(shell godzil show-version)
CURRENT_REVISION = $(shell git rev-parse --short HEAD)
BUILD_LDFLAGS = "-X github.com/Songmu/timeout.revision=$(CURRENT_REVISION)"
ifdef update
u=-u
endif
export GO111MODULE=on
.PHONY: deps
deps:
go get ${u} -d -v
.PHONY: devel-deps
devel-deps: deps
GO111MODULE=off go get ${u} \
golang.org/x/lint/golint \
github.com/mattn/goveralls \
github.com/Songmu/goxz/cmd/goxz \
github.com/Songmu/gocredits/cmd/gocredits \
github.com/Songmu/godzil/cmd/godzil \
github.com/tcnksm/ghr
.PHONY: test
test: deps
go test
.PHONY: lint
lint: devel-deps
go vet
golint -set_exit_status
.PHONY: cover
cover: devel-deps
goveralls
.PHONY: build
build: deps
go build -ldflags=$(BUILD_LDFLAGS) ./cmd/goxz
.PHONY: install
install: build
mv go-timeout "$(shell go env GOPATH)/bin"
.PHONY: bump
bump: devel-deps
godzil release
CREDITS: devel-deps go.sum
gocredits -w
.PHONY: crossbuild
crossbuild: CREDITS
goxz -pv=v$(VERSION) -build-ldflags=$(BUILD_LDFLAGS) \
-d=./dist/v$(VERSION) ./cmd/go-timeout
.PHONY: upload
upload:
ghr v$(VERSION) dist/v$(VERSION)
.PHONY: release
release: bump crossbuild upload