Trailing whitespace deleted.
[bpt/emacs.git] / mac / makefile.MPW
1 # Make file for building GNU Emacs on the Macintosh.
2 # Copyright (C) 1999, 2000 Free Software Foundation, Inc.
3 #
4 # Author: Andrew Choi <akochoi@users.sourceforge.net>
5 #
6 # This file is part of GNU Emacs.
7 #
8 # GNU Emacs is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2, or (at your option)
11 # any later version.
12 #
13 # GNU Emacs is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with GNU Emacs; see the file COPYING. If not, write to
20 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 # Boston, MA 02111-1307, USA. */
22 #
23 # Defines the following targets:
24 # Emacs (default) - normal Emacs build.
25 # Clean - remove all object and executable files to prepare for a fresh build.
26 # Doc - generate the "DOC" file in ~emacs/etc/.
27 # Make-DocFile - build the make-docfile tool, utility for generating "DOC".
28 # PrepSource - prepare the source files after unstuffing the distribution.
29 # PrepDist - prepare for distribution: generate diff files; move mac-win.el to {Patches}.
30
31 Src = ::src: # emacs's src directory
32 Includes = :inc: # mac includes directory (common for MPW and CW)
33 Source = :src: # mac source directory
34 Lib-Src = ::lib-src: # ~emacs/lib-src directory, containing make-docfile.c
35 EmacsTarget = :Emacs MPW # pathname of target executable file
36 DocTarget = ::etc: # where the generated DOC file should be placed
37 Lisp = ::lisp: # emacs's lisp directory
38 Make-DocFileDir = {Lib-Src} # directory containing make-docfile tool
39
40 Makefile = makefile.MPW # self reference
41
42 SymOption = # -sym on # remove hash mark before "-sym on" to enable source debugging
43 OptOption = # -opt speed # alternatively set to -opt off or -opt size
44
45 # The -noMapCR options and the two -d's must not be removed.
46
47 PPCCOptions = {SymOption} {OptOption} -noMapCR -enum int ¶
48 -typecheck relaxed -w off ¶
49 -includes unix -i {Includes},{Src} ¶
50 -d emacs=1 -d HAVE_CONFIG_H -d MAC_OS -d MAC_OS8
51
52 LinkOptions = {SymOption} -d
53
54 CONFIG_H_GROUP = "{Includes}config.h" "{Includes}s-mac.h" "{Includes}utsname.h" "{Includes}m-mac.h"
55 DISPEXTERN_H_GROUP = "{Src}dispextern.h" "{Src}macgui.h"
56 INTERVALS_H_GROUP = "{Src}intervals.h" "{Src}dispextern.h" "{Src}macgui.h"
57 WINDOW_H_GROUP = "{Src}window.h" {DISPEXTERN_H_GROUP}
58 BLOCKINPUT_H_GROUP = "{Src}blockinput.h" "{Src}atimer.h" "{Src}systime.h" ¶
59 "{Includes}sys:time.h" "{Includes}sys:time.h"
60
61 # The list all object files from the GNU Emacs 21.0 distribution.
62
63 EmacsObjects = ¶
64 "{Src}abbrev.c.x" ¶
65 "{Src}alloc.c.x" ¶
66 "{Src}alloca.c.x" ¶
67 "{Src}atimer.c.x" ¶
68 "{Src}buffer.c.x" ¶
69 "{Src}bytecode.c.x" ¶
70 "{Src}callint.c.x" ¶
71 "{Src}callproc.c.x" ¶
72 "{Src}casefiddle.c.x" ¶
73 "{Src}casetab.c.x" ¶
74 "{Src}category.c.x" ¶
75 "{Src}ccl.c.x" ¶
76 "{Src}charset.c.x" ¶
77 "{Src}cm.c.x" ¶
78 "{Src}cmds.c.x" ¶
79 "{Src}coding.c.x" ¶
80 "{Src}composite.c.x" ¶
81 "{Src}data.c.x" ¶
82 "{Src}dired.c.x" ¶
83 "{Src}dispnew.c.x" ¶
84 "{Src}doc.c.x" ¶
85 "{Src}doprnt.c.x" ¶
86 "{Src}editfns.c.x" ¶
87 "{Src}emacs.c.x" ¶
88 "{Src}eval.c.x" ¶
89 "{Src}fileio.c.x" ¶
90 "{Src}filemode.c.x" ¶
91 "{Src}floatfns.c.x" ¶
92 "{Src}fns.c.x" ¶
93 "{Src}fontset.c.x" ¶
94 "{Src}frame.c.x" ¶
95 "{Src}getloadavg.c.x" ¶
96 "{Src}indent.c.x" ¶
97 "{Src}insdel.c.x" ¶
98 "{Src}intervals.c.x" ¶
99 "{Src}keyboard.c.x" ¶
100 "{Src}keymap.c.x" ¶
101 "{Src}lread.c.x" ¶
102 "{Src}macros.c.x" ¶
103 "{Src}marker.c.x" ¶
104 "{Src}md5.c.x" ¶
105 "{Src}minibuf.c.x" ¶
106 "{Src}mktime.c.x" ¶
107 "{Src}print.c.x" ¶
108 "{Src}process.c.x" ¶
109 "{Src}regex.c.x" ¶
110 "{Src}region-cache.c.x" ¶
111 "{Src}scroll.c.x" ¶
112 "{Src}search.c.x" ¶
113 "{Src}strftime.c.x" ¶
114 "{Src}syntax.c.x" ¶
115 "{Src}sysdep.c.x" ¶
116 "{Src}term.c.x" ¶
117 "{Src}termcap.c.x" ¶
118 "{Src}textprop.c.x" ¶
119 "{Src}tparam.c.x" ¶
120 "{Src}undo.c.x" ¶
121 "{Src}window.c.x" ¶
122 "{Src}xdisp.c.x" ¶
123 "{Src}xfaces.c.x"
124
125 # The list of object files generated from new source files of the Macintosh port.
126
127 MacObjects = ¶
128 "{Src}mac.c.x" ¶
129 "{Src}macfns.c.x" ¶
130 "{Src}macmenu.c.x" ¶
131 "{Src}macterm.c.x"
132
133 # The next two are the dependency rules for building Emacs.
134
135 Emacs ÄÄ {Makefile} {DocTarget}DOC {EmacsObjects} {MacObjects}
136 PPCLink ¶
137 {LinkOptions} ¶
138 {EmacsObjects} {MacObjects} ¶
139 "{SharedLibraries}InterfaceLib" ¶
140 "{SharedLibraries}StdCLib" ¶
141 "{SharedLibraries}MathLib" ¶
142 "{SharedLibraries}AppleScriptLib" ¶
143 "{SharedLibraries}TextEncodingConverter" ¶
144 "{SharedLibraries}AppearanceLib" ¶
145 "{PPCLibraries}StdCRuntime.o" ¶
146 "{PPCLibraries}PPCCRuntime.o" ¶
147 "{PPCLibraries}PPCToolLibs.o" ¶
148 -o "{EmacsTarget}"
149
150 Emacs ÄÄ {Makefile} "{Source}"Emacs.maclf.r "{Source}"EmacsMPW.maclf.r
151 Rez -a "{Source}"Emacs.maclf.r -o "{EmacsTarget}"
152 Rez -a "{Source}"EmacsMPW.maclf.r -o "{EmacsTarget}"
153 SetFile "{EmacsTarget}" -t APPL -c 'EMAx' -a B
154
155 # Rez cannot handle files with Unix style end lines at all. So generate
156 # them. It does not hurt if Emacs.r and EmacsMPW.r already have Mac end
157 # lines.
158
159 "{Source}"Emacs.maclf.r Ä "{Source}"Emacs.r
160 translate ¶0x0a ¶n < "{Source}"Emacs.r > "{Source}"Emacs.maclf.r
161
162 "{Source}"EmacsMPW.maclf.r Ä "{Source}"EmacsMPW.r
163 translate ¶0x0a ¶n < "{Source}"EmacsMPW.r > "{Source}"EmacsMPW.maclf.r
164
165 # Here comes a long boring list of rules saying which files depend on which
166 # other ones. I generated them by hand using the "-p" option of the MrC compiler.
167 # Know about MakeMake, but this is probably more accurate.
168
169 {Src}abbrev.c.x Ä ¶
170 {CONFIG_H_GROUP} ¶
171 "{Src}lisp.h" ¶
172 "{Src}commands.h" ¶
173 "{Src}buffer.h" ¶
174 {WINDOW_H_GROUP} ¶
175 "{Src}charset.h" ¶
176 "{Src}syntax.h"
177
178 {Src}alloc.c.x Ä ¶
179 {CONFIG_H_GROUP} ¶
180 "{Src}lisp.h" ¶
181 {INTERVALS_H_GROUP} ¶
182 "{Src}puresize.h" ¶
183 "{Src}buffer.h" ¶
184 {WINDOW_H_GROUP} ¶
185 "{Src}frame.h" ¶
186 {BLOCKINPUT_H_GROUP} ¶
187 "{Src}keyboard.h" ¶
188 "{Src}charset.h" ¶
189 "{Src}syssignal.h"
190
191 {Src}alloca.c.x Ä ¶
192 {CONFIG_H_GROUP} ¶
193 "{Src}lisp.h" ¶
194 {BLOCKINPUT_H_GROUP}
195
196 {Src}atimer.c.x Ä ¶
197 {CONFIG_H_GROUP} ¶
198 "{Src}lisp.h" ¶
199 "{Src}syssignal.h" ¶
200 "{Src}systime.h" ¶
201 "{Includes}sys:time.h" ¶
202 {BLOCKINPUT_H_GROUP} ¶
203 "{Src}atimer.h" ¶
204 "{Includes}sys:time.h"
205
206 {Src}buffer.c.x Ä ¶
207 {CONFIG_H_GROUP} ¶
208 "{Includes}sys:types.h" ¶
209 "{Includes}sys:stat.h" ¶
210 "{Includes}sys:param.h" ¶
211 "{Src}lisp.h" ¶
212 {INTERVALS_H_GROUP} ¶
213 "{Src}window.h" ¶
214 "{Src}commands.h" ¶
215 "{Src}buffer.h" ¶
216 "{Src}charset.h" ¶
217 "{Src}region-cache.h" ¶
218 "{Src}indent.h" ¶
219 {BLOCKINPUT_H_GROUP} ¶
220 "{Src}frame.h"
221
222 {Src}bytecode.c.x Ä ¶
223 {CONFIG_H_GROUP} ¶
224 "{Src}lisp.h" ¶
225 "{Src}buffer.h" ¶
226 "{Src}charset.h" ¶
227 "{Src}syntax.h"
228
229 {Src}callint.c.x Ä ¶
230 {CONFIG_H_GROUP} ¶
231 "{Src}lisp.h" ¶
232 "{Src}buffer.h" ¶
233 "{Src}commands.h" ¶
234 "{Src}keyboard.h" ¶
235 {WINDOW_H_GROUP}
236
237 {Src}callproc.c.x Ä ¶
238 {CONFIG_H_GROUP} ¶
239 "{Includes}sys:types.h" ¶
240 "{Includes}sys:file.h" ¶
241 "{Includes}sys:types.h" ¶
242 "{Includes}sys:stat.h" ¶
243 "{Src}lisp.h" ¶
244 "{Src}commands.h" ¶
245 "{Src}buffer.h" ¶
246 "{Src}charset.h" ¶
247 "{Src}ccl.h" ¶
248 "{Src}coding.h" ¶
249 "{Src}composite.h" ¶
250 "{Includes}epaths.h" ¶
251 "{Src}process.h" ¶
252 "{Src}syssignal.h" ¶
253 "{Src}systty.h" ¶
254 "{Includes}termio.h"
255
256 {Src}casefiddle Ä ¶
257 {CONFIG_H_GROUP} ¶
258 "{Src}lisp.h" ¶
259 "{Src}buffer.h" ¶
260 "{Src}charset.h" ¶
261 "{Src}commands.h" ¶
262 "{Src}syntax.h" ¶
263 "{Src}composite.h"
264
265 {Src}casetab.c.x Ä ¶
266 {CONFIG_H_GROUP} ¶
267 "{Src}lisp.h" ¶
268 "{Src}buffer.h" ¶
269 "{Src}charset.h"
270
271 {Src}category.c.x Ä ¶
272 {CONFIG_H_GROUP} ¶
273 "{Src}lisp.h" ¶
274 "{Src}buffer.h" ¶
275 "{Src}charset.h" ¶
276 "{Src}category.h"
277
278 {Src}ccl.c.x Ä ¶
279 {CONFIG_H_GROUP} ¶
280 "{Src}lisp.h" ¶
281 "{Src}charset.h" ¶
282 "{Src}ccl.h" ¶
283 "{Src}coding.h"
284
285 {Src}charset.c.x Ä ¶
286 {CONFIG_H_GROUP} ¶
287 "{Includes}sys:types.h" ¶
288 "{Src}lisp.h" ¶
289 "{Src}buffer.h" ¶
290 "{Src}charset.h" ¶
291 "{Src}coding.h" ¶
292 "{Src}ccl.h" ¶
293 "{Src}disptab.h"
294
295 {Src}cm.c.x Ä ¶
296 {CONFIG_H_GROUP} ¶
297 "{Src}cm.h" ¶
298 "{Src}termhooks.h"
299
300 {Src}cmds.c.x Ä ¶
301 {CONFIG_H_GROUP} ¶
302 "{Src}lisp.h" ¶
303 "{Src}commands.h" ¶
304 "{Src}buffer.h" ¶
305 "{Src}charset.h" ¶
306 "{Src}syntax.h" ¶
307 {WINDOW_H_GROUP} ¶
308 "{Src}keyboard.h" ¶
309 {DISPEXTERN_H_GROUP}
310
311 {Src}coding.c.x Ä ¶
312 {CONFIG_H_GROUP} ¶
313 "{Src}lisp.h" ¶
314 "{Src}buffer.h" ¶
315 "{Src}charset.h" ¶
316 "{Src}composite.h" ¶
317 "{Src}ccl.h" ¶
318 "{Src}coding.h" ¶
319 {WINDOW_H_GROUP}
320
321 {Src}composite.c.x Ä ¶
322 {CONFIG_H_GROUP} ¶
323 "{Src}lisp.h" ¶
324 "{Src}buffer.h" ¶
325 "{Src}charset.h" ¶
326 {INTERVALS_H_GROUP}
327
328 {Src}data.c.x Ä ¶
329 {CONFIG_H_GROUP} ¶
330 "{Src}lisp.h" ¶
331 "{Src}puresize.h" ¶
332 "{Src}charset.h" ¶
333 "{Src}buffer.h" ¶
334 "{Src}keyboard.h" ¶
335 "{Src}frame.h" ¶
336 "{Src}syssignal.h"
337
338 {Src}dired.c.x Ä ¶
339 {CONFIG_H_GROUP} ¶
340 "{Includes}sys:types.h" ¶
341 "{Includes}sys:stat.h" ¶
342 "{Src}systime.h" ¶
343 "{Includes}sys:time.h" ¶
344 "{Includes}dirent.h" ¶
345 "{Src}lisp.h" ¶
346 "{Src}buffer.h" ¶
347 "{Src}commands.h" ¶
348 "{Src}charset.h" ¶
349 "{Src}coding.h" ¶
350 "{Src}ccl.h" ¶
351 "{Src}regex.h"
352
353 {Src}dispnew.c.x Ä ¶
354 {CONFIG_H_GROUP} ¶
355 "{Src}lisp.h" ¶
356 "{Src}termchar.h" ¶
357 "{Src}termopts.h" ¶
358 "{Src}termhooks.h" ¶
359 {DISPEXTERN_H_GROUP} ¶
360 "{Src}cm.h" ¶
361 "{Src}buffer.h" ¶
362 "{Src}charset.h" ¶
363 {WINDOW_H_GROUP} ¶
364 "{Src}commands.h" ¶
365 "{Src}disptab.h" ¶
366 "{Src}indent.h" ¶
367 {INTERVALS_H_GROUP} ¶
368 {BLOCKINPUT_H_GROUP} ¶
369 "{Src}process.h" ¶
370 "{Src}keyboard.h" ¶
371 "{Src}syssignal.h" ¶
372 "{Src}macterm.h" ¶
373 "{Src}macgui.h" ¶
374 "{Src}frame.h" ¶
375 "{Src}systime.h"
376
377 {Src}doc.c.x Ä ¶
378 {CONFIG_H_GROUP} ¶
379 "{Includes}sys:types.h" ¶
380 "{Includes}sys:file.h" ¶
381 "{Src}lisp.h" ¶
382 "{Src}buffer.h" ¶
383 "{Src}keyboard.h" ¶
384 "{Src}charset.h"
385
386 {Src}doprnt.c.x Ä ¶
387 {CONFIG_H_GROUP} ¶
388 "{Src}lisp.h" ¶
389 "{Src}charset.h"
390
391 {Src}editfns.c.x Ä ¶
392 {CONFIG_H_GROUP} ¶
393 "{Includes}sys:types.h" ¶
394 "{Includes}pwd.h" ¶
395 "{Src}lisp.h" ¶
396 {INTERVALS_H_GROUP} ¶
397 "{Src}buffer.h" ¶
398 "{Src}charset.h" ¶
399 "{Src}coding.h" ¶
400 "{Src}ccl.h" ¶
401 {WINDOW_H_GROUP} ¶
402 "{Src}systime.h" ¶
403 "{Includes}sys:time.h"
404
405 {Src}emacs.c.x Ä ¶
406 {CONFIG_H_GROUP} ¶
407 "{Includes}sys:types.h" ¶
408 "{Includes}sys:file.h" ¶
409 "{Includes}sys:types.h" ¶
410 "{Includes}sys:stat.h" ¶
411 "{Src}lisp.h" ¶
412 "{Src}commands.h" ¶
413 {INTERVALS_H_GROUP} ¶
414 "{Src}buffer.h" ¶
415 "{Src}systty.h" ¶
416 "{Includes}termio.h" ¶
417 {BLOCKINPUT_H_GROUP} ¶
418 "{Src}syssignal.h" ¶
419 "{Src}process.h" ¶
420 "{Src}termhooks.h" ¶
421 "{Src}keyboard.h" ¶
422 "{Src}frame.h"
423
424 {Src}eval.c.x Ä ¶
425 {CONFIG_H_GROUP} ¶
426 "{Src}lisp.h" ¶
427 {BLOCKINPUT_H_GROUP} ¶
428 "{Src}commands.h" ¶
429 "{Src}keyboard.h" ¶
430 {DISPEXTERN_H_GROUP}
431
432 {Src}fileio.c.x Ä ¶
433 {CONFIG_H_GROUP} ¶
434 "{Includes}sys:types.h" ¶
435 "{Includes}sys:stat.h" ¶
436 "{Includes}pwd.h" ¶
437 "{Src}lisp.h" ¶
438 {INTERVALS_H_GROUP} ¶
439 "{Src}buffer.h" ¶
440 "{Src}charset.h" ¶
441 "{Src}coding.h" ¶
442 "{Src}ccl.h" ¶
443 {WINDOW_H_GROUP} ¶
444 "{Src}systime.h" ¶
445 "{Includes}sys:time.h" ¶
446 "{Src}commands.h"
447
448 {Src}filemode.c.x Ä ¶
449 {CONFIG_H_GROUP} ¶
450 "{Includes}sys:types.h" ¶
451 "{Includes}sys:stat.h"
452
453 {Src}floatfns.c.x Ä ¶
454 {CONFIG_H_GROUP} ¶
455 "{Src}lisp.h" ¶
456 "{Src}syssignal.h"
457
458 {Src}fns.c.x Ä ¶
459 {CONFIG_H_GROUP} ¶
460 "{Src}lisp.h" ¶
461 "{Src}commands.h" ¶
462 "{Src}charset.h" ¶
463 "{Src}buffer.h" ¶
464 "{Src}keyboard.h" ¶
465 {INTERVALS_H_GROUP} ¶
466 "{Src}frame.h" ¶
467 {WINDOW_H_GROUP}
468
469 {Src}fontset.c.x Ä ¶
470 {CONFIG_H_GROUP} ¶
471 "{Src}lisp.h" ¶
472 "{Src}buffer.h" ¶
473 "{Src}charset.h" ¶
474 "{Src}ccl.h" ¶
475 "{Src}frame.h" ¶
476 {DISPEXTERN_H_GROUP} ¶
477 "{Src}fontset.h" ¶
478 {WINDOW_H_GROUP}
479
480 {Src}frame.c.x Ä ¶
481 {CONFIG_H_GROUP} ¶
482 "{Src}lisp.h" ¶
483 "{Src}charset.h" ¶
484 "{Src}fontset.h" ¶
485 "{Src}macterm.h" ¶
486 "{Src}macgui.h" ¶
487 "{Src}frame.h" ¶
488 "{Src}frame.h" ¶
489 "{Src}fontset.h" ¶
490 "{Src}termhooks.h" ¶
491 {DISPEXTERN_H_GROUP} ¶
492 {WINDOW_H_GROUP} ¶
493 "{Src}buffer.h" ¶
494 "{Src}commands.h" ¶
495 "{Src}keyboard.h"
496
497 {Src}getloadavg.c.x Ä ¶
498 {CONFIG_H_GROUP} ¶
499 "{Includes}sys:types.h"
500
501 {Src}indent.c.x Ä ¶
502 {CONFIG_H_GROUP} ¶
503 "{Src}lisp.h" ¶
504 "{Src}buffer.h" ¶
505 "{Src}charset.h" ¶
506 "{Src}category.h" ¶
507 "{Src}indent.h" ¶
508 "{Src}frame.h" ¶
509 {WINDOW_H_GROUP} ¶
510 "{Src}termchar.h" ¶
511 "{Src}termopts.h" ¶
512 "{Src}disptab.h" ¶
513 {INTERVALS_H_GROUP} ¶
514 "{Src}region-cache.h"
515
516 {Src}insdel.c.x Ä ¶
517 {CONFIG_H_GROUP} ¶
518 "{Src}lisp.h" ¶
519 {INTERVALS_H_GROUP} ¶
520 "{Src}buffer.h" ¶
521 "{Src}charset.h" ¶
522 {WINDOW_H_GROUP} ¶
523 {BLOCKINPUT_H_GROUP} ¶
524 "{Src}region-cache.h"
525
526 {Src}intervals.c.x Ä ¶
527 {CONFIG_H_GROUP} ¶
528 "{Src}lisp.h" ¶
529 {INTERVALS_H_GROUP} ¶
530 "{Src}buffer.h" ¶
531 "{Src}puresize.h" ¶
532 "{Src}keyboard.h"
533
534 {Src}keyboard.c.x Ä ¶
535 {CONFIG_H_GROUP} ¶
536 "{Src}termchar.h" ¶
537 "{Src}termopts.h" ¶
538 "{Src}lisp.h" ¶
539 "{Src}termhooks.h" ¶
540 "{Src}macros.h" ¶
541 "{Src}frame.h" ¶
542 {WINDOW_H_GROUP} ¶
543 "{Src}commands.h" ¶
544 "{Src}buffer.h" ¶
545 "{Src}charset.h" ¶
546 {DISPEXTERN_H_GROUP} ¶
547 "{Src}keyboard.h" ¶
548 "{Src}syntax.h" ¶
549 {INTERVALS_H_GROUP} ¶
550 {BLOCKINPUT_H_GROUP} ¶
551 "{Src}puresize.h" ¶
552 "{Src}systime.h" ¶
553 "{Src}atimer.h" ¶
554 "{Includes}sys:ioctl.h" ¶
555 "{Src}syssignal.h" ¶
556 "{Src}systty.h" ¶
557 "{Includes}termio.h" ¶
558 "{Includes}sys:types.h" ¶
559 "{Src}macterm.h" ¶
560 "{Src}macgui.h" ¶
561 "{Src}frame.h" ¶
562 "{Src}systime.h"
563
564 {Src}keymap.c.x Ä ¶
565 {CONFIG_H_GROUP} ¶
566 "{Src}lisp.h" ¶
567 "{Src}commands.h" ¶
568 "{Src}buffer.h" ¶
569 "{Src}charset.h" ¶
570 "{Src}keyboard.h" ¶
571 "{Src}termhooks.h" ¶
572 {BLOCKINPUT_H_GROUP} ¶
573 "{Src}puresize.h" ¶
574 {INTERVALS_H_GROUP}
575
576 {Src}lread.c.x Ä ¶
577 {CONFIG_H_GROUP} ¶
578 "{Includes}sys:types.h" ¶
579 "{Includes}sys:stat.h" ¶
580 "{Includes}sys:file.h" ¶
581 "{Src}lisp.h" ¶
582 {INTERVALS_H_GROUP} ¶
583 "{Src}buffer.h" ¶
584 "{Src}charset.h" ¶
585 "{Includes}epaths.h" ¶
586 "{Src}commands.h" ¶
587 "{Src}keyboard.h" ¶
588 "{Src}termhooks.h"
589
590 {Src}macros.c.x Ä ¶
591 {CONFIG_H_GROUP} ¶
592 "{Src}lisp.h" ¶
593 "{Src}macros.h" ¶
594 "{Src}commands.h" ¶
595 "{Src}buffer.h" ¶
596 {WINDOW_H_GROUP} ¶
597 "{Src}keyboard.h"
598
599 {Src}marker.c.x Ä ¶
600 {CONFIG_H_GROUP} ¶
601 "{Src}lisp.h" ¶
602 "{Src}buffer.h" ¶
603 "{Src}charset.h"
604
605 {Src}minibuf.c.x Ä ¶
606 {CONFIG_H_GROUP} ¶
607 "{Src}lisp.h" ¶
608 "{Src}commands.h" ¶
609 "{Src}buffer.h" ¶
610 "{Src}charset.h" ¶
611 {DISPEXTERN_H_GROUP} ¶
612 "{Src}frame.h" ¶
613 {WINDOW_H_GROUP} ¶
614 "{Src}syntax.h" ¶
615 "{Src}keyboard.h"
616
617 {Src}mktime.c.x Ä ¶
618 {CONFIG_H_GROUP} ¶
619 "{Includes}sys:types.h"
620
621 {Src}print.c.x Ä ¶
622 {CONFIG_H_GROUP} ¶
623 "{Src}lisp.h" ¶
624 "{Src}buffer.h" ¶
625 "{Src}charset.h" ¶
626 "{Src}frame.h" ¶
627 {WINDOW_H_GROUP} ¶
628 "{Src}process.h" ¶
629 {DISPEXTERN_H_GROUP} ¶
630 "{Src}termchar.h" ¶
631 "{Src}keyboard.h" ¶
632 {INTERVALS_H_GROUP}
633
634 {Src}process.c.x Ä ¶
635 {CONFIG_H_GROUP} ¶
636 "{Includes}sys:types.h" ¶
637 "{Src}lisp.h" ¶
638 "{Src}systime.h" ¶
639 "{Includes}sys:time.h" ¶
640 "{Src}charset.h" ¶
641 "{Src}coding.h" ¶
642 "{Src}ccl.h" ¶
643 "{Src}termopts.h" ¶
644 "{Src}sysselect.h"
645
646 {Src}regex.c.x Ä ¶
647 {CONFIG_H_GROUP} ¶
648 "{Includes}sys:types.h" ¶
649 "{Src}lisp.h" ¶
650 "{Src}buffer.h" ¶
651 "{Src}syntax.h" ¶
652 "{Src}charset.h" ¶
653 "{Src}category.h" ¶
654 "{Src}regex.h"
655
656 {Src}region-cache.c.x Ä ¶
657 {CONFIG_H_GROUP} ¶
658 "{Src}lisp.h" ¶
659 "{Src}buffer.h" ¶
660 "{Src}region-cache.h"
661
662 {Src}scroll.c.x Ä ¶
663 {CONFIG_H_GROUP} ¶
664 "{Src}termchar.h" ¶
665 "{Src}lisp.h" ¶
666 {DISPEXTERN_H_GROUP} ¶
667 "{Src}frame.h" ¶
668 {WINDOW_H_GROUP}
669
670 {Src}search.c.x Ä ¶
671 {CONFIG_H_GROUP} ¶
672 "{Src}lisp.h" ¶
673 "{Src}syntax.h" ¶
674 "{Src}category.h" ¶
675 "{Src}buffer.h" ¶
676 "{Src}charset.h" ¶
677 "{Src}region-cache.h" ¶
678 "{Src}commands.h" ¶
679 {BLOCKINPUT_H_GROUP} ¶
680 {INTERVALS_H_GROUP} ¶
681 "{Includes}sys:types.h" ¶
682 "{Src}regex.h"
683
684 {Src}strftime.c.x Ä ¶
685 {CONFIG_H_GROUP} ¶
686 "{Includes}sys:types.h" ¶
687 "{Includes}sys:time.h"
688
689 {Src}syntax.c.x Ä ¶
690 {CONFIG_H_GROUP} ¶
691 "{Src}lisp.h" ¶
692 "{Src}commands.h" ¶
693 "{Src}buffer.h" ¶
694 "{Src}charset.h" ¶
695 "{Src}syntax.h" ¶
696 {INTERVALS_H_GROUP} ¶
697 "{Src}category.h"
698
699 {Src}sysdep.c.x Ä ¶
700 {CONFIG_H_GROUP} ¶
701 "{Src}lisp.h" ¶
702 {BLOCKINPUT_H_GROUP} ¶
703 "{Includes}sys:types.h" ¶
704 "{Includes}sys:stat.h" ¶
705 "{Includes}sys:ioctl.h" ¶
706 "{Src}syswait.h" ¶
707 "{Includes}sys:types.h" ¶
708 "{Src}frame.h" ¶
709 {WINDOW_H_GROUP} ¶
710 "{Src}termhooks.h" ¶
711 "{Src}termchar.h" ¶
712 "{Src}termopts.h" ¶
713 {DISPEXTERN_H_GROUP} ¶
714 "{Src}process.h" ¶
715 "{Src}syssignal.h" ¶
716 "{Src}systime.h" ¶
717 "{Includes}utime.h" ¶
718 "{Src}sysselect.h" ¶
719 "{Includes}dirent.h" ¶
720 "{Includes}sys:types.h"
721
722 {Src}term.c.x Ä ¶
723 {CONFIG_H_GROUP} ¶
724 "{Src}termchar.h" ¶
725 "{Src}termopts.h" ¶
726 "{Src}lisp.h" ¶
727 "{Src}charset.h" ¶
728 "{Src}coding.h" ¶
729 "{Src}ccl.h" ¶
730 "{Src}frame.h" ¶
731 "{Src}disptab.h" ¶
732 "{Src}termhooks.h" ¶
733 "{Src}keyboard.h" ¶
734 {DISPEXTERN_H_GROUP} ¶
735 {WINDOW_H_GROUP} ¶
736 "{Src}cm.h" ¶
737 "{Src}macterm.h" ¶
738 "{Src}macgui.h" ¶
739 "{Src}frame.h"
740
741 {Src}termcap.c.x Ä ¶
742 {CONFIG_H_GROUP} ¶
743 "{Src}lisp.h" ¶
744 "{Includes}sys:file.h"
745
746 {Src}textproc.c.x Ä ¶
747 {CONFIG_H_GROUP} ¶
748 "{Src}lisp.h" ¶
749 {INTERVALS_H_GROUP} ¶
750 "{Src}buffer.h" ¶
751 {WINDOW_H_GROUP}
752
753 {Src}tparam.c.x Ä ¶
754 {CONFIG_H_GROUP} ¶
755 "{Src}lisp.h"
756
757 {Src}undo.c.x Ä ¶
758 {CONFIG_H_GROUP} ¶
759 "{Src}lisp.h" ¶
760 "{Src}buffer.h" ¶
761 "{Src}commands.h"
762
763 {Src}window.c.x Ä ¶
764 {CONFIG_H_GROUP} ¶
765 "{Src}lisp.h" ¶
766 "{Src}buffer.h" ¶
767 "{Src}frame.h" ¶
768 {WINDOW_H_GROUP} ¶
769 "{Src}commands.h" ¶
770 "{Src}indent.h" ¶
771 "{Src}termchar.h" ¶
772 "{Src}disptab.h" ¶
773 "{Src}keyboard.h" ¶
774 {DISPEXTERN_H_GROUP} ¶
775 {BLOCKINPUT_H_GROUP} ¶
776 {INTERVALS_H_GROUP} ¶
777 "{Src}macterm.h" ¶
778 "{Src}macgui.h" ¶
779 "{Src}frame.h"
780
781 {Src}xdisp.c.x Ä ¶
782 {CONFIG_H_GROUP} ¶
783 "{Src}lisp.h" ¶
784 "{Src}frame.h" ¶
785 {WINDOW_H_GROUP} ¶
786 "{Src}termchar.h" ¶
787 {DISPEXTERN_H_GROUP} ¶
788 "{Src}buffer.h" ¶
789 "{Src}charset.h" ¶
790 "{Src}indent.h" ¶
791 "{Src}commands.h" ¶
792 "{Src}macros.h" ¶
793 "{Src}disptab.h" ¶
794 "{Src}termhooks.h" ¶
795 {INTERVALS_H_GROUP} ¶
796 "{Src}keyboard.h" ¶
797 "{Src}coding.h" ¶
798 "{Src}ccl.h" ¶
799 "{Src}process.h" ¶
800 "{Src}region-cache.h" ¶
801 "{Src}fontset.h" ¶
802 "{Src}macterm.h" ¶
803 "{Src}macgui.h" ¶
804 "{Src}frame.h"
805
806 {Src}xfaces.c.x Ä ¶
807 {CONFIG_H_GROUP} ¶
808 "{Includes}sys:types.h" ¶
809 "{Includes}sys:stat.h" ¶
810 "{Src}lisp.h" ¶
811 "{Src}charset.h" ¶
812 "{Src}frame.h" ¶
813 "{Src}fontset.h" ¶
814 "{Src}macterm.h" ¶
815 "{Src}macgui.h" ¶
816 "{Src}frame.h" ¶
817 "{Src}buffer.h" ¶
818 {DISPEXTERN_H_GROUP} ¶
819 {BLOCKINPUT_H_GROUP} ¶
820 {WINDOW_H_GROUP} ¶
821 {INTERVALS_H_GROUP} ¶
822 "{Src}keyboard.h"
823
824 {Src}macmenu.c.x Ä ¶
825 {CONFIG_H_GROUP} ¶
826 "{Src}lisp.h" ¶
827 "{Src}termhooks.h" ¶
828 "{Src}frame.h" ¶
829 {WINDOW_H_GROUP} ¶
830 "{Src}keyboard.h" ¶
831 {BLOCKINPUT_H_GROUP} ¶
832 "{Src}buffer.h" ¶
833 "{Includes}sys:types.h" ¶
834 {DISPEXTERN_H_GROUP}
835
836 {Src}mac.c Ä ¶
837 {CONFIG_H_GROUP} ¶
838 "{Includes}utime.h" ¶
839 "{Includes}dirent.h" ¶
840 "{Includes}sys:types.h" ¶
841 "{Includes}sys:stat.h" ¶
842 "{Includes}pwd.h" ¶
843 "{Includes}sys:types.h" ¶
844 "{Includes}sys:param.h" ¶
845 "{Src}lisp.h" ¶
846 "{Src}process.h" ¶
847 "{Src}sysselect.h" ¶
848 "{Src}systime.h" ¶
849 "{Includes}sys:time.h" ¶
850 "{Includes}utsname.h"
851
852 {Src}macfns.c Ä ¶
853 {CONFIG_H_GROUP} ¶
854 "{Src}lisp.h" ¶
855 "{Src}charset.h" ¶
856 "{Src}macterm.h" ¶
857 "{Src}macgui.h" ¶
858 "{Src}frame.h" ¶
859 "{Src}frame.h" ¶
860 {WINDOW_H_GROUP} ¶
861 "{Src}buffer.h" ¶
862 {DISPEXTERN_H_GROUP} ¶
863 "{Src}fontset.h" ¶
864 {INTERVALS_H_GROUP} ¶
865 "{Src}keyboard.h" ¶
866 {BLOCKINPUT_H_GROUP} ¶
867 "{Includes}epaths.h" ¶
868 "{Src}termhooks.h" ¶
869 "{Src}coding.h" ¶
870 "{Src}ccl.h" ¶
871 "{Src}systime.h" ¶
872 "{Src}bitmaps:gray.xbm"
873
874 {Src}macterm.c Ä ¶
875 {CONFIG_H_GROUP} ¶
876 "{Src}lisp.h" ¶
877 {BLOCKINPUT_H_GROUP} ¶
878 "{Src}syssignal.h" ¶
879 "{Src}macterm.h" ¶
880 "{Src}macgui.h" ¶
881 "{Src}frame.h" ¶
882 "{Includes}alloca.h" ¶
883 "{Includes}sys:types.h" ¶
884 "{Src}systty.h" ¶
885 "{Includes}termio.h" ¶
886 "{Src}systime.h" ¶
887 "{Includes}sys:stat.h" ¶
888 "{Src}charset.h" ¶
889 "{Src}ccl.h" ¶
890 "{Src}frame.h" ¶
891 {DISPEXTERN_H_GROUP} ¶
892 "{Src}fontset.h" ¶
893 "{Src}termhooks.h" ¶
894 "{Src}termopts.h" ¶
895 "{Src}termchar.h" ¶
896 "{Src}gnu.h" ¶
897 "{Src}disptab.h" ¶
898 "{Src}buffer.h" ¶
899 {WINDOW_H_GROUP} ¶
900 "{Src}keyboard.h" ¶
901 {INTERVALS_H_GROUP} ¶
902 "{Src}process.h" ¶
903 "{Src}atimer.h" ¶
904 "{Src}coding.h" ¶
905 "{Src}ccl.h" ¶
906 "{Includes}epaths.h" ¶
907 "{Src}termhooks.h" ¶
908 "{Src}coding.h" ¶
909 "{Src}ccl.h"
910
911
912 #----------------------------------------#
913 # Variables and rules for target "Clean" #
914 #----------------------------------------#
915
916 Clean Ä
917 Delete -i {EmacsObjects} {MacObjects}
918 Delete -i "{EmacsTarget}"
919 Delete -i stdout stderr
920 Delete -i {Make-DocFile-Objects} {Make-DocFileDir}make-docfile
921 Delete -i "{Source}"Emacs.maclf.r "{Source}"EmacsMPW.maclf.r
922
923 DistClean Ä Clean
924 Delete -i "Emacs CW"Å
925 Delete -y "emacs Data"
926 Delete -i emacs.mcp
927
928 #--------------------------------------#
929 # Variables and rules for target "Doc" #
930 #--------------------------------------#
931
932 EmacsSource = ¶
933 "{Src}abbrev.c" ¶
934 "{Src}alloc.c" ¶
935 "{Src}alloca.c" ¶
936 "{Src}atimer.c" ¶
937 "{Src}buffer.c" ¶
938 "{Src}bytecode.c" ¶
939 "{Src}callint.c" ¶
940 "{Src}callproc.c" ¶
941 "{Src}casefiddle.c" ¶
942 "{Src}casetab.c" ¶
943 "{Src}category.c" ¶
944 "{Src}ccl.c" ¶
945 "{Src}charset.c" ¶
946 "{Src}cm.c" ¶
947 "{Src}cmds.c" ¶
948 "{Src}coding.c" ¶
949 "{Src}composite.c" ¶
950 "{Src}data.c" ¶
951 "{Src}dired.c" ¶
952 "{Src}dispnew.c" ¶
953 "{Src}doc.c" ¶
954 "{Src}doprnt.c" ¶
955 "{Src}editfns.c" ¶
956 "{Src}emacs.c" ¶
957 "{Src}eval.c" ¶
958 "{Src}fileio.c" ¶
959 "{Src}filemode.c" ¶
960 "{Src}floatfns.c" ¶
961 "{Src}fns.c" ¶
962 "{Src}fontset.c" ¶
963 "{Src}frame.c" ¶
964 "{Src}getloadavg.c" ¶
965 "{Src}indent.c" ¶
966 "{Src}insdel.c" ¶
967 "{Src}intervals.c" ¶
968 "{Src}keyboard.c" ¶
969 "{Src}keymap.c" ¶
970 "{Src}lread.c" ¶
971 "{Src}macros.c" ¶
972 "{Src}marker.c" ¶
973 "{Src}minibuf.c" ¶
974 "{Src}mktime.c" ¶
975 "{Src}print.c" ¶
976 "{Src}process.c" ¶
977 "{Src}regex.c" ¶
978 "{Src}region-cache.c" ¶
979 "{Src}scroll.c" ¶
980 "{Src}search.c" ¶
981 "{Src}strftime.c" ¶
982 "{Src}syntax.c" ¶
983 "{Src}sysdep.c" ¶
984 "{Src}term.c" ¶
985 "{Src}termcap.c" ¶
986 "{Src}textprop.c" ¶
987 "{Src}tparam.c" ¶
988 "{Src}undo.c" ¶
989 "{Src}window.c" ¶
990 "{Src}xdisp.c" ¶
991 "{Src}xfaces.c" ¶
992 "{Src}xmenu.c"
993
994 MacSource = ¶
995 "{Src}mac.c" ¶
996 "{Src}macfns.c" ¶
997 "{Src}macterm.c"
998
999
1000 LispSource = ¶
1001 {Lisp}menu-bar.elc ¶
1002 {Lisp}mouse.elc ¶
1003 {Lisp}select.elc ¶
1004 {Lisp}scroll-bar.elc ¶
1005 {Lisp}vmsproc.elc ¶
1006 {Lisp}vms-patch.elc ¶
1007 {Lisp}ls-lisp.elc ¶
1008 {Lisp}dos-fns.elc ¶
1009 {Lisp}w32-fns.elc ¶
1010 {Lisp}dos-w32.elc ¶
1011 {Lisp}disp-table.elc ¶
1012 {Lisp}dos-vars.elc ¶
1013 {Lisp}international:ccl.elc ¶
1014 {Lisp}international:codepage.elc ¶
1015 {Lisp}abbrev.elc ¶
1016 {Lisp}buff-menu.elc ¶
1017 {Lisp}byte-run.elc ¶
1018 {Lisp}cus-start.el ¶
1019 {Lisp}custom.elc ¶
1020 {Lisp}emacs-lisp:lisp-mode.elc ¶
1021 {Lisp}emacs-lisp:lisp.elc ¶
1022 {Lisp}facemenu.elc ¶
1023 {Lisp}faces.elc ¶
1024 {Lisp}files.elc ¶
1025 {Lisp}float-sup.elc ¶
1026 {Lisp}format.elc ¶
1027 {Lisp}frame.elc ¶
1028 {Lisp}help.elc ¶
1029 {Lisp}indent.elc ¶
1030 {Lisp}isearch.elc ¶
1031 {Lisp}loadup.el ¶
1032 {Lisp}loaddefs.el ¶
1033 {Lisp}bindings.elc ¶
1034 {Lisp}map-ynp.elc ¶
1035 {Lisp}international:mule.elc ¶
1036 {Lisp}international:mule-conf.el ¶
1037 {Lisp}international:mule-cmds.elc ¶
1038 {Lisp}international:characters.elc ¶
1039 {Lisp}case-table.elc ¶
1040 {Lisp}language:chinese.elc ¶
1041 {Lisp}language:cyrillic.elc ¶
1042 {Lisp}language:indian.elc ¶
1043 {Lisp}language:ethiopic.elc ¶
1044 {Lisp}language:european.elc ¶
1045 {Lisp}language:tibetan.elc ¶
1046 {Lisp}language:vietnamese.elc ¶
1047 {Lisp}paths.el ¶
1048 {Lisp}register.elc ¶
1049 {Lisp}replace.elc ¶
1050 {Lisp}simple.elc ¶
1051 {Lisp}startup.elc ¶
1052 {Lisp}subr.elc ¶
1053 {Lisp}term:tty-colors.elc ¶
1054 {Lisp}textmodes:fill.elc ¶
1055 {Lisp}textmodes:page.elc ¶
1056 {Lisp}textmodes:paragraphs.elc ¶
1057 {Lisp}textmodes:text-mode.elc ¶
1058 {Lisp}vc-hooks.elc ¶
1059 {Lisp}ediff-hook.elc ¶
1060 {Lisp}widget.elc ¶
1061 {Lisp}window.elc ¶
1062 {Lisp}version.el
1063
1064 LispSourceDontCompile = ¶
1065 {Lisp}language:devanagari.el ¶
1066 {Lisp}language:english.el ¶
1067 {Lisp}language:czech.el ¶
1068 {Lisp}language:slovak.el ¶
1069 {Lisp}language:romanian.el ¶
1070 {Lisp}language:greek.el ¶
1071 {Lisp}language:hebrew.el ¶
1072 {Lisp}language:japanese.el ¶
1073 {Lisp}language:korean.el ¶
1074 {Lisp}language:lao.el ¶
1075 {Lisp}language:thai.el ¶
1076 {Lisp}language:misc-lang.el
1077
1078 Doc Ä {DocTarget}DOC
1079
1080 {DocTarget}DOC Ä {Makefile} {EmacsSource} {MacSource} {LispSource} {LispSourceDontCompile} {Make-DocFileDir}Make-DocFile
1081 {Make-DocFileDir}make-docfile {EmacsSource} > {DocTarget}DOC
1082 {Make-DocFileDir}make-docfile {MacSource} >> {DocTarget}DOC
1083 {Make-DocFileDir}make-docfile {LispSource} >> {DocTarget}DOC
1084 {Make-DocFileDir}make-docfile {LispSourceDontCompile} >> {DocTarget}DOC
1085
1086
1087 #-----------------------------------------------#
1088 # Variables and rules for target "Make-DocFile" #
1089 #-----------------------------------------------#
1090
1091 Make-DocFile-Includes = -i :inc:
1092 Make-DocFile-Sym =
1093
1094 Make-DocFile-PPCCOptions = -typecheck relaxed -w off -noMapCR ¶
1095 {Make-DocFile-Includes} {Make-DocFile-Sym}
1096
1097 Make-DocFile-Objects = ¶
1098 "{Lib-Src}make-docfile.c.x" ¶
1099 "{Source}chdir.c.x"
1100
1101 Make-DocFile Ä {Make-DocFileDir}Make-DocFile
1102
1103 {Make-DocFileDir}Make-DocFile Ä {Makefile} {Make-DocFile-Objects}
1104 PPCLink ¶
1105 -o {Make-DocFileDir}Make-DocFile ¶
1106 {Make-DocFile-Sym} ¶
1107 {Make-DocFile-Objects} ¶
1108 -t 'MPST' ¶
1109 -c 'MPS ' ¶
1110 "{SharedLibraries}InterfaceLib" ¶
1111 "{SharedLibraries}StdCLib" ¶
1112 "{SharedLibraries}MathLib" ¶
1113 "{PPCLibraries}StdCRuntime.o" ¶
1114 "{PPCLibraries}PPCCRuntime.o" ¶
1115 "{PPCLibraries}PPCToolLibs.o"
1116
1117 "{Lib-Src}make-docfile.c.x" Ä {Makefile} "{Lib-Src}make-docfile.c"
1118 {PPCC} "{Lib-Src}make-docfile.c" -o "{Lib-Src}make-docfile.c.x" {Make-DocFile-PPCCOptions}
1119
1120 "{Source}chdir.c.x" Ä {Makefile} "{Source}chdir.c"
1121 {PPCC} "{Source}chdir.c" -o "{Source}chdir.c.x" {Make-DocFile-PPCCOptions}
1122