[Python-checkins] CVS: python/dist/src/Doc/paper-letter Makefile,1.12.4.1,1.12.4.2

Fred L. Drake fdrake@weyr.cnri.reston.va.us
Wed, 15 Mar 2000 10:03:28 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Doc/paper-letter
In directory weyr:/home/fdrake/projects/python/Doc-152p2/paper-letter

Modified Files:
      Tag: release152p1-patches
	Makefile 
Log Message:

Add rules to cause paper-*/api.tex to be generated from api/api.tex to 
add the reference count information.


Index: Makefile
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Doc/paper-letter/Makefile,v
retrieving revision 1.12.4.1
retrieving revision 1.12.4.2
diff -C2 -r1.12.4.1 -r1.12.4.2
*** Makefile	2000/02/16 18:46:57	1.12.4.1
--- Makefile	2000/03/15 15:03:25	1.12.4.2
***************
*** 81,89 ****
  
  # Python/C API Reference Manual
! api.dvi: $(APIFILES)
  	$(MKDVI) api
  
! api.pdf: $(APIFILES)
  	$(MKPDF) api
  
  # Documenting Python
--- 81,92 ----
  
  # Python/C API Reference Manual
! api.dvi: api.tex $(APIFILES)
  	$(MKDVI) api
  
! api.pdf: api.tex $(APIFILES)
  	$(MKPDF) api
+ 
+ api.tex: ../api/api.tex ../api/refcounts.dat ../tools/anno-api.py
+ 	$(PYTHON) ../tools/anno-api.py -o $@ ../api/api.tex
  
  # Documenting Python