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