Changeset 6259
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r6258 r6259 8 8 debug: 9 9 #Run server in extra debugging mode 10 @sqlite3 $(SQLDB) < debug.sql11 10 @./sampleserver/manage.py runserver_plus 8000 --pythonpath=`pwd` 12 11 … … 19 18 @./sampleserver/manage.py syncdb --pythonpath=`pwd` 20 19 20 debug-init: 21 # Put debug.sql in database 22 @sqlite3 $(SQLDB) < debug.sql 23 21 24 dist-clean: 22 25 #Remove database 23 26 @rm -vf $(SQLDB) 24 27 25 new: dist-clean init debug 28 new: dist-clean init debug-init debug
Note:
See TracChangeset
for help on using the changeset viewer.