.
[emacs.git] / mac / makefile.MPW
blobd170750679fe902ae45772e27e9ca4a93313bb26
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 ¶
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}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"
125 # The list of object files generated from new source files of the Macintosh port.
127 MacObjects = ¶
128         "{Src}mac.c.x" ¶
129         "{Src}macfns.c.x" ¶
130         "{Src}macmenu.c.x" ¶
131         "{Src}macterm.c.x"
133 # The next two are the dependency rules for building Emacs.
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}"
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
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.
159 "{Source}"Emacs.maclf.r Ä "{Source}"Emacs.r
160         translate ¶0x0a ¶n < "{Source}"Emacs.r > "{Source}"Emacs.maclf.r
162 "{Source}"EmacsMPW.maclf.r Ä "{Source}"EmacsMPW.r
163         translate ¶0x0a ¶n < "{Source}"EmacsMPW.r > "{Source}"EmacsMPW.maclf.r
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.
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"
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"
191 {Src}alloca.c.x Ä ¶
192         {CONFIG_H_GROUP} ¶
193         "{Src}lisp.h" ¶
194         {BLOCKINPUT_H_GROUP}
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"
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"
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"
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}
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"
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"
265 {Src}casetab.c.x Ä ¶
266         {CONFIG_H_GROUP} ¶
267         "{Src}lisp.h" ¶
268         "{Src}buffer.h" ¶
269         "{Src}charset.h"
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"
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"
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"
295 {Src}cm.c.x Ä ¶
296         {CONFIG_H_GROUP} ¶
297         "{Src}cm.h" ¶
298         "{Src}termhooks.h"
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}
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}
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}
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"
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"
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"
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"
386 {Src}doprnt.c.x Ä ¶
387         {CONFIG_H_GROUP} ¶
388         "{Src}lisp.h" ¶
389         "{Src}charset.h"
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"
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"
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}
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"
448 {Src}filemode.c.x Ä ¶
449         {CONFIG_H_GROUP} ¶
450         "{Includes}sys:types.h" ¶
451         "{Includes}sys:stat.h"
453 {Src}floatfns.c.x Ä ¶
454         {CONFIG_H_GROUP} ¶
455         "{Src}lisp.h" ¶
456         "{Src}syssignal.h"
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}
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}
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         {BLOCKINPUT_H_GROUP} ¶
492         {DISPEXTERN_H_GROUP} ¶
493         {WINDOW_H_GROUP} ¶
494         "{Src}buffer.h" ¶
495         "{Src}commands.h" ¶
496         "{Src}keyboard.h"
498 {Src}getloadavg.c.x Ä ¶
499         {CONFIG_H_GROUP} ¶
500         "{Includes}sys:types.h"
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"
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"
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"
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         "{Src}macterm.h" ¶
561                 "{Src}macgui.h" ¶
562                 "{Src}frame.h" ¶
563         "{Src}systime.h"
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}
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"
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"
600 {Src}marker.c.x Ä ¶
601         {CONFIG_H_GROUP} ¶
602         "{Src}lisp.h" ¶
603         "{Src}buffer.h" ¶
604         "{Src}charset.h"
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"
618 {Src}mktime.c.x Ä ¶
619         {CONFIG_H_GROUP} ¶
620         "{Includes}sys:types.h"
622 {Src}print.c.x Ä ¶
623         {CONFIG_H_GROUP} ¶
624         "{Src}lisp.h" ¶
625         "{Src}buffer.h" ¶
626         "{Src}charset.h" ¶
627         "{Src}frame.h" ¶
628         {WINDOW_H_GROUP} ¶
629         "{Src}process.h" ¶
630         {DISPEXTERN_H_GROUP} ¶
631         "{Src}termchar.h" ¶
632         "{Src}keyboard.h" ¶
633         {INTERVALS_H_GROUP}
635 {Src}process.c.x Ä ¶
636         {CONFIG_H_GROUP} ¶
637         "{Includes}sys:types.h" ¶
638         "{Src}lisp.h" ¶
639         "{Src}systime.h" ¶
640                 "{Includes}sys:time.h" ¶
641         "{Src}charset.h" ¶
642         "{Src}coding.h" ¶
643                 "{Src}ccl.h" ¶
644         "{Src}termopts.h" ¶
645         "{Src}sysselect.h"
647 {Src}regex.c.x Ä ¶
648         {CONFIG_H_GROUP} ¶
649         "{Includes}sys:types.h" ¶
650         "{Src}lisp.h" ¶
651         "{Src}buffer.h" ¶
652         "{Src}syntax.h" ¶
653         "{Src}charset.h" ¶
654         "{Src}category.h" ¶
655         "{Src}regex.h"
657 {Src}region-cache.c.x Ä ¶
658         {CONFIG_H_GROUP} ¶
659         "{Src}lisp.h" ¶
660         "{Src}buffer.h" ¶
661         "{Src}region-cache.h"
663 {Src}scroll.c.x Ä ¶
664         {CONFIG_H_GROUP} ¶
665         "{Src}termchar.h" ¶
666         "{Src}lisp.h" ¶
667         {DISPEXTERN_H_GROUP} ¶
668         "{Src}frame.h" ¶
669         {WINDOW_H_GROUP}
671 {Src}search.c.x Ä ¶
672         {CONFIG_H_GROUP} ¶
673         "{Src}lisp.h" ¶
674         "{Src}syntax.h" ¶
675         "{Src}category.h" ¶
676         "{Src}buffer.h" ¶
677         "{Src}charset.h" ¶
678         "{Src}region-cache.h" ¶
679         "{Src}commands.h" ¶
680         {BLOCKINPUT_H_GROUP} ¶
681         {INTERVALS_H_GROUP} ¶
682         "{Includes}sys:types.h" ¶
683         "{Src}regex.h"
685 {Src}strftime.c.x Ä ¶
686         {CONFIG_H_GROUP} ¶
687         "{Includes}sys:types.h" ¶
688         "{Includes}sys:time.h"
690 {Src}syntax.c.x Ä ¶
691         {CONFIG_H_GROUP} ¶
692         "{Src}lisp.h" ¶
693         "{Src}commands.h" ¶
694         "{Src}buffer.h" ¶
695         "{Src}charset.h" ¶
696         "{Src}syntax.h" ¶
697         {INTERVALS_H_GROUP} ¶
698         "{Src}category.h"
700 {Src}sysdep.c.x Ä ¶
701         {CONFIG_H_GROUP} ¶
702         "{Src}lisp.h" ¶
703         {BLOCKINPUT_H_GROUP} ¶
704         "{Includes}sys:types.h" ¶
705         "{Includes}sys:stat.h" ¶
706         "{Includes}sys:ioctl.h" ¶
707         "{Src}syswait.h" ¶
708                 "{Includes}sys:types.h" ¶
709         "{Src}frame.h" ¶
710         {WINDOW_H_GROUP} ¶
711         "{Src}termhooks.h" ¶
712         "{Src}termchar.h" ¶
713         "{Src}termopts.h" ¶
714         {DISPEXTERN_H_GROUP} ¶
715         "{Src}process.h" ¶
716         "{Src}syssignal.h" ¶
717         "{Src}systime.h" ¶
718         "{Includes}utime.h" ¶
719         "{Src}sysselect.h" ¶
720         "{Includes}dirent.h" ¶
721                 "{Includes}sys:types.h"
723 {Src}term.c.x Ä ¶
724         {CONFIG_H_GROUP} ¶
725         "{Src}termchar.h" ¶
726         "{Src}termopts.h" ¶
727         "{Src}lisp.h" ¶
728         "{Src}charset.h" ¶
729         "{Src}coding.h" ¶
730                 "{Src}ccl.h" ¶
731         "{Src}frame.h" ¶
732         "{Src}disptab.h" ¶
733         "{Src}termhooks.h" ¶
734         "{Src}keyboard.h" ¶
735         {DISPEXTERN_H_GROUP} ¶
736         {WINDOW_H_GROUP} ¶
737         "{Src}cm.h" ¶
738         "{Src}macterm.h" ¶
739                 "{Src}macgui.h" ¶
740                 "{Src}frame.h"
742 {Src}termcap.c.x Ä ¶
743         {CONFIG_H_GROUP} ¶
744         "{Src}lisp.h" ¶
745         "{Includes}sys:file.h"
747 {Src}textproc.c.x Ä ¶
748         {CONFIG_H_GROUP} ¶
749         "{Src}lisp.h" ¶
750         {INTERVALS_H_GROUP} ¶
751         "{Src}buffer.h" ¶
752         {WINDOW_H_GROUP}
754 {Src}tparam.c.x Ä ¶
755         {CONFIG_H_GROUP} ¶
756         "{Src}lisp.h"
758 {Src}undo.c.x Ä ¶
759         {CONFIG_H_GROUP} ¶
760         "{Src}lisp.h" ¶
761         "{Src}buffer.h" ¶
762         "{Src}commands.h"
764 {Src}window.c.x Ä ¶
765         {CONFIG_H_GROUP} ¶
766         "{Src}lisp.h" ¶
767         "{Src}buffer.h" ¶
768         "{Src}frame.h" ¶
769         {WINDOW_H_GROUP} ¶
770         "{Src}commands.h" ¶
771         "{Src}indent.h" ¶
772         "{Src}termchar.h" ¶
773         "{Src}disptab.h" ¶
774         "{Src}keyboard.h" ¶
775         {DISPEXTERN_H_GROUP} ¶
776         {BLOCKINPUT_H_GROUP} ¶
777         {INTERVALS_H_GROUP} ¶
778         "{Src}macterm.h" ¶
779                 "{Src}macgui.h" ¶
780                 "{Src}frame.h"
782 {Src}xdisp.c.x Ä ¶
783         {CONFIG_H_GROUP} ¶
784         "{Src}lisp.h" ¶
785         "{Src}frame.h" ¶
786         {WINDOW_H_GROUP} ¶
787         "{Src}termchar.h" ¶
788         {DISPEXTERN_H_GROUP} ¶
789         "{Src}buffer.h" ¶
790         "{Src}charset.h" ¶
791         "{Src}indent.h" ¶
792         "{Src}commands.h" ¶
793         "{Src}macros.h" ¶
794         {BLOCKINPUT_H_GROUP} ¶
795         "{Src}disptab.h" ¶
796         "{Src}termhooks.h" ¶
797         {INTERVALS_H_GROUP} ¶
798         "{Src}keyboard.h" ¶
799         "{Src}keymap.h" ¶
800         "{Src}coding.h" ¶
801                 "{Src}ccl.h" ¶
802         "{Src}process.h" ¶
803         "{Src}region-cache.h" ¶
804         "{Src}fontset.h" ¶
805         "{Src}macterm.h" ¶
806                 "{Src}macgui.h" ¶
807                 "{Src}frame.h"
809 {Src}xfaces.c.x Ä ¶
810         {CONFIG_H_GROUP} ¶
811         "{Includes}sys:types.h" ¶
812         "{Includes}sys:stat.h" ¶
813         "{Src}lisp.h" ¶
814         "{Src}charset.h" ¶
815         "{Src}frame.h" ¶
816         "{Src}fontset.h" ¶
817         "{Src}macterm.h" ¶
818                 "{Src}macgui.h" ¶
819                 "{Src}frame.h" ¶
820         "{Src}buffer.h" ¶
821         {DISPEXTERN_H_GROUP} ¶
822         {BLOCKINPUT_H_GROUP} ¶
823         {WINDOW_H_GROUP} ¶
824         {INTERVALS_H_GROUP} ¶
825         "{Src}keyboard.h"
827 {Src}macmenu.c.x Ä ¶
828         {CONFIG_H_GROUP} ¶
829         "{Src}lisp.h" ¶
830         "{Src}termhooks.h" ¶
831         "{Src}frame.h" ¶
832         {WINDOW_H_GROUP} ¶
833         "{Src}keyboard.h" ¶
834         {BLOCKINPUT_H_GROUP} ¶
835         "{Src}buffer.h" ¶
836         "{Includes}sys:types.h" ¶
837         {DISPEXTERN_H_GROUP}
839 {Src}mac.c Ä ¶
840         {CONFIG_H_GROUP} ¶
841         "{Includes}utime.h" ¶
842         "{Includes}dirent.h" ¶
843                 "{Includes}sys:types.h" ¶
844         "{Includes}sys:stat.h" ¶
845         "{Includes}pwd.h" ¶
846                 "{Includes}sys:types.h" ¶
847         "{Includes}sys:param.h" ¶
848         "{Src}lisp.h" ¶
849         "{Src}process.h" ¶
850         "{Src}sysselect.h" ¶
851         "{Src}systime.h" ¶
852                 "{Includes}sys:time.h" ¶
853         "{Includes}utsname.h"
855 {Src}macfns.c Ä ¶
856         {CONFIG_H_GROUP} ¶
857         "{Src}lisp.h" ¶
858         "{Src}charset.h" ¶
859         "{Src}macterm.h" ¶
860                 "{Src}macgui.h" ¶
861                 "{Src}frame.h" ¶
862         "{Src}frame.h" ¶
863         {WINDOW_H_GROUP} ¶
864         "{Src}buffer.h" ¶
865         {DISPEXTERN_H_GROUP} ¶
866         "{Src}fontset.h" ¶
867         {INTERVALS_H_GROUP} ¶
868         "{Src}keyboard.h" ¶
869         {BLOCKINPUT_H_GROUP} ¶
870         "{Includes}epaths.h" ¶
871         "{Src}termhooks.h" ¶
872         "{Src}coding.h" ¶
873                 "{Src}ccl.h" ¶
874         "{Src}systime.h" ¶
875         "{Src}bitmaps:gray.xbm"
877 {Src}macterm.c Ä ¶
878         {CONFIG_H_GROUP} ¶
879         "{Src}lisp.h" ¶
880         {BLOCKINPUT_H_GROUP} ¶
881         "{Src}syssignal.h" ¶
882         "{Src}macterm.h" ¶
883                 "{Src}macgui.h" ¶
884                 "{Src}frame.h" ¶
885         "{Includes}alloca.h" ¶
886         "{Includes}sys:types.h" ¶
887         "{Src}systty.h" ¶
888                 "{Includes}termio.h" ¶
889         "{Src}systime.h" ¶
890         "{Includes}sys:stat.h" ¶
891         "{Src}charset.h" ¶
892         "{Src}ccl.h" ¶
893         "{Src}frame.h" ¶
894         {DISPEXTERN_H_GROUP} ¶
895         "{Src}fontset.h" ¶
896         "{Src}termhooks.h" ¶
897         "{Src}termopts.h" ¶
898         "{Src}termchar.h" ¶
899         "{Src}gnu.h" ¶
900         "{Src}disptab.h" ¶
901         "{Src}buffer.h" ¶
902         {WINDOW_H_GROUP} ¶
903         "{Src}keyboard.h" ¶
904         {INTERVALS_H_GROUP} ¶
905         "{Src}process.h" ¶
906         "{Src}atimer.h" ¶
907         "{Src}coding.h" ¶
908                 "{Src}ccl.h" ¶
909         "{Includes}epaths.h" ¶
910         "{Src}termhooks.h" ¶
911         "{Src}coding.h" ¶
912                 "{Src}ccl.h"
915 #----------------------------------------#
916 # Variables and rules for target "Clean" #
917 #----------------------------------------#
919 Clean Ä
920         Delete -i {EmacsObjects} {MacObjects}
921         Delete -i "{EmacsTarget}"
922         Delete -i stdout stderr
923         Delete -i {Make-DocFile-Objects} {Make-DocFileDir}make-docfile
924         Delete -i "{Source}"Emacs.maclf.r "{Source}"EmacsMPW.maclf.r
926 DistClean Ä Clean
927         Delete -i "Emacs CW"Å
928         Delete -y "emacs Data"
929         Delete -i emacs.mcp
931 #--------------------------------------#
932 # Variables and rules for target "Doc" #
933 #--------------------------------------#
935 EmacsSource = ¶
936         "{Src}abbrev.c" ¶
937         "{Src}alloc.c" ¶
938         "{Src}alloca.c" ¶
939         "{Src}atimer.c" ¶
940         "{Src}buffer.c" ¶
941         "{Src}bytecode.c" ¶
942         "{Src}callint.c" ¶
943         "{Src}callproc.c" ¶
944         "{Src}casefiddle.c" ¶
945         "{Src}casetab.c" ¶
946         "{Src}category.c" ¶
947         "{Src}ccl.c" ¶
948         "{Src}charset.c" ¶
949         "{Src}cm.c" ¶
950         "{Src}cmds.c" ¶
951         "{Src}coding.c" ¶
952         "{Src}composite.c" ¶
953         "{Src}data.c" ¶
954         "{Src}dired.c" ¶
955         "{Src}dispnew.c" ¶
956         "{Src}doc.c" ¶
957         "{Src}doprnt.c" ¶
958         "{Src}editfns.c" ¶
959         "{Src}emacs.c" ¶
960         "{Src}eval.c" ¶
961         "{Src}fileio.c" ¶
962         "{Src}filemode.c" ¶
963         "{Src}floatfns.c" ¶
964         "{Src}fns.c" ¶
965         "{Src}fontset.c" ¶
966         "{Src}frame.c" ¶
967         "{Src}getloadavg.c" ¶
968         "{Src}indent.c" ¶
969         "{Src}insdel.c" ¶
970         "{Src}intervals.c" ¶
971         "{Src}keyboard.c" ¶
972         "{Src}keymap.c" ¶
973         "{Src}lread.c" ¶
974         "{Src}macros.c" ¶
975         "{Src}marker.c" ¶
976         "{Src}minibuf.c" ¶
977         "{Src}mktime.c" ¶
978         "{Src}print.c" ¶
979         "{Src}process.c" ¶
980         "{Src}regex.c" ¶
981         "{Src}region-cache.c" ¶
982         "{Src}scroll.c" ¶
983         "{Src}search.c" ¶
984         "{Src}strftime.c" ¶
985         "{Src}syntax.c" ¶
986         "{Src}sysdep.c" ¶
987         "{Src}term.c" ¶
988         "{Src}termcap.c" ¶
989         "{Src}textprop.c" ¶
990         "{Src}tparam.c" ¶
991         "{Src}undo.c" ¶
992         "{Src}window.c" ¶
993         "{Src}xdisp.c" ¶
994         "{Src}xfaces.c" ¶
995         "{Src}xmenu.c"
997 MacSource = ¶
998         "{Src}mac.c" ¶
999         "{Src}macfns.c" ¶
1000         "{Src}macterm.c"
1003 LispSource = ¶
1004         {Lisp}menu-bar.elc ¶
1005         {Lisp}mouse.elc ¶
1006         {Lisp}select.elc ¶
1007         {Lisp}scroll-bar.elc ¶
1008         {Lisp}vmsproc.elc ¶
1009         {Lisp}vms-patch.elc ¶
1010         {Lisp}ls-lisp.elc ¶
1011         {Lisp}dos-fns.elc ¶
1012         {Lisp}w32-fns.elc ¶
1013         {Lisp}dos-w32.elc ¶
1014         {Lisp}disp-table.elc ¶
1015         {Lisp}dos-vars.elc ¶
1016         {Lisp}international:ccl.elc ¶
1017         {Lisp}international:codepage.elc ¶
1018         {Lisp}abbrev.elc ¶
1019         {Lisp}buff-menu.elc ¶
1020         {Lisp}byte-run.elc ¶
1021         {Lisp}cus-start.el ¶
1022         {Lisp}custom.elc ¶
1023         {Lisp}emacs-lisp:lisp-mode.elc ¶
1024         {Lisp}emacs-lisp:lisp.elc ¶
1025         {Lisp}facemenu.elc ¶
1026         {Lisp}faces.elc ¶
1027         {Lisp}files.elc ¶
1028         {Lisp}float-sup.elc ¶
1029         {Lisp}format.elc ¶
1030         {Lisp}frame.elc ¶
1031         {Lisp}help.elc ¶
1032         {Lisp}indent.elc ¶
1033         {Lisp}isearch.elc ¶
1034         {Lisp}loadup.el ¶
1035         {Lisp}loaddefs.el ¶
1036         {Lisp}bindings.elc ¶
1037         {Lisp}map-ynp.elc ¶
1038         {Lisp}international:mule.elc ¶
1039         {Lisp}international:mule-conf.el ¶
1040         {Lisp}international:mule-cmds.elc ¶
1041         {Lisp}international:characters.elc ¶
1042         {Lisp}case-table.elc ¶
1043         {Lisp}language:chinese.elc ¶
1044         {Lisp}language:cyrillic.elc ¶
1045         {Lisp}language:indian.elc ¶
1046         {Lisp}language:ethiopic.elc ¶
1047         {Lisp}language:european.elc ¶
1048         {Lisp}language:tibetan.elc ¶
1049         {Lisp}language:vietnamese.elc ¶
1050         {Lisp}paths.el ¶
1051         {Lisp}register.elc ¶
1052         {Lisp}replace.elc ¶
1053         {Lisp}simple.elc ¶
1054         {Lisp}startup.elc ¶
1055         {Lisp}subr.elc ¶
1056         {Lisp}term:tty-colors.elc ¶
1057         {Lisp}textmodes:fill.elc ¶
1058         {Lisp}textmodes:page.elc ¶
1059         {Lisp}textmodes:paragraphs.elc ¶
1060         {Lisp}textmodes:text-mode.elc ¶
1061         {Lisp}vc-hooks.elc ¶
1062         {Lisp}ediff-hook.elc ¶
1063         {Lisp}widget.elc ¶
1064         {Lisp}window.elc ¶
1065         {Lisp}version.el
1067 LispSourceDontCompile = ¶
1068         {Lisp}language:devanagari.el ¶
1069         {Lisp}language:english.el ¶
1070         {Lisp}language:czech.el ¶
1071         {Lisp}language:slovak.el ¶
1072         {Lisp}language:romanian.el ¶
1073         {Lisp}language:greek.el ¶
1074         {Lisp}language:hebrew.el ¶
1075         {Lisp}language:japanese.el ¶
1076         {Lisp}language:korean.el ¶
1077         {Lisp}language:lao.el ¶
1078         {Lisp}language:thai.el ¶
1079         {Lisp}language:misc-lang.el
1081 Doc Ä {DocTarget}DOC
1083 {DocTarget}DOC Ä {Makefile} {EmacsSource} {MacSource} {LispSource} {LispSourceDontCompile} {Make-DocFileDir}Make-DocFile
1084         {Make-DocFileDir}make-docfile {EmacsSource} > {DocTarget}DOC
1085         {Make-DocFileDir}make-docfile {MacSource} >> {DocTarget}DOC
1086         {Make-DocFileDir}make-docfile {LispSource} >> {DocTarget}DOC
1087         {Make-DocFileDir}make-docfile {LispSourceDontCompile} >> {DocTarget}DOC
1090 #-----------------------------------------------#
1091 # Variables and rules for target "Make-DocFile" #
1092 #-----------------------------------------------#
1094 Make-DocFile-Includes           = -i :inc:
1095 Make-DocFile-Sym                        =
1097 Make-DocFile-PPCCOptions        = -typecheck relaxed -w off -noMapCR ¶
1098                                                                 {Make-DocFile-Includes} {Make-DocFile-Sym}
1100 Make-DocFile-Objects = ¶
1101                 "{Lib-Src}make-docfile.c.x" ¶
1102                 "{Source}chdir.c.x"
1104 Make-DocFile Ä {Make-DocFileDir}Make-DocFile
1106 {Make-DocFileDir}Make-DocFile Ä {Makefile} {Make-DocFile-Objects}
1107         PPCLink ¶
1108                 -o {Make-DocFileDir}Make-DocFile ¶
1109                 {Make-DocFile-Sym} ¶
1110                 {Make-DocFile-Objects} ¶
1111                 -t 'MPST' ¶
1112                 -c 'MPS ' ¶
1113                 "{SharedLibraries}InterfaceLib" ¶
1114                 "{SharedLibraries}StdCLib" ¶
1115                 "{SharedLibraries}MathLib" ¶
1116                 "{PPCLibraries}StdCRuntime.o" ¶
1117                 "{PPCLibraries}PPCCRuntime.o" ¶
1118                 "{PPCLibraries}PPCToolLibs.o"
1120 "{Lib-Src}make-docfile.c.x" Ä {Makefile} "{Lib-Src}make-docfile.c"
1121         {PPCC} "{Lib-Src}make-docfile.c" -o "{Lib-Src}make-docfile.c.x" {Make-DocFile-PPCCOptions}
1123 "{Source}chdir.c.x" Ä {Makefile} "{Source}chdir.c"
1124         {PPCC} "{Source}chdir.c" -o "{Source}chdir.c.x" {Make-DocFile-PPCCOptions}