-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Makefile
40 lines (32 loc) · 887 Bytes
/
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
VERSION = $(shell godzil show-version)
CURRENT_REVISION = $(shell git rev-parse --short HEAD)
BUILD_LDFLAGS = "-s -w -X github.com/Songmu/tagpr.revision=$(CURRENT_REVISION)"
u := $(if $(update),-u)
.PHONY: deps
deps:
go get ${u}
go mod tidy
.PHONY: devel-deps
devel-deps:
go install github.com/Songmu/godzil/cmd/godzil@latest
.PHONY: test
test:
go test
.PHONY: build
build:
go build -ldflags=$(BUILD_LDFLAGS) ./cmd/tagpr
.PHONY: install
install:
go install -ldflags=$(BUILD_LDFLAGS) ./cmd/tagpr
.PHONY: release
release: devel-deps
godzil release
CREDITS: go.sum deps devel-deps
godzil credits -w
DIST_DIR = dist
.PHONY: crossbuild
crossbuild: CREDITS
rm -rf $(DIST_DIR)
godzil crossbuild -pv=v$(VERSION) -build-ldflags=$(BUILD_LDFLAGS) \
-os=linux,darwin -static -d=$(DIST_DIR) ./cmd/*
cd $(DIST_DIR) && shasum -a 256 $$(find * -type f -maxdepth 0) > SHA256SUMS