[Zope-Checkins] CVS: Zope/inst - Makefile.in:1.1.2.12 Makefile.win.in:1.1.2.5

Fred L. Drake, Jr. fred@zope.com
Tue, 26 Nov 2002 10:58:21 -0500


Update of /cvs-repository/Zope/inst
In directory cvs.zope.org:/tmp/cvs-serv13652

Modified Files:
      Tag: chrism-install-branch
	Makefile.in Makefile.win.in 
Log Message:
Only present the "what to do next" message when it applies; it is not needed
when "make install" or "make instance" is being run.


=== Zope/inst/Makefile.in 1.1.2.11 => 1.1.2.12 ===
--- Zope/inst/Makefile.in:1.1.2.11	Tue Nov 26 00:22:28 2002
+++ Zope/inst/Makefile.in	Tue Nov 26 10:58:20 2002
@@ -31,13 +31,16 @@
 WRITE_INFILE="${PYTHON}" "${INST_DIR}/file_from_infile.py"
 
 .PHONY : clean install uninstall instance links hacklinks untestinst testinst
+.PHONY : default
 
-build: hacklinks links
-	"${PYTHON}" "${INST_DIR}/setup.py" build_ext -i
+default: build
 	@echo
 	@echo Zope built.  Next, do \'make install\' \(or \'make instance\'
 	@echo to run a Zope instance directly from the build directory\).
 	@echo
+
+build: hacklinks links
+	"${PYTHON}" "${INST_DIR}/setup.py" build_ext -i
 
 # Zope has a number of directories in its top-level source checkout
 # which should really be treated as subdirectories of two "skeleton"


=== Zope/inst/Makefile.win.in 1.1.2.4 => 1.1.2.5 ===
--- Zope/inst/Makefile.win.in:1.1.2.4	Fri Oct 11 14:40:41 2002
+++ Zope/inst/Makefile.win.in	Tue Nov 26 10:58:20 2002
@@ -20,15 +20,16 @@
 WRITE_INFILE="$(PYTHON)" "$(INST_DIR)\file_from_infile.py"
 
 .PHONY : clean install uninstall instance links hacklinks
+.PHONY : default
 
 default: build
-
-build: hacklinks links
-	"$(PYTHON)" "$(INST_DIR)/setup.py" build_ext -i
 	@ echo.
 	@ echo Zope built.  Next, do 'nmake install' (or 'nmake instance'
 	@ echo to run a Zope instance directly from the build directory).
 	@ echo.
+
+build: hacklinks links
+	"$(PYTHON)" "$(INST_DIR)/setup.py" build_ext -i
 
 # Zope has a number of directories in its top-level source checkout
 # which should really be treated as subdirectories of two "skeleton"