-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile
79 lines (64 loc) · 2.04 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
FILES := \
.travis.yml \
collatz-tests/EID-RunCollatz.in \
collatz-tests/EID-RunCollatz.out \
collatz-tests/EID-TestCollatz.c++ \
collatz-tests/EID-TestCollatz.out \
Collatz.c++ \
Collatz.h \
Collatz.log \
html \
RunCollatz.c++ \
RunCollatz.in \
RunCollatz.out \
TestCollatz.c++ \
TestCollatz.out
ifeq ($(CXX), clang++)
COVFLAGS := --coverage
GCOV := gcov-4.6
else
CXX := g++-4.8
COVFLAGS := -fprofile-arcs -ftest-coverage
GCOV := gcov-4.8
endif
CXXFLAGS := -pedantic -std=c++11 -Wall
LDFLAGS := -lgtest -lgtest_main -pthread
VALGRIND := valgrind
all: RunCollatz TestCollatz
check:
@for i in $(FILES); \
do \
[ -e $$i ] && echo "$$i found" || echo "$$i NOT FOUND"; \
done
clean:
rm -f *.gcda
rm -f *.gcno
rm -f *.gcov
rm -f RunCollatz
rm -f RunCollatz.out
rm -f TestCollatz
rm -f TestCollatz.out
config:
git config -l
test: RunCollatz.out TestCollatz.out
collatz-tests:
git clone https://github.com/cs378-summer-2015/collatz-tests.git
html: Doxyfile Collatz.h Collatz.c++ RunCollatz.c++ TestCollatz.c++
doxygen Doxyfile
Collatz.log:
git log > Collatz.log
Doxyfile:
doxygen -g
RunCollatz: Collatz.h Collatz.c++ RunCollatz.c++
$(CXX) $(CXXFLAGS) Collatz.c++ RunCollatz.c++ -o RunCollatz
RunCollatz.out: RunCollatz
cat RunCollatz.in
./RunCollatz < RunCollatz.in > RunCollatz.out
cat RunCollatz.out
TestCollatz: Collatz.h Collatz.c++ TestCollatz.c++
$(CXX) $(COVFLAGS) $(CXXFLAGS) Collatz.c++ TestCollatz.c++ -o TestCollatz $(LDFLAGS)
TestCollatz.out: TestCollatz
$(VALGRIND) ./TestCollatz > TestCollatz.out 2>&1
$(GCOV) -b Collatz.c++ >> TestCollatz.out
$(GCOV) -b TestCollatz.c++ >> TestCollatz.out
cat TestCollatz.out