-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
99 lines (77 loc) · 1.99 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
89
90
91
92
93
94
95
96
97
98
99
### NAMES AND LOCS ############################
APPNAME = lol-runes
PACKAGE = github.com/myrunes/backend
LDPAKAGE = internal/static
CONFIG = $(CURDIR)/config/private.config.yml
BINPATH = $(CURDIR)/bin
###############################################
### EXECUTABLES ###############################
GO = go
GOLINT = golint
GREP = grep
###############################################
# ---------------------------------------------
BIN = $(BINPATH)/$(APPNAME)
TAG = $(shell git describe --tags)
COMMIT = $(shell git rev-parse HEAD)
ifneq ($(GOOS),)
BIN := $(BIN)_$(GOOS)
endif
ifneq ($(GOARCH),)
BIN := $(BIN)_$(GOARCH)
endif
ifneq ($(TAG),)
BIN := $(BIN)_$(TAG)
endif
ifeq ($(OS),Windows_NT)
ifeq ($(GOOS),)
BIN := $(BIN).exe
endif
endif
ifeq ($(GOOS),windows)
BIN := $(BIN).exe
endif
PHONY = _make
_make: deps build fe cleanup
PHONY += build
build: $(BIN)
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).Release=TRUE" \
$(CURDIR)/cmd/server/*.go
PHONY += test
test:
$(GO) test -v -cover ./...
PHONY += lint
lint:
$(GOLINT) ./... | $(GREP) -v vendor || true
PHONY += run
run:
$(GO) run -v \
$(CURDIR)/cmd/server/*.go -c $(CONFIG) -skipFetch
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 " fe - build font end files"
@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)