repo.or.cz
/
mygpo.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
create "touch-couchdb-views" mgmt cmd
[mygpo.git]
/
mygpo
/
makefile
blob
cdc3a1aaf3d4c05178b2831a0e8678c46e1db1be
1
all
:
help
2
3
help
:
4
@echo
'make test synchronize DB and run local webserver'
5
@echo
'make clean clean up files'
6
@echo
'make unittest run unittests'
7
8
test
:
9
.
/
manage.py syncdb
10
.
/
manage.py runserver
11
12
unittest
:
13
.
/
manage.py
test
14
15
clean
:
16
find
-
name
"*.pyc"
-
exec
rm
'{}'
\
;
17
18
19
.PHONY
:
all
help
test clean
unittest
20