mapnik/Makefile

110 lines
3.1 KiB
Makefile
Raw Normal View History

2013-11-22 12:01:02 -08:00
OS := $(shell uname -s)
2013-02-23 13:10:50 +01:00
ifeq ($(JOBS),)
JOBS:=1
2013-02-23 13:10:50 +01:00
endif
ifeq ($(HEAVY_JOBS),)
HEAVY_JOBS:=1
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
2015-07-27 19:17:31 -07:00
release:
2016-09-06 00:00:37 -07:00
./scripts/publish_release.sh
2015-07-27 19:17:31 -07:00
test-release:
./scripts/test_release.sh
src/json/libmapnik-json.a:
# we first build memory intensive files with -j$(HEAVY_JOBS)
$(PYTHON) scons/scons.py -j$(HEAVY_JOBS) \
2015-01-24 10:05:58 -08:00
--config=cache --implicit-cache --max-drift=1 \
src/renderer_common/render_group_symbolizer.os \
src/renderer_common/render_markers_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/css_grammar_x3.os \
src/css/css_color_grammar_x3.os \
2016-08-26 10:09:22 +01:00
src/expression_grammar_x3.os \
src/transform_expression_grammar_x3.os \
src/image_filter_grammar_x3.os \
src/marker_helpers.os \
src/svg/svg_transform_parser.os \
src/agg/process_line_symbolizer.os \
plugins/input/geojson/geojson_datasource.os \
src/svg/svg_path_parser.os \
src/svg/svg_parser.os \
src/svg/svg_points_parser.os \
src/svg/svg_transform_parser.os \
mapnik: src/json/libmapnik-json.a
2015-01-24 10:05:58 -08:00
# 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 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
@find ./ -name "*.pyc" -exec rm {} \;
@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 {} \;
@find ./ -name "*.o" -exec rm {} \;
2015-04-27 00:28:26 +02:00
@find ./src/ -name "*.a" -exec rm {} \;
@find ./ -name "*.gcda" -exec rm {} \;
@find ./ -name "*.gcno" -exec rm {} \;
distclean:
2012-10-10 09:26:55 -07:00
if test -e "config.py"; then mv "config.py" "config.py.backup"; fi
reset: distclean
2013-01-18 19:01:12 -08: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
2016-09-06 00:00:37 -07:00
test/data-visual:
./scripts/ensure_test_data.sh
test/data:
2016-09-06 00:00:37 -07:00
./scripts/ensure_test_data.sh
2016-09-06 00:00:37 -07:00
test: ./test/data test/data-visual
@./test/run
2015-04-25 22:08:12 +02:00
check: test
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
2015-04-26 23:26:11 +02:00
# note: pass --gen-suppressions=yes to create new suppression entries
grind:
@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; \
done
@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-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
.PHONY: install mapnik clean distclean reset uninstall test demo pep8 grind render