[Zope3-checkins] SVN: Zope3/branches/ZopeX3-3.0/Makefile only
re-write the runzope and zopectl scripts if the Makefile changed
Fred L. Drake, Jr.
fdrake at gmail.com
Tue Aug 10 16:02:16 EDT 2004
Log message for revision 26978:
only re-write the runzope and zopectl scripts if the Makefile changed
Changed:
U Zope3/branches/ZopeX3-3.0/Makefile
-=-
Modified: Zope3/branches/ZopeX3-3.0/Makefile
===================================================================
--- Zope3/branches/ZopeX3-3.0/Makefile 2004-08-10 19:57:14 UTC (rev 26977)
+++ Zope3/branches/ZopeX3-3.0/Makefile 2004-08-10 20:02:16 UTC (rev 26978)
@@ -13,10 +13,14 @@
build:
$(PYTHON) setup.py $(SETUPFLAGS) build
-runners:
+runners: bin/runzope bin/zopectl
+
+bin/runzope: Makefile
echo "#!/bin/sh" > bin/runzope;
echo "exec $(PYTHON) z3.py" >> bin/runzope;
chmod +x bin/runzope
+
+bin/zopectl: Makefile
echo "#!/bin/sh" > bin/zopectl;
echo "$(PYTHON) $(PWD)/src/zdaemon/zdctl.py \
-S schema.xml \
More information about the Zope3-Checkins
mailing list