mapnik/Makefile

42 lines
1,017 B
Makefile
Raw Normal View History

all: mapnik
2011-08-30 07:20:37 +02:00
install:
python scons/scons.py install
mapnik:
python scons/scons.py
clean:
python scons/scons.py -c
reset:
if test -e ".sconf_temp/"; then rm -r ".sconf_temp/"; fi
if test -e ".sconsign.dblite"; then rm ".sconsign.dblite"; fi
2011-12-17 03:24:38 +01:00
if test -e "config.cache"; then rm "config.cache"; fi
uninstall:
python scons/scons.py uninstall
test:
2012-04-17 07:14:10 +02:00
@echo "*** Running visual tests..."
@python tests/visual_tests/test.py -q
2012-04-05 17:41:01 +02:00
@echo "*** Running C++ tests..."
@for FILE in tests/cpp_tests/*-bin; do \
$${FILE}; \
done
@echo "*** Running python tests..."
2012-03-24 04:07:57 +01:00
@python tests/run_tests.py -q
2012-02-25 03:55:47 +01:00
pep8:
# https://gist.github.com/1903033
# gsed on osx
@pep8 -r --select=W293 -q --filename=*.py `pwd`/tests/ | xargs gsed -i 's/^[ \r\t]*$//'
@pep8 -r --select=W391 -q --filename=*.py `pwd`/tests/ | xargs gsed -i -e :a -e '/^\n*$/{$d;N;ba' -e '}'
grind:
@for FILE in tests/cpp_tests/*-bin; do \
valgrind --leak-check=full --log-fd=1 $${FILE} | grep definitely; \
done
.PHONY: clean reset uninstall test install