2011-02-04 23:29:10 +01:00
|
|
|
all: mapnik
|
|
|
|
|
2011-08-30 07:20:37 +02:00
|
|
|
install:
|
2011-02-04 23:29:10 +01:00
|
|
|
python scons/scons.py install
|
|
|
|
|
|
|
|
mapnik:
|
|
|
|
python scons/scons.py
|
|
|
|
|
|
|
|
clean:
|
|
|
|
python scons/scons.py -c
|
2011-08-23 20:10:52 +02:00
|
|
|
|
|
|
|
reset:
|
2011-02-04 23:29:10 +01: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:
|
|
|
|
|
|
|
|
echo "...running python tests"
|
2011-08-23 20:10:52 +02:00
|
|
|
python tests/run_tests.py
|
|
|
|
|
2011-08-30 07:20:37 +02:00
|
|
|
.PHONY: clean reset uninstall test install
|