[Zope3-checkins] SVN: Zope3/trunk/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:05:11 EDT 2004


Log message for revision 26979:
  only re-write the runzope and zopectl scripts if the Makefile changed
  
  (merged from ZopeX3-3.0 branch revision 26978)
  


Changed:
  U   Zope3/trunk/Makefile


-=-
Modified: Zope3/trunk/Makefile
===================================================================
--- Zope3/trunk/Makefile	2004-08-10 20:02:16 UTC (rev 26978)
+++ Zope3/trunk/Makefile	2004-08-10 20:05:11 UTC (rev 26979)
@@ -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