[Python-checkins] python/dist/src/Doc/info Makefile,1.10,1.11

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Tue, 15 Jul 2003 21:03:01 -0700


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

Modified Files:
	Makefile 
Log Message:
- update some comments
- add support for the "What's New" document
- add short aliases for individual documents; nice for debugging
  conversions


Index: Makefile
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/info/Makefile,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** Makefile	2 Jul 2003 14:25:04 -0000	1.10
--- Makefile	16 Jul 2003 04:02:58 -0000	1.11
***************
*** 17,26 ****
  
  all:	check-emacs-version \
! 	python$(VERSION)-api.info python$(VERSION)-ext.info \
! 	python$(VERSION)-lib.info python$(VERSION)-ref.info \
! 	python$(VERSION)-tut.info python$(VERSION)-dist.info \
! 	python$(VERSION)-mac.info
  
! #	python$(VERSION)-doc.info python$(VERSION)-inst.info
  
  check-emacs-version:
--- 17,35 ----
  
  all:	check-emacs-version \
! 	api dist ext mac ref tut whatsnew \
! 	lib
! #	doc inst
  
! api:	python$(VERSION)-api.info
! dist:	python$(VERSION)-dist.info
! doc:	python$(VERSION)-doc.info
! ext:	python$(VERSION)-ext.info
! inst:	python$(VERSION)-inst.info
! lib:	python$(VERSION)-lib.info
! mac:	python$(VERSION)-mac.info
! ref:	python$(VERSION)-ref.info
! tut:	python$(VERSION)-tut.info
! whatsnew:	$(WHATSNEW)
! $(WHATSNEW):	python$(VERSION)-$(WHATSNEW).info
  
  check-emacs-version:
***************
*** 43,47 ****
  	EMACS=$(EMACS) $(MKINFO) $< $*.texi $@
  
- # Not built by default; the conversion doesn't really handle it well.
  python$(VERSION)-mac.info:	../mac/mac.tex $(SCRIPTS)
  	EMACS=$(EMACS) $(MKINFO) $< $*.texi $@
--- 52,55 ----
***************
*** 53,57 ****
  	EMACS=$(EMACS) $(MKINFO) $< $*.texi $@
  
! # Not built by default; the conversion doesn't handle it at all.
  python$(VERSION)-doc.info:	../doc/doc.tex $(SCRIPTS)
  	EMACS=$(EMACS) $(MKINFO) $< $*.texi $@
--- 61,65 ----
  	EMACS=$(EMACS) $(MKINFO) $< $*.texi $@
  
! # Not built by default; the conversion doesn't handle \p and \op
  python$(VERSION)-doc.info:	../doc/doc.tex $(SCRIPTS)
  	EMACS=$(EMACS) $(MKINFO) $< $*.texi $@
***************
*** 60,65 ****
  	EMACS=$(EMACS) $(MKINFO) $< $*.texi $@
  
! # Not built by default; the conversion chokes on two @end multitable's
  python$(VERSION)-inst.info:	../inst/inst.tex $(SCRIPTS)
  	EMACS=$(EMACS) $(MKINFO) $< $*.texi $@
  
--- 68,77 ----
  	EMACS=$(EMACS) $(MKINFO) $< $*.texi $@
  
! # Not built by default; the conversion chokes on \installscheme
  python$(VERSION)-inst.info:	../inst/inst.tex $(SCRIPTS)
+ 	EMACS=$(EMACS) $(MKINFO) $< $*.texi $@
+ 
+ # "whatsnew20" doesn't currently work
+ python$(VERSION)-$(WHATSNEW).info:  ../whatsnew/$(WHATSNEW).tex $(SCRIPTS)
  	EMACS=$(EMACS) $(MKINFO) $< $*.texi $@