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
# The location of cargo bin (e.g. /usr/bin/cargo)
CARGO_BIN =
# Any options for cargo
CARGO_OPTS =
# The full command to run cargo
CARGO =
# Main make command - build, test and run the app
:
# Run the program, will first comile if needed
: # Compile the source and dependencies
:
# Run the unit and rustdoc tests
: # Execute benchmkark tests
: # Generate documentation from rustdoc
:
# Check the source for compilation errors
:
# Format all bin + lib files
:
# Check for common mistakes, and improvments
:
# Remove the target directory and compiled files
:
: