From 39b057e9e4c5c4c03e9ccb8c3dc17a220693e0d2 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Fri, 17 Aug 2012 09:47:35 -0700 Subject: [PATCH] Add a demo makefile target --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2fc853f9a..58b999acc 100755 --- a/Makefile +++ b/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