mapnik/Makefile
2011-12-16 18:24:38 -08:00

23 lines
430 B
Makefile
Executable file

all: mapnik
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
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