-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile
56 lines (45 loc) · 1.4 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
FILES := \
.travis.yml \
collatz-tests/EID-RunCollatz.in \
collatz-tests/EID-RunCollatz.out \
collatz-tests/EID-TestCollatz.py \
collatz-tests/EID-TestCollatz.out \
Collatz.html \
Collatz.log \
Collatz.py \
RunCollatz.py \
RunCollatz.in \
RunCollatz.out \
TestCollatz.py \
TestCollatz.out
all:
check:
@for i in $(FILES); \
do \
[ -e $$i ] && echo "$$i found" || echo "$$i NOT FOUND"; \
done
clean:
rm -f .coverage
rm -f *.pyc
rm -f Collatz.html
rm -f Collatz.log
rm -f RunCollatz.out
rm -f TestCollatz.out
rm -rf __pycache__
config:
git config -l
test: RunCollatz.out TestCollatz.out
collatz-tests:
git clone https://github.com/cs373-summer-2015/collatz-tests.git
Collatz.html: Collatz.py
pydoc3 -w Collatz
Collatz.log:
git log > Collatz.log
RunCollatz.out: RunCollatz.py
cat RunCollatz.in
./RunCollatz.py < RunCollatz.in > RunCollatz.out
cat RunCollatz.out
TestCollatz.out: TestCollatz.py
coverage3 run --branch TestCollatz.py > TestCollatz.out 2>&1
coverage3 report -m >> TestCollatz.out
cat TestCollatz.out