From 1449190c4111c6c5b30a9b67899f7fb3bfec2e87 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Mon, 8 Oct 2012 10:45:03 -0700 Subject: [PATCH] scons makefile wrapper - also remove config.py when running distclean/reset - closes #1525 and closes #1524 --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 58b999acc..8ee5d6595 100755 --- a/Makefile +++ b/Makefile @@ -14,6 +14,7 @@ distclean: if test -e ".sconf_temp/"; then rm -r ".sconf_temp/"; fi if test -e ".sconsign.dblite"; then rm ".sconsign.dblite"; fi if test -e "config.cache"; then rm "config.cache"; fi + if test -e "config.py"; then rm "config.py"; fi reset: distclean @@ -50,4 +51,4 @@ render: nik2img.py $${FILE} /tmp/$$(basename $${FILE}).png; \ done -.PHONY: clean reset uninstall test install demo +.PHONY: install mapnik clean distclean reset uninstall test demo pep8 grind render