Makefile.deps 6.55 KB
Newer Older
1 2 3
# LaTeX source dependencies; note that the files are named relative to a
# child directory and not the directory this file is located in.

4 5 6
COMMONSTYLES= ../texinputs/python.sty \
	../texinputs/pypaper.sty \
	../texinputs/python.ist
7

8 9
COMMONTEX= ../texinputs/copyright.tex \
	../texinputs/boilerplate.tex
10

11 12 13
MANSTYLES= ../texinputs/fncychap.sty \
	../texinputs/manual.cls \
	$(COMMONSTYLES)
14

15 16
HOWTOSTYLES= ../texinputs/howto.cls \
	$(COMMONSTYLES)
17

18

19 20
APIFILES= ../api/api.tex $(MANSTYLES) $(COMMONTEX) \
	../texinputs/reportingbugs.tex
21 22 23 24 25

DOCFILES= $(HOWTOSTYLES) $(COMMONTEX) \
	../texinputs/ltxmarkup.sty \
	../doc/doc.tex

26 27
EXTFILES= ../ext/ext.tex $(MANSTYLES) $(COMMONTEX) \
	../texinputs/reportingbugs.tex
28 29

TUTFILES= ../tut/tut.tex $(MANSTYLES) $(COMMONTEX)
30 31

# LaTeX source files for the Python Reference Manual
32 33
REFFILES= $(MANSTYLES) $(COMMONTEX) \
	../ref/ref.tex \
34 35 36 37 38 39 40 41 42 43
	../ref/ref1.tex \
	../ref/ref2.tex \
	../ref/ref3.tex \
	../ref/ref4.tex \
	../ref/ref5.tex \
	../ref/ref6.tex \
	../ref/ref7.tex \
	../ref/ref8.tex

# LaTeX source files for the Python Library Reference
44 45
LIBFILES= $(MANSTYLES) $(COMMONTEX) \
	../lib/lib.tex \
46
	../texinputs/reportingbugs.tex \
47 48 49 50 51 52 53
	../lib/libintro.tex \
	../lib/libobjs.tex \
	../lib/libstdtypes.tex \
	../lib/libexcs.tex \
	../lib/libfuncs.tex \
	../lib/libpython.tex \
	../lib/libsys.tex \
54
	../lib/libgc.tex \
55 56 57 58 59 60
	../lib/libtypes.tex \
	../lib/libtraceback.tex \
	../lib/libpickle.tex \
	../lib/libshelve.tex \
	../lib/libcopy.tex \
	../lib/libmarshal.tex \
61
	../lib/libwarnings.tex \
62 63 64 65 66 67
	../lib/libimp.tex \
	../lib/libparser.tex \
	../lib/libbltin.tex \
	../lib/libmain.tex \
	../lib/libstrings.tex \
	../lib/libstring.tex \
Fred Drake's avatar
Fred Drake committed
68
	../lib/libcodecs.tex \
69
	../lib/libunicodedata.tex \
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
	../lib/libstruct.tex \
	../lib/libmisc.tex \
	../lib/libmath.tex \
	../lib/librand.tex \
	../lib/libwhrandom.tex \
	../lib/libarray.tex \
	../lib/liballos.tex \
	../lib/libos.tex \
	../lib/libtime.tex \
	../lib/libgetopt.tex \
	../lib/libtempfile.tex \
	../lib/liberrno.tex \
	../lib/libsomeos.tex \
	../lib/libsignal.tex \
	../lib/libsocket.tex \
	../lib/libselect.tex \
	../lib/libthread.tex \
	../lib/libunix.tex \
	../lib/libposix.tex \
	../lib/libposixpath.tex \
	../lib/libpwd.tex \
	../lib/libgrp.tex \
	../lib/libcrypt.tex \
	../lib/libdbm.tex \
	../lib/libgdbm.tex \
	../lib/libtermios.tex \
	../lib/libfcntl.tex \
	../lib/libposixfile.tex \
	../lib/libsyslog.tex \
	../lib/libpdb.tex \
	../lib/libprofile.tex \
	../lib/libcgi.tex \
	../lib/liburllib.tex \
	../lib/libhttplib.tex \
	../lib/libftplib.tex \
	../lib/libgopherlib.tex \
	../lib/libnntplib.tex \
	../lib/liburlparse.tex \
	../lib/libhtmllib.tex \
	../lib/libsgmllib.tex \
	../lib/librfc822.tex \
	../lib/libmimetools.tex \
112
	../lib/libmimewriter.tex \
113 114 115 116 117 118 119 120 121
	../lib/libbinascii.tex \
	../lib/libmm.tex \
	../lib/libaudioop.tex \
	../lib/libimageop.tex \
	../lib/libaifc.tex \
	../lib/libjpeg.tex \
	../lib/librgbimg.tex \
	../lib/libcrypto.tex \
	../lib/libmd5.tex \
122
	../lib/libsha.tex \
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
	../lib/libmpz.tex \
	../lib/librotor.tex \
	../lib/libstdwin.tex \
	../lib/libsgi.tex \
	../lib/libal.tex \
	../lib/libcd.tex \
	../lib/libfl.tex \
	../lib/libfm.tex \
	../lib/libgl.tex \
	../lib/libimgfile.tex \
	../lib/libsun.tex \
	../lib/libxdrlib.tex \
	../lib/libimghdr.tex \
	../lib/librestricted.tex \
	../lib/librexec.tex \
	../lib/libbastion.tex \
	../lib/libformatter.tex \
	../lib/liboperator.tex \
	../lib/libsoundex.tex \
	../lib/libresource.tex \
	../lib/libstat.tex \
	../lib/libstringio.tex \
	../lib/libtoken.tex \
	../lib/libundoc.tex \
	../lib/libmailcap.tex \
	../lib/libglob.tex \
	../lib/libuser.tex \
	../lib/libanydbm.tex \
Fred Drake's avatar
Fred Drake committed
151
	../lib/libbsddb.tex \
Fred Drake's avatar
Fred Drake committed
152
	../lib/libdbhash.tex \
153 154 155 156 157 158 159 160 161 162 163 164
	../lib/librandom.tex \
	../lib/libsite.tex \
	../lib/libwhichdb.tex \
	../lib/libbase64.tex \
	../lib/libfnmatch.tex \
	../lib/libquopri.tex \
	../lib/libzlib.tex \
	../lib/libsocksvr.tex \
	../lib/libmailbox.tex \
	../lib/libcommands.tex \
	../lib/libcmath.tex \
	../lib/libgzip.tex \
165
	../lib/libzipfile.tex \
166 167 168 169 170 171 172
	../lib/libpprint.tex \
	../lib/libcode.tex \
	../lib/libmimify.tex \
	../lib/libre.tex \
	../lib/libuserdict.tex \
	../lib/libdis.tex \
	../lib/libxmllib.tex \
173
	../lib/libpyexpat.tex \
174
	../lib/xmldom.tex \
175
	../lib/xmldomminidom.tex \
176
	../lib/xmldompulldom.tex \
177
	../lib/xmlsax.tex \
178 179 180
	../lib/xmlsaxhandler.tex \
	../lib/xmlsaxutils.tex \
	../lib/xmlsaxreader.tex \
181 182
	../lib/libqueue.tex \
	../lib/liblocale.tex \
Barry Warsaw's avatar
Barry Warsaw committed
183
	../lib/libgettext.tex \
184
	../lib/libbasehttp.tex \
Fred Drake's avatar
Fred Drake committed
185
	../lib/libcookie.tex \
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
	../lib/libcopyreg.tex \
	../lib/libsymbol.tex \
	../lib/libbinhex.tex \
	../lib/libuu.tex \
	../lib/libsunaudio.tex \
	../lib/libfileinput.tex \
	../lib/libimaplib.tex \
	../lib/libpoplib.tex \
	../lib/libcalendar.tex \
	../lib/libpopen2.tex \
	../lib/libbisect.tex \
	../lib/libmimetypes.tex \
	../lib/libsmtplib.tex \
	../lib/libcmd.tex \
	../lib/libmultifile.tex \
	../lib/libthreading.tex \
202
	../lib/libwebbrowser.tex \
203 204
	../lib/internet.tex \
	../lib/netdata.tex \
205
	../lib/markup.tex \
206
	../lib/language.tex \
207
	../lib/libpycompile.tex \
208 209
	../lib/libcompileall.tex \
	../lib/libshlex.tex \
210
	../lib/libnetrc.tex \
211
	../lib/librobotparser.tex \
Fred Drake's avatar
Fred Drake committed
212
	../lib/libgetpass.tex \
213 214
	../lib/libshutil.tex \
	../lib/librepr.tex \
215
	../lib/libmsvcrt.tex \
216
	../lib/libwinreg.tex \
217 218
	../lib/libwinsound.tex \
	../lib/windows.tex \
Fred Drake's avatar
Fred Drake committed
219 220
	../lib/libpyclbr.tex \
	../lib/libtokenize.tex \
221
	../lib/libtabnanny.tex \
222 223
	../lib/libmhlib.tex \
	../lib/libtelnetlib.tex \
Fred Drake's avatar
Fred Drake committed
224
	../lib/libcolorsys.tex \
225
	../lib/libfpformat.tex \
226 227 228
	../lib/libcgihttp.tex \
	../lib/libsimplehttp.tex \
	../lib/liblinecache.tex \
229 230
	../lib/libnew.tex \
	../lib/libdircache.tex \
231
	../lib/libfilecmp.tex \
232
	../lib/libstatcache.tex \
Fred Drake's avatar
Fred Drake committed
233
	../lib/libsunau.tex \
234
	../lib/libwave.tex \
Fred Drake's avatar
Fred Drake committed
235
	../lib/libchunk.tex \
Fred Drake's avatar
Fred Drake committed
236
	../lib/libcodeop.tex \
237
	../lib/libcurses.tex \
238
	../lib/libascii.tex \
Fred Drake's avatar
Fred Drake committed
239
	../lib/libdl.tex \
240 241
	../lib/libmutex.tex \
	../lib/libnis.tex \
242
	../lib/libpipes.tex \
Fred Drake's avatar
Fred Drake committed
243
	../lib/libpty.tex \
244
	../lib/libreadline.tex \
245
	../lib/librlcompleter.tex \
Fred Drake's avatar
Fred Drake committed
246
	../lib/libsched.tex \
247
	../lib/libstatvfs.tex \
Fred Drake's avatar
Fred Drake committed
248
	../lib/libtty.tex \
Fred Drake's avatar
Fred Drake committed
249
	../lib/libasyncore.tex \
250
	../lib/libatexit.tex \
Fred Drake's avatar
Fred Drake committed
251
	../lib/libmmap.tex \
252
	../lib/libcfgparser.tex
253 254

# LaTeX source files for Macintosh Library Modules.
255 256
MACFILES= $(HOWTOSTYLES) $(COMMONTEX) \
	../mac/mac.tex \
257 258 259
	../mac/using.tex \
	../mac/toolbox.tex \
	../mac/undoc.tex \
260
	../mac/libmac.tex \
261 262
	../mac/libaepack.tex \
	../mac/libaetypes.tex \
263 264 265 266 267 268 269 270 271 272 273
	../mac/libctb.tex \
	../mac/libmacdnr.tex \
	../mac/libmacfs.tex \
	../mac/libmacos.tex \
	../mac/libmacostools.tex \
	../mac/libmactcp.tex \
	../mac/libmacspeech.tex \
	../mac/libmacui.tex \
	../mac/libmacic.tex \
	../mac/libframework.tex \
	../mac/libminiae.tex
274 275 276 277

INSTFILES = $(HOWTOSTYLES) $(COMMONTEX) ../inst/inst.tex

DISTFILES = $(HOWTOSTYLES) $(COMMONTEX) ../dist/dist.tex