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