forked from Mozilla88/tddcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
35 lines (29 loc) · 826 Bytes
/
Makefile
File metadata and controls
35 lines (29 loc) · 826 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
# this is set up to by default to make the top level and test with CppUTest
# You need to separately get and build cpputest from cpputest.org
# You must also define CPPUTEST_HOME. See the README.txt
# all: everything
# clean: cleaneverything
all: codeUnity
clean: cleanCodeUnity
codeUnity:
make -i -f MakefileUnity.mk
cleanCodeCppUTest:
make -i -f MakefileCppUTest.mk clean
cleanCodeUnity:
make -i -f MakefileUnity.mk clean
everything:
make -i -C t0
make -i -C t1
make -i -C t2
make -i -C t3
make -i -C SandBox
make -i -f MakefileCppUTest.mk
make -i -f MakefileUnity.mk
cleaneverything:
make -i -C t0 clean
make -i -C t1 clean
make -i -C t2 clean
make -i -C t3 clean
make -i -C SandBox clean
make -i -f MakefileCppUTest.mk clean
make -i -f MakefileUnity.mk clean