2011-02-04 23:29:10 +01:00
|
|
|
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
|
|
|
|
|
2011-04-03 06:29:22 +02:00
|
|
|
check:
|
|
|
|
cppcheck --enable=all -I include */*.cpp
|
|
|
|
|
2011-02-04 23:29:10 +01:00
|
|
|
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
|