| 1 | # LaTeX source dependencies.
|
|---|
| 2 |
|
|---|
| 3 | COMMONSTYLES= texinputs/python.sty \
|
|---|
| 4 | texinputs/pypaper.sty
|
|---|
| 5 |
|
|---|
| 6 | INDEXSTYLES=texinputs/python.ist
|
|---|
| 7 |
|
|---|
| 8 | COMMONTEX=commontex/copyright.tex \
|
|---|
| 9 | commontex/license.tex \
|
|---|
| 10 | commontex/patchlevel.tex \
|
|---|
| 11 | commontex/boilerplate.tex
|
|---|
| 12 |
|
|---|
| 13 | MANSTYLES= texinputs/fncychap.sty \
|
|---|
| 14 | texinputs/manual.cls \
|
|---|
| 15 | $(COMMONSTYLES)
|
|---|
| 16 |
|
|---|
| 17 | HOWTOSTYLES= texinputs/howto.cls \
|
|---|
| 18 | $(COMMONSTYLES)
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 | APIFILES= $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) \
|
|---|
| 22 | api/api.tex \
|
|---|
| 23 | api/abstract.tex \
|
|---|
| 24 | api/concrete.tex \
|
|---|
| 25 | api/exceptions.tex \
|
|---|
| 26 | api/init.tex \
|
|---|
| 27 | api/intro.tex \
|
|---|
| 28 | api/memory.tex \
|
|---|
| 29 | api/newtypes.tex \
|
|---|
| 30 | api/refcounting.tex \
|
|---|
| 31 | api/utilities.tex \
|
|---|
| 32 | api/veryhigh.tex \
|
|---|
| 33 | commontex/typestruct.h \
|
|---|
| 34 | commontex/reportingbugs.tex
|
|---|
| 35 |
|
|---|
| 36 | # These files are generated from those listed above, and are used to
|
|---|
| 37 | # generate the typeset versions of the manuals. The list is defined
|
|---|
| 38 | # here to make it easier to ensure parallelism.
|
|---|
| 39 | ANNOAPIFILES= $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) api/refcounts.dat \
|
|---|
| 40 | paper-$(PAPER)/api.tex \
|
|---|
| 41 | paper-$(PAPER)/abstract.tex \
|
|---|
| 42 | paper-$(PAPER)/concrete.tex \
|
|---|
| 43 | paper-$(PAPER)/exceptions.tex \
|
|---|
| 44 | paper-$(PAPER)/init.tex \
|
|---|
| 45 | paper-$(PAPER)/intro.tex \
|
|---|
| 46 | paper-$(PAPER)/memory.tex \
|
|---|
| 47 | paper-$(PAPER)/newtypes.tex \
|
|---|
| 48 | paper-$(PAPER)/refcounting.tex \
|
|---|
| 49 | paper-$(PAPER)/utilities.tex \
|
|---|
| 50 | paper-$(PAPER)/veryhigh.tex \
|
|---|
| 51 | commontex/reportingbugs.tex
|
|---|
| 52 |
|
|---|
| 53 | DOCFILES= $(HOWTOSTYLES) \
|
|---|
| 54 | commontex/boilerplate.tex \
|
|---|
| 55 | texinputs/ltxmarkup.sty \
|
|---|
| 56 | doc/doc.tex
|
|---|
| 57 |
|
|---|
| 58 | EXTFILES= ext/ext.tex $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) \
|
|---|
| 59 | ext/extending.tex \
|
|---|
| 60 | ext/newtypes.tex \
|
|---|
| 61 | ext/building.tex \
|
|---|
| 62 | ext/windows.tex \
|
|---|
| 63 | ext/embedding.tex \
|
|---|
| 64 | ext/noddy.c \
|
|---|
| 65 | ext/noddy2.c \
|
|---|
| 66 | ext/noddy3.c \
|
|---|
| 67 | ext/noddy4.c \
|
|---|
| 68 | ext/run-func.c \
|
|---|
| 69 | commontex/typestruct.h \
|
|---|
| 70 | commontex/reportingbugs.tex
|
|---|
| 71 |
|
|---|
| 72 | TUTFILES= tut/tut.tex tut/glossary.tex $(MANSTYLES) $(COMMONTEX)
|
|---|
| 73 |
|
|---|
| 74 | # LaTeX source files for the Python Reference Manual
|
|---|
| 75 | REFFILES= $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) \
|
|---|
| 76 | ref/ref.tex \
|
|---|
|
|---|