[Zope-CVS] CVS: Zope - Makefile.in:1.1.4.2
Chris McDonough
chrism@zope.com
Thu, 29 Aug 2002 02:14:53 -0400
Update of /cvs-repository/Zope
In directory cvs.zope.org:/tmp/cvs-serv13673
Modified Files:
Tag: chrism-install-branch
Makefile.in
Log Message:
Actually add a 'make instance' command.
Expand homedirs on user input to make_instance.py.
=== Zope/Makefile.in 1.1.4.1 => 1.1.4.2 ===
--- Zope/Makefile.in:1.1.4.1 Wed Aug 28 00:12:30 2002
+++ Zope/Makefile.in Thu Aug 29 02:14:52 2002
@@ -10,13 +10,14 @@
FIND=find
XARGS=xargs
-.PHONY : clean install uninstall
+.PHONY : clean install uninstall instance
build:
${PYTHON} ${BUILD_DIR}/inst/compile_all.py
- ${PYTHON} -c "open('${BUILD_DIR}/build', 'w+')"
+ ${PYTHON} -c "open('${BUILD_DIR}/build', 'w')"
+ @echo Zope built. Next, do \'make install\' \(or \'make instance\'
+ @echo to run a Zope instance directly from the build directory\).
@echo
- @echo Zope built. Next, do \'make install\'.
install: build
${PYTHON} ${BUILD_DIR}/inst/source_install.py --src="${BUILD_DIR}"\
@@ -26,6 +27,9 @@
@echo
@echo Zope binaries installed successfully.
@echo Now run \'${ZOPE_HOME}/makeinstance.\'
+
+instance: build
+ ${PYTHON} ${BUILD_DIR}/inst/make_instance.py
uninstall:
${RM} ${ZOPE_HOME}