2011-02-04 23:29:10 +01:00
|
|
|
all: mapnik
|
|
|
|
|
2011-08-30 07:20:37 +02:00
|
|
|
install:
|
2012-08-16 23:12:49 +02:00
|
|
|
@python scons/scons.py --config=cache --implicit-cache --max-drift=1 install
|
2011-02-04 23:29:10 +01:00
|
|
|
|
|
|
|
mapnik:
|
2012-08-16 23:12:49 +02:00
|
|
|
@python scons/scons.py --config=cache --implicit-cache --max-drift=1
|
2011-02-04 23:29:10 +01:00
|
|
|
|
|
|
|
clean:
|
2012-08-16 23:12:49 +02:00
|
|
|
@python scons/scons.py -c --config=cache --implicit-cache --max-drift=1
|
|
|
|
@if test -e ".sconsign.dblite"; then rm ".sconsign.dblite"; fi
|
2011-08-23 20:10:52 +02:00
|
|
|
|
2012-08-16 23:12:49 +02:00
|
|
|
distclean:
|
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
|
2011-12-17 03:24:38 +01:00
|
|
|
if test -e "config.cache"; then rm "config.cache"; fi
|
2012-10-08 19:45:03 +02:00
|
|
|
if test -e "config.py"; then rm "config.py"; fi
|
2011-02-04 23:29:10 +01:00
|
|
|
|
2012-08-16 23:12:49 +02:00
|
|
|
reset: distclean
|
|
|
|
|
2011-02-04 23:29:10 +01:00
|
|
|
uninstall:
|
2012-08-16 23:12:49 +02:00
|
|
|
python scons/scons.py --config=cache --implicit-cache --max-drift=1 uninstall
|
2011-02-04 23:29:10 +01:00
|
|
|
|
|
|
|
test:
|
2012-04-17 07:14:10 +02:00
|
|
|
@echo "*** Running visual tests..."
|
2012-06-29 22:07:41 +02:00
|
|
|
@python tests/visual_tests/test.py -q || true
|
2012-04-05 17:41:01 +02:00
|
|
|
@echo "*** Running C++ tests..."
|
|
|
|
@for FILE in tests/cpp_tests/*-bin; do \
|
|
|
|
$${FILE}; \
|
|
|
|
done
|
|
|
|
@echo "*** Running python tests..."
|
2012-03-24 04:07:57 +01:00
|
|
|
@python tests/run_tests.py -q
|
2011-08-23 20:10:52 +02:00
|
|
|
|
2012-08-17 18:47:35 +02:00
|
|
|
demo:
|
|
|
|
@echo "*** Running rundemo.cpp…"
|
|
|
|
cd demo/c++; ./rundemo `mapnik-config --prefix`/lib/mapnik
|
|
|
|
|
2012-02-25 03:55:47 +01:00
|
|
|
pep8:
|
|
|
|
# https://gist.github.com/1903033
|
|
|
|
# gsed on osx
|
|
|
|
@pep8 -r --select=W293 -q --filename=*.py `pwd`/tests/ | xargs gsed -i 's/^[ \r\t]*$//'
|
|
|
|
@pep8 -r --select=W391 -q --filename=*.py `pwd`/tests/ | xargs gsed -i -e :a -e '/^\n*$/{$d;N;ba' -e '}'
|
|
|
|
|
2012-03-23 23:07:28 +01:00
|
|
|
grind:
|
2012-04-05 17:48:46 +02:00
|
|
|
@for FILE in tests/cpp_tests/*-bin; do \
|
|
|
|
valgrind --leak-check=full --log-fd=1 $${FILE} | grep definitely; \
|
|
|
|
done
|
2012-03-23 23:07:28 +01:00
|
|
|
|
2012-07-26 01:58:45 +02:00
|
|
|
render:
|
|
|
|
@for FILE in tests/data/good_maps/*xml; do \
|
|
|
|
nik2img.py $${FILE} /tmp/$$(basename $${FILE}).png; \
|
|
|
|
done
|
|
|
|
|
2012-10-08 19:45:03 +02:00
|
|
|
.PHONY: install mapnik clean distclean reset uninstall test demo pep8 grind render
|