-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
99 lines (73 loc) · 963 Bytes
/
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
export CONTAINER_NAME=wizardsat-work
# default arguments:
# export NODE_BIN=node_modules/.bin
# export CONTAINER_NAME=magic-localhost
# export JS_ROOT_DIR=src/js
# export MAGIC_BIN=node_modules/magic-root/bin
# export NODEJS_SRC_FILES=src/config.js src/index.js
# export NODEJS_OUT_FILE=out/index.js
CLI:=./cli.sh
.PHONY: \
all \
dev \
build \
build-root \
build-src \
install \
lint \
eslint \
eslint-fix \
jade-lint \
pug-lint \
stylint \
clean \
debug \
logs \
rm \
run \
ip \
update \
status \
help
# TASKS
all: help
dev:
@${CLI} $@
build:
@${CLI} $@
build-root:
@${CLI} $@
build-src:
@${CLI} $@
install:
@${CLI} $@
lint:
@${CLI} $@
eslint:
@${CLI} $@
eslint-fix:
@${CLI} $@
jade-lint:
@${CLI} $@
pug-lint:
@${CLI} $@
stylint:
@${CLI} $@
clean:
@${CLI} $@
debug:
@${CLI} $@
logs:
@${CLI} $@
rm:
@${CLI} $@
run:
@${CLI} $@
ip:
@${CLI} $@
update:
@${CLI} $@
status:
@${CLI} $@
help:
@${CLI} $@