scons makefile wrapper - also remove config.py when running distclean/reset - closes #1525 and closes #1524

This commit is contained in:
Dane Springmeyer 2012-10-08 10:45:03 -07:00
parent c739dc2133
commit 1449190c41

View file

@ -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