# -*- makefile -*- PYTHON_VERSION = 2.4.6 PIL_VERSION = 1.1.6 ########################################################################### include Makefile.master include Makefile.easyshop local.cfg: @( \ echo "[local]"; \ echo; \ echo "eggs ="; \ find src -maxdepth 1 -mindepth 1 -type d -printf " %P\n"; \ echo; \ echo "develop ="; \ find src -maxdepth 1 -mindepth 1 -type d -printf " %p\n"; \ echo; \ echo "zcml ="; \ echo " \$${local:eggs}" \ ) >$@ || (rm -f $@; false) .PHONY: local.cfg # Not phony in reality but needs to be considered out-of-date whenever called otherupdate:: local.cfg instance: update-nonet bin/instance foreground .PHONY: instance newinstance: purgeinstance instance .PHONY: newinstance purgeinstance: rm -rf parts/instance var/filestorage .PHONY: purgeinstance