mapnik/Makefile

24 lines
430 B
Makefile
Raw Normal View History

all: mapnik
2011-08-30 07:20:37 +02:00
install:
python scons/scons.py install
mapnik:
python scons/scons.py
clean:
python scons/scons.py -c
reset:
if test -e ".sconf_temp/"; then rm -r ".sconf_temp/"; fi
if test -e ".sconsign.dblite"; then rm ".sconsign.dblite"; fi
2011-12-17 03:24:38 +01:00
if test -e "config.cache"; then rm "config.cache"; fi
uninstall:
python scons/scons.py uninstall
test:
@python tests/run_tests.py -q
.PHONY: clean reset uninstall test install