Change order of targets in Makefile

svn: r19573
This commit is contained in:
Doug Blank 2012-05-18 10:13:23 +00:00
parent b8109ba431
commit f199b5782f

View File

@ -1,9 +1,5 @@
# Initialize GRAMPS Django site
empty:
rm sqlite.db
sqlite3 sqlite.db < empty.sql
update: grampsdb/fixtures/initial_data.json
PYTHONPATH=../../src python manage.py syncdb
@ -36,6 +32,10 @@ docs:
python manage.py graph_models grampsdb -i Person,Family,Source,Event,Repository,Place,Media,Note,Attribute,Datamap,Name,Lds,Tag,Address,Location,Url -o docs/prim-sec-tables.png
python manage.py graph_models grampsdb -i Person,Family,Source,Event,Repository,Place,Media,Note,Attribute,Datamap,Name,Lds,Tag,Address,Location,Url,NoteRef,SourceRef,EventRef,RepositoryRef,PersonRef,ChildRef,MediaRef -o docs/prim-sec-ref-tables.png
empty:
rm sqlite.db
sqlite3 sqlite.db < empty.sql
clean:
rm -f sqlite.db
rm -f *~ *.pyc *.pyo