[Zope3-checkins] CVS: Zope3 - Makefile:1.26

Guido van Rossum guido@python.org
Tue, 29 Apr 2003 09:56:32 -0400


Update of /cvs-repository/Zope3
In directory cvs.zope.org:/tmp/cvs-serv5574

Modified Files:
	Makefile 
Log Message:
Factor out flags for setup.py as SETUPFLAGS.


=== Zope3/Makefile 1.25 => 1.26 ===
--- Zope3/Makefile:1.25	Thu Apr 24 17:08:53 2003
+++ Zope3/Makefile	Tue Apr 29 09:56:31 2003
@@ -1,16 +1,17 @@
 PYTHON=python2.2
 TESTFLAGS=-p -v
 TESTOPTS=
+SETUPFLAGS=-q
 
 # XXX What should the default be?
 all: inplace
 
 # Build in-place
 inplace:
-	$(PYTHON) setup.py -q build_ext -i
+	$(PYTHON) setup.py $(SETUPFLAGS) build_ext -i
 
 build:
-	$(PYTHON) setup.py -q build
+	$(PYTHON) setup.py $(SETUPFLAGS) build
 
 test_build: build
 	$(PYTHON) test.py $(TESTFLAGS) $(TESTOPTS)