blob: f1673c14b2bd8a43134ff929034334e929bdb226 [file] [log] [blame]
Fred Drake7621fa92001-03-23 16:23:21 +00001# LaTeX source dependencies.
Fred Drake3d865421998-08-12 16:16:49 +00002
Fred Drakef6bfe8e2001-02-19 19:19:26 +00003COMMONSTYLES= texinputs/python.sty \
Fred Drake5e06b842001-07-17 23:07:03 +00004 texinputs/pypaper.sty
5
6INDEXSTYLES=texinputs/python.ist
Fred Drake3d865421998-08-12 16:16:49 +00007
Fred Drakef6bfe8e2001-02-19 19:19:26 +00008COMMONTEX= texinputs/copyright.tex \
Fred Drakeaff88372001-06-22 17:07:02 +00009 texinputs/license.tex \
Fred Drakef6bfe8e2001-02-19 19:19:26 +000010 texinputs/boilerplate.tex
Fred Drake3d865421998-08-12 16:16:49 +000011
Fred Drakef6bfe8e2001-02-19 19:19:26 +000012MANSTYLES= texinputs/fncychap.sty \
13 texinputs/manual.cls \
Fred Drakec6d45af1999-10-29 20:49:23 +000014 $(COMMONSTYLES)
Fred Drake15087431999-03-16 16:11:27 +000015
Fred Drakef6bfe8e2001-02-19 19:19:26 +000016HOWTOSTYLES= texinputs/howto.cls \
Fred Drakec6d45af1999-10-29 20:49:23 +000017 $(COMMONSTYLES)
Fred Drake3d865421998-08-12 16:16:49 +000018
Fred Drakec6d45af1999-10-29 20:49:23 +000019
Fred Drakec65b3d92001-10-12 19:02:35 +000020APIFILES= $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) \
21 api/api.tex \
22 api/abstract.tex \
23 api/concrete.tex \
24 api/exceptions.tex \
25 api/init.tex \
26 api/intro.tex \
27 api/memory.tex \
28 api/newtypes.tex \
29 api/refcounting.tex \
30 api/utilities.tex \
31 api/veryhigh.tex \
Fred Drake0fdc8262002-04-16 18:48:25 +000032 texinputs/typestruct.h \
Fred Drakef6bfe8e2001-02-19 19:19:26 +000033 texinputs/reportingbugs.tex
Fred Drakec6d45af1999-10-29 20:49:23 +000034
Fred Drake520b0092001-10-29 17:40:40 +000035# These files are generated from those listed above, and are used to
36# generate the typeset versions of the manuals. The list is defined
37# here to make it easier to ensure parallelism.
Fred Drake0fdc8262002-04-16 18:48:25 +000038ANNOAPIFILES= $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) api/refcounts.dat \
Fred Drake520b0092001-10-29 17:40:40 +000039 paper-$(PAPER)/api.tex \
40 paper-$(PAPER)/abstract.tex \
41 paper-$(PAPER)/concrete.tex \
42 paper-$(PAPER)/exceptions.tex \
43 paper-$(PAPER)/init.tex \
44 paper-$(PAPER)/intro.tex \
45 paper-$(PAPER)/memory.tex \
46 paper-$(PAPER)/newtypes.tex \
47 paper-$(PAPER)/refcounting.tex \
48 paper-$(PAPER)/utilities.tex \
49 paper-$(PAPER)/veryhigh.tex \
50 texinputs/reportingbugs.tex
51
Fred Drake5e06b842001-07-17 23:07:03 +000052DOCFILES= $(HOWTOSTYLES) \
53 texinputs/boilerplate.tex \
Fred Drakef6bfe8e2001-02-19 19:19:26 +000054 texinputs/ltxmarkup.sty \
55 doc/doc.tex
Fred Drakec6d45af1999-10-29 20:49:23 +000056
Fred Drake5e06b842001-07-17 23:07:03 +000057EXTFILES= ext/ext.tex $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) \
Fred Drakecc8f44b2001-08-20 19:30:29 +000058 ext/extending.tex \
59 ext/newtypes.tex \
Fred Drakee38b7e82002-03-11 18:42:08 +000060 ext/building.tex \
Fred Drakecc8f44b2001-08-20 19:30:29 +000061 ext/windows.tex \
62 ext/embedding.tex \
Fred Drake0fdc8262002-04-16 18:48:25 +000063 ext/cycle-gc.c \
64 ext/noddy.c \
65 ext/run-func.c \
66 texinputs/typestruct.h \
Fred Drakef6bfe8e2001-02-19 19:19:26 +000067 texinputs/reportingbugs.tex
Fred Drakec6d45af1999-10-29 20:49:23 +000068
Fred Drakef6bfe8e2001-02-19 19:19:26 +000069TUTFILES= tut/tut.tex $(MANSTYLES) $(COMMONTEX)
Fred Drake3d865421998-08-12 16:16:49 +000070
71# LaTeX source files for the Python Reference Manual
Fred Drake5e06b842001-07-17 23:07:03 +000072REFFILES= $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) \
Fred Drakef6bfe8e2001-02-19 19:19:26 +000073 ref/ref.tex \
74 ref/ref1.tex \
75 ref/ref2.tex \
76 ref/ref3.tex \
77 ref/ref4.tex \
78 ref/ref5.tex \
79 ref/ref6.tex \
80 ref/ref7.tex \
Fred Drake7621fa92001-03-23 16:23:21 +000081 ref/ref8.tex \
82 ref/refa1.tex
Fred Drake3d865421998-08-12 16:16:49 +000083
84# LaTeX source files for the Python Library Reference
Fred Drake5e06b842001-07-17 23:07:03 +000085LIBFILES= $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) \
Fred Draked5260112002-08-23 15:38:02 +000086 texinputs/reportingbugs.tex \
Fred Drakef6bfe8e2001-02-19 19:19:26 +000087 lib/lib.tex \
Fred Draked443d8c2001-09-27 20:08:20 +000088 lib/asttable.tex \
89 lib/compiler.tex \
Fred Draked61e3ea2001-07-24 16:20:13 +000090 lib/distutils.tex \
Fred Draked443d8c2001-09-27 20:08:20 +000091 lib/email.tex \
92 lib/emailencoders.tex \
93 lib/emailexc.tex \
94 lib/emailgenerator.tex \
95 lib/emailiter.tex \
96 lib/emailmessage.tex \
97 lib/emailparser.tex \
98 lib/emailutil.tex \
Fred Drakef6bfe8e2001-02-19 19:19:26 +000099 lib/libintro.tex \
100 lib/libobjs.tex \
101 lib/libstdtypes.tex \
102 lib/libexcs.tex \
103 lib/libfuncs.tex \
104 lib/libpython.tex \
105 lib/libsys.tex \
106 lib/libfpectl.tex \
107 lib/libgc.tex \
Fred Draked5260112002-08-23 15:38:02 +0000108 lib/libsets.tex \
Fred Drakef6bfe8e2001-02-19 19:19:26 +0000109 lib/libweakref.tex \
Fred Drake7840a9c2001-02-28 23:02:20 +0000110 lib/libinspect.tex \
Fred Drake4b1b3bf2001-12-18 16:32:30 +0000111 lib/libpydoc.tex \
Fred Drakef6bfe8e2001-02-19 19:19:26 +0000112 lib/libdifflib.tex \
113 lib/libdoctest.tex \
Fred Drake501d9042001-04-07 05:42:14 +0000114 lib/libunittest.tex \
Fred Drakef6bfe8e2001-02-19 19:19:26 +0000115 lib/libtypes.tex \
116 lib/libtraceback.tex \
117 lib/libpickle.tex \
118 lib/libshelve.tex \
119 lib/libcopy.tex \
120 lib/libmarshal.tex \
121 lib/libwarnings.tex \
122 lib/libimp.tex \
123 lib/libparser.tex \
124 lib/libbltin.tex \
125 lib/libmain.tex \
126 lib/libstrings.tex \
127 lib/libstring.tex \
Greg Wardae64f3ad2002-06-29 02:38:50 +0000128 lib/libtextwrap.tex \
Fred Drakef6bfe8e2001-02-19 19:19:26 +0000129 lib/libcodecs.tex \
130 lib/libunicodedata.tex \
131 lib/libstruct.tex \
132 lib/libmisc.tex \
133 lib/libmath.tex \
134 lib/librand.tex \
135 lib/libwhrandom.tex \
136 lib/libarray.tex \
137 lib/liballos.tex \
138 lib/libos.tex \
139 lib/libtime.tex \
140 lib/libgetopt.tex \
141 lib/libtempfile.tex \
142 lib/liberrno.tex \
143 lib/libsomeos.tex \
144 lib/libsignal.tex \
145 lib/libsocket.tex \
146 lib/libselect.tex \
147 lib/libthread.tex \
148 lib/libunix.tex \
149 lib/libposix.tex \
150 lib/libposixpath.tex \
151 lib/libpwd.tex \
152 lib/libgrp.tex \
153 lib/libcrypt.tex \
154 lib/libdbm.tex \
155 lib/libgdbm.tex \
156 lib/libtermios.tex \
157 lib/libfcntl.tex \
158 lib/libposixfile.tex \
159 lib/libsyslog.tex \
160 lib/libpdb.tex \
161 lib/libprofile.tex \
162 lib/libcgi.tex \
Fred Draked2a557e2001-12-04 22:48:17 +0000163 lib/libcgitb.tex \
Fred Drakef6bfe8e2001-02-19 19:19:26 +0000164 lib/liburllib.tex \
Fred Drake7606e4d2001-03-01 19:54:29 +0000165 lib/liburllib2.tex \
Fred Drakef6bfe8e2001-02-19 19:19:26 +0000166 lib/libhttplib.tex \
167 lib/libftplib.tex \
168 lib/libgopherlib.tex \
169 lib/libnntplib.tex \
170 lib/liburlparse.tex \
Fred Drake6cba3d02001-05-30 04:59:50 +0000171 lib/libhtmlparser.tex \
Fred Drakef6bfe8e2001-02-19 19:19:26 +0000172 lib/libhtmllib.tex \
173 lib/libsgmllib.tex \
174 lib/librfc822.tex \
175 lib/libmimetools.tex \
176 lib/libmimewriter.tex \
177 lib/libbinascii.tex \
178 lib/libmm.tex \
179 lib/libaudioop.tex \
180 lib/libimageop.tex \
181 lib/libaifc.tex \
182 lib/libjpeg.tex \
183 lib/librgbimg.tex \
184 lib/libcrypto.tex \
185 lib/libmd5.tex \
186 lib/libsha.tex \
187 lib/libmpz.tex \
Fred Drake1c66f892001-09-11 16:59:42 +0000188 lib/libhmac.tex \
Fred Drakef6bfe8e2001-02-19 19:19:26 +0000189 lib/librotor.tex \
190 lib/libstdwin.tex \
191 lib/libsgi.tex \
192 lib/libal.tex \
193 lib/libcd.tex \
194 lib/libfl.tex \
195 lib/libfm.tex \
196 lib/libgl.tex \
197 lib/libimgfile.tex \
198 lib/libsun.tex \
199 lib/libxdrlib.tex \
200 lib/libimghdr.tex \
201 lib/librestricted.tex \
202 lib/librexec.tex \
203 lib/libbastion.tex \
204 lib/libformatter.tex \
205 lib/liboperator.tex \
Fred Drakef6bfe8e2001-02-19 19:19:26 +0000206 lib/libresource.tex \
207 lib/libstat.tex \
208 lib/libstringio.tex \
209 lib/libtoken.tex \
Fred Drakedb2d3d12002-01-24 16:38:08 +0000210 lib/libkeyword.tex \
Fred Drakef6bfe8e2001-02-19 19:19:26 +0000211 lib/libundoc.tex \
212 lib/libmailcap.tex \
213 lib/libglob.tex \
214 lib/libuser.tex \
215 lib/libanydbm.tex \
216 lib/libbsddb.tex \
217 lib/libdbhash.tex \
218 lib/librandom.tex \
219 lib/libsite.tex \
220 lib/libwhichdb.tex \
221 lib/libbase64.tex \
222 lib/libfnmatch.tex \
223 lib/libquopri.tex \
224 lib/libzlib.tex \
225 lib/libsocksvr.tex \
226 lib/libmailbox.tex \
227 lib/libcommands.tex \
228 lib/libcmath.tex \
229 lib/libgzip.tex \
Gustavo Niemeyerf8ca8362002-11-05 16:50:05 +0000230 lib/libbz2.tex \
Fred Drakef6bfe8e2001-02-19 19:19:26 +0000231 lib/libzipfile.tex \
232 lib/libpprint.tex \
233 lib/libcode.tex \
234 lib/libmimify.tex \
235 lib/libre.tex \
236 lib/libuserdict.tex \
237 lib/libdis.tex \
238 lib/libxmllib.tex \
Fred Drake3d97e352001-07-12 23:40:13 +0000239 lib/libxmlrpclib.tex \
Fred Drake06c61b12001-09-28 22:02:49 +0000240 lib/libsimplexmlrpc.tex \
Fred Drakef6bfe8e2001-02-19 19:19:26 +0000241 lib/libpyexpat.tex \
242 lib/xmldom.tex \
243 lib/xmldomminidom.tex \
244 lib/xmldompulldom.tex \
245 lib/xmlsax.tex \
246 lib/xmlsaxhandler.tex \
247 lib/xmlsaxutils.tex \
248 lib/xmlsaxreader.tex \
249 lib/libqueue.tex \
250 lib/liblocale.tex \
251 lib/libgettext.tex \
252 lib/libbasehttp.tex \
253 lib/libcookie.tex \
254 lib/libcopyreg.tex \
255 lib/libsymbol.tex \
256 lib/libbinhex.tex \
257 lib/libuu.tex \
258 lib/libsunaudio.tex \
259 lib/libfileinput.tex \
260 lib/libxreadlines.tex \
261 lib/libimaplib.tex \
262 lib/libpoplib.tex \
263 lib/libcalendar.tex \
264 lib/libpopen2.tex \
265 lib/libbisect.tex \
Fred Drakead09bbf2002-08-02 18:20:34 +0000266 lib/libheapq.tex \
Fred Drakef6bfe8e2001-02-19 19:19:26 +0000267 lib/libmimetypes.tex \
268 lib/libsmtplib.tex \
269 lib/libcmd.tex \
270 lib/libmultifile.tex \
271 lib/libthreading.tex \
272 lib/libwebbrowser.tex \
273 lib/internet.tex \
274 lib/netdata.tex \
275 lib/markup.tex \
276 lib/language.tex \
277 lib/libpycompile.tex \
278 lib/libcompileall.tex \
279 lib/libshlex.tex \
280 lib/libnetrc.tex \
281 lib/librobotparser.tex \
282 lib/libgetpass.tex \
283 lib/libshutil.tex \
284 lib/librepr.tex \
285 lib/libmsvcrt.tex \
286 lib/libwinreg.tex \
287 lib/libwinsound.tex \
288 lib/windows.tex \
289 lib/libpyclbr.tex \
290 lib/libtokenize.tex \
291 lib/libtabnanny.tex \
292 lib/libmhlib.tex \
293 lib/libtelnetlib.tex \
294 lib/libcolorsys.tex \
295 lib/libfpformat.tex \
296 lib/libcgihttp.tex \
297 lib/libsimplehttp.tex \
298 lib/liblinecache.tex \
299 lib/libnew.tex \
300 lib/libdircache.tex \
301 lib/libfilecmp.tex \
302 lib/libstatcache.tex \
303 lib/libsunau.tex \
304 lib/libwave.tex \
305 lib/libchunk.tex \
306 lib/libcodeop.tex \
307 lib/libcurses.tex \
Fred Drake659f3772001-03-29 22:23:19 +0000308 lib/libcursespanel.tex \
Fred Drakef6bfe8e2001-02-19 19:19:26 +0000309 lib/libascii.tex \
310 lib/libdl.tex \
311 lib/libmutex.tex \
312 lib/libnis.tex \
313 lib/libpipes.tex \
314 lib/libpty.tex \
315 lib/libreadline.tex \
316 lib/librlcompleter.tex \
317 lib/libsched.tex \
318 lib/libstatvfs.tex \
319 lib/libtty.tex \
320 lib/libasyncore.tex \
Steve Holdenb1af86a2002-07-03 18:36:39 +0000321 lib/libasynchat.tex \
Fred Drakef6bfe8e2001-02-19 19:19:26 +0000322 lib/libatexit.tex \
323 lib/libmmap.tex \
Fred Drake53556862001-11-15 17:25:29 +0000324 lib/tkinter.tex \
325 lib/libturtle.tex \
Fred Drakef6bfe8e2001-02-19 19:19:26 +0000326 lib/libcfgparser.tex
Fred Drake3d865421998-08-12 16:16:49 +0000327
328# LaTeX source files for Macintosh Library Modules.
Fred Drake5e06b842001-07-17 23:07:03 +0000329MACFILES= $(HOWTOSTYLES) $(INDEXSTYLES) $(COMMONTEX) \
Fred Drakef6bfe8e2001-02-19 19:19:26 +0000330 mac/mac.tex \
331 mac/using.tex \
332 mac/toolbox.tex \
333 mac/undoc.tex \
Fred Drake3de33692001-04-13 04:50:01 +0000334 mac/libcolorpicker.tex \
Fred Drakef6bfe8e2001-02-19 19:19:26 +0000335 mac/libmac.tex \
336 mac/libaepack.tex \
337 mac/libaetypes.tex \
338 mac/libctb.tex \
Fred Drakef6bfe8e2001-02-19 19:19:26 +0000339 mac/libmacfs.tex \
340 mac/libmacos.tex \
341 mac/libmacostools.tex \
Fred Drakef6bfe8e2001-02-19 19:19:26 +0000342 mac/libmacspeech.tex \
343 mac/libmacui.tex \
344 mac/libmacic.tex \
345 mac/libframework.tex \
Fred Drake02d22122002-03-08 03:18:19 +0000346 mac/libminiae.tex \
347 mac/libscrap.tex
Greg Ward0862f802000-04-28 16:53:36 +0000348
Fred Drake5e06b842001-07-17 23:07:03 +0000349INSTFILES = $(HOWTOSTYLES) inst/inst.tex
Greg Ward0862f802000-04-28 16:53:36 +0000350
Fred Drake388f37e2001-08-02 15:13:58 +0000351DISTFILES = $(HOWTOSTYLES) \
352 dist/dist.tex \
353 dist/sysconfig.tex