-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathMakefile
36 lines (25 loc) · 865 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
SHELL = /bin/bash
build-tests:
make -C tests build
build-tests-generic-jsx-transform:
make -C tests-generic-jsx-transform build
build-tests-incremental-typechecking:
make -C tests-incremental-typechecking build
build-reanalyze:
make -C reanalyze build
build: build-reanalyze build-tests build-tests-generic-jsx-transform build-tests-incremental-typechecking
dce: build-analysis-binary
opam exec reanalyze.exe -- -dce-cmt _build -suppress vendor
test-analysis-binary:
make -C tests test
make -C tests-generic-jsx-transform test
make -C tests-incremental-typechecking test
test-reanalyze:
make -C reanalyze test
test: test-analysis-binary test-reanalyze
clean:
make -C tests clean
make -C tests-generic-jsx-transform clean
make -C tests-incremental-typechecking clean
make -C reanalyze clean
.PHONY: build-reanalyze build-tests dce clean test