This repository has been archived by the owner on Jun 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
119 lines (94 loc) · 2.22 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
### NAMES AND LOCS ############################
APPNAME = slms
PACKAGE = github.com/zekroTJA/$(APPNAME)
LDPAKAGE = internal/static
CONFIG = $(CURDIR)/config/private.config.yml
BINPATH = $(CURDIR)/bin
###############################################
### EXECUTABLES ###############################
GO = go
DEP = dep
GOLINT = golint
GREP = grep
NPM = npm
###############################################
# ---------------------------------------------
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
cd ./web && \
$(NPM) install
$(BIN):
$(GO) build \
-v -o $@ -ldflags "\
-X $(PACKAGE)/$(LDPAKAGE).AppVersion=$(TAG) \
-X $(PACKAGE)/$(LDPAKAGE).AppCommit=$(COMMIT) \
-X $(PACKAGE)/$(LDPAKAGE).Release=TRUE" \
$(CURDIR)/cmd/$(APPNAME)
PHONY += test
test:
$(GO) test -v -cover ./...
PHONY += lint
lint:
$(GOLINT) ./... | $(GREP) -v vendor || true
PHONY += run
run:
$(GO) run -v \
$(CURDIR)/cmd/$(APPNAME) -c $(CONFIG) -l 5
PHONY += runfe
runfe:
cd $(CURDIR)/web && \
$(NPM) run serve
PHONY += cleanup
cleanup:
PHONY += fe
fe:
cd $(CURDIR)/web && \
$(NPM) run build
mkdir -p $(CURDIR)/bin/web
cp -r $(CURDIR)/web/dist $(CURDIR)/bin/web/dist
PHONY += runfe
runfe:
cd ./web && \
$(NPM) run serve
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)