-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile
More file actions
39 lines (31 loc) · 731 Bytes
/
Makefile
File metadata and controls
39 lines (31 loc) · 731 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
1:
@echo "Running test case 1"
@python3 src/parser.py tests/test1.c
2:
@echo "Running test case 2"
@python3 src/parser.py tests/test2.c
3:
@echo "Running test case 3"
@python3 src/parser.py tests/test3.c
4:
@echo "Running test case 4"
@python3 src/parser.py tests/test4.c
5:
@echo "Running test case 5"
@python3 src/parser.py tests/test5.c
6:
@echo "Running test case 6"
@python3 src/parser.py tests/test6.c
7:
@echo "Running test case 7"
@python3 src/parser.py tests/test7.c
help:
@echo "To run the test case number n run :\nmake n "
clean:
@echo "Cleaning temporary files"
@rm -rf src/__pycache__
@rm -rf src/*.dot
@rm -rf src/*.out
@rm -rf src/parsetab.py
@rm -rf *.png
@rm -rf asm.s