4 @echo
'make test synchronize DB and run local webserver'
5 @echo
'make clean clean up files'
6 @echo
'make unittest run unittests'
9 python manage.py syncdb
10 python manage.py runserver
16 coverage run
--omit
="/usr/*" manage.py
test
21 find
-name
"*.pyc" -exec
rm '{}' \
;
24 .PHONY
: all help
test clean unittest coverage