-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
40 lines (27 loc) · 807 Bytes
/
Makefile
File metadata and controls
40 lines (27 loc) · 807 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
26
27
28
29
30
31
32
33
34
35
36
37
.PHONY: build clean build-test build-sol-test build-types-test clean-test build-example build-sol-example build-types-example clean-example
build:
make build-test
make build-example
clean:
make clean-test
make clean-example
build-test:
make build-sol-test
make build-types-test
build-sol-test:
sh scripts/build_sol_test.sh
python scripts/format_json_dir_test.py
build-types-test:
sh scripts/generate_types_test.sh
clean-test:
rm -rf rm -rf pypechain/test/*/abis/* && rm -rf pypechain/test/*/types/*
build-example:
make build-sol-example
make build-types-example
build-sol-example:
sh scripts/build_sol_example.sh
python scripts/format_json_dir_example.py
build-types-example:
sh scripts/generate_types_example.sh
clean-example:
rm -rf example/abis/* && rm -rf example/types/*