-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
55 lines (48 loc) · 1.37 KB
/
makefile
File metadata and controls
55 lines (48 loc) · 1.37 KB
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 := \
.gitignore \
makefile \
apiary.apid \
IDB2.log \
model.html \
models.py \
tests.py \
UML.pdf
check:
@not_found=0; \
for i in $(FILES); \
do \
if [ -e $$i ]; \
then \
echo "$$i found"; \
else \
echo "$$i NOT FOUND"; \
not_found=`expr "$$not_found" + "1"`; \
fi \
done; \
if [ $$not_found -ne 0 ]; \
then \
echo "$$not_found failures"; \
exit 1; \
fi; \
echo "success";
clean:
rm -f .coverage
rm -f *.pyc
rm -rf __pycache__
rm -f tests.tmp
config:
git config -l
scrub:
make clean
status:
make clean
@echo
git branch
git remote -v
git status
test: tests.py
coverage3 run --branch tests.py > tests.tmp 2>&1
coverage3 report -m --include="./*" >> tests.tmp
cat tests.tmp
idb3.log:
git log > IDB3.log