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
|
|
|
|
|
|
|
mapnik:
|
2015-01-27 15:54:36 -08:00
|
|
|
# we first build memory intensive files with -j2
|
|
|
|
$(PYTHON) scons/scons.py -j2 \
|
2015-01-24 10:05:58 -08:00
|
|
|
--config=cache --implicit-cache --max-drift=1 \
|
|
|
|
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-27 16:22:40 -08:00
|
|
|
src/renderer_common/process_group_symbolizer.os \
|
|
|
|
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-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 {} \;
|
2014-05-05 10:08:40 -07:00
|
|
|
@find ./ -name "*.dylib" -exec rm {} \;
|
|
|
|
@find ./ -name "*.so" -exec rm {} \;
|
2012-12-07 02:31:05 -08:00
|
|
|
@find ./ -name "*.o" -exec rm {} \;
|
2014-10-21 16:37:27 -07:00
|
|
|
@find ./ -name "*.a" -exec rm {} \;
|
2013-01-13 21:58:31 -08:00
|
|
|
@find ./ -name "*.pyc" -exec rm {} \;
|
2013-02-21 16:42:33 -08:00
|
|
|
@if test -e "bindings/python/mapnik/paths.py"; then rm "bindings/python/mapnik/paths.py"; fi
|
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
|
|
|
|
|
|
|
test:
|
2013-11-22 12:01:02 -08:00
|
|
|
./run_tests
|
2011-08-23 18:10:52 +00:00
|
|
|
|
2012-11-26 17:48:02 -08:00
|
|
|
test-local:
|
|
|
|
make test
|
|
|
|
|
2013-11-22 12:01:02 -08:00
|
|
|
test-visual:
|
2013-11-22 12:07:07 -08:00
|
|
|
bash -c "source ./localize.sh && python tests/visual_tests/test.py -q"
|
2013-11-22 12:01:02 -08:00
|
|
|
|
|
|
|
test-python:
|
2013-11-22 12:07:07 -08:00
|
|
|
bash -c "source ./localize.sh && python tests/run_tests.py -q"
|
2013-11-22 12:01:02 -08:00
|
|
|
|
|
|
|
test-cpp:
|
|
|
|
./tests/cpp_tests/run
|
2013-01-08 19:07:11 -08:00
|
|
|
|
2012-12-02 18:30:32 -08:00
|
|
|
check: test-local
|
|
|
|
|
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
|
|
|
|
2012-03-23 15:07:28 -07:00
|
|
|
grind:
|
2012-04-05 08:48:46 -07:00
|
|
|
@for FILE in tests/cpp_tests/*-bin; do \
|
|
|
|
valgrind --leak-check=full --log-fd=1 $${FILE} | grep definitely; \
|
|
|
|
done
|
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
|