forked from fuzzland/ityfuzz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.toml
More file actions
40 lines (29 loc) · 788 Bytes
/
Makefile.toml
File metadata and controls
40 lines (29 loc) · 788 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
38
39
[tasks.clean_cargo]
command = "cargo"
args = ["clean"]
[tasks.clean]
dependencies = ["clean_cargo"]
[tasks.compile-release]
command = "cargo"
args = ["build", "--release"]
[tasks.copy-release]
command = "cp"
args = ["target/release/cli", "./cli"]
[tasks.compile-debug]
command = "cargo"
args = ["build"]
[tasks.copy-debug]
command = "cp"
args = ["target/debug/cli", "./cli-debug"]
[tasks.build-cli-clean]
dependencies = [ "clean", "compile-release", "copy-release"]
[tasks.build-cli]
dependencies = [ "compile-release", "copy-release" ]
[tasks.debug-clean]
dependencies = [ "clean", "compile-debug", "copy-debug"]
[tasks.debug]
dependencies = [ "compile-debug", "copy-debug" ]
[tasks.run]
command = "./cli"
args = ["--contract-glob", "../demo/*" ]
dependencies = ["build-cli"]