commit to CouchDB only when necessary
[mygpo.git] / mygpo / makefile
blobcdc3a1aaf3d4c05178b2831a0e8678c46e1db1be
1 all: help
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'
8 test:
9 ./manage.py syncdb
10 ./manage.py runserver
12 unittest:
13 ./manage.py test
15 clean:
16 find -name "*.pyc" -exec rm '{}' \;
19 .PHONY: all help test clean unittest