diff options
Diffstat (limited to 'Doc/paper-letter/Makefile')
-rw-r--r-- | Doc/paper-letter/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Doc/paper-letter/Makefile b/Doc/paper-letter/Makefile index a87653b..50067c3 100644 --- a/Doc/paper-letter/Makefile +++ b/Doc/paper-letter/Makefile @@ -58,17 +58,20 @@ pdf: $(PDFFILES) ps: $(PSFILES) -README: $(PSFILES) +README: $(PSFILES) $(TOOLSDIR)/getpagecounts $(TOOLSDIR)/getpagecounts >$@ # Python/C API Reference Manual -api.dvi: $(APIFILES) +api.dvi: api.tex $(APIFILES) $(MKDVI) api -api.pdf: $(APIFILES) +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 doc.dvi: $(DOCFILES) $(MKHOWTO) --dvi ../doc/doc.tex @@ -113,7 +116,7 @@ tut.pdf: $(TUTFILES) clean: - rm -f *~ *.aux *.idx *.ilg *.ind *.log *.toc *.bkm *.syn *.pla + rm -f *~ *.aux *.idx *.ilg *.ind *.log *.toc *.bkm *.syn *.pla api.tex clobber: clean rm -f $(DVIFILES) $(PSFILES) $(PDFFILES) |