[Python-checkins] CVS: python/dist/src/Doc/html Makefile,1.42,1.43

Fred L. Drake fdrake@users.sourceforge.net
Mon, 19 Feb 2001 09:52:19 -0800


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

Modified Files:
	Makefile 
Log Message:

Make the top-level index.html depend on the individual document index.html
files so that the date is properly updated on the front page.


Index: Makefile
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/html/Makefile,v
retrieving revision 1.42
retrieving revision 1.43
diff -C2 -r1.42 -r1.43
*** Makefile	2001/01/09 22:50:13	1.42
--- Makefile	2001/02/19 17:52:07	1.43
***************
*** 120,127 ****
  # defined here.  It also maintains the proper dependency on boilerplate.tex.
  
  # It's at the end of the file since it wedges font-lock in XEmacs.
  
  BOILERPLATE=$(TOPDIR)/texinputs/boilerplate.tex
! index.html: $(TOPDIR)/html/index.html.in $(BOILERPLATE)
  	REL=`grep '\\release{' $(BOILERPLATE) | sed 's/.*\\release{\(.*\)}.*$$/\1/'`; \
  		REL=`echo "$$REL" | sed 's/[$$]//g'`; \
--- 120,131 ----
  # defined here.  It also maintains the proper dependency on boilerplate.tex.
  
+ # index.html is dependent on $(INDEXFILES) since we want the date on
+ # the front index to be updated whenever any of the child documents
+ # are updated and boilerplate.tex uses \today as the date.
+ 
  # It's at the end of the file since it wedges font-lock in XEmacs.
  
  BOILERPLATE=$(TOPDIR)/texinputs/boilerplate.tex
! index.html: $(TOPDIR)/html/index.html.in $(BOILERPLATE) $(INDEXFILES)
  	REL=`grep '\\release{' $(BOILERPLATE) | sed 's/.*\\release{\(.*\)}.*$$/\1/'`; \
  		REL=`echo "$$REL" | sed 's/[$$]//g'`; \