2014-08-14 20:40:08 +00:00
|
|
|
|
2013-11-22 20:01:02 +00:00
|
|
|
OS := $(shell uname -s)
|
2013-02-23 12:10:50 +00:00
|
|
|
|
2014-09-03 21:57:27 +00:00
|
|
|
PYTHON = python
|
|
|
|
|
2013-02-26 20:22:22 +00:00
|
|
|
ifeq ($(JOBS),)
|
|
|
|
JOBS:=1
|
2013-02-23 12:10:50 +00:00
|
|
|
endif
|
|
|
|
|
2011-02-04 22:29:10 +00:00
|
|
|
all: mapnik
|
|
|
|
|
2011-08-30 05:20:37 +00:00
|
|
|
install:
|
2014-09-03 21:57:27 +00:00
|
|
|
$(PYTHON) scons/scons.py -j$(JOBS) --config=cache --implicit-cache --max-drift=1 install
|
2011-02-04 22:29:10 +00:00
|
|
|
|
2015-05-04 07:28:28 +00: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 08:22:09 +00:00
|
|
|
make
|
2015-05-04 07:28:28 +00:00
|
|
|
python bindings/python/test/visual.py -q
|
|
|
|
|
2015-02-23 19:44:36 +00:00
|
|
|
src/json/libmapnik-json.a:
|
2015-03-24 23:42:44 +00:00
|
|
|
# we first build memory intensive files with -j1
|
|
|
|
$(PYTHON) scons/scons.py -j1 \
|
2015-01-24 18:05:58 +00:00
|
|
|
--config=cache --implicit-cache --max-drift=1 \
|
2015-04-26 23:03:35 +00:00
|
|
|
src/renderer_common/process_group_symbolizer.os \
|
2015-01-24 18:05:58 +00: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 \
|
|
|
|
src/image_filter_types.os \
|
2015-01-28 00:22:40 +00:00
|
|
|
src/agg/process_markers_symbolizer.os \
|
|
|
|
src/agg/process_group_symbolizer.os \
|
|
|
|
src/grid/process_markers_symbolizer.os \
|
|
|
|
src/grid/process_group_symbolizer.os \
|
|
|
|
src/cairo/process_markers_symbolizer.os \
|
|
|
|
src/cairo/process_group_symbolizer.os \
|
2015-02-23 19:44:36 +00:00
|
|
|
|
|
|
|
mapnik: src/json/libmapnik-json.a
|
2015-01-24 18:05:58 +00:00
|
|
|
# then install the rest with -j$(JOBS)
|
2014-09-03 21:57:27 +00: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 21:57:27 +00:00
|
|
|
@$(PYTHON) scons/scons.py -j$(JOBS) -c --config=cache --implicit-cache --max-drift=1
|
2012-08-16 21:12:49 +00:00
|
|
|
@if test -e ".sconsign.dblite"; then rm ".sconsign.dblite"; fi
|
2014-09-30 23:40:08 +00:00
|
|
|
@if test -e "config.log"; then rm "config.log"; fi
|
|
|
|
@if test -e "config.cache"; then rm "config.cache"; fi
|
2013-01-19 03:01:12 +00:00
|
|
|
@if test -e ".sconf_temp/"; then rm -r ".sconf_temp/"; fi
|
2013-02-21 00:12:53 +00:00
|
|
|
@find ./ -name "*.pyc" -exec rm {} \;
|
2012-12-07 10:31:05 +00:00
|
|
|
@find ./ -name "*.os" -exec rm {} \;
|
2015-04-26 22:28:26 +00:00
|
|
|
@find ./src/ -name "*.dylib" -exec rm {} \;
|
|
|
|
@find ./src/ -name "*.so" -exec rm {} \;
|
2012-12-07 10:31:05 +00:00
|
|
|
@find ./ -name "*.o" -exec rm {} \;
|
2015-04-26 22:28:26 +00:00
|
|
|
@find ./src/ -name "*.a" -exec rm {} \;
|
2011-08-23 18:10:52 +00:00
|
|
|
|
2012-08-16 21:12:49 +00:00
|
|
|
distclean:
|
2012-10-10 16:26:55 +00: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 21:12:49 +00:00
|
|
|
reset: distclean
|
|
|
|
|
2013-01-19 03:01:12 +00:00
|
|
|
rebuild:
|
|
|
|
make uninstall && make clean && time make && make install
|
|
|
|
|
2011-02-04 22:29:10 +00:00
|
|
|
uninstall:
|
2014-09-03 21:57:27 +00: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 15:11:53 +00:00
|
|
|
test/data:
|
|
|
|
git submodule update --init
|
|
|
|
|
|
|
|
test: ./test/data
|
2015-04-30 14:41:16 +00:00
|
|
|
@./test/run
|
2011-08-23 18:10:52 +00:00
|
|
|
|
2015-04-25 20:08:12 +00:00
|
|
|
check: test
|
2012-12-03 02:30:32 +00:00
|
|
|
|
2013-11-22 20:01:02 +00:00
|
|
|
bench:
|
2013-11-22 20:07:07 +00:00
|
|
|
./benchmark/run
|
2013-11-22 20:01:02 +00:00
|
|
|
|
2012-08-17 16:47:35 +00:00
|
|
|
demo:
|
2013-06-02 23:40:03 +00:00
|
|
|
cd demo/c++; ./rundemo `mapnik-config --prefix`
|
2012-08-17 16:47:35 +00:00
|
|
|
|
2012-02-25 02:55:47 +00:00
|
|
|
pep8:
|
|
|
|
# https://gist.github.com/1903033
|
|
|
|
# gsed on osx
|
2015-02-02 18:37:59 +00: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-25 02:55:47 +00:00
|
|
|
|
2015-04-26 21:26:11 +00:00
|
|
|
# note: pass --gen-suppressions=yes to create new suppression entries
|
2012-03-23 22:07:28 +00:00
|
|
|
grind:
|
2015-05-23 19:05:40 +00: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 18:32:20 +00:00
|
|
|
for FILE in test/standalone/*-bin; do \
|
2015-04-26 21:26:11 +00:00
|
|
|
valgrind --suppressions=./test/unit/valgrind.supp --leak-check=full --log-fd=1 $${FILE} | grep definitely; \
|
2012-04-05 15:48:46 +00:00
|
|
|
done
|
2015-05-23 19:05:40 +00:00
|
|
|
@source localize.sh && \
|
2015-04-26 21:26:11 +00:00
|
|
|
valgrind --suppressions=./test/unit/valgrind.supp --leak-check=full --log-fd=1 ./test/unit/run | grep definitely;
|
2012-03-23 22:07:28 +00:00
|
|
|
|
2012-07-25 23:58:45 +00:00
|
|
|
render:
|
|
|
|
@for FILE in tests/data/good_maps/*xml; do \
|
|
|
|
nik2img.py $${FILE} /tmp/$$(basename $${FILE}).png; \
|
|
|
|
done
|
|
|
|
|
2012-10-08 17:45:03 +00:00
|
|
|
.PHONY: install mapnik clean distclean reset uninstall test demo pep8 grind render
|