-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile
55 lines (46 loc) · 1.39 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
CXX := g++
CXXFLAGS := -pedantic -std=c++11 -Wall -I/Users/kathlenehurt/Desktop/ooplsarc/googletest/googletest/include
LDFLAGS := -L/Users/kathlenehurt/Desktop/ooplsarc/googletest/googletest/ -lgtest -lgtest_main -pthread
GCOV := gcov-4.8
GCOVFLAGS := -fprofile-arcs -ftest-coverage
GPROF := gprof
GPROFFLAGS := -pg
VALGRIND := valgrind
clean:
rm -f *.gcda
rm -f *.gcno
rm -f *.gcov
rm -f RunCollatz
rm -f RunCollatz.tmp
rm -f TestCollatz
rm -f TestCollatz.tmp
config:
git config -l
scrub:
make clean
rm -f Collatz.log
rm -rf collatz-tests
rm -rf html
rm -rf latex
status:
make clean
@echo
git branch
git remote -v
git status
testx:
cd examples; make testx
@echo
cd exercises; make testx
RunCollatz: Collatz.h Collatz.c++ RunCollatz.c++
$(CXX) $(CXXFLAGS) $(GCOVFLAGS) Collatz.c++ RunCollatz.c++ -o RunCollatz
RunCollatz.tmp: RunCollatz
./RunCollatz < RunCollatz.in > RunCollatz.tmp
diff RunCollatz.tmp RunCollatz.out
TestCollatz: Collatz.h Collatz.c++ TestCollatz.c++
$(CXX) $(CXXFLAGS) $(GCOVFLAGS) Collatz.c++ TestCollatz.c++ -o TestCollatz $(LDFLAGS)
TestCollatz.tmp: TestCollatz
$(VALGRIND) ./TestCollatz > TestCollatz.tmp 2>&1
$(GCOV) -b Collatz.c++ | grep -A 5 "File 'Collatz.c++'" >> TestCollatz.tmp
$(GCOV) -b TestCollatz.c++ | grep -A 5 "File 'TestCollatz.c++'" >> TestCollatz.tmp
cat TestCollatz.tmp