-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathmakefile
More file actions
43 lines (38 loc) · 1.21 KB
/
Copy pathmakefile
File metadata and controls
43 lines (38 loc) · 1.21 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
FILES := \
.gitignore \
.travis.yml \
makefile \
apiary.apib \
IDB2.log \
models.html \
app/models.py \
app/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 app/*.pyc
rm -f tests.tmp
test:
python app/tests.py
models.html:
pydoc -w app.models
IDB3.log:
git log > IDB3.log