Clean up skeleton and remove easyshop stuff into extra branch
[zope-bootstrap.git] / Makefile
index 66bf7c1..62d061d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -6,11 +6,10 @@ PIL_VERSION    = 1.1.6
 ###########################################################################
 
 include Makefile.master
-include Makefile.easyshop
 
-local.cfg:
+localeggs.cfg:
        @(                                                                      \
-               echo "[local]";                                                 \
+               echo "[localeggs]";                                             \
                echo;                                                           \
                echo "eggs =";                                                  \
                find src -maxdepth 1 -mindepth 1 -type d -printf "    %P\n";    \
@@ -19,12 +18,22 @@ local.cfg:
                find src -maxdepth 1 -mindepth 1 -type d -printf "    %p\n";    \
                echo;                                                           \
                echo "zcml =";                                                  \
-               echo "    \$${local:eggs}"                                      \
+               echo "    \$${localeggs:eggs}"                                  \
        ) >$@ || (rm -f $@; false)
-.PHONY: local.cfg
+.PHONY: localeggs.cfg
 # Not phony in reality but needs to be considered out-of-date whenever called
 
-otherupdate:: local.cfg
+server.cfg:
+       @(                                                                      \
+               echo "[server]";                                                \
+               echo;                                                           \
+               echo "user = admin:admin";                                      \
+               echo "port = 8080";                                             \
+               echo "debug-mode = on";                                         \
+               echo "verbose-security = on";                                   \
+       ) >$@ || (rm -f $@; false)
+
+otherupdate:: localeggs.cfg server.cfg
 
 instance: update-nonet
        bin/instance foreground
@@ -36,3 +45,7 @@ newinstance: purgeinstance instance
 purgeinstance:
        rm -rf parts/instance var/filestorage
 .PHONY: purgeinstance
+
+bootstrap.tar.gz:
+       git ls-files -o --exclude-standard | tar -cvzf $@ -T -
+.PHONY: bootstrap.tar.gz