source: Makefile@ 6256

Last change on this file since 6256 was 6256, checked in by RIck van der Zwet, 17 years ago

Link and LinkPool is not working due the complexity and not logic approch. Viewsor crippled for example. Let's try to link Interface directly to an Interface itself and let's see whether this is going to work. Might need the notion of an Alias, but yet to be defined.

File size: 487 bytes
Line 
1help:
2#Usage
3 @grep -e '[a-z\-]:' -e '^#' Makefile |\
4 sed -e :a -e '$!N;s/\n#/ /;ta' -e 'P;D' | sed -e 's/^/make /g'
5
6debug:
7#Run server in extra debugging mode
8 @./sampleserver/manage.py runserver_plus 8000 --pythonpath=`pwd`
9
10run:
11#Run server in normal power mode
12 @./sampleserver/manage.py runserver 8000 --pythonpath=`pwd`
13
14init: dist-clean
15#Re-init database
16 @./sampleserver/manage.py syncdb --pythonpath=`pwd`
17
18dist-clean:
19#Remove database
20 @rm -vf sqllite.db
21
22new: init debug
Note: See TracBrowser for help on using the repository browser.