From 1d114b5e2fd4b5f9cd64013d3eec89fd00d580a5 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Sun, 2 Dec 2012 18:30:32 -0800 Subject: [PATCH] add make check target that aliases make test-local - refs #1618 --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7fc6e1b0a..b98d0d993 100755 --- a/Makefile +++ b/Makefile @@ -39,13 +39,15 @@ test: @python tests/run_tests.py -q test-local: - @echo "*** boostrapping local test environment..." - export ${LINK_FIX}=`pwd`/src:${${LINK_FIX}} && \ + @echo "*** Boostrapping local test environment..." + @export ${LINK_FIX}=`pwd`/src:${${LINK_FIX}} && \ export PYTHONPATH=`pwd`/bindings/python/:${PYTHONPATH} && \ export MAPNIK_FONT_DIRECTORY=`pwd`/fonts/dejavu-fonts-ttf-2.33/ttf/ && \ export MAPNIK_INPUT_PLUGINS_DIRECTORY=`pwd`/plugins/input/ && \ make test +check: test-local + demo: @echo "*** Running rundemo.cpp…" cd demo/c++; ./rundemo `mapnik-config --prefix`/lib/mapnik