-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
72 lines (47 loc) · 1.12 KB
/
Makefile
File metadata and controls
72 lines (47 loc) · 1.12 KB
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
# This Makefile is here so that `make build` is a bit shorter than
# `corepack enable && yarn install && yarn build`
.PHONY: all build check clean deepclean devenv dist doc fmt fix js start test web-ext xpi
GIT=git
YARN=corepack yarn
CP=cp
all: test xpi
build: xpi
check:
$(YARN) run check
clean:
$(GIT) clean -dXf src dist build
deepclean:
$(GIT) clean -dXf
devenv: .yarn/sdks .vscode/settings.json .vscode/launch.json .vscode/tasks.json .web-ext-config.mjs
dist: js
doc: build/doc
fmt:
$(YARN) run fmt
fix:
$(YARN) run fix
js: .yarn
$(YARN) run build-js
start: js
$(YARN) run start
test: js
$(YARN) run test
web-ext: .web-ext-config.mjs
$(YARN) run web-ext docs
xpi: js
$(YARN) run build-xpi
.yarn:
$(YARN)
.yarn/sdks: .yarn
$(YARN) run sdk vscode
build/:
mkdir build
build/doc: js
$(YARN) run doc
.vscode/settings.json:
$(CP) .vscode/settings.example.json .vscode/settings.json
.vscode/launch.json:
$(CP) .vscode/launch.example.json .vscode/launch.json
.vscode/tasks.json:
$(CP) .vscode/tasks.example.json .vscode/tasks.json
.web-ext-config.mjs:
$(CP) .web-ext-config.example.mjs .web-ext-config.mjs