Add a demo makefile target
This commit is contained in:
parent
333ab9a37e
commit
39b057e9e4
1 changed files with 5 additions and 1 deletions
6
Makefile
6
Makefile
|
@ -30,6 +30,10 @@ test:
|
|||
@echo "*** Running python tests..."
|
||||
@python tests/run_tests.py -q
|
||||
|
||||
demo:
|
||||
@echo "*** Running rundemo.cpp…"
|
||||
cd demo/c++; ./rundemo `mapnik-config --prefix`/lib/mapnik
|
||||
|
||||
pep8:
|
||||
# https://gist.github.com/1903033
|
||||
# gsed on osx
|
||||
|
@ -46,4 +50,4 @@ render:
|
|||
nik2img.py $${FILE} /tmp/$$(basename $${FILE}).png; \
|
||||
done
|
||||
|
||||
.PHONY: clean reset uninstall test install
|
||||
.PHONY: clean reset uninstall test install demo
|
||||
|
|
Loading…
Reference in a new issue