2012-11-27 02:48:02 +01:00
|
|
|
UNAME := $(shell uname)
|
|
|
|
LINK_FIX=LD_LIBRARY_PATH
|
|
|
|
ifeq ($(UNAME), Darwin)
|
|
|
|
LINK_FIX=DYLD_LIBRARY_PATH
|
|
|
|
else
|
|
|
|
endif
|
|
|
|
|
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
|
2013-01-19 04:01:12 +01:00
|
|
|
@if test -e "config.log"; then rm "config.log"; fi
|
|
|
|
@if test -e ".sconf_temp/"; then rm -r ".sconf_temp/"; fi
|
2012-12-07 11:31:05 +01:00
|
|
|
@find ./ -name "*.os" -exec rm {} \;
|
|
|
|
@find ./ -name "*.o" -exec rm {} \;
|
2013-01-14 06:58:31 +01:00
|
|
|
@find ./ -name "*.pyc" -exec rm {} \;
|
|
|
|
@rm bindings/python/mapnik/paths.py
|
2011-08-23 20:10:52 +02:00
|
|
|
|
2012-08-16 23:12:49 +02:00
|
|
|
distclean:
|
2013-01-19 04:01:12 +01:00
|
|
|
@if test -e "config.cache"; then rm "config.cache"; fi
|
2012-10-10 18:26:55 +02:00
|
|
|
if test -e "config.py"; then mv "config.py" "config.py.backup"; fi
|
2011-02-04 23:29:10 +01:00
|
|
|
|
2012-08-16 23:12:49 +02:00
|
|
|
reset: distclean
|
|
|
|
|
2013-01-19 04:01:12 +01:00
|
|
|
rebuild:
|
|
|
|
make uninstall && make clean && time make && make install
|
|
|
|
|
2011-02-04 23:29:10 +01:00
|
|
|
uninstall:
|
2013-01-19 04:01:12 +01:00
|
|
|
@python scons/scons.py --config=cache --implicit-cache --max-drift=1 uninstall
|
2011-02-04 23:29:10 +01:00
|
|
|
|
|
|
|
test:
|
2012-12-07 05:14:59 +01:00
|
|
|
@ ./run_tests
|
2011-08-23 20:10:52 +02:00
|
|
|
|
2012-11-27 02:48:02 +01:00
|
|
|
test-local:
|
2012-12-03 03:30:32 +01:00
|
|
|
@echo "*** Boostrapping local test environment..."
|
|
|
|
@export ${LINK_FIX}=`pwd`/src:${${LINK_FIX}} && \
|
2012-11-27 02:48:02 +01:00
|
|
|
export PYTHONPATH=`pwd`/bindings/python/:${PYTHONPATH} && \
|
|
|
|
export MAPNIK_FONT_DIRECTORY=`pwd`/fonts/dejavu-fonts-ttf-2.33/ttf/ && \
|
|
|
|
export MAPNIK_INPUT_PLUGINS_DIRECTORY=`pwd`/plugins/input/ && \
|
|
|
|
make test
|
|
|
|
|
2013-01-09 04:07:11 +01:00
|
|
|
bench:
|
|
|
|
@export ${LINK_FIX}=`pwd`/src:${${LINK_FIX}} && \
|
|
|
|
./benchmark/run
|
|
|
|
|
2012-12-03 03:30:32 +01:00
|
|
|
check: test-local
|
|
|
|
|
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
|