[Python-checkins] CVS: python/dist/src/Doc/info Makefile,1.6,1.7

Fred L. Drake fdrake@users.sourceforge.net
Tue, 17 Jul 2001 09:48:57 -0700


Update of /cvsroot/python/python/dist/src/Doc/info
In directory usw-pr-cvs1:/tmp/cvs-serv25865/info

Modified Files:
	Makefile 
Log Message:

Make the syntax for compound command lines more portable (nmake, CygWin).
This is probably not sufficient by itself for the info generation, and is
being done mostly to keep the style consistent with additional patches
that will be applied to Doc/Makefile.


Index: Makefile
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/info/Makefile,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** Makefile	2000/10/26 19:26:47	1.6
--- Makefile	2001/07/17 16:48:55	1.7
***************
*** 50,73 ****
  
  $(HTMLDIR)/api/api.html:
! 	(cd $(HTMLDIR); $(MAKE) api)
  
  $(HTMLDIR)/ext/ext.html:
! 	(cd $(HTMLDIR); $(MAKE) ext)
  
  $(HTMLDIR)/lib/lib.html:
! 	(cd $(HTMLDIR); $(MAKE) lib)
  
  $(HTMLDIR)/mac/mac.html:
! 	(cd $(HTMLDIR); $(MAKE) mac)
  
  $(HTMLDIR)/ref/ref.html:
! 	(cd $(HTMLDIR); $(MAKE) ref)
  
  $(HTMLDIR)/tut/tut.html:
! 	(cd $(HTMLDIR); $(MAKE) tut)
  
  $(HTMLDIR)/dist/dist.html:
! 	(cd $(HTMLDIR); $(MAKE) dist)
  
  $(HTMLDIR)/inst/inst.html:
! 	(cd $(HTMLDIR); $(MAKE) inst)
--- 50,73 ----
  
  $(HTMLDIR)/api/api.html:
! 	cd $(HTMLDIR) && $(MAKE) api
  
  $(HTMLDIR)/ext/ext.html:
! 	cd $(HTMLDIR) && $(MAKE) ext
  
  $(HTMLDIR)/lib/lib.html:
! 	cd $(HTMLDIR) && $(MAKE) lib
  
  $(HTMLDIR)/mac/mac.html:
! 	cd $(HTMLDIR) && $(MAKE) mac
  
  $(HTMLDIR)/ref/ref.html:
! 	cd $(HTMLDIR) && $(MAKE) ref
  
  $(HTMLDIR)/tut/tut.html:
! 	cd $(HTMLDIR) && $(MAKE) tut
  
  $(HTMLDIR)/dist/dist.html:
! 	cd $(HTMLDIR) && $(MAKE) dist
  
  $(HTMLDIR)/inst/inst.html:
! 	cd $(HTMLDIR) && $(MAKE) inst