-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
83 lines (62 loc) · 1.46 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
### NAMES AND LOCS ############################
PRETTIER_CFG = "$(CURDIR)/.prettierrc.yml"
###############################################
### EXECUTABLES ###############################
NPM = npm
PRETTIER = prettier
###############################################
# ---------------------------------------------
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 += deps
deps:
$(NPM) install
PHONY += lint
lint:
$(GOLINT) ./... | $(GREP) -v vendor || true
PHONY += cleanup
cleanup:
PHONY += build
build:
$(NPM) run build
PHONY += run
run:
$(NPM) run serve -- --port 8081
PHONY += prettify
prettify:
$(PRETTIER) \
--config $(PRETTIER_CFG) \
--write \
$(CURDIR)/src/**/*.js \
$(CURDIR)/src/**/**/*.js \
$(CURDIR)/src/**/*.vue \
$(CURDIR)/src/**/**/*.vue
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 " run - debug run front end vue live-server"
@echo ""
.PHONY: $(PHONY)