[Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv Makefile,1.8,1.8.6.1

Tim Peters tim_one@users.sourceforge.net
Fri, 20 Jul 2001 23:07:14 -0700


Update of /cvsroot/python/python/dist/src/Doc/tools/sgmlconv
In directory usw-pr-cvs1:/tmp/cvs-serv27169/descr/dist/src/Doc/tools/sgmlconv

Modified Files:
      Tag: descr-branch
	Makefile 
Log Message:
Merge of trunk delta date2001-07-17b to date2001-07-21.  See PLAN.txt.


Index: Makefile
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/tools/sgmlconv/Makefile,v
retrieving revision 1.8
retrieving revision 1.8.6.1
diff -C2 -r1.8 -r1.8.6.1
*** Makefile	2000/11/22 16:54:20	1.8
--- Makefile	2001/07/21 06:07:12	1.8.6.1
***************
*** 11,16 ****
  
  SGMLRULES=../$(TOOLSDIR)/sgmlconv/make.rules
! # The 'inst' directory breaks the conversion, so skip it for now.
! SUBDIRS=api dist ext lib mac ref tut
  SUBMAKE=$(MAKE) -f $(SGMLRULES) TOOLSDIR=../$(TOOLSDIR)
  
--- 11,16 ----
  
  SGMLRULES=../$(TOOLSDIR)/sgmlconv/make.rules
! # The 'inst' and 'tut' directories break the conversion, so skip them for now.
! SUBDIRS=api dist ext lib mac ref
  SUBMAKE=$(MAKE) -f $(SGMLRULES) TOOLSDIR=../$(TOOLSDIR)
  
***************
*** 22,34 ****
  xml:
  	for DIR in $(SUBDIRS) ; do \
! 	    (cd $$DIR; $(SUBMAKE) xml) || exit $$? ; done
  
  esis:
  	for DIR in $(SUBDIRS) ; do \
! 	    (cd $$DIR; $(SUBMAKE) esis) || exit $$? ; done
  
  esis1:
  	for DIR in $(SUBDIRS) ; do \
! 	    (cd $$DIR; $(SUBMAKE) esis1) || exit $$? ; done
  
  tarball:  xml
--- 22,34 ----
  xml:
  	for DIR in $(SUBDIRS) ; do \
! 	    (cd $$DIR && $(SUBMAKE) xml) || exit $$? ; done
  
  esis:
  	for DIR in $(SUBDIRS) ; do \
! 	    (cd $$DIR && $(SUBMAKE) esis) || exit $$? ; done
  
  esis1:
  	for DIR in $(SUBDIRS) ; do \
! 	    (cd $$DIR && $(SUBMAKE) esis1) || exit $$? ; done
  
  tarball:  xml
***************
*** 36,67 ****
  
  api:
! 	cd api; $(SUBMAKE)
  
  dist:
! 	cd dist; $(SUBMAKE)
  
  ext:
! 	cd ext; $(SUBMAKE)
  
  inst:
! 	cd inst; $(SUBMAKE)
  
  lib:
! 	cd lib; $(SUBMAKE)
  
  mac:
! 	cd mac; $(SUBMAKE)
  
  ref:
! 	cd ref; $(SUBMAKE)
  
  tut:
! 	cd tut; $(SUBMAKE)
  
  clean:
  	for DIR in $(SUBDIRS) ; do \
! 	    (cd $$DIR; $(SUBMAKE) clean) ; done
  
  clobber:
  	for DIR in $(SUBDIRS) ; do \
! 	    (cd $$DIR; $(SUBMAKE) clobber) ; done
--- 36,67 ----
  
  api:
! 	cd api && $(SUBMAKE)
  
  dist:
! 	cd dist && $(SUBMAKE)
  
  ext:
! 	cd ext && $(SUBMAKE)
  
  inst:
! 	cd inst && $(SUBMAKE)
  
  lib:
! 	cd lib && $(SUBMAKE)
  
  mac:
! 	cd mac && $(SUBMAKE)
  
  ref:
! 	cd ref && $(SUBMAKE)
  
  tut:
! 	cd tut && $(SUBMAKE)
  
  clean:
  	for DIR in $(SUBDIRS) ; do \
! 	    (cd $$DIR && $(SUBMAKE) clean) || exit $$? ; done
  
  clobber:
  	for DIR in $(SUBDIRS) ; do \
! 	    (cd $$DIR && $(SUBMAKE) clobber) || exit $$? ; done