Fred Drake | 7621fa9 | 2001-03-23 16:23:21 +0000 | [diff] [blame] | 1 | # LaTeX source dependencies. |
Fred Drake | 3d86542 | 1998-08-12 16:16:49 +0000 | [diff] [blame] | 2 | |
Fred Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 3 | COMMONSTYLES= texinputs/python.sty \ |
Fred Drake | 5e06b84 | 2001-07-17 23:07:03 +0000 | [diff] [blame] | 4 | texinputs/pypaper.sty |
| 5 | |
| 6 | INDEXSTYLES=texinputs/python.ist |
Fred Drake | 3d86542 | 1998-08-12 16:16:49 +0000 | [diff] [blame] | 7 | |
Fred Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 8 | COMMONTEX= texinputs/copyright.tex \ |
Fred Drake | aff8837 | 2001-06-22 17:07:02 +0000 | [diff] [blame] | 9 | texinputs/license.tex \ |
Fred Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 10 | texinputs/boilerplate.tex |
Fred Drake | 3d86542 | 1998-08-12 16:16:49 +0000 | [diff] [blame] | 11 | |
Fred Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 12 | MANSTYLES= texinputs/fncychap.sty \ |
| 13 | texinputs/manual.cls \ |
Fred Drake | c6d45af | 1999-10-29 20:49:23 +0000 | [diff] [blame] | 14 | $(COMMONSTYLES) |
Fred Drake | 1508743 | 1999-03-16 16:11:27 +0000 | [diff] [blame] | 15 | |
Fred Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 16 | HOWTOSTYLES= texinputs/howto.cls \ |
Fred Drake | c6d45af | 1999-10-29 20:49:23 +0000 | [diff] [blame] | 17 | $(COMMONSTYLES) |
Fred Drake | 3d86542 | 1998-08-12 16:16:49 +0000 | [diff] [blame] | 18 | |
Fred Drake | c6d45af | 1999-10-29 20:49:23 +0000 | [diff] [blame] | 19 | |
Fred Drake | c65b3d9 | 2001-10-12 19:02:35 +0000 | [diff] [blame] | 20 | APIFILES= $(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 Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 32 | texinputs/reportingbugs.tex |
Fred Drake | c6d45af | 1999-10-29 20:49:23 +0000 | [diff] [blame] | 33 | |
Fred Drake | 520b009 | 2001-10-29 17:40:40 +0000 | [diff] [blame] | 34 | # These files are generated from those listed above, and are used to |
| 35 | # generate the typeset versions of the manuals. The list is defined |
| 36 | # here to make it easier to ensure parallelism. |
| 37 | ANNOAPIFILES= $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) \ |
| 38 | paper-$(PAPER)/api.tex \ |
| 39 | paper-$(PAPER)/abstract.tex \ |
| 40 | paper-$(PAPER)/concrete.tex \ |
| 41 | paper-$(PAPER)/exceptions.tex \ |
| 42 | paper-$(PAPER)/init.tex \ |
| 43 | paper-$(PAPER)/intro.tex \ |
| 44 | paper-$(PAPER)/memory.tex \ |
| 45 | paper-$(PAPER)/newtypes.tex \ |
| 46 | paper-$(PAPER)/refcounting.tex \ |
| 47 | paper-$(PAPER)/utilities.tex \ |
| 48 | paper-$(PAPER)/veryhigh.tex \ |
| 49 | texinputs/reportingbugs.tex |
| 50 | |
Fred Drake | 5e06b84 | 2001-07-17 23:07:03 +0000 | [diff] [blame] | 51 | DOCFILES= $(HOWTOSTYLES) \ |
| 52 | texinputs/boilerplate.tex \ |
Fred Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 53 | texinputs/ltxmarkup.sty \ |
| 54 | doc/doc.tex |
Fred Drake | c6d45af | 1999-10-29 20:49:23 +0000 | [diff] [blame] | 55 | |
Fred Drake | 5e06b84 | 2001-07-17 23:07:03 +0000 | [diff] [blame] | 56 | EXTFILES= ext/ext.tex $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) \ |
Fred Drake | cc8f44b | 2001-08-20 19:30:29 +0000 | [diff] [blame] | 57 | ext/extending.tex \ |
| 58 | ext/newtypes.tex \ |
Fred Drake | e38b7e8 | 2002-03-11 18:42:08 +0000 | [diff] [blame] | 59 | ext/building.tex \ |
Fred Drake | cc8f44b | 2001-08-20 19:30:29 +0000 | [diff] [blame] | 60 | ext/windows.tex \ |
| 61 | ext/embedding.tex \ |
Fred Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 62 | texinputs/reportingbugs.tex |
Fred Drake | c6d45af | 1999-10-29 20:49:23 +0000 | [diff] [blame] | 63 | |
Fred Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 64 | TUTFILES= tut/tut.tex $(MANSTYLES) $(COMMONTEX) |
Fred Drake | 3d86542 | 1998-08-12 16:16:49 +0000 | [diff] [blame] | 65 | |
| 66 | # LaTeX source files for the Python Reference Manual |
Fred Drake | 5e06b84 | 2001-07-17 23:07:03 +0000 | [diff] [blame] | 67 | REFFILES= $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) \ |
Fred Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 68 | ref/ref.tex \ |
| 69 | ref/ref1.tex \ |
| 70 | ref/ref2.tex \ |
| 71 | ref/ref3.tex \ |
| 72 | ref/ref4.tex \ |
| 73 | ref/ref5.tex \ |
| 74 | ref/ref6.tex \ |
| 75 | ref/ref7.tex \ |
Fred Drake | 7621fa9 | 2001-03-23 16:23:21 +0000 | [diff] [blame] | 76 | ref/ref8.tex \ |
| 77 | ref/refa1.tex |
Fred Drake | 3d86542 | 1998-08-12 16:16:49 +0000 | [diff] [blame] | 78 | |
| 79 | # LaTeX source files for the Python Library Reference |
Fred Drake | 5e06b84 | 2001-07-17 23:07:03 +0000 | [diff] [blame] | 80 | LIBFILES= $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) \ |
Fred Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 81 | lib/lib.tex \ |
Fred Drake | d443d8c | 2001-09-27 20:08:20 +0000 | [diff] [blame] | 82 | lib/asttable.tex \ |
| 83 | lib/compiler.tex \ |
Fred Drake | d61e3ea | 2001-07-24 16:20:13 +0000 | [diff] [blame] | 84 | lib/distutils.tex \ |
Fred Drake | d443d8c | 2001-09-27 20:08:20 +0000 | [diff] [blame] | 85 | lib/email.tex \ |
| 86 | lib/emailencoders.tex \ |
| 87 | lib/emailexc.tex \ |
| 88 | lib/emailgenerator.tex \ |
| 89 | lib/emailiter.tex \ |
| 90 | lib/emailmessage.tex \ |
| 91 | lib/emailparser.tex \ |
| 92 | lib/emailutil.tex \ |
Fred Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 93 | texinputs/reportingbugs.tex \ |
| 94 | lib/libintro.tex \ |
| 95 | lib/libobjs.tex \ |
| 96 | lib/libstdtypes.tex \ |
| 97 | lib/libexcs.tex \ |
| 98 | lib/libfuncs.tex \ |
| 99 | lib/libpython.tex \ |
| 100 | lib/libsys.tex \ |
| 101 | lib/libfpectl.tex \ |
| 102 | lib/libgc.tex \ |
| 103 | lib/libweakref.tex \ |
Fred Drake | 7840a9c | 2001-02-28 23:02:20 +0000 | [diff] [blame] | 104 | lib/libinspect.tex \ |
Fred Drake | 4b1b3bf | 2001-12-18 16:32:30 +0000 | [diff] [blame] | 105 | lib/libpydoc.tex \ |
Fred Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 106 | lib/libdifflib.tex \ |
| 107 | lib/libdoctest.tex \ |
Fred Drake | 501d904 | 2001-04-07 05:42:14 +0000 | [diff] [blame] | 108 | lib/libunittest.tex \ |
Fred Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 109 | lib/libtypes.tex \ |
| 110 | lib/libtraceback.tex \ |
| 111 | lib/libpickle.tex \ |
| 112 | lib/libshelve.tex \ |
| 113 | lib/libcopy.tex \ |
| 114 | lib/libmarshal.tex \ |
| 115 | lib/libwarnings.tex \ |
| 116 | lib/libimp.tex \ |
| 117 | lib/libparser.tex \ |
| 118 | lib/libbltin.tex \ |
| 119 | lib/libmain.tex \ |
| 120 | lib/libstrings.tex \ |
| 121 | lib/libstring.tex \ |
| 122 | lib/libcodecs.tex \ |
| 123 | lib/libunicodedata.tex \ |
| 124 | lib/libstruct.tex \ |
| 125 | lib/libmisc.tex \ |
| 126 | lib/libmath.tex \ |
| 127 | lib/librand.tex \ |
| 128 | lib/libwhrandom.tex \ |
| 129 | lib/libarray.tex \ |
| 130 | lib/liballos.tex \ |
| 131 | lib/libos.tex \ |
| 132 | lib/libtime.tex \ |
| 133 | lib/libgetopt.tex \ |
| 134 | lib/libtempfile.tex \ |
| 135 | lib/liberrno.tex \ |
| 136 | lib/libsomeos.tex \ |
| 137 | lib/libsignal.tex \ |
| 138 | lib/libsocket.tex \ |
| 139 | lib/libselect.tex \ |
| 140 | lib/libthread.tex \ |
| 141 | lib/libunix.tex \ |
| 142 | lib/libposix.tex \ |
| 143 | lib/libposixpath.tex \ |
| 144 | lib/libpwd.tex \ |
| 145 | lib/libgrp.tex \ |
| 146 | lib/libcrypt.tex \ |
| 147 | lib/libdbm.tex \ |
| 148 | lib/libgdbm.tex \ |
| 149 | lib/libtermios.tex \ |
| 150 | lib/libfcntl.tex \ |
| 151 | lib/libposixfile.tex \ |
| 152 | lib/libsyslog.tex \ |
| 153 | lib/libpdb.tex \ |
| 154 | lib/libprofile.tex \ |
| 155 | lib/libcgi.tex \ |
Fred Drake | d2a557e | 2001-12-04 22:48:17 +0000 | [diff] [blame] | 156 | lib/libcgitb.tex \ |
Fred Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 157 | lib/liburllib.tex \ |
Fred Drake | 7606e4d | 2001-03-01 19:54:29 +0000 | [diff] [blame] | 158 | lib/liburllib2.tex \ |
Fred Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 159 | lib/libhttplib.tex \ |
| 160 | lib/libftplib.tex \ |
| 161 | lib/libgopherlib.tex \ |
| 162 | lib/libnntplib.tex \ |
| 163 | lib/liburlparse.tex \ |
Fred Drake | 6cba3d0 | 2001-05-30 04:59:50 +0000 | [diff] [blame] | 164 | lib/libhtmlparser.tex \ |
Fred Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 165 | lib/libhtmllib.tex \ |
| 166 | lib/libsgmllib.tex \ |
| 167 | lib/librfc822.tex \ |
| 168 | lib/libmimetools.tex \ |
| 169 | lib/libmimewriter.tex \ |
| 170 | lib/libbinascii.tex \ |
| 171 | lib/libmm.tex \ |
| 172 | lib/libaudioop.tex \ |
| 173 | lib/libimageop.tex \ |
| 174 | lib/libaifc.tex \ |
| 175 | lib/libjpeg.tex \ |
| 176 | lib/librgbimg.tex \ |
| 177 | lib/libcrypto.tex \ |
| 178 | lib/libmd5.tex \ |
| 179 | lib/libsha.tex \ |
| 180 | lib/libmpz.tex \ |
Fred Drake | 1c66f89 | 2001-09-11 16:59:42 +0000 | [diff] [blame] | 181 | lib/libhmac.tex \ |
Fred Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 182 | lib/librotor.tex \ |
| 183 | lib/libstdwin.tex \ |
| 184 | lib/libsgi.tex \ |
| 185 | lib/libal.tex \ |
| 186 | lib/libcd.tex \ |
| 187 | lib/libfl.tex \ |
| 188 | lib/libfm.tex \ |
| 189 | lib/libgl.tex \ |
| 190 | lib/libimgfile.tex \ |
| 191 | lib/libsun.tex \ |
| 192 | lib/libxdrlib.tex \ |
| 193 | lib/libimghdr.tex \ |
| 194 | lib/librestricted.tex \ |
| 195 | lib/librexec.tex \ |
| 196 | lib/libbastion.tex \ |
| 197 | lib/libformatter.tex \ |
| 198 | lib/liboperator.tex \ |
Fred Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 199 | lib/libresource.tex \ |
| 200 | lib/libstat.tex \ |
| 201 | lib/libstringio.tex \ |
| 202 | lib/libtoken.tex \ |
Fred Drake | db2d3d1 | 2002-01-24 16:38:08 +0000 | [diff] [blame] | 203 | lib/libkeyword.tex \ |
Fred Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 204 | lib/libundoc.tex \ |
| 205 | lib/libmailcap.tex \ |
| 206 | lib/libglob.tex \ |
| 207 | lib/libuser.tex \ |
| 208 | lib/libanydbm.tex \ |
| 209 | lib/libbsddb.tex \ |
| 210 | lib/libdbhash.tex \ |
| 211 | lib/librandom.tex \ |
| 212 | lib/libsite.tex \ |
| 213 | lib/libwhichdb.tex \ |
| 214 | lib/libbase64.tex \ |
| 215 | lib/libfnmatch.tex \ |
| 216 | lib/libquopri.tex \ |
| 217 | lib/libzlib.tex \ |
| 218 | lib/libsocksvr.tex \ |
| 219 | lib/libmailbox.tex \ |
| 220 | lib/libcommands.tex \ |
| 221 | lib/libcmath.tex \ |
| 222 | lib/libgzip.tex \ |
| 223 | lib/libzipfile.tex \ |
| 224 | lib/libpprint.tex \ |
| 225 | lib/libcode.tex \ |
| 226 | lib/libmimify.tex \ |
| 227 | lib/libre.tex \ |
| 228 | lib/libuserdict.tex \ |
| 229 | lib/libdis.tex \ |
| 230 | lib/libxmllib.tex \ |
Fred Drake | 3d97e35 | 2001-07-12 23:40:13 +0000 | [diff] [blame] | 231 | lib/libxmlrpclib.tex \ |
Fred Drake | 06c61b1 | 2001-09-28 22:02:49 +0000 | [diff] [blame] | 232 | lib/libsimplexmlrpc.tex \ |
Fred Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 233 | lib/libpyexpat.tex \ |
| 234 | lib/xmldom.tex \ |
| 235 | lib/xmldomminidom.tex \ |
| 236 | lib/xmldompulldom.tex \ |
| 237 | lib/xmlsax.tex \ |
| 238 | lib/xmlsaxhandler.tex \ |
| 239 | lib/xmlsaxutils.tex \ |
| 240 | lib/xmlsaxreader.tex \ |
| 241 | lib/libqueue.tex \ |
| 242 | lib/liblocale.tex \ |
| 243 | lib/libgettext.tex \ |
| 244 | lib/libbasehttp.tex \ |
| 245 | lib/libcookie.tex \ |
| 246 | lib/libcopyreg.tex \ |
| 247 | lib/libsymbol.tex \ |
| 248 | lib/libbinhex.tex \ |
| 249 | lib/libuu.tex \ |
| 250 | lib/libsunaudio.tex \ |
| 251 | lib/libfileinput.tex \ |
| 252 | lib/libxreadlines.tex \ |
| 253 | lib/libimaplib.tex \ |
| 254 | lib/libpoplib.tex \ |
| 255 | lib/libcalendar.tex \ |
| 256 | lib/libpopen2.tex \ |
| 257 | lib/libbisect.tex \ |
| 258 | lib/libmimetypes.tex \ |
| 259 | lib/libsmtplib.tex \ |
| 260 | lib/libcmd.tex \ |
| 261 | lib/libmultifile.tex \ |
| 262 | lib/libthreading.tex \ |
| 263 | lib/libwebbrowser.tex \ |
| 264 | lib/internet.tex \ |
| 265 | lib/netdata.tex \ |
| 266 | lib/markup.tex \ |
| 267 | lib/language.tex \ |
| 268 | lib/libpycompile.tex \ |
| 269 | lib/libcompileall.tex \ |
| 270 | lib/libshlex.tex \ |
| 271 | lib/libnetrc.tex \ |
| 272 | lib/librobotparser.tex \ |
| 273 | lib/libgetpass.tex \ |
| 274 | lib/libshutil.tex \ |
| 275 | lib/librepr.tex \ |
| 276 | lib/libmsvcrt.tex \ |
| 277 | lib/libwinreg.tex \ |
| 278 | lib/libwinsound.tex \ |
| 279 | lib/windows.tex \ |
| 280 | lib/libpyclbr.tex \ |
| 281 | lib/libtokenize.tex \ |
| 282 | lib/libtabnanny.tex \ |
| 283 | lib/libmhlib.tex \ |
| 284 | lib/libtelnetlib.tex \ |
| 285 | lib/libcolorsys.tex \ |
| 286 | lib/libfpformat.tex \ |
| 287 | lib/libcgihttp.tex \ |
| 288 | lib/libsimplehttp.tex \ |
| 289 | lib/liblinecache.tex \ |
| 290 | lib/libnew.tex \ |
| 291 | lib/libdircache.tex \ |
| 292 | lib/libfilecmp.tex \ |
| 293 | lib/libstatcache.tex \ |
| 294 | lib/libsunau.tex \ |
| 295 | lib/libwave.tex \ |
| 296 | lib/libchunk.tex \ |
| 297 | lib/libcodeop.tex \ |
| 298 | lib/libcurses.tex \ |
Fred Drake | 659f377 | 2001-03-29 22:23:19 +0000 | [diff] [blame] | 299 | lib/libcursespanel.tex \ |
Fred Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 300 | lib/libascii.tex \ |
| 301 | lib/libdl.tex \ |
| 302 | lib/libmutex.tex \ |
| 303 | lib/libnis.tex \ |
| 304 | lib/libpipes.tex \ |
| 305 | lib/libpty.tex \ |
| 306 | lib/libreadline.tex \ |
| 307 | lib/librlcompleter.tex \ |
| 308 | lib/libsched.tex \ |
| 309 | lib/libstatvfs.tex \ |
| 310 | lib/libtty.tex \ |
| 311 | lib/libasyncore.tex \ |
| 312 | lib/libatexit.tex \ |
| 313 | lib/libmmap.tex \ |
Fred Drake | 5355686 | 2001-11-15 17:25:29 +0000 | [diff] [blame] | 314 | lib/tkinter.tex \ |
| 315 | lib/libturtle.tex \ |
Fred Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 316 | lib/libcfgparser.tex |
Fred Drake | 3d86542 | 1998-08-12 16:16:49 +0000 | [diff] [blame] | 317 | |
| 318 | # LaTeX source files for Macintosh Library Modules. |
Fred Drake | 5e06b84 | 2001-07-17 23:07:03 +0000 | [diff] [blame] | 319 | MACFILES= $(HOWTOSTYLES) $(INDEXSTYLES) $(COMMONTEX) \ |
Fred Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 320 | mac/mac.tex \ |
| 321 | mac/using.tex \ |
| 322 | mac/toolbox.tex \ |
| 323 | mac/undoc.tex \ |
Fred Drake | 3de3369 | 2001-04-13 04:50:01 +0000 | [diff] [blame] | 324 | mac/libcolorpicker.tex \ |
Fred Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 325 | mac/libmac.tex \ |
| 326 | mac/libaepack.tex \ |
| 327 | mac/libaetypes.tex \ |
| 328 | mac/libctb.tex \ |
Fred Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 329 | mac/libmacfs.tex \ |
| 330 | mac/libmacos.tex \ |
| 331 | mac/libmacostools.tex \ |
Fred Drake | f6bfe8e | 2001-02-19 19:19:26 +0000 | [diff] [blame] | 332 | mac/libmacspeech.tex \ |
| 333 | mac/libmacui.tex \ |
| 334 | mac/libmacic.tex \ |
| 335 | mac/libframework.tex \ |
Fred Drake | 02d2212 | 2002-03-08 03:18:19 +0000 | [diff] [blame] | 336 | mac/libminiae.tex \ |
| 337 | mac/libscrap.tex |
Greg Ward | 0862f80 | 2000-04-28 16:53:36 +0000 | [diff] [blame] | 338 | |
Fred Drake | 5e06b84 | 2001-07-17 23:07:03 +0000 | [diff] [blame] | 339 | INSTFILES = $(HOWTOSTYLES) inst/inst.tex |
Greg Ward | 0862f80 | 2000-04-28 16:53:36 +0000 | [diff] [blame] | 340 | |
Fred Drake | 388f37e | 2001-08-02 15:13:58 +0000 | [diff] [blame] | 341 | DISTFILES = $(HOWTOSTYLES) \ |
| 342 | dist/dist.tex \ |
| 343 | dist/sysconfig.tex |