-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
34 lines (27 loc) · 800 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
all: build
# ./test -1 target/debug/sam_rust_compiler
./test -1d target/debug/sam_rust_compiler
# ./test -2 target/debug/sam_rust_compiler
./test -2d target/debug/sam_rust_compiler
# ./test -3 target/debug/sam_rust_compiler
./test -3d target/debug/sam_rust_compiler
clean:
@echo "pub fn stdlib() -> Option<crate::frontend::Module<crate::ast::rust::File>> { None }" > src/std_file.rs
cargo fmt
test: build
./test -3d target/debug/sam_rust_compiler
build:
echo "pub fn stdlib() -> Option<crate::frontend::Module<crate::ast::rust::File>> { None }" > src/std_file.rs
cargo build
echo "Compiling std"
./target/debug/sam_rust_compiler --generate-std
cargo build
bench:
./bench.sh
prepare:
make all
make build
make clean
make bench
count: clean
find src -name '*.rs' | xargs wc -l