add make check target that aliases make test-local - refs #1618
This commit is contained in:
parent
be05aa5b60
commit
1d114b5e2f
1 changed files with 4 additions and 2 deletions
6
Makefile
6
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
|
||||
|
|
Loading…
Reference in a new issue