2011-02-04 23:29:10 +01:00
|
|
|
all: mapnik
|
|
|
|
|
2011-08-30 07:20:37 +02:00
|
|
|
install:
|
2012-07-07 03:37:48 +02:00
|
|
|
@python scons/scons.py --config=cache --implicit-deps-unchanged --max-drift=1 install
|
2011-02-04 23:29:10 +01:00
|
|
|
|
|
|
|
mapnik:
|
2012-07-09 23:37:26 +02:00
|
|
|
@python scons/scons.py --config=cache --implicit-deps-unchanged --max-drift=1
|
2011-02-04 23:29:10 +01:00
|
|
|
|
|
|
|
clean:
|
2012-07-07 03:37:48 +02:00
|
|
|
python scons/scons.py -c --config=cache --implicit-deps-unchanged --max-drift=1
|
2011-08-23 20:10:52 +02:00
|
|
|
|
|
|
|
reset:
|
2011-02-04 23:29:10 +01:00
|
|
|
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
|
2011-02-04 23:29:10 +01:00
|
|
|
|
|
|
|
uninstall:
|
2012-07-09 23:37:26 +02:00
|
|
|
python scons/scons.py --config=cache --implicit-deps-unchanged --max-drift=1 uninstall
|
2011-02-04 23:29:10 +01:00
|
|
|
|
|
|
|
test:
|
2012-04-17 07:14:10 +02:00
|
|
|
@echo "*** Running visual tests..."
|
2012-06-29 22:07:41 +02:00
|
|
|
@python tests/visual_tests/test.py -q || true
|
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
|
2011-08-23 20:10:52 +02:00
|
|
|
|
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 '}'
|
|
|
|
|
2012-03-23 23:07:28 +01:00
|
|
|
grind:
|
2012-04-05 17:48:46 +02:00
|
|
|
@for FILE in tests/cpp_tests/*-bin; do \
|
|
|
|
valgrind --leak-check=full --log-fd=1 $${FILE} | grep definitely; \
|
|
|
|
done
|
2012-03-23 23:07:28 +01:00
|
|
|
|
2011-08-30 19:20:44 +02:00
|
|
|
.PHONY: clean reset uninstall test install
|