mapnik/Makefile

98 lines
2.6 KiB
Makefile
Raw Normal View History

2013-11-22 20:01:02 +00:00
OS := $(shell uname -s)
2013-02-23 12:10:50 +00:00
PYTHON = python
ifeq ($(JOBS),)
JOBS:=1
2013-02-23 12:10:50 +00:00
endif
all: mapnik
2011-08-30 05:20:37 +00:00
install:
$(PYTHON) scons/scons.py -j$(JOBS) --config=cache --implicit-cache --max-drift=1 install
mapnik:
2015-01-24 18:05:58 +00:00
# we first build memory intensive files with -j1
$(PYTHON) scons/scons.py -j1 \
--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 \
src/renderer_common/process_group_symbolizer.cpp \
src/agg/process_markers_symbolizer.cpp \
src/grid/process_markers_symbolizer.cpp \
src/cairo/process_markers_symbolizer.cpp
# then install the rest with -j$(JOBS)
$(PYTHON) scons/scons.py -j$(JOBS) --config=cache --implicit-cache --max-drift=1
clean:
@$(PYTHON) scons/scons.py -j$(JOBS) -c --config=cache --implicit-cache --max-drift=1
@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
@find ./ -name "*.pyc" -exec rm {} \;
@find ./ -name "*.os" -exec rm {} \;
2014-05-05 17:08:40 +00:00
@find ./ -name "*.dylib" -exec rm {} \;
@find ./ -name "*.so" -exec rm {} \;
@find ./ -name "*.o" -exec rm {} \;
2014-10-21 23:37:27 +00:00
@find ./ -name "*.a" -exec rm {} \;
2013-01-14 05:58:31 +00:00
@find ./ -name "*.pyc" -exec rm {} \;
@if test -e "bindings/python/mapnik/paths.py"; then rm "bindings/python/mapnik/paths.py"; fi
distclean:
2012-10-10 16:26:55 +00:00
if test -e "config.py"; then mv "config.py" "config.py.backup"; fi
reset: distclean
2013-01-19 03:01:12 +00:00
rebuild:
make uninstall && make clean && time make && make install
uninstall:
@$(PYTHON) scons/scons.py -j$(JOBS) --config=cache --implicit-cache --max-drift=1 uninstall
test:
2013-11-22 20:01:02 +00:00
./run_tests
test-local:
make test
2013-11-22 20:01:02 +00:00
test-visual:
2013-11-22 20:07:07 +00:00
bash -c "source ./localize.sh && python tests/visual_tests/test.py -q"
2013-11-22 20:01:02 +00:00
test-python:
2013-11-22 20:07:07 +00:00
bash -c "source ./localize.sh && python tests/run_tests.py -q"
2013-11-22 20:01:02 +00:00
test-cpp:
./tests/cpp_tests/run
check: test-local
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
@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 '}'
grind:
@for FILE in tests/cpp_tests/*-bin; do \
valgrind --leak-check=full --log-fd=1 $${FILE} | grep definitely; \
done
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
.PHONY: install mapnik clean distclean reset uninstall test demo pep8 grind render