-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMakefile
More file actions
25 lines (19 loc) · 516 Bytes
/
Copy pathMakefile
File metadata and controls
25 lines (19 loc) · 516 Bytes
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
.PHONY: all wasm data format lint submodule-update
DATA_MAKE_ARGS := ARGS="$(ARGS)" FORCE="$(FORCE)" NO_CLONE="$(NO_CLONE)"
wasm:
$(MAKE) -C data-wasm
data:
$(MAKE) submodule-update
$(MAKE) -C data build $(DATA_MAKE_ARGS)
format:
$(MAKE) -C data format
$(MAKE) -C data-lib format
$(MAKE) -C data-wasm format
cd website && bun run format
lint:
$(MAKE) -C data lint
$(MAKE) -C data-lib lint
$(MAKE) -C data-wasm lint
cd website && bun run check
submodule-update:
git submodule update --init --remote