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