diff options
author | Fred Drake <fdrake@acm.org> | 2003-09-27 07:11:17 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2003-09-27 07:11:17 (GMT) |
commit | 410825ac8b0f3427f0b163ca2354c289e21ac0ff (patch) | |
tree | 0400c05bf84fd267a6fd3ac59c27b626b2f28194 /Doc/Makefile.deps | |
parent | 2ee37ff1919ccf8748c3cdfdb604ee115e051ad4 (diff) | |
download | cpython-410825ac8b0f3427f0b163ca2354c289e21ac0ff.zip cpython-410825ac8b0f3427f0b163ca2354c289e21ac0ff.tar.gz cpython-410825ac8b0f3427f0b163ca2354c289e21ac0ff.tar.bz2 |
Move content input files shared among the documents into a new directory
(commontex/), leaving only style support files in texinputs/. This makes
texinputs/ part of the formatting tools while commontex/ is strictly part
of the actual documentation.
Diffstat (limited to 'Doc/Makefile.deps')
-rw-r--r-- | Doc/Makefile.deps | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Doc/Makefile.deps b/Doc/Makefile.deps index faa2129..b7724da 100644 --- a/Doc/Makefile.deps +++ b/Doc/Makefile.deps @@ -5,9 +5,9 @@ COMMONSTYLES= texinputs/python.sty \ INDEXSTYLES=texinputs/python.ist -COMMONTEX= texinputs/copyright.tex \ - texinputs/license.tex \ - texinputs/boilerplate.tex +COMMONTEX=commontex/copyright.tex \ + commontex/license.tex \ + commontex/boilerplate.tex MANSTYLES= texinputs/fncychap.sty \ texinputs/manual.cls \ @@ -29,8 +29,8 @@ APIFILES= $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) \ api/refcounting.tex \ api/utilities.tex \ api/veryhigh.tex \ - texinputs/typestruct.h \ - texinputs/reportingbugs.tex + commontex/typestruct.h \ + commontex/reportingbugs.tex # These files are generated from those listed above, and are used to # generate the typeset versions of the manuals. The list is defined @@ -47,10 +47,10 @@ ANNOAPIFILES= $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) api/refcounts.dat \ paper-$(PAPER)/refcounting.tex \ paper-$(PAPER)/utilities.tex \ paper-$(PAPER)/veryhigh.tex \ - texinputs/reportingbugs.tex + commontex/reportingbugs.tex DOCFILES= $(HOWTOSTYLES) \ - texinputs/boilerplate.tex \ + commontex/boilerplate.tex \ texinputs/ltxmarkup.sty \ doc/doc.tex @@ -65,8 +65,8 @@ EXTFILES= ext/ext.tex $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) \ ext/noddy3.c \ ext/noddy4.c \ ext/run-func.c \ - texinputs/typestruct.h \ - texinputs/reportingbugs.tex + commontex/typestruct.h \ + commontex/reportingbugs.tex TUTFILES= tut/tut.tex tut/glossary.tex $(MANSTYLES) $(COMMONTEX) @@ -84,7 +84,7 @@ REFFILES= $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) \ # LaTeX source files for the Python Library Reference LIBFILES= $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) \ - texinputs/reportingbugs.tex \ + commontex/reportingbugs.tex \ lib/lib.tex \ lib/asttable.tex \ lib/compiler.tex \ |