2014-08-14 13:40:08 -07:00
|
|
|
|
2013-11-22 12:01:02 -08:00
|
|
|
OS := $(shell uname -s)
|
2013-02-23 13:10:50 +01:00
|
|
|
|
2014-09-03 15:57:27 -06:00
|
|
|
PYTHON = python
|
|
|
|
|
2013-02-26 15:22:22 -05:00
|
|
|
ifeq ($(JOBS),)
|
|
|
|
JOBS:=1
|
2013-02-23 13:10:50 +01:00
|
|
|
endif
|
|
|
|
|
2011-02-04 22:29:10 +00:00
|
|
|
all: mapnik
|
|
|
|
|
2011-08-30 05:20:37 +00:00
|
|
|
install:
|
2014-09-03 15:57:27 -06:00
|
|
|
$(PYTHON) scons/scons.py -j$(JOBS) --config=cache --implicit-cache --max-drift=1 install
|
2011-02-04 22:29:10 +00:00
|
|
|
|
2015-07-27 19:17:31 -07:00
|
|
|
release:
|
|
|
|
export MAPNIK_VERSION=$(shell ./utils/mapnik-config/mapnik-config --version) && \
|
|
|
|
export TARBALL_NAME="mapnik-v$${MAPNIK_VERSION}" && \
|
|
|
|
cd /tmp/ && \
|
|
|
|
rm -rf $${TARBALL_NAME} && \
|
|
|
|
git clone --depth 1 --branch v$${MAPNIK_VERSION} git@github.com:mapnik/mapnik.git $${TARBALL_NAME} && \
|
|
|
|
cd $${TARBALL_NAME} && \
|
|
|
|
git checkout "tags/v$${MAPNIK_VERSION}" && \
|
|
|
|
git submodule update --depth 1 --init && \
|
|
|
|
rm -rf test/data/.git && \
|
|
|
|
rm -rf test/data/.gitignore && \
|
|
|
|
rm -rf test/data-visual/.git && \
|
|
|
|
rm -rf test/data-visual/.gitignore && \
|
|
|
|
rm -rf .git && \
|
|
|
|
rm -rf .gitignore && \
|
|
|
|
cd ../ && \
|
|
|
|
tar cjf $${TARBALL_NAME}.tar.bz2 $${TARBALL_NAME}/ && \
|
|
|
|
aws s3 cp --acl public-read $${TARBALL_NAME}.tar.bz2 s3://mapnik/dist/v$${MAPNIK_VERSION}/
|
|
|
|
|
2015-05-04 00:28:28 -07:00
|
|
|
python:
|
2015-06-05 15:14:31 +00:00
|
|
|
if [ ! -d ./bindings/python ]; then git clone git@github.com:mapnik/python-mapnik.git --recursive ./bindings/python; else (cd bindings/python && git pull && git submodule update --init); fi;
|
2015-05-04 01:22:09 -07:00
|
|
|
make
|
2015-05-04 00:28:28 -07:00
|
|
|
python bindings/python/test/visual.py -q
|
|
|
|
|
2015-02-23 11:44:36 -08:00
|
|
|
src/json/libmapnik-json.a:
|
2015-03-24 16:42:44 -07:00
|
|
|
# we first build memory intensive files with -j1
|
|
|
|
$(PYTHON) scons/scons.py -j1 \
|
2015-01-24 10:05:58 -08:00
|
|
|
--config=cache --implicit-cache --max-drift=1 \
|
2016-01-25 02:45:53 +01:00
|
|
|
src/renderer_common/render_group_symbolizer.os \
|
2016-01-22 14:13:25 +01:00
|
|
|
src/renderer_common/render_thunk_extractor.os \
|
2015-01-24 10:05:58 -08:00
|
|
|
src/json/libmapnik-json.a \
|
|
|
|
src/wkt/libmapnik-wkt.a \
|
|
|
|
src/css_color_grammar.os \
|
|
|
|
src/expression_grammar.os \
|
|
|
|
src/transform_expression_grammar.os \
|
2016-01-28 12:13:02 -08:00
|
|
|
src/image_filter_grammar.os \
|
2015-01-27 16:22:40 -08:00
|
|
|
src/agg/process_markers_symbolizer.os \
|
|
|
|
src/grid/process_markers_symbolizer.os \
|
|
|
|
src/cairo/process_markers_symbolizer.os \
|
2015-02-23 11:44:36 -08:00
|
|
|
|
|
|
|
mapnik: src/json/libmapnik-json.a
|
2015-01-24 10:05:58 -08:00
|
|
|
# then install the rest with -j$(JOBS)
|
2014-09-03 15:57:27 -06:00
|
|
|
$(PYTHON) scons/scons.py -j$(JOBS) --config=cache --implicit-cache --max-drift=1
|
2011-02-04 22:29:10 +00:00
|
|
|
|
|
|
|
clean:
|
2014-09-03 15:57:27 -06:00
|
|
|
@$(PYTHON) scons/scons.py -j$(JOBS) -c --config=cache --implicit-cache --max-drift=1
|
2012-08-16 14:12:49 -07:00
|
|
|
@if test -e ".sconsign.dblite"; then rm ".sconsign.dblite"; fi
|
2014-09-30 16:40:08 -07:00
|
|
|
@if test -e "config.log"; then rm "config.log"; fi
|
|
|
|
@if test -e "config.cache"; then rm "config.cache"; fi
|
2013-01-18 19:01:12 -08:00
|
|
|
@if test -e ".sconf_temp/"; then rm -r ".sconf_temp/"; fi
|
2013-02-20 16:12:53 -08:00
|
|
|
@find ./ -name "*.pyc" -exec rm {} \;
|
2012-12-07 02:31:05 -08:00
|
|
|
@find ./ -name "*.os" -exec rm {} \;
|
2015-04-27 00:28:26 +02:00
|
|
|
@find ./src/ -name "*.dylib" -exec rm {} \;
|
|
|
|
@find ./src/ -name "*.so" -exec rm {} \;
|
2012-12-07 02:31:05 -08:00
|
|
|
@find ./ -name "*.o" -exec rm {} \;
|
2015-04-27 00:28:26 +02:00
|
|
|
@find ./src/ -name "*.a" -exec rm {} \;
|
2011-08-23 18:10:52 +00:00
|
|
|
|
2012-08-16 14:12:49 -07:00
|
|
|
distclean:
|
2012-10-10 09:26:55 -07:00
|
|
|
if test -e "config.py"; then mv "config.py" "config.py.backup"; fi
|
2011-02-04 22:29:10 +00:00
|
|
|
|
2012-08-16 14:12:49 -07:00
|
|
|
reset: distclean
|
|
|
|
|
2013-01-18 19:01:12 -08:00
|
|
|
rebuild:
|
|
|
|
make uninstall && make clean && time make && make install
|
|
|
|
|
2011-02-04 22:29:10 +00:00
|
|
|
uninstall:
|
2014-09-03 15:57:27 -06:00
|
|
|
@$(PYTHON) scons/scons.py -j$(JOBS) --config=cache --implicit-cache --max-drift=1 uninstall
|
2011-02-04 22:29:10 +00:00
|
|
|
|
2015-04-30 08:11:53 -07:00
|
|
|
test/data:
|
|
|
|
git submodule update --init
|
|
|
|
|
|
|
|
test: ./test/data
|
2015-04-30 07:41:16 -07:00
|
|
|
@./test/run
|
2011-08-23 18:10:52 +00:00
|
|
|
|
2015-04-25 22:08:12 +02:00
|
|
|
check: test
|
2012-12-02 18:30:32 -08:00
|
|
|
|
2013-11-22 12:01:02 -08:00
|
|
|
bench:
|
2013-11-22 12:07:07 -08:00
|
|
|
./benchmark/run
|
2013-11-22 12:01:02 -08:00
|
|
|
|
2012-08-17 09:47:35 -07:00
|
|
|
demo:
|
2013-06-02 16:40:03 -07:00
|
|
|
cd demo/c++; ./rundemo `mapnik-config --prefix`
|
2012-08-17 09:47:35 -07:00
|
|
|
|
2012-02-24 18:55:47 -08:00
|
|
|
pep8:
|
|
|
|
# https://gist.github.com/1903033
|
|
|
|
# gsed on osx
|
2015-02-02 10:37:59 -08:00
|
|
|
@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 '}'
|
|
|
|
@pep8 -r --select=W391 -q --filename=*.py `pwd`/tests/ | xargs ged -i '/./,/^$$/!d'
|
2012-02-24 18:55:47 -08:00
|
|
|
|
2015-04-26 23:26:11 +02:00
|
|
|
# note: pass --gen-suppressions=yes to create new suppression entries
|
2012-03-23 15:07:28 -07:00
|
|
|
grind:
|
2015-05-23 12:05:40 -07:00
|
|
|
@source localize.sh && \
|
|
|
|
valgrind --suppressions=./test/unit/valgrind.supp --leak-check=full --log-fd=1 ./test/visual/run | grep definitely;
|
|
|
|
@source localize.sh && \
|
2015-04-26 20:32:20 +02:00
|
|
|
for FILE in test/standalone/*-bin; do \
|
2015-04-26 23:26:11 +02:00
|
|
|
valgrind --suppressions=./test/unit/valgrind.supp --leak-check=full --log-fd=1 $${FILE} | grep definitely; \
|
2012-04-05 08:48:46 -07:00
|
|
|
done
|
2015-05-23 12:05:40 -07:00
|
|
|
@source localize.sh && \
|
2015-04-26 23:26:11 +02:00
|
|
|
valgrind --suppressions=./test/unit/valgrind.supp --leak-check=full --log-fd=1 ./test/unit/run | grep definitely;
|
2012-03-23 15:07:28 -07:00
|
|
|
|
2012-07-25 16:58:45 -07:00
|
|
|
render:
|
|
|
|
@for FILE in tests/data/good_maps/*xml; do \
|
|
|
|
nik2img.py $${FILE} /tmp/$$(basename $${FILE}).png; \
|
|
|
|
done
|
|
|
|
|
2012-10-08 10:45:03 -07:00
|
|
|
.PHONY: install mapnik clean distclean reset uninstall test demo pep8 grind render
|