Initial check-in: changes for building Emacs under Mac OS.
[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
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" "{Includes}macgui.h"
56 INTERVALS_H_GROUP = "{Src}intervals.h" "{Src}dispextern.h" "{Includes}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}minibuf.c.x" ¶
105 "{Src}mktime.c.x" ¶
106 "{Src}mocklisp.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 "{Source}mac.c.x" ¶
129 "{Source}macfns.c.x" ¶
130 "{Source}macmenu.c.x" ¶
131 "{Source}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 "{Src}mocklisp.h"
237
238 {Src}callproc.c.x Ä ¶
239 {CONFIG_H_GROUP} ¶
240 "{Includes}sys:types.h" ¶
241 "{Includes}sys:file.h" ¶
242 "{Includes}sys:types.h" ¶
243 "{Includes}sys:stat.h" ¶
244 "{Src}lisp.h" ¶
245 "{Src}commands.h" ¶
246 "{Src}buffer.h" ¶
247 "{Src}charset.h" ¶
248 "{Src}ccl.h" ¶
249 "{Src}coding.h" ¶
250 "{Src}composite.h" ¶
251 "{Includes}epaths.h" ¶
252 "{Src}process.h" ¶
253 "{Src}syssignal.h" ¶
254 "{Src}systty.h" ¶
255 "{Includes}termio.h"
256
257 {Src}casefiddle Ä ¶
258 {CONFIG_H_GROUP} ¶
259 "{Src}lisp.h" ¶
260 "{Src}buffer.h" ¶
261 "{Src}charset.h" ¶
262 "{Src}commands.h" ¶
263 "{Src}syntax.h" ¶
264 "{Src}composite.h"
265
266 {Src}casetab.c.x Ä ¶
267 {CONFIG_H_GROUP} ¶
268 "{Src}lisp.h" ¶
269 "{Src}buffer.h" ¶
270 "{Src}charset.h"
271
272 {Src}category.c.x Ä ¶
273 {CONFIG_H_GROUP} ¶
274 "{Src}lisp.h" ¶
275 "{Src}buffer.h" ¶
276 "{Src}charset.h" ¶
277 "{Src}category.h"
278
279 {Src}ccl.c.x Ä ¶
280 {CONFIG_H_GROUP} ¶
281 "{Src}lisp.h" ¶
282 "{Src}charset.h" ¶
283 "{Src}ccl.h" ¶
284 "{Src}coding.h"
285
286 {Src}charset.c.x Ä ¶
287 {CONFIG_H_GROUP} ¶
288 "{Includes}sys:types.h" ¶
289 "{Src}lisp.h" ¶
290 "{Src}buffer.h" ¶
291 "{Src}charset.h" ¶
292 "{Src}coding.h" ¶
293 "{Src}ccl.h" ¶
294 "{Src}disptab.h"
295
296 {Src}cm.c.x Ä ¶
297 {CONFIG_H_GROUP} ¶
298 "{Src}cm.h" ¶
299 "{Src}termhooks.h"
300
301 {Src}cmds.c.x Ä ¶
302 {CONFIG_H_GROUP} ¶
303 "{Src}lisp.h" ¶
304 "{Src}commands.h" ¶
305 "{Src}buffer.h" ¶
306 "{Src}charset.h" ¶
307 "{Src}syntax.h" ¶
308 {WINDOW_H_GROUP} ¶
309 "{Src}keyboard.h" ¶
310 {DISPEXTERN_H_GROUP}
311
312 {Src}coding.c.x Ä ¶
313 {CONFIG_H_GROUP} ¶
314 "{Src}lisp.h" ¶
315 "{Src}buffer.h" ¶
316 "{Src}charset.h" ¶
317 "{Src}composite.h" ¶
318 "{Src}ccl.h" ¶
319 "{Src}coding.h" ¶
320 {WINDOW_H_GROUP}
321
322 {Src}composite.c.x Ä ¶
323 {CONFIG_H_GROUP} ¶
324 "{Src}lisp.h" ¶
325 "{Src}buffer.h" ¶
326 "{Src}charset.h" ¶
327 {INTERVALS_H_GROUP}
328
329 {Src}data.c.x Ä ¶
330 {CONFIG_H_GROUP} ¶
331 "{Src}lisp.h" ¶
332 "{Src}puresize.h" ¶
333 "{Src}charset.h" ¶
334 "{Src}buffer.h" ¶
335 "{Src}keyboard.h" ¶
336 "{Src}frame.h" ¶
337 "{Src}syssignal.h"
338
339 {Src}dired.c.x Ä ¶
340 {CONFIG_H_GROUP} ¶
341 "{Includes}sys:types.h" ¶
342 "{Includes}sys:stat.h" ¶
343 "{Src}systime.h" ¶
344 "{Includes}sys:time.h" ¶
345 "{Includes}dirent.h" ¶
346 "{Src}lisp.h" ¶
347 "{Src}buffer.h" ¶
348 "{Src}commands.h" ¶
349 "{Src}charset.h" ¶
350 "{Src}coding.h" ¶
351 "{Src}ccl.h" ¶
352 "{Src}regex.h"
353
354 {Src}dispnew.c.x Ä ¶
355 {CONFIG_H_GROUP} ¶
356 "{Src}lisp.h" ¶
357 "{Src}termchar.h" ¶
358 "{Src}termopts.h" ¶
359 "{Src}termhooks.h" ¶
360 {DISPEXTERN_H_GROUP} ¶
361 "{Src}cm.h" ¶
362 "{Src}buffer.h" ¶
363 "{Src}charset.h" ¶
364 {WINDOW_H_GROUP} ¶
365 "{Src}commands.h" ¶
366 "{Src}disptab.h" ¶
367 "{Src}indent.h" ¶
368 {INTERVALS_H_GROUP} ¶
369 {BLOCKINPUT_H_GROUP} ¶
370 "{Src}process.h" ¶
371 "{Src}keyboard.h" ¶
372 "{Src}syssignal.h" ¶
373 "{Includes}macterm.h" ¶
374 "{Includes}macgui.h" ¶
375 "{Src}frame.h" ¶
376 "{Src}systime.h"
377
378 {Src}doc.c.x Ä ¶
379 {CONFIG_H_GROUP} ¶
380 "{Includes}sys:types.h" ¶
381 "{Includes}sys:file.h" ¶
382 "{Src}lisp.h" ¶
383 "{Src}buffer.h" ¶
384 "{Src}keyboard.h" ¶
385 "{Src}charset.h"
386
387 {Src}doprnt.c.x Ä ¶
388 {CONFIG_H_GROUP} ¶
389 "{Src}lisp.h" ¶
390 "{Src}charset.h"
391
392 {Src}editfns.c.x Ä ¶
393 {CONFIG_H_GROUP} ¶
394 "{Includes}sys:types.h" ¶
395 "{Includes}pwd.h" ¶
396 "{Src}lisp.h" ¶
397 {INTERVALS_H_GROUP} ¶
398 "{Src}buffer.h" ¶
399 "{Src}charset.h" ¶
400 "{Src}coding.h" ¶
401 "{Src}ccl.h" ¶
402 {WINDOW_H_GROUP} ¶
403 "{Src}systime.h" ¶
404 "{Includes}sys:time.h"
405
406 {Src}emacs.c.x Ä ¶
407 {CONFIG_H_GROUP} ¶
408 "{Includes}sys:types.h" ¶
409 "{Includes}sys:file.h" ¶
410 "{Includes}sys:types.h" ¶
411 "{Includes}sys:stat.h" ¶
412 "{Src}lisp.h" ¶
413 "{Src}commands.h" ¶
414 {INTERVALS_H_GROUP} ¶
415 "{Src}buffer.h" ¶
416 "{Src}systty.h" ¶
417 "{Includes}termio.h" ¶
418 {BLOCKINPUT_H_GROUP} ¶
419 "{Src}syssignal.h" ¶
420 "{Src}process.h" ¶
421 "{Src}termhooks.h" ¶
422 "{Src}keyboard.h" ¶
423 "{Src}frame.h"
424
425 {Src}eval.c.x Ä ¶
426 {CONFIG_H_GROUP} ¶
427 "{Src}lisp.h" ¶
428 {BLOCKINPUT_H_GROUP} ¶
429 "{Src}commands.h" ¶
430 "{Src}keyboard.h" ¶
431 {DISPEXTERN_H_GROUP}
432
433 {Src}fileio.c.x Ä ¶
434 {CONFIG_H_GROUP} ¶
435 "{Includes}sys:types.h" ¶
436 "{Includes}sys:stat.h" ¶
437 "{Includes}pwd.h" ¶
438 "{Src}lisp.h" ¶
439 {INTERVALS_H_GROUP} ¶
440 "{Src}buffer.h" ¶
441 "{Src}charset.h" ¶
442 "{Src}coding.h" ¶
443 "{Src}ccl.h" ¶
444 {WINDOW_H_GROUP} ¶
445 "{Src}systime.h" ¶
446 "{Includes}sys:time.h" ¶
447 "{Src}commands.h"
448
449 {Src}filemode.c.x Ä ¶
450 {CONFIG_H_GROUP} ¶
451 "{Includes}sys:types.h" ¶
452 "{Includes}sys:stat.h"
453
454 {Src}floatfns.c.x Ä ¶
455 {CONFIG_H_GROUP} ¶
456 "{Src}lisp.h" ¶
457 "{Src}syssignal.h"
458
459 {Src}fns.c.x Ä ¶
460 {CONFIG_H_GROUP} ¶
461 "{Src}lisp.h" ¶
462 "{Src}commands.h" ¶
463 "{Src}charset.h" ¶
464 "{Src}buffer.h" ¶
465 "{Src}keyboard.h" ¶
466 {INTERVALS_H_GROUP} ¶
467 "{Src}frame.h" ¶
468 {WINDOW_H_GROUP}
469
470 {Src}fontset.c.x Ä ¶
471 {CONFIG_H_GROUP} ¶
472 "{Src}lisp.h" ¶
473 "{Src}buffer.h" ¶
474 "{Src}charset.h" ¶
475 "{Src}ccl.h" ¶
476 "{Src}frame.h" ¶
477 {DISPEXTERN_H_GROUP} ¶
478 "{Src}fontset.h" ¶
479 {WINDOW_H_GROUP}
480
481 {Src}frame.c.x Ä ¶
482 {CONFIG_H_GROUP} ¶
483 "{Src}lisp.h" ¶
484 "{Src}charset.h" ¶
485 "{Src}fontset.h" ¶
486 "{Includes}macterm.h" ¶
487 "{Includes}macgui.h" ¶
488 "{Src}frame.h" ¶
489 "{Src}frame.h" ¶
490 "{Src}fontset.h" ¶
491 "{Src}termhooks.h" ¶
492 {DISPEXTERN_H_GROUP} ¶
493 {WINDOW_H_GROUP} ¶
494 "{Src}buffer.h" ¶
495 "{Src}commands.h" ¶
496 "{Src}keyboard.h"
497
498 {Src}getloadavg.c.x Ä ¶
499 {CONFIG_H_GROUP} ¶
500 "{Includes}sys:types.h"
501
502 {Src}indent.c.x Ä ¶
503 {CONFIG_H_GROUP} ¶
504 "{Src}lisp.h" ¶
505 "{Src}buffer.h" ¶
506 "{Src}charset.h" ¶
507 "{Src}category.h" ¶
508 "{Src}indent.h" ¶
509 "{Src}frame.h" ¶
510 {WINDOW_H_GROUP} ¶
511 "{Src}termchar.h" ¶
512 "{Src}termopts.h" ¶
513 "{Src}disptab.h" ¶
514 {INTERVALS_H_GROUP} ¶
515 "{Src}region-cache.h"
516
517 {Src}insdel.c.x Ä ¶
518 {CONFIG_H_GROUP} ¶
519 "{Src}lisp.h" ¶
520 {INTERVALS_H_GROUP} ¶
521 "{Src}buffer.h" ¶
522 "{Src}charset.h" ¶
523 {WINDOW_H_GROUP} ¶
524 {BLOCKINPUT_H_GROUP} ¶
525 "{Src}region-cache.h"
526
527 {Src}intervals.c.x Ä ¶
528 {CONFIG_H_GROUP} ¶
529 "{Src}lisp.h" ¶
530 {INTERVALS_H_GROUP} ¶
531 "{Src}buffer.h" ¶
532 "{Src}puresize.h" ¶
533 "{Src}keyboard.h"
534
535 {Src}keyboard.c.x Ä ¶
536 {CONFIG_H_GROUP} ¶
537 "{Src}termchar.h" ¶
538 "{Src}termopts.h" ¶
539 "{Src}lisp.h" ¶
540 "{Src}termhooks.h" ¶
541 "{Src}macros.h" ¶
542 "{Src}frame.h" ¶
543 {WINDOW_H_GROUP} ¶
544 "{Src}commands.h" ¶
545 "{Src}buffer.h" ¶
546 "{Src}charset.h" ¶
547 {DISPEXTERN_H_GROUP} ¶
548 "{Src}keyboard.h" ¶
549 "{Src}syntax.h" ¶
550 {INTERVALS_H_GROUP} ¶
551 {BLOCKINPUT_H_GROUP} ¶
552 "{Src}puresize.h" ¶
553 "{Src}systime.h" ¶
554 "{Src}atimer.h" ¶
555 "{Includes}sys:ioctl.h" ¶
556 "{Src}syssignal.h" ¶
557 "{Src}systty.h" ¶
558 "{Includes}termio.h" ¶
559 "{Includes}sys:types.h" ¶
560 "{Includes}macterm.h" ¶
561 "{Includes}macgui.h" ¶
562 "{Src}frame.h" ¶
563 "{Src}systime.h"
564
565 {Src}keymap.c.x Ä ¶
566 {CONFIG_H_GROUP} ¶
567 "{Src}lisp.h" ¶
568 "{Src}commands.h" ¶
569 "{Src}buffer.h" ¶
570 "{Src}charset.h" ¶
571 "{Src}keyboard.h" ¶
572 "{Src}termhooks.h" ¶
573 {BLOCKINPUT_H_GROUP} ¶
574 "{Src}puresize.h" ¶
575 {INTERVALS_H_GROUP}
576
577 {Src}lread.c.x Ä ¶
578 {CONFIG_H_GROUP} ¶
579 "{Includes}sys:types.h" ¶
580 "{Includes}sys:stat.h" ¶
581 "{Includes}sys:file.h" ¶
582 "{Src}lisp.h" ¶
583 {INTERVALS_H_GROUP} ¶
584 "{Src}buffer.h" ¶
585 "{Src}charset.h" ¶
586 "{Includes}epaths.h" ¶
587 "{Src}commands.h" ¶
588 "{Src}keyboard.h" ¶
589 "{Src}termhooks.h"
590
591 {Src}macros.c.x Ä ¶
592 {CONFIG_H_GROUP} ¶
593 "{Src}lisp.h" ¶
594 "{Src}macros.h" ¶
595 "{Src}commands.h" ¶
596 "{Src}buffer.h" ¶
597 {WINDOW_H_GROUP} ¶
598 "{Src}keyboard.h"
599
600 {Src}marker.c.x Ä ¶
601 {CONFIG_H_GROUP} ¶
602 "{Src}lisp.h" ¶
603 "{Src}buffer.h" ¶
604 "{Src}charset.h"
605
606 {Src}minibuf.c.x Ä ¶
607 {CONFIG_H_GROUP} ¶
608 "{Src}lisp.h" ¶
609 "{Src}commands.h" ¶
610 "{Src}buffer.h" ¶
611 "{Src}charset.h" ¶
612 {DISPEXTERN_H_GROUP} ¶
613 "{Src}frame.h" ¶
614 {WINDOW_H_GROUP} ¶
615 "{Src}syntax.h" ¶
616 "{Src}keyboard.h"
617
618 {Src}mktime.c.x Ä ¶
619 {CONFIG_H_GROUP} ¶
620 "{Includes}sys:types.h"
621
622 {Src}mocklisp.c.x Ä ¶
623 {CONFIG_H_GROUP} ¶
624 "{Src}lisp.h" ¶
625 "{Src}buffer.h"
626
627 {Src}print.c.x Ä ¶
628 {CONFIG_H_GROUP} ¶
629 "{Src}lisp.h" ¶
630 "{Src}buffer.h" ¶
631 "{Src}charset.h" ¶
632 "{Src}frame.h" ¶
633 {WINDOW_H_GROUP} ¶
634 "{Src}process.h" ¶
635 {DISPEXTERN_H_GROUP} ¶
636 "{Src}termchar.h" ¶
637 "{Src}keyboard.h" ¶
638 {INTERVALS_H_GROUP}
639
640 {Src}process.c.x Ä ¶
641 {CONFIG_H_GROUP} ¶
642 "{Includes}sys:types.h" ¶
643 "{Src}lisp.h" ¶
644 "{Src}systime.h" ¶
645 "{Includes}sys:time.h" ¶
646 "{Src}charset.h" ¶
647 "{Src}coding.h" ¶
648 "{Src}ccl.h" ¶
649 "{Src}termopts.h" ¶
650 "{Src}sysselect.h"
651
652 {Src}regex.c.x Ä ¶
653 {CONFIG_H_GROUP} ¶
654 "{Includes}sys:types.h" ¶
655 "{Src}lisp.h" ¶
656 "{Src}buffer.h" ¶
657 "{Src}syntax.h" ¶
658 "{Src}charset.h" ¶
659 "{Src}category.h" ¶
660 "{Src}regex.h"
661
662 {Src}region-cache.c.x Ä ¶
663 {CONFIG_H_GROUP} ¶
664 "{Src}lisp.h" ¶
665 "{Src}buffer.h" ¶
666 "{Src}region-cache.h"
667
668 {Src}scroll.c.x Ä ¶
669 {CONFIG_H_GROUP} ¶
670 "{Src}termchar.h" ¶
671 "{Src}lisp.h" ¶
672 {DISPEXTERN_H_GROUP} ¶
673 "{Src}frame.h" ¶
674 {WINDOW_H_GROUP}
675
676 {Src}search.c.x Ä ¶
677 {CONFIG_H_GROUP} ¶
678 "{Src}lisp.h" ¶
679 "{Src}syntax.h" ¶
680 "{Src}category.h" ¶
681 "{Src}buffer.h" ¶
682 "{Src}charset.h" ¶
683 "{Src}region-cache.h" ¶
684 "{Src}commands.h" ¶
685 {BLOCKINPUT_H_GROUP} ¶
686 {INTERVALS_H_GROUP} ¶
687 "{Includes}sys:types.h" ¶
688 "{Src}regex.h"
689
690 {Src}strftime.c.x Ä ¶
691 {CONFIG_H_GROUP} ¶
692 "{Includes}sys:types.h" ¶
693 "{Includes}sys:time.h"
694
695 {Src}syntax.c.x Ä ¶
696 {CONFIG_H_GROUP} ¶
697 "{Src}lisp.h" ¶
698 "{Src}commands.h" ¶
699 "{Src}buffer.h" ¶
700 "{Src}charset.h" ¶
701 "{Src}syntax.h" ¶
702 {INTERVALS_H_GROUP} ¶
703 "{Src}category.h"
704
705 {Src}sysdep.c.x Ä ¶
706 {CONFIG_H_GROUP} ¶
707 "{Src}lisp.h" ¶
708 {BLOCKINPUT_H_GROUP} ¶
709 "{Includes}sys:types.h" ¶
710 "{Includes}sys:stat.h" ¶
711 "{Includes}sys:ioctl.h" ¶
712 "{Src}syswait.h" ¶
713 "{Includes}sys:types.h" ¶
714 "{Src}frame.h" ¶
715 {WINDOW_H_GROUP} ¶
716 "{Src}termhooks.h" ¶
717 "{Src}termchar.h" ¶
718 "{Src}termopts.h" ¶
719 {DISPEXTERN_H_GROUP} ¶
720 "{Src}process.h" ¶
721 "{Src}syssignal.h" ¶
722 "{Src}systime.h" ¶
723 "{Includes}utime.h" ¶
724 "{Src}sysselect.h" ¶
725 "{Includes}dirent.h" ¶
726 "{Includes}sys:types.h"
727
728 {Src}term.c.x Ä ¶
729 {CONFIG_H_GROUP} ¶
730 "{Src}termchar.h" ¶
731 "{Src}termopts.h" ¶
732 "{Src}lisp.h" ¶
733 "{Src}charset.h" ¶
734 "{Src}coding.h" ¶
735 "{Src}ccl.h" ¶
736 "{Src}frame.h" ¶
737 "{Src}disptab.h" ¶
738 "{Src}termhooks.h" ¶
739 "{Src}keyboard.h" ¶
740 {DISPEXTERN_H_GROUP} ¶
741 {WINDOW_H_GROUP} ¶
742 "{Src}cm.h" ¶
743 "{Includes}macterm.h" ¶
744 "{Includes}macgui.h" ¶
745 "{Src}frame.h"
746
747 {Src}termcap.c.x Ä ¶
748 {CONFIG_H_GROUP} ¶
749 "{Src}lisp.h" ¶
750 "{Includes}sys:file.h"
751
752 {Src}textproc.c.x Ä ¶
753 {CONFIG_H_GROUP} ¶
754 "{Src}lisp.h" ¶
755 {INTERVALS_H_GROUP} ¶
756 "{Src}buffer.h" ¶
757 {WINDOW_H_GROUP}
758
759 {Src}tparam.c.x Ä ¶
760 {CONFIG_H_GROUP} ¶
761 "{Src}lisp.h"
762
763 {Src}undo.c.x Ä ¶
764 {CONFIG_H_GROUP} ¶
765 "{Src}lisp.h" ¶
766 "{Src}buffer.h" ¶
767 "{Src}commands.h"
768
769 {Src}window.c.x Ä ¶
770 {CONFIG_H_GROUP} ¶
771 "{Src}lisp.h" ¶
772 "{Src}buffer.h" ¶
773 "{Src}frame.h" ¶
774 {WINDOW_H_GROUP} ¶
775 "{Src}commands.h" ¶
776 "{Src}indent.h" ¶
777 "{Src}termchar.h" ¶
778 "{Src}disptab.h" ¶
779 "{Src}keyboard.h" ¶
780 {DISPEXTERN_H_GROUP} ¶
781 {BLOCKINPUT_H_GROUP} ¶
782 {INTERVALS_H_GROUP} ¶
783 "{Includes}macterm.h" ¶
784 "{Includes}macgui.h" ¶
785 "{Src}frame.h"
786
787 {Src}xdisp.c.x Ä ¶
788 {CONFIG_H_GROUP} ¶
789 "{Src}lisp.h" ¶
790 "{Src}frame.h" ¶
791 {WINDOW_H_GROUP} ¶
792 "{Src}termchar.h" ¶
793 {DISPEXTERN_H_GROUP} ¶
794 "{Src}buffer.h" ¶
795 "{Src}charset.h" ¶
796 "{Src}indent.h" ¶
797 "{Src}commands.h" ¶
798 "{Src}macros.h" ¶
799 "{Src}disptab.h" ¶
800 "{Src}termhooks.h" ¶
801 {INTERVALS_H_GROUP} ¶
802 "{Src}keyboard.h" ¶
803 "{Src}coding.h" ¶
804 "{Src}ccl.h" ¶
805 "{Src}process.h" ¶
806 "{Src}region-cache.h" ¶
807 "{Src}fontset.h" ¶
808 "{Includes}macterm.h" ¶
809 "{Includes}macgui.h" ¶
810 "{Src}frame.h"
811
812 {Src}xfaces.c.x Ä ¶
813 {CONFIG_H_GROUP} ¶
814 "{Includes}sys:types.h" ¶
815 "{Includes}sys:stat.h" ¶
816 "{Src}lisp.h" ¶
817 "{Src}charset.h" ¶
818 "{Src}frame.h" ¶
819 "{Src}fontset.h" ¶
820 "{Includes}macterm.h" ¶
821 "{Includes}macgui.h" ¶
822 "{Src}frame.h" ¶
823 "{Src}buffer.h" ¶
824 {DISPEXTERN_H_GROUP} ¶
825 {BLOCKINPUT_H_GROUP} ¶
826 {WINDOW_H_GROUP} ¶
827 {INTERVALS_H_GROUP} ¶
828 "{Src}keyboard.h"
829
830 {Src}macmenu.c.x Ä ¶
831 {CONFIG_H_GROUP} ¶
832 "{Src}lisp.h" ¶
833 "{Src}termhooks.h" ¶
834 "{Src}frame.h" ¶
835 {WINDOW_H_GROUP} ¶
836 "{Src}keyboard.h" ¶
837 {BLOCKINPUT_H_GROUP} ¶
838 "{Src}buffer.h" ¶
839 "{Includes}sys:types.h" ¶
840 {DISPEXTERN_H_GROUP}
841
842 {Source}mac.c Ä ¶
843 {CONFIG_H_GROUP} ¶
844 "{Includes}utime.h" ¶
845 "{Includes}dirent.h" ¶
846 "{Includes}sys:types.h" ¶
847 "{Includes}sys:stat.h" ¶
848 "{Includes}pwd.h" ¶
849 "{Includes}sys:types.h" ¶
850 "{Includes}sys:param.h" ¶
851 "{Src}lisp.h" ¶
852 "{Src}process.h" ¶
853 "{Src}sysselect.h" ¶
854 "{Src}systime.h" ¶
855 "{Includes}sys:time.h" ¶
856 "{Includes}utsname.h"
857
858 {Source}macfns.c Ä ¶
859 {CONFIG_H_GROUP} ¶
860 "{Src}lisp.h" ¶
861 "{Src}charset.h" ¶
862 "{Includes}macterm.h" ¶
863 "{Includes}macgui.h" ¶
864 "{Src}frame.h" ¶
865 "{Src}frame.h" ¶
866 {WINDOW_H_GROUP} ¶
867 "{Src}buffer.h" ¶
868 {DISPEXTERN_H_GROUP} ¶
869 "{Src}fontset.h" ¶
870 {INTERVALS_H_GROUP} ¶
871 "{Src}keyboard.h" ¶
872 {BLOCKINPUT_H_GROUP} ¶
873 "{Includes}epaths.h" ¶
874 "{Src}termhooks.h" ¶
875 "{Src}coding.h" ¶
876 "{Src}ccl.h" ¶
877 "{Src}systime.h" ¶
878 "{Src}bitmaps:gray.xbm"
879
880 {Source}macterm.c Ä ¶
881 {CONFIG_H_GROUP} ¶
882 "{Src}lisp.h" ¶
883 {BLOCKINPUT_H_GROUP} ¶
884 "{Src}syssignal.h" ¶
885 "{Includes}macterm.h" ¶
886 "{Includes}macgui.h" ¶
887 "{Src}frame.h" ¶
888 "{Includes}alloca.h" ¶
889 "{Includes}sys:types.h" ¶
890 "{Src}systty.h" ¶
891 "{Includes}termio.h" ¶
892 "{Src}systime.h" ¶
893 "{Includes}sys:stat.h" ¶
894 "{Src}charset.h" ¶
895 "{Src}ccl.h" ¶
896 "{Src}frame.h" ¶
897 {DISPEXTERN_H_GROUP} ¶
898 "{Src}fontset.h" ¶
899 "{Src}termhooks.h" ¶
900 "{Src}termopts.h" ¶
901 "{Src}termchar.h" ¶
902 "{Src}gnu.h" ¶
903 "{Src}disptab.h" ¶
904 "{Src}buffer.h" ¶
905 {WINDOW_H_GROUP} ¶
906 "{Src}keyboard.h" ¶
907 {INTERVALS_H_GROUP} ¶
908 "{Src}process.h" ¶
909 "{Src}atimer.h" ¶
910 "{Src}coding.h" ¶
911 "{Src}ccl.h" ¶
912 "{Includes}epaths.h" ¶
913 "{Src}termhooks.h" ¶
914 "{Src}coding.h" ¶
915 "{Src}ccl.h"
916
917
918 #----------------------------------------#
919 # Variables and rules for target "Clean" #
920 #----------------------------------------#
921
922 Clean Ä
923 Delete -i {EmacsObjects} {MacObjects}
924 Delete -i "{EmacsTarget}"
925 Delete -i stdout stderr
926 Delete -i {Make-DocFile-Objects} {Make-DocFileDir}make-docfile
927 Delete -i "{Source}"Emacs.maclf.r "{Source}"EmacsMPW.maclf.r
928
929 DistClean Ä Clean
930 Delete -i "Emacs CW"Å
931 Delete -y "emacs Data"
932 Delete -i emacs.mcp
933
934 #--------------------------------------#
935 # Variables and rules for target "Doc" #
936 #--------------------------------------#
937
938 EmacsSource = ¶
939 "{Src}abbrev.c" ¶
940 "{Src}alloc.c" ¶
941 "{Src}alloca.c" ¶
942 "{Src}atimer.c" ¶
943 "{Src}buffer.c" ¶
944 "{Src}bytecode.c" ¶
945 "{Src}callint.c" ¶
946 "{Src}callproc.c" ¶
947 "{Src}casefiddle.c" ¶
948 "{Src}casetab.c" ¶
949 "{Src}category.c" ¶
950 "{Src}ccl.c" ¶
951 "{Src}charset.c" ¶
952 "{Src}cm.c" ¶
953 "{Src}cmds.c" ¶
954 "{Src}coding.c" ¶
955 "{Src}composite.c" ¶
956 "{Src}data.c" ¶
957 "{Src}dired.c" ¶
958 "{Src}dispnew.c" ¶
959 "{Src}doc.c" ¶
960 "{Src}doprnt.c" ¶
961 "{Src}editfns.c" ¶
962 "{Src}emacs.c" ¶
963 "{Src}eval.c" ¶
964 "{Src}fileio.c" ¶
965 "{Src}filemode.c" ¶
966 "{Src}floatfns.c" ¶
967 "{Src}fns.c" ¶
968 "{Src}fontset.c" ¶
969 "{Src}frame.c" ¶
970 "{Src}getloadavg.c" ¶
971 "{Src}indent.c" ¶
972 "{Src}insdel.c" ¶
973 "{Src}intervals.c" ¶
974 "{Src}keyboard.c" ¶
975 "{Src}keymap.c" ¶
976 "{Src}lread.c" ¶
977 "{Src}macros.c" ¶
978 "{Src}marker.c" ¶
979 "{Src}minibuf.c" ¶
980 "{Src}mktime.c" ¶
981 "{Src}mocklisp.c" ¶
982 "{Src}print.c" ¶
983 "{Src}process.c" ¶
984 "{Src}regex.c" ¶
985 "{Src}region-cache.c" ¶
986 "{Src}scroll.c" ¶
987 "{Src}search.c" ¶
988 "{Src}strftime.c" ¶
989 "{Src}syntax.c" ¶
990 "{Src}sysdep.c" ¶
991 "{Src}term.c" ¶
992 "{Src}termcap.c" ¶
993 "{Src}textprop.c" ¶
994 "{Src}tparam.c" ¶
995 "{Src}undo.c" ¶
996 "{Src}window.c" ¶
997 "{Src}xdisp.c" ¶
998 "{Src}xfaces.c" ¶
999 "{Src}xmenu.c"
1000
1001 MacSource = ¶
1002 "{Source}mac.c" ¶
1003 "{Source}macfns.c" ¶
1004 "{Source}macterm.c"
1005
1006
1007 LispSource = ¶
1008 {Lisp}menu-bar.el ¶
1009 {Lisp}mouse.el ¶
1010 {Lisp}select.el ¶
1011 {Lisp}scroll-bar.el ¶
1012 {Lisp}vmsproc.el ¶
1013 {Lisp}vms-patch.el ¶
1014 {Lisp}ls-lisp.el ¶
1015 {Lisp}dos-fns.el ¶
1016 {Lisp}w32-fns.el ¶
1017 {Lisp}dos-w32.el ¶
1018 {Lisp}disp-table.el ¶
1019 {Lisp}dos-vars.el ¶
1020 {Lisp}international:ccl.el ¶
1021 {Lisp}international:codepage.el ¶
1022 {Lisp}abbrev.el ¶
1023 {Lisp}buff-menu.el ¶
1024 {Lisp}byte-run.el ¶
1025 {Lisp}cus-start.el ¶
1026 {Lisp}custom.el ¶
1027 {Lisp}emacs-lisp:lisp-mode.el ¶
1028 {Lisp}emacs-lisp:lisp.el ¶
1029 {Lisp}facemenu.el ¶
1030 {Lisp}faces.el ¶
1031 {Lisp}files.el ¶
1032 {Lisp}float-sup.el ¶
1033 {Lisp}format.el ¶
1034 {Lisp}frame.el ¶
1035 {Lisp}help.el ¶
1036 {Lisp}indent.el ¶
1037 {Lisp}isearch.el ¶
1038 {Lisp}loadup.el ¶
1039 {Lisp}loaddefs.el ¶
1040 {Lisp}bindings.el ¶
1041 {Lisp}map-ynp.el ¶
1042 {Lisp}international:mule.el ¶
1043 {Lisp}international:mule-conf.el ¶
1044 {Lisp}international:mule-cmds.el ¶
1045 {Lisp}international:characters.el ¶
1046 {Lisp}case-table.el ¶
1047 {Lisp}language:chinese.el ¶
1048 {Lisp}language:cyrillic.el ¶
1049 {Lisp}language:indian.el ¶
1050 {Lisp}language:devanagari.el ¶
1051 {Lisp}language:english.el ¶
1052 {Lisp}language:ethiopic.el ¶
1053 {Lisp}language:european.el ¶
1054 {Lisp}language:czech.el ¶
1055 {Lisp}language:slovak.el ¶
1056 {Lisp}language:romanian.el ¶
1057 {Lisp}language:greek.el ¶
1058 {Lisp}language:hebrew.el ¶
1059 {Lisp}language:japanese.el ¶
1060 {Lisp}language:korean.el ¶
1061 {Lisp}language:lao.el ¶
1062 {Lisp}language:thai.el ¶
1063 {Lisp}language:tibetan.el ¶
1064 {Lisp}language:vietnamese.el ¶
1065 {Lisp}language:misc-lang.el ¶
1066 {Lisp}paths.el ¶
1067 {Lisp}register.el ¶
1068 {Lisp}replace.el ¶
1069 {Lisp}simple.el ¶
1070 {Lisp}startup.el ¶
1071 {Lisp}subr.el ¶
1072 {Lisp}term:tty-colors.el ¶
1073 {Lisp}textmodes:fill.el ¶
1074 {Lisp}textmodes:page.el ¶
1075 {Lisp}textmodes:paragraphs.el ¶
1076 {Lisp}textmodes:text-mode.el ¶
1077 {Lisp}vc-hooks.el ¶
1078 {Lisp}ediff-hook.el ¶
1079 {Lisp}widget.el ¶
1080 {Lisp}window.el ¶
1081 {Lisp}version.el
1082
1083
1084 Doc Ä {DocTarget}DOC
1085
1086 {DocTarget}DOC Ä {Makefile} {EmacsSource} {MacSource} {LispSource} {Make-DocFileDir}Make-DocFile
1087 {Make-DocFileDir}make-docfile {EmacsSource} > {DocTarget}DOC
1088 {Make-DocFileDir}make-docfile {MacSource} >> {DocTarget}DOC
1089 {Make-DocFileDir}make-docfile {LispSource} >> {DocTarget}DOC
1090
1091
1092 #-----------------------------------------------#
1093 # Variables and rules for target "Make-DocFile" #
1094 #-----------------------------------------------#
1095
1096 Make-DocFile-Includes = -i :inc:
1097 Make-DocFile-Sym =
1098
1099 Make-DocFile-PPCCOptions = -typecheck relaxed -w off -noMapCR ¶
1100 {Make-DocFile-Includes} {Make-DocFile-Sym}
1101
1102 Make-DocFile-Objects = ¶
1103 "{Lib-Src}make-docfile.c.x" ¶
1104 "{Source}chdir.c.x"
1105
1106 Make-DocFile Ä {Make-DocFileDir}Make-DocFile
1107
1108 {Make-DocFileDir}Make-DocFile Ä {Makefile} {Make-DocFile-Objects}
1109 PPCLink ¶
1110 -o {Make-DocFileDir}Make-DocFile ¶
1111 {Make-DocFile-Sym} ¶
1112 {Make-DocFile-Objects} ¶
1113 -t 'MPST' ¶
1114 -c 'MPS ' ¶
1115 "{SharedLibraries}InterfaceLib" ¶
1116 "{SharedLibraries}StdCLib" ¶
1117 "{SharedLibraries}MathLib" ¶
1118 "{PPCLibraries}StdCRuntime.o" ¶
1119 "{PPCLibraries}PPCCRuntime.o" ¶
1120 "{PPCLibraries}PPCToolLibs.o"
1121
1122 "{Lib-Src}make-docfile.c.x" Ä {Makefile} "{Lib-Src}make-docfile.c"
1123 {PPCC} "{Lib-Src}make-docfile.c" -o "{Lib-Src}make-docfile.c.x" {Make-DocFile-PPCCOptions}
1124
1125 "{Source}chdir.c.x" Ä {Makefile} "{Source}chdir.c"
1126 {PPCC} "{Source}chdir.c" -o "{Source}chdir.c.x" {Make-DocFile-PPCCOptions}
1127