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