2011-02-04 22:29:10 +00:00
|
|
|
all: mapnik
|
|
|
|
|
2011-08-30 05:20:37 +00:00
|
|
|
install:
|
2011-02-04 22:29:10 +00:00
|
|
|
python scons/scons.py install
|
|
|
|
|
|
|
|
mapnik:
|
|
|
|
python scons/scons.py
|
|
|
|
|
|
|
|
clean:
|
|
|
|
python scons/scons.py -c
|
2011-08-23 18:10:52 +00:00
|
|
|
|
|
|
|
reset:
|
2011-02-04 22:29:10 +00:00
|
|
|
if test -e ".sconf_temp/"; then rm -r ".sconf_temp/"; fi
|
|
|
|
if test -e ".sconsign.dblite"; then rm ".sconsign.dblite"; fi
|
|
|
|
|
|
|
|
uninstall:
|
|
|
|
python scons/scons.py uninstall
|
|
|
|
|
|
|
|
test:
|
2011-09-02 21:57:14 +00:00
|
|
|
@python tests/run_tests.py -q
|
2011-08-23 18:10:52 +00:00
|
|
|
|
2011-08-30 17:20:44 +00:00
|
|
|
.PHONY: clean reset uninstall test install
|