-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Makefile
64 lines (55 loc) · 1.91 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
63
64
.ONESHELL: # Applies to every targets in the file! .ONESHELL instructs make to invoke a single instance of the shell and provide it with the entire recipe, regardless of how many lines it contains.
########################################################################################################################
# Global Env Settings
########################################################################################################################
BINARY_NAME = hatchet
LD_FLAGS =
ifdef STATIC
LD_FLAGS := $(LD_FLAGS) -extldflags=-static
endif
ifdef GOOS
BINARY_NAME := $(BINARY_NAME)-$(GOOS)
LD_FLAGS := $(LD_FLAGS) -X main.goos=$(GOOS)
endif
ifdef GOARCH
BINARY_NAME := $(BINARY_NAME)-$(GOARCH)
LD_FLAGS := $(LD_FLAGS) -X main.goarch=$(GOARCH)
endif
ifdef GOARM
BINARY_NAME := $(BINARY_NAME)-$(GOARM)
endif
ifeq ($(OS),Windows_NT)
BINARY_NAME := $(BINARY_NAME).exe
endif
########################################################################################################################
# Binary
########################################################################################################################
.PHONY: all
all: build
.PHONY: clean
clean:
go clean
.PHONY: generate
generate: dep
go generate ./...
.PHONY: dep
dep:
go mod vendor
.PHONY: test
test: dep
go test -v -tags "static" ./...
.PHONY: test-coverage
test-coverage: dep
go test -race -coverprofile=coverage.txt -covermode=atomic -v -tags "static" ./...
.PHONY: build
build: dep
go build -ldflags "$(LD_FLAGS)" -o $(BINARY_NAME) -tags "static" ./cmd/hatchet
ifneq ($(OS),Windows_NT)
chmod +x $(BINARY_NAME)
file $(BINARY_NAME) || true
ldd $(BINARY_NAME) || true
./$(BINARY_NAME) || true
endif
########################################################################################################################
# Docker
########################################################################################################################