From 819fa0dac939fa0f65d78a520be5d9b9c62aa2ea Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Fri, 4 Feb 2011 22:29:10 +0000 Subject: [PATCH] Add ./configure and MakeFile, simple wrappers around scons scripts --- Makefile | 23 +++++++++++++++++++++++ configure | 3 +++ 2 files changed, 26 insertions(+) create mode 100755 Makefile create mode 100755 configure diff --git a/Makefile b/Makefile new file mode 100755 index 000000000..85369b31f --- /dev/null +++ b/Makefile @@ -0,0 +1,23 @@ +all: mapnik + +install: all + python scons/scons.py install + +mapnik: + python scons/scons.py + +clean: + python scons/scons.py -c + if test -e ".sconf_temp/"; then rm -r ".sconf_temp/"; fi + if test -e ".sconsign.dblite"; then rm ".sconsign.dblite"; fi + +uninstall: + python scons/scons.py uninstall + +test: + + echo "...running c++ tests" + ./tests/cpp_tests/font_registration_test + + echo "...running python tests" + python tests/run_tests.py \ No newline at end of file diff --git a/configure b/configure new file mode 100755 index 000000000..a4b0c7b3f --- /dev/null +++ b/configure @@ -0,0 +1,3 @@ +#!/bin/sh + +python scons/scons.py configure $@ \ No newline at end of file