From f25626f6783c1b220c692ef4c7f41e39bd3651f9 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Fri, 7 Dec 2012 02:31:05 -0800 Subject: [PATCH] also clear out stale object files than scons my no longer know about --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 118082a4f..8f800e055 100755 --- a/Makefile +++ b/Makefile @@ -16,6 +16,8 @@ mapnik: clean: @python scons/scons.py -c --config=cache --implicit-cache --max-drift=1 @if test -e ".sconsign.dblite"; then rm ".sconsign.dblite"; fi + @find ./ -name "*.os" -exec rm {} \; + @find ./ -name "*.o" -exec rm {} \; distclean: if test -e ".sconf_temp/"; then rm -r ".sconf_temp/"; fi