clean config.cache by default
This commit is contained in:
parent
c53bcd99a6
commit
3bd7ee87c6
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -18,7 +18,8 @@ mapnik:
|
||||||
clean:
|
clean:
|
||||||
@$(PYTHON) scons/scons.py -j$(JOBS) -c --config=cache --implicit-cache --max-drift=1
|
@$(PYTHON) scons/scons.py -j$(JOBS) -c --config=cache --implicit-cache --max-drift=1
|
||||||
@if test -e ".sconsign.dblite"; then rm ".sconsign.dblite"; fi
|
@if test -e ".sconsign.dblite"; then rm ".sconsign.dblite"; fi
|
||||||
@if test -e "config.log"; then rm "config.log"; fi
|
@if test -e "config.log"; then rm "config.log"; fi
|
||||||
|
@if test -e "config.cache"; then rm "config.cache"; fi
|
||||||
@if test -e ".sconf_temp/"; then rm -r ".sconf_temp/"; fi
|
@if test -e ".sconf_temp/"; then rm -r ".sconf_temp/"; fi
|
||||||
@find ./ -name "*.pyc" -exec rm {} \;
|
@find ./ -name "*.pyc" -exec rm {} \;
|
||||||
@find ./ -name "*.os" -exec rm {} \;
|
@find ./ -name "*.os" -exec rm {} \;
|
||||||
|
@ -29,7 +30,6 @@ clean:
|
||||||
@if test -e "bindings/python/mapnik/paths.py"; then rm "bindings/python/mapnik/paths.py"; fi
|
@if test -e "bindings/python/mapnik/paths.py"; then rm "bindings/python/mapnik/paths.py"; fi
|
||||||
|
|
||||||
distclean:
|
distclean:
|
||||||
@if test -e "config.cache"; then rm "config.cache"; fi
|
|
||||||
if test -e "config.py"; then mv "config.py" "config.py.backup"; fi
|
if test -e "config.py"; then mv "config.py" "config.py.backup"; fi
|
||||||
|
|
||||||
reset: distclean
|
reset: distclean
|
||||||
|
|
Loading…
Reference in a new issue