-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
88 lines (70 loc) · 1.81 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
### NAMES AND LOCS ############################
APPNAME = tokenToolsR
PACKAGE = github.com/zekroTJA/$(APPNAME)
LDPAKAGE = static
ARGS = -addr localhost:8081
###############################################
### EXECUTABLES ###############################
GO = go
DEP = dep
GOLINT = golint
GREP = grep
###############################################
# ---------------------------------------------
BIN = $(CURDIR)/bin/$(APPNAME)
TAG = $(shell git describe --tags)
COMMIT = $(shell git rev-parse HEAD)
DATE = $(shell date -u '+%Y-%m-%d_%I:%M:%S%p')
ifneq ($(GOOS),)
BIN := $(BIN)_$(GOOS)
endif
ifneq ($(GOARCH),)
BIN := $(BIN)_$(GOARCH)
endif
ifneq ($(TAG),)
BIN := $(BIN)_$(TAG)
endif
ifeq ($(OS),Windows_NT)
BIN := $(BIN).exe
endif
PHONY = _make
_make: deps $(BIN) cleanup
PHONY += deps
deps:
$(DEP) ensure -v
$(BIN):
$(GO) build \
-v -o $@ -ldflags "\
-X $(PACKAGE)/$(LDPAKAGE).AppVersion=$(TAG) \
-X $(PACKAGE)/$(LDPAKAGE).AppCommit=$(COMMIT) \
-X $(PACKAGE)/$(LDPAKAGE).AppDate=$(DATE)" \
$(CURDIR)/cmd/tokentools
PHONY += test
test:
$(GO) test -v -cover ./...
PHONY += lint
lint:
$(GOLINT) ./... | $(GREP) -v vendor || true
PHONY += run
run:
$(GO) run -v \
$(CURDIR)/cmd/tokentools $(ARGS)
PHONY += cleanup
cleanup:
PHONY += help
help:
@echo "Available targets:"
@echo " # - creates binary in ./bin"
@echo " cleanup - tidy up temporary stuff created by build or scripts"
@echo " deps - ensure dependencies are installed"
@echo " lint - run linters (golint)"
@echo " run - debug run app (go run) with test config"
@echo " test - run tests (go test)"
@echo ""
@echo "Cross Compiling:"
@echo " (env GOOS=linux GOARCH=arm make)"
@echo ""
@echo "Use different configs for run:"
@echo " make CONF=./myCustomConfig.yml run"
@echo ""
.PHONY: $(PHONY)