]> code.delx.au - gnu-emacs/blob - mac/makefile.MPW
(c-font-lock-declarations): Don't overwrite fontification for "case"
[gnu-emacs] / mac / makefile.MPW
1 # Make file for building GNU Emacs on the Macintosh.
2 # Copyright (C) 1999, 2000, 2002, 2003, 2004,
3 # 2005, 2006 Free Software Foundation, Inc.
4 #
5 # Author: Andrew Choi <akochoi@users.sourceforge.net>
6 #
7 # This file is part of GNU Emacs.
8 #
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 2, or (at your option)
12 # any later version.
13 #
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.
18 #
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. */
23 #
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".
30
31 Src = ::src: # emacs's src directory
32 Includes = :inc: # mac includes directory (common for MPW and CW)
33 Source = :src: # mac source directory
34 Lib-Src = ::lib-src: # ~emacs/lib-src directory, containing make-docfile.c
35 EmacsTarget = :Emacs MPW # pathname of target executable file
36 DocTarget = ::etc: # where the generated DOC file should be placed
37 Lisp = ::lisp: # emacs's lisp directory
38 Make-DocFileDir = {Lib-Src} # directory containing make-docfile tool
39
40 Makefile = makefile.MPW # self reference
41 NonCarbonMakeOut = NonCarbon.MakeOut # temporary file for non-Carbon build script
42
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
46
47 # The -noMapCR options and the two -d's must not be removed.
48
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}
53
54 LinkOptions = {SymOption} -d
55
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"
62
63 # The list all object files from the GNU Emacs 21.0 distribution.
64
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"
128
129 # The list of object files generated from new source files of the Macintosh port.
130
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
138 StdLibraries = ¶
139 "{SharedLibraries}CarbonLib" ¶
140 "{SharedLibraries}StdCLib" ¶
141 "{PPCLibraries}StdCRuntime.o" ¶
142 "{PPCLibraries}PPCCRuntime.o"
143
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"
155
156 # The next two are the dependency rules for building Emacs.
157
158 Emacs ÄÄ {Makefile} buildobj.lst {DocTarget}DOC {EmacsObjects} {MacObjects}
159 PPCLink ¶
160 {LinkOptions} ¶
161 {EmacsObjects} {MacObjects} ¶
162 {StdLibraries} ¶
163 -o "{EmacsTarget}"
164
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
169
170 NonCarbon Ä
171 Make -f "{Makefile}" -d CarbonOption="" -d StdLibraries='{NonCarbonLibs}' > "{NonCarbonMakeOut}"
172 "{NonCarbonMakeOut}"
173
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.
177
178 "{Source}"Emacs.maclf.r Ä "{Source}"Emacs.r
179 translate ¶0x0a ¶n < "{Source}"Emacs.r > "{Source}"Emacs.maclf.r
180
181 "{Source}"EmacsMPW.maclf.r Ä "{Source}"EmacsMPW.r
182 translate ¶0x0a ¶n < "{Source}"EmacsMPW.r > "{Source}"EmacsMPW.maclf.r
183
184 buildobj.lst Ä
185 Echo "{EmacsObjects} {MacObjects}" | StreamEdit -e '1,$ Replace -c ° /[Â ]*:([Â: ]*)¨1.c.x/ ¨1".o"' > buildobj.lst
186
187 # Here comes a long boring list of rules saying which files depend on which
188 # other ones. I generated them by hand using the "-p" option of the MrC compiler.
189 # Know about MakeMake, but this is probably more accurate.
190
191 {Src}abbrev.c.x Ä ¶
192 {CONFIG_H_GROUP} ¶
193 "{Src}lisp.h" ¶
194 "{Src}commands.h" ¶
195 "{Src}buffer.h" ¶
196 {WINDOW_H_GROUP} ¶
197 "{Src}charset.h" ¶
198 "{Src}syntax.h"
199
200 {Src}alloc.c.x Ä ¶
201 {CONFIG_H_GROUP} ¶
202 "{Src}lisp.h" ¶
203 {INTERVALS_H_GROUP} ¶
204 "{Src}puresize.h" ¶
205 "{Src}buffer.h" ¶
206 {WINDOW_H_GROUP} ¶
207 "{Src}frame.h" ¶
208 {BLOCKINPUT_H_GROUP} ¶
209 "{Src}keyboard.h" ¶
210 "{Src}charset.h" ¶
211 "{Src}syssignal.h"
212
213 {Src}alloca.c.x Ä ¶
214 {CONFIG_H_GROUP} ¶
215 "{Src}lisp.h" ¶
216 {BLOCKINPUT_H_GROUP}
217
218 {Src}atimer.c.x Ä ¶
219 {CONFIG_H_GROUP} ¶
220 "{Src}lisp.h" ¶
221 "{Src}syssignal.h" ¶
222 "{Src}systime.h" ¶
223 "{Includes}sys:time.h" ¶
224 {BLOCKINPUT_H_GROUP} ¶
225 "{Src}atimer.h" ¶
226 "{Includes}sys:time.h"
227
228 {Src}buffer.c.x Ä ¶
229 {CONFIG_H_GROUP} ¶
230 "{Includes}sys:types.h" ¶
231 "{Includes}sys:stat.h" ¶
232 "{Includes}sys:param.h" ¶
233 "{Src}lisp.h" ¶
234 {INTERVALS_H_GROUP} ¶
235 "{Src}window.h" ¶
236 "{Src}commands.h" ¶
237 "{Src}buffer.h" ¶
238 "{Src}charset.h" ¶
239 "{Src}region-cache.h" ¶
240 "{Src}indent.h" ¶
241 {BLOCKINPUT_H_GROUP} ¶
242 "{Src}frame.h"
243
244 {Src}bytecode.c.x Ä ¶
245 {CONFIG_H_GROUP} ¶
246 "{Src}lisp.h" ¶
247 "{Src}buffer.h" ¶
248 "{Src}charset.h" ¶
249 "{Src}syntax.h"
250
251 {Src}callint.c.x Ä ¶
252 {CONFIG_H_GROUP} ¶
253 "{Src}lisp.h" ¶
254 "{Src}buffer.h" ¶
255 "{Src}commands.h" ¶
256 "{Src}keyboard.h" ¶
257 {WINDOW_H_GROUP}
258
259 {Src}callproc.c.x Ä ¶
260 {CONFIG_H_GROUP} ¶
261 "{Includes}sys:types.h" ¶
262 "{Includes}sys:file.h" ¶
263 "{Includes}sys:types.h" ¶
264 "{Includes}sys:stat.h" ¶
265 "{Src}lisp.h" ¶
266 "{Src}commands.h" ¶
267 "{Src}buffer.h" ¶
268 "{Src}charset.h" ¶
269 "{Src}ccl.h" ¶
270 "{Src}coding.h" ¶
271 "{Src}composite.h" ¶
272 "{Includes}epaths.h" ¶
273 "{Src}process.h" ¶
274 "{Src}syssignal.h" ¶
275 "{Src}systty.h" ¶
276 "{Includes}termio.h"
277
278 {Src}casefiddle Ä ¶
279 {CONFIG_H_GROUP} ¶
280 "{Src}lisp.h" ¶
281 "{Src}buffer.h" ¶
282 "{Src}charset.h" ¶
283 "{Src}commands.h" ¶
284 "{Src}syntax.h" ¶
285 "{Src}composite.h"
286
287 {Src}casetab.c.x Ä ¶
288 {CONFIG_H_GROUP} ¶
289 "{Src}lisp.h" ¶
290 "{Src}buffer.h" ¶
291 "{Src}charset.h"
292
293 {Src}category.c.x Ä ¶
294 {CONFIG_H_GROUP} ¶
295 "{Src}lisp.h" ¶
296 "{Src}buffer.h" ¶
297 "{Src}charset.h" ¶
298 "{Src}category.h"
299
300 {Src}ccl.c.x Ä ¶
301 {CONFIG_H_GROUP} ¶
302 "{Src}lisp.h" ¶
303 "{Src}charset.h" ¶
304 "{Src}ccl.h" ¶
305 "{Src}coding.h"
306
307 {Src}charset.c.x Ä ¶
308 {CONFIG_H_GROUP} ¶
309 "{Includes}sys:types.h" ¶
310 "{Src}lisp.h" ¶
311 "{Src}buffer.h" ¶
312 "{Src}charset.h" ¶
313 "{Src}coding.h" ¶
314 "{Src}ccl.h" ¶
315 "{Src}disptab.h"
316
317 {Src}cm.c.x Ä ¶
318 {CONFIG_H_GROUP} ¶
319 "{Src}cm.h" ¶
320 "{Src}termhooks.h"
321
322 {Src}cmds.c.x Ä ¶
323 {CONFIG_H_GROUP} ¶
324 "{Src}lisp.h" ¶
325 "{Src}commands.h" ¶
326 "{Src}buffer.h" ¶
327 "{Src}charset.h" ¶
328 "{Src}syntax.h" ¶
329 {WINDOW_H_GROUP} ¶
330 "{Src}keyboard.h" ¶
331 {DISPEXTERN_H_GROUP}
332
333 {Src}coding.c.x Ä ¶
334 {CONFIG_H_GROUP} ¶
335 "{Src}lisp.h" ¶
336 "{Src}buffer.h" ¶
337 "{Src}charset.h" ¶
338 "{Src}composite.h" ¶
339 "{Src}ccl.h" ¶
340 "{Src}coding.h" ¶
341 {WINDOW_H_GROUP}
342
343 {Src}composite.c.x Ä ¶
344 {CONFIG_H_GROUP} ¶
345 "{Src}lisp.h" ¶
346 "{Src}buffer.h" ¶
347 "{Src}charset.h" ¶
348 {INTERVALS_H_GROUP}
349
350 {Src}data.c.x Ä ¶
351 {CONFIG_H_GROUP} ¶
352 "{Src}lisp.h" ¶
353 "{Src}puresize.h" ¶
354 "{Src}charset.h" ¶
355 "{Src}buffer.h" ¶
356 "{Src}keyboard.h" ¶
357 "{Src}frame.h" ¶
358 "{Src}syssignal.h"
359
360 {Src}dired.c.x Ä ¶
361 {CONFIG_H_GROUP} ¶
362 "{Includes}sys:types.h" ¶
363 "{Includes}sys:stat.h" ¶
364 "{Src}systime.h" ¶
365 "{Includes}sys:time.h" ¶
366 "{Includes}dirent.h" ¶
367 "{Src}lisp.h" ¶
368 "{Src}buffer.h" ¶
369 "{Src}commands.h" ¶
370 "{Src}charset.h" ¶
371 "{Src}coding.h" ¶
372 "{Src}ccl.h" ¶
373 "{Src}regex.h" ¶
374 "{Src}blockinput.h"
375
376 {Src}dispnew.c.x Ä ¶
377 {CONFIG_H_GROUP} ¶
378 "{Src}lisp.h" ¶
379 "{Src}termchar.h" ¶
380 "{Src}termopts.h" ¶
381 "{Src}termhooks.h" ¶
382 {DISPEXTERN_H_GROUP} ¶
383 "{Src}cm.h" ¶
384 "{Src}buffer.h" ¶
385 "{Src}charset.h" ¶
386 {WINDOW_H_GROUP} ¶
387 "{Src}commands.h" ¶
388 "{Src}disptab.h" ¶
389 "{Src}indent.h" ¶
390 {INTERVALS_H_GROUP} ¶
391 {BLOCKINPUT_H_GROUP} ¶
392 "{Src}process.h" ¶
393 "{Src}keyboard.h" ¶
394 "{Src}syssignal.h" ¶
395 "{Src}macterm.h" ¶
396 "{Src}macgui.h" ¶
397 "{Src}frame.h" ¶
398 "{Src}systime.h"
399
400 {Src}doc.c.x Ä ¶
401 {CONFIG_H_GROUP} ¶
402 "{Includes}sys:types.h" ¶
403 "{Includes}sys:file.h" ¶
404 "{Src}lisp.h" ¶
405 "{Src}buffer.h" ¶
406 "{Src}keyboard.h" ¶
407 "{Src}charset.h"
408
409 {Src}doprnt.c.x Ä ¶
410 {CONFIG_H_GROUP} ¶
411 "{Src}lisp.h" ¶
412 "{Src}charset.h"
413
414 {Src}editfns.c.x Ä ¶
415 {CONFIG_H_GROUP} ¶
416 "{Includes}sys:types.h" ¶
417 "{Includes}pwd.h" ¶
418 "{Src}lisp.h" ¶
419 {INTERVALS_H_GROUP} ¶
420 "{Src}buffer.h" ¶
421 "{Src}charset.h" ¶
422 "{Src}coding.h" ¶
423 "{Src}ccl.h" ¶
424 {WINDOW_H_GROUP} ¶
425 "{Src}systime.h" ¶
426 "{Includes}sys:time.h" ¶
427 "{Src}blockinput.h"
428
429 {Src}emacs.c.x Ä ¶
430 {CONFIG_H_GROUP} ¶
431 "{Includes}sys:types.h" ¶
432 "{Includes}sys:file.h" ¶
433 "{Includes}sys:types.h" ¶
434 "{Includes}sys:stat.h" ¶
435 "{Src}lisp.h" ¶
436 "{Src}commands.h" ¶
437 {INTERVALS_H_GROUP} ¶
438 "{Src}buffer.h" ¶
439 "{Src}systty.h" ¶
440 "{Includes}termio.h" ¶
441 {BLOCKINPUT_H_GROUP} ¶
442 "{Src}syssignal.h" ¶
443 "{Src}process.h" ¶
444 "{Src}termhooks.h" ¶
445 "{Src}keyboard.h" ¶
446 "{Src}frame.h"
447
448 {Src}eval.c.x Ä ¶
449 {CONFIG_H_GROUP} ¶
450 "{Src}lisp.h" ¶
451 {BLOCKINPUT_H_GROUP} ¶
452 "{Src}commands.h" ¶
453 "{Src}keyboard.h" ¶
454 {DISPEXTERN_H_GROUP}
455
456 {Src}fileio.c.x Ä ¶
457 {CONFIG_H_GROUP} ¶
458 "{Includes}sys:types.h" ¶
459 "{Includes}sys:stat.h" ¶
460 "{Includes}pwd.h" ¶
461 "{Src}lisp.h" ¶
462 {INTERVALS_H_GROUP} ¶
463 "{Src}buffer.h" ¶
464 "{Src}charset.h" ¶
465 "{Src}coding.h" ¶
466 "{Src}ccl.h" ¶
467 {WINDOW_H_GROUP} ¶
468 "{Src}systime.h" ¶
469 "{Includes}sys:time.h" ¶
470 "{Src}commands.h" ¶
471 "{Src}blockinput.h"
472
473 {Src}filemode.c.x Ä ¶
474 {CONFIG_H_GROUP} ¶
475 "{Includes}sys:types.h" ¶
476 "{Includes}sys:stat.h"
477
478 {Src}floatfns.c.x Ä ¶
479 {CONFIG_H_GROUP} ¶
480 "{Src}lisp.h" ¶
481 "{Src}syssignal.h"
482
483 {Src}fns.c.x Ä ¶
484 {CONFIG_H_GROUP} ¶
485 "{Src}lisp.h" ¶
486 "{Src}commands.h" ¶
487 "{Src}charset.h" ¶
488 "{Src}buffer.h" ¶
489 "{Src}keyboard.h" ¶
490 {INTERVALS_H_GROUP} ¶
491 "{Src}frame.h" ¶
492 {WINDOW_H_GROUP}
493
494 {Src}fontset.c.x Ä ¶
495 {CONFIG_H_GROUP} ¶
496 "{Src}lisp.h" ¶
497 "{Src}buffer.h" ¶
498 "{Src}charset.h" ¶
499 "{Src}ccl.h" ¶
500 "{Src}frame.h" ¶
501 {DISPEXTERN_H_GROUP} ¶
502 "{Src}fontset.h" ¶
503 {WINDOW_H_GROUP}
504
505 {Src}frame.c.x Ä ¶
506 {CONFIG_H_GROUP} ¶
507 "{Src}lisp.h" ¶
508 "{Src}charset.h" ¶
509 "{Src}fontset.h" ¶
510 "{Src}macterm.h" ¶
511 "{Src}macgui.h" ¶
512 "{Src}frame.h" ¶
513 "{Src}frame.h" ¶
514 "{Src}fontset.h" ¶
515 "{Src}termhooks.h" ¶
516 {BLOCKINPUT_H_GROUP} ¶
517 {DISPEXTERN_H_GROUP} ¶
518 {WINDOW_H_GROUP} ¶
519 "{Src}buffer.h" ¶
520 "{Src}commands.h" ¶
521 "{Src}keyboard.h"
522
523 {Src}fringe.c.x Ä ¶
524 {CONFIG_H_GROUP} ¶
525 "{Src}lisp.h" ¶
526 "{Src}frame.h" ¶
527 {WINDOW_H_GROUP} ¶
528 "{Src}buffer.h" ¶
529 {BLOCKINPUT_H_GROUP}
530
531 {Src}getloadavg.c.x Ä ¶
532 {CONFIG_H_GROUP} ¶
533 "{Includes}sys:types.h"
534
535 {Src}image.c.x Ä ¶
536 {CONFIG_H_GROUP} ¶
537 "{Src}lisp.h" ¶
538 "{Src}frame.h" ¶
539 {WINDOW_H_GROUP} ¶
540 {DISPEXTERN_H_GROUP} ¶
541 {BLOCKINPUT_H_GROUP} ¶
542 "{Includes}epaths.h" ¶
543 "{Src}macterm.h" ¶
544 "{Src}macgui.h" ¶
545 "{Src}frame.h" ¶
546 "{Includes}sys:stat.h" ¶
547 "{Includes}alloca.h" ¶
548 "{Includes}sys:param.h"
549
550 {Src}indent.c.x Ä ¶
551 {CONFIG_H_GROUP} ¶
552 "{Src}lisp.h" ¶
553 "{Src}buffer.h" ¶
554 "{Src}charset.h" ¶
555 "{Src}category.h" ¶
556 "{Src}indent.h" ¶
557 "{Src}frame.h" ¶
558 {WINDOW_H_GROUP} ¶
559 "{Src}termchar.h" ¶
560 "{Src}termopts.h" ¶
561 "{Src}disptab.h" ¶
562 {INTERVALS_H_GROUP} ¶
563 "{Src}region-cache.h"
564
565 {Src}insdel.c.x Ä ¶
566 {CONFIG_H_GROUP} ¶
567 "{Src}lisp.h" ¶
568 {INTERVALS_H_GROUP} ¶
569 "{Src}buffer.h" ¶
570 "{Src}charset.h" ¶
571 {WINDOW_H_GROUP} ¶
572 {BLOCKINPUT_H_GROUP} ¶
573 "{Src}region-cache.h"
574
575 {Src}intervals.c.x Ä ¶
576 {CONFIG_H_GROUP} ¶
577 "{Src}lisp.h" ¶
578 {INTERVALS_H_GROUP} ¶
579 "{Src}buffer.h" ¶
580 "{Src}puresize.h" ¶
581 "{Src}keyboard.h"
582
583 {Src}keyboard.c.x Ä ¶
584 {CONFIG_H_GROUP} ¶
585 "{Src}termchar.h" ¶
586 "{Src}termopts.h" ¶
587 "{Src}lisp.h" ¶
588 "{Src}termhooks.h" ¶
589 "{Src}macros.h" ¶
590 "{Src}frame.h" ¶
591 {WINDOW_H_GROUP} ¶
592 "{Src}commands.h" ¶
593 "{Src}buffer.h" ¶
594 "{Src}charset.h" ¶
595 {DISPEXTERN_H_GROUP} ¶
596 "{Src}keyboard.h" ¶
597 "{Src}syntax.h" ¶
598 {INTERVALS_H_GROUP} ¶
599 {BLOCKINPUT_H_GROUP} ¶
600 "{Src}puresize.h" ¶
601 "{Src}systime.h" ¶
602 "{Src}atimer.h" ¶
603 "{Includes}sys:ioctl.h" ¶
604 "{Src}syssignal.h" ¶
605 "{Src}systty.h" ¶
606 "{Includes}termio.h" ¶
607 "{Includes}sys:types.h" ¶
608 "{Src}macterm.h" ¶
609 "{Src}macgui.h" ¶
610 "{Src}frame.h" ¶
611 "{Src}systime.h"
612
613 {Src}keymap.c.x Ä ¶
614 {CONFIG_H_GROUP} ¶
615 "{Src}lisp.h" ¶
616 "{Src}commands.h" ¶
617 "{Src}buffer.h" ¶
618 "{Src}charset.h" ¶
619 "{Src}keyboard.h" ¶
620 "{Src}termhooks.h" ¶
621 {BLOCKINPUT_H_GROUP} ¶
622 "{Src}puresize.h" ¶
623 {INTERVALS_H_GROUP}
624
625 {Src}lastfile.c.x Ä ¶
626 {CONFIG_H_GROUP}
627
628 {Src}lread.c.x Ä ¶
629 {CONFIG_H_GROUP} ¶
630 "{Includes}sys:types.h" ¶
631 "{Includes}sys:stat.h" ¶
632 "{Includes}sys:file.h" ¶
633 "{Src}lisp.h" ¶
634 {INTERVALS_H_GROUP} ¶
635 "{Src}buffer.h" ¶
636 "{Src}charset.h" ¶
637 "{Includes}epaths.h" ¶
638 "{Src}commands.h" ¶
639 "{Src}keyboard.h" ¶
640 "{Src}termhooks.h"
641
642 {Src}macros.c.x Ä ¶
643 {CONFIG_H_GROUP} ¶
644 "{Src}lisp.h" ¶
645 "{Src}macros.h" ¶
646 "{Src}commands.h" ¶
647 "{Src}buffer.h" ¶
648 {WINDOW_H_GROUP} ¶
649 "{Src}keyboard.h"
650
651 {Src}marker.c.x Ä ¶
652 {CONFIG_H_GROUP} ¶
653 "{Src}lisp.h" ¶
654 "{Src}buffer.h" ¶
655 "{Src}charset.h"
656
657 {Src}minibuf.c.x Ä ¶
658 {CONFIG_H_GROUP} ¶
659 "{Src}lisp.h" ¶
660 "{Src}commands.h" ¶
661 "{Src}buffer.h" ¶
662 "{Src}charset.h" ¶
663 {DISPEXTERN_H_GROUP} ¶
664 "{Src}frame.h" ¶
665 {WINDOW_H_GROUP} ¶
666 "{Src}syntax.h" ¶
667 "{Src}keyboard.h"
668
669 {Src}mktime.c.x Ä ¶
670 {CONFIG_H_GROUP} ¶
671 "{Includes}sys:types.h"
672
673 {Src}print.c.x Ä ¶
674 {CONFIG_H_GROUP} ¶
675 "{Src}lisp.h" ¶
676 "{Src}buffer.h" ¶
677 "{Src}charset.h" ¶
678 "{Src}frame.h" ¶
679 {WINDOW_H_GROUP} ¶
680 "{Src}process.h" ¶
681 {DISPEXTERN_H_GROUP} ¶
682 "{Src}termchar.h" ¶
683 "{Src}keyboard.h" ¶
684 {INTERVALS_H_GROUP}
685
686 {Src}process.c.x Ä ¶
687 {CONFIG_H_GROUP} ¶
688 "{Includes}sys:types.h" ¶
689 "{Src}lisp.h" ¶
690 "{Src}systime.h" ¶
691 "{Includes}sys:time.h" ¶
692 "{Src}charset.h" ¶
693 "{Src}coding.h" ¶
694 "{Src}ccl.h" ¶
695 "{Src}termopts.h" ¶
696 "{Src}sysselect.h"
697
698 {Src}regex.c.x Ä ¶
699 {CONFIG_H_GROUP} ¶
700 "{Includes}sys:types.h" ¶
701 "{Src}lisp.h" ¶
702 "{Src}buffer.h" ¶
703 "{Src}syntax.h" ¶
704 "{Src}charset.h" ¶
705 "{Src}category.h" ¶
706 "{Src}regex.h"
707
708 {Src}region-cache.c.x Ä ¶
709 {CONFIG_H_GROUP} ¶
710 "{Src}lisp.h" ¶
711 "{Src}buffer.h" ¶
712 "{Src}region-cache.h"
713
714 {Src}scroll.c.x Ä ¶
715 {CONFIG_H_GROUP} ¶
716 "{Src}termchar.h" ¶
717 "{Src}lisp.h" ¶
718 {DISPEXTERN_H_GROUP} ¶
719 "{Src}frame.h" ¶
720 {WINDOW_H_GROUP}
721
722 {Src}search.c.x Ä ¶
723 {CONFIG_H_GROUP} ¶
724 "{Src}lisp.h" ¶
725 "{Src}syntax.h" ¶
726 "{Src}category.h" ¶
727 "{Src}buffer.h" ¶
728 "{Src}charset.h" ¶
729 "{Src}region-cache.h" ¶
730 "{Src}commands.h" ¶
731 {BLOCKINPUT_H_GROUP} ¶
732 {INTERVALS_H_GROUP} ¶
733 "{Includes}sys:types.h" ¶
734 "{Src}regex.h"
735
736 {Src}strftime.c.x Ä ¶
737 {CONFIG_H_GROUP} ¶
738 "{Includes}sys:types.h" ¶
739 "{Includes}sys:time.h"
740
741 {Src}syntax.c.x Ä ¶
742 {CONFIG_H_GROUP} ¶
743 "{Src}lisp.h" ¶
744 "{Src}commands.h" ¶
745 "{Src}buffer.h" ¶
746 "{Src}charset.h" ¶
747 "{Src}syntax.h" ¶
748 {INTERVALS_H_GROUP} ¶
749 "{Src}category.h"
750
751 {Src}sysdep.c.x Ä ¶
752 {CONFIG_H_GROUP} ¶
753 "{Src}lisp.h" ¶
754 {BLOCKINPUT_H_GROUP} ¶
755 "{Includes}sys:types.h" ¶
756 "{Includes}sys:stat.h" ¶
757 "{Includes}sys:ioctl.h" ¶
758 "{Src}syswait.h" ¶
759 "{Includes}sys:types.h" ¶
760 "{Src}frame.h" ¶
761 {WINDOW_H_GROUP} ¶
762 "{Src}termhooks.h" ¶
763 "{Src}termchar.h" ¶
764 "{Src}termopts.h" ¶
765 {DISPEXTERN_H_GROUP} ¶
766 "{Src}process.h" ¶
767 "{Src}syssignal.h" ¶
768 "{Src}systime.h" ¶
769 "{Includes}utime.h" ¶
770 "{Src}sysselect.h" ¶
771 "{Includes}dirent.h" ¶
772 "{Includes}sys:types.h"
773
774 {Src}term.c.x Ä ¶
775 {CONFIG_H_GROUP} ¶
776 "{Src}termchar.h" ¶
777 "{Src}termopts.h" ¶
778 "{Src}lisp.h" ¶
779 "{Src}charset.h" ¶
780 "{Src}coding.h" ¶
781 "{Src}ccl.h" ¶
782 "{Src}frame.h" ¶
783 "{Src}disptab.h" ¶
784 "{Src}termhooks.h" ¶
785 "{Src}keyboard.h" ¶
786 {DISPEXTERN_H_GROUP} ¶
787 {WINDOW_H_GROUP} ¶
788 "{Src}cm.h" ¶
789 "{Src}macterm.h" ¶
790 "{Src}macgui.h" ¶
791 "{Src}frame.h"
792
793 {Src}termcap.c.x Ä ¶
794 {CONFIG_H_GROUP} ¶
795 "{Src}lisp.h" ¶
796 "{Includes}sys:file.h"
797
798 {Src}textproc.c.x Ä ¶
799 {CONFIG_H_GROUP} ¶
800 "{Src}lisp.h" ¶
801 {INTERVALS_H_GROUP} ¶
802 "{Src}buffer.h" ¶
803 {WINDOW_H_GROUP}
804
805 {Src}tparam.c.x Ä ¶
806 {CONFIG_H_GROUP} ¶
807 "{Src}lisp.h"
808
809 {Src}undo.c.x Ä ¶
810 {CONFIG_H_GROUP} ¶
811 "{Src}lisp.h" ¶
812 "{Src}buffer.h" ¶
813 "{Src}commands.h"
814
815 {Src}window.c.x Ä ¶
816 {CONFIG_H_GROUP} ¶
817 "{Src}lisp.h" ¶
818 "{Src}buffer.h" ¶
819 "{Src}frame.h" ¶
820 {WINDOW_H_GROUP} ¶
821 "{Src}commands.h" ¶
822 "{Src}indent.h" ¶
823 "{Src}termchar.h" ¶
824 "{Src}disptab.h" ¶
825 "{Src}keyboard.h" ¶
826 {DISPEXTERN_H_GROUP} ¶
827 {BLOCKINPUT_H_GROUP} ¶
828 {INTERVALS_H_GROUP} ¶
829 "{Src}macterm.h" ¶
830 "{Src}macgui.h" ¶
831 "{Src}frame.h"
832
833 {Src}xdisp.c.x Ä ¶
834 {CONFIG_H_GROUP} ¶
835 "{Src}lisp.h" ¶
836 "{Src}frame.h" ¶
837 {WINDOW_H_GROUP} ¶
838 "{Src}termchar.h" ¶
839 {DISPEXTERN_H_GROUP} ¶
840 "{Src}buffer.h" ¶
841 "{Src}charset.h" ¶
842 "{Src}indent.h" ¶
843 "{Src}commands.h" ¶
844 "{Src}macros.h" ¶
845 {BLOCKINPUT_H_GROUP} ¶
846 "{Src}disptab.h" ¶
847 "{Src}termhooks.h" ¶
848 {INTERVALS_H_GROUP} ¶
849 "{Src}keyboard.h" ¶
850 "{Src}keymap.h" ¶
851 "{Src}coding.h" ¶
852 "{Src}ccl.h" ¶
853 "{Src}process.h" ¶
854 "{Src}region-cache.h" ¶
855 "{Src}fontset.h" ¶
856 "{Src}macterm.h" ¶
857 "{Src}macgui.h" ¶
858 "{Src}frame.h"
859
860 {Src}xfaces.c.x Ä ¶
861 {CONFIG_H_GROUP} ¶
862 "{Includes}sys:types.h" ¶
863 "{Includes}sys:stat.h" ¶
864 "{Src}lisp.h" ¶
865 "{Src}charset.h" ¶
866 "{Src}frame.h" ¶
867 "{Src}fontset.h" ¶
868 "{Src}macterm.h" ¶
869 "{Src}macgui.h" ¶
870 "{Src}frame.h" ¶
871 "{Src}buffer.h" ¶
872 {DISPEXTERN_H_GROUP} ¶
873 {BLOCKINPUT_H_GROUP} ¶
874 {WINDOW_H_GROUP} ¶
875 {INTERVALS_H_GROUP} ¶
876 "{Src}keyboard.h"
877
878 {Src}macmenu.c.x Ä ¶
879 {CONFIG_H_GROUP} ¶
880 "{Src}lisp.h" ¶
881 "{Src}termhooks.h" ¶
882 "{Src}frame.h" ¶
883 {WINDOW_H_GROUP} ¶
884 "{Src}keyboard.h" ¶
885 {BLOCKINPUT_H_GROUP} ¶
886 "{Src}buffer.h" ¶
887 "{Includes}sys:types.h" ¶
888 {DISPEXTERN_H_GROUP}
889
890 {Src}macselect.c.x Ä ¶
891 {CONFIG_H_GROUP} ¶
892 "{Src}lisp.h" ¶
893 "{Src}macterm.h" ¶
894 "{Src}macgui.h" ¶
895 "{Src}frame.h" ¶
896 "{Src}keymap.h" ¶
897 {BLOCKINPUT_H_GROUP}
898
899 {Src}mac.c Ä ¶
900 {CONFIG_H_GROUP} ¶
901 "{Includes}utime.h" ¶
902 "{Includes}dirent.h" ¶
903 "{Includes}sys:types.h" ¶
904 "{Includes}sys:stat.h" ¶
905 "{Includes}pwd.h" ¶
906 "{Includes}sys:types.h" ¶
907 "{Includes}sys:param.h" ¶
908 "{Src}lisp.h" ¶
909 "{Src}process.h" ¶
910 "{Src}sysselect.h" ¶
911 "{Src}systime.h" ¶
912 "{Includes}sys:time.h" ¶
913 "{Includes}utsname.h" ¶
914 "{Src}macterm.h" ¶
915 "{Src}macgui.h" ¶
916 "{Src}frame.h" ¶
917 {BLOCKINPUT_H_GROUP} ¶
918 "{Src}charset.h" ¶
919 "{Src}coding.h" ¶
920 "{Src}ccl.h"
921
922 {Src}macfns.c Ä ¶
923 {CONFIG_H_GROUP} ¶
924 "{Src}lisp.h" ¶
925 "{Src}charset.h" ¶
926 "{Src}macterm.h" ¶
927 "{Src}macgui.h" ¶
928 "{Src}frame.h" ¶
929 "{Src}frame.h" ¶
930 {WINDOW_H_GROUP} ¶
931 "{Src}buffer.h" ¶
932 {DISPEXTERN_H_GROUP} ¶
933 "{Src}fontset.h" ¶
934 {INTERVALS_H_GROUP} ¶
935 "{Src}keyboard.h" ¶
936 {BLOCKINPUT_H_GROUP} ¶
937 "{Includes}epaths.h" ¶
938 "{Src}termhooks.h" ¶
939 "{Src}coding.h" ¶
940 "{Src}ccl.h" ¶
941 "{Src}systime.h" ¶
942 "{Src}bitmaps:gray.xbm"
943
944 {Src}macterm.c Ä ¶
945 {CONFIG_H_GROUP} ¶
946 "{Src}lisp.h" ¶
947 {BLOCKINPUT_H_GROUP} ¶
948 "{Src}syssignal.h" ¶
949 "{Src}macterm.h" ¶
950 "{Src}macgui.h" ¶
951 "{Src}frame.h" ¶
952 "{Includes}alloca.h" ¶
953 "{Includes}sys:types.h" ¶
954 "{Src}systty.h" ¶
955 "{Includes}termio.h" ¶
956 "{Src}systime.h" ¶
957 "{Includes}sys:stat.h" ¶
958 "{Src}charset.h" ¶
959 "{Src}ccl.h" ¶
960 "{Src}frame.h" ¶
961 {DISPEXTERN_H_GROUP} ¶
962 "{Src}fontset.h" ¶
963 "{Src}termhooks.h" ¶
964 "{Src}termopts.h" ¶
965 "{Src}termchar.h" ¶
966 "{Src}gnu.h" ¶
967 "{Src}disptab.h" ¶
968 "{Src}buffer.h" ¶
969 {WINDOW_H_GROUP} ¶
970 "{Src}keyboard.h" ¶
971 {INTERVALS_H_GROUP} ¶
972 "{Src}process.h" ¶
973 "{Src}atimer.h" ¶
974 "{Src}coding.h" ¶
975 "{Src}ccl.h" ¶
976 "{Includes}epaths.h" ¶
977 "{Src}termhooks.h" ¶
978 "{Src}coding.h" ¶
979 "{Src}ccl.h"
980
981
982 #----------------------------------------#
983 # Variables and rules for target "Clean" #
984 #----------------------------------------#
985
986 Clean Ä
987 Delete -i {EmacsObjects} {MacObjects}
988 Delete -i "{EmacsTarget}"
989 Delete -i stdout stderr
990 Delete -i {Make-DocFile-Objects} {Make-DocFileDir}make-docfile
991 Delete -i "{Source}"Emacs.maclf.r "{Source}"EmacsMPW.maclf.r
992 Delete -i "{NonCarbonMakeOut}"
993 Delete -i buildobj.lst
994
995 DistClean Ä Clean
996 Delete -i "Emacs CW"Å
997 Delete -y "emacs Data"
998 Delete -i emacs.mcp
999
1000 #--------------------------------------#
1001 # Variables and rules for target "Doc" #
1002 #--------------------------------------#
1003
1004 SOME_MACHINE_OBJECTS = sunfns.o dosfns.o msdos.o ¶
1005 xterm.o xfns.o xmenu.o xselect.o xrdb.o xsmfns.o fringe.o image.o ¶
1006 mac.o macterm.o macfns.o macmenu.o macselect.o fontset.o ¶
1007 w32.o w32bdf.o w32console.o w32fns.o w32heap.o w32inevt.o ¶
1008 w32menu.o w32proc.o w32reg.o w32select.o w32term.o w32xfns.o
1009
1010 shortlisp = ¶
1011 {Lisp}abbrev.elc ¶
1012 {Lisp}buff-menu.elc ¶
1013 {Lisp}button.elc ¶
1014 {Lisp}emacs-lisp:byte-run.elc ¶
1015 {Lisp}cus-face.elc ¶
1016 {Lisp}cus-start.elc ¶
1017 {Lisp}custom.elc ¶
1018 {Lisp}emacs-lisp:backquote.elc ¶
1019 {Lisp}emacs-lisp:lisp-mode.elc ¶
1020 {Lisp}emacs-lisp:lisp.elc ¶
1021 {Lisp}facemenu.elc ¶
1022 {Lisp}faces.elc ¶
1023 {Lisp}files.elc ¶
1024 {Lisp}emacs-lisp:float-sup.elc ¶
1025 {Lisp}format.elc ¶
1026 {Lisp}frame.elc ¶
1027 {Lisp}help.elc ¶
1028 {Lisp}indent.elc ¶
1029 {Lisp}isearch.elc ¶
1030 {Lisp}rfn-eshadow.elc ¶
1031 {Lisp}loadup.el ¶
1032 {Lisp}loaddefs.el ¶
1033 {Lisp}bindings.elc ¶
1034 {Lisp}emacs-lisp:map-ynp.elc ¶
1035 {Lisp}env.elc ¶
1036 {Lisp}international:mule.elc ¶
1037 {Lisp}international:mule-conf.el ¶
1038 {Lisp}international:mule-cmds.elc ¶
1039 {Lisp}international:characters.elc ¶
1040 {Lisp}international:ucs-tables.elc ¶
1041 {Lisp}international:utf-8.elc ¶
1042 {Lisp}international:utf-16.elc ¶
1043 {Lisp}international:latin-1.el ¶
1044 {Lisp}international:latin-2.el ¶
1045 {Lisp}international:latin-3.el ¶
1046 {Lisp}international:latin-4.el ¶
1047 {Lisp}international:latin-5.el ¶
1048 {Lisp}international:latin-8.el ¶
1049 {Lisp}international:latin-9.el ¶
1050 {Lisp}case-table.elc ¶
1051 {Lisp}language:chinese.elc ¶
1052 {Lisp}language:cyrillic.elc ¶
1053 {Lisp}language:indian.elc ¶
1054 {Lisp}language:devanagari.el ¶
1055 {Lisp}language:kannada.el ¶
1056 {Lisp}language:malayalam.el ¶
1057 {Lisp}language:tamil.el ¶
1058 {Lisp}language:english.el ¶
1059 {Lisp}language:ethiopic.elc ¶
1060 {Lisp}language:european.elc ¶
1061 {Lisp}language:czech.el ¶
1062 {Lisp}language:slovak.el ¶
1063 {Lisp}language:romanian.el ¶
1064 {Lisp}language:greek.el ¶
1065 {Lisp}language:hebrew.el ¶
1066 {Lisp}language:japanese.el ¶
1067 {Lisp}language:korean.el ¶
1068 {Lisp}language:lao.el ¶
1069 {Lisp}language:thai.el ¶
1070 {Lisp}language:tibetan.elc ¶
1071 {Lisp}language:vietnamese.elc ¶
1072 {Lisp}language:misc-lang.el ¶
1073 {Lisp}language:utf-8-lang.el ¶
1074 {Lisp}language:georgian.el ¶
1075 {Lisp}menu-bar.elc ¶
1076 {Lisp}paths.el ¶
1077 {Lisp}register.elc ¶
1078 {Lisp}replace.elc ¶
1079 {Lisp}simple.elc ¶
1080 {Lisp}startup.elc ¶
1081 {Lisp}subr.elc ¶
1082 {Lisp}term:tty-colors.elc ¶
1083 {Lisp}font-core.elc ¶
1084 {Lisp}emacs-lisp:syntax.elc ¶
1085 {Lisp}font-lock.elc ¶
1086 {Lisp}jit-lock.elc ¶
1087 {Lisp}textmodes:fill.elc ¶
1088 {Lisp}textmodes:page.elc ¶
1089 {Lisp}textmodes:paragraphs.elc ¶
1090 {Lisp}textmodes:text-mode.elc ¶
1091 {Lisp}emacs-lisp:timer.elc ¶
1092 {Lisp}vc-hooks.elc ¶
1093 {Lisp}jka-cmpr-hook.elc ¶
1094 {Lisp}ediff-hook.elc ¶
1095 {Lisp}widget.elc ¶
1096 {Lisp}window.elc ¶
1097 {Lisp}version.el
1098
1099 SOME_MACHINE_LISP = {Lisp}mouse.elc ¶
1100 {Lisp}select.elc {Lisp}scroll-bar.elc ¶
1101 {Lisp}vmsproc.elc {Lisp}vms-patch.elc ¶
1102 {Lisp}ls-lisp.elc {Lisp}dos-fns.elc ¶
1103 {Lisp}w32-fns.elc {Lisp}dos-w32.elc ¶
1104 {Lisp}disp-table.elc {Lisp}dos-vars.elc ¶
1105 {Lisp}tooltip.elc {Lisp}image.elc ¶
1106 {Lisp}fringe.elc {Lisp}dnd.elc ¶
1107 {Lisp}mwheel.elc {Lisp}tool-bar.elc ¶
1108 {Lisp}x-dnd.elc ¶
1109 {Lisp}international:ccl.elc ¶
1110 {Lisp}international:codepage.elc ¶
1111 {Lisp}international:fontset.elc
1112
1113 Doc Ä {DocTarget}DOC
1114
1115 {DocTarget}DOC Ä {Makefile} {shortlisp} {SOME_MACHINE_LISP} {Make-DocFileDir}Make-DocFile buildobj.lst
1116 {Make-DocFileDir}make-docfile -d {Src} {SOME_MACHINE_OBJECTS} `Catenate buildobj.lst` > {DocTarget}DOC
1117 {Make-DocFileDir}make-docfile -a {DocTarget}DOC -d {Src} {SOME_MACHINE_LISP} {shortlisp}
1118
1119
1120 #-----------------------------------------------#
1121 # Variables and rules for target "Make-DocFile" #
1122 #-----------------------------------------------#
1123
1124 Make-DocFile-Includes = -i :inc:
1125 Make-DocFile-Sym =
1126
1127 Make-DocFile-PPCCOptions = -typecheck relaxed -w off -noMapCR ¶
1128 -d MAC_OS -d MAC_OS8 ¶
1129 {Make-DocFile-Includes} {Make-DocFile-Sym}
1130
1131 Make-DocFile-Objects = ¶
1132 "{Lib-Src}make-docfile.c.x" ¶
1133 "{Source}chdir.c.x"
1134
1135 Make-DocFile Ä {Make-DocFileDir}Make-DocFile
1136
1137 {Make-DocFileDir}Make-DocFile Ä {Makefile} {Make-DocFile-Objects}
1138 PPCLink ¶
1139 -o {Make-DocFileDir}Make-DocFile ¶
1140 {Make-DocFile-Sym} ¶
1141 {Make-DocFile-Objects} ¶
1142 -t 'MPST' ¶
1143 -c 'MPS ' ¶
1144 "{SharedLibraries}InterfaceLib" ¶
1145 "{SharedLibraries}StdCLib" ¶
1146 "{SharedLibraries}MathLib" ¶
1147 "{PPCLibraries}StdCRuntime.o" ¶
1148 "{PPCLibraries}PPCCRuntime.o" ¶
1149 "{PPCLibraries}PPCToolLibs.o"
1150
1151 "{Lib-Src}make-docfile.c.x" Ä {Makefile} "{Lib-Src}make-docfile.c"
1152 {PPCC} "{Lib-Src}make-docfile.c" -o "{Lib-Src}make-docfile.c.x" {Make-DocFile-PPCCOptions}
1153
1154 "{Source}chdir.c.x" Ä {Makefile} "{Source}chdir.c"
1155 {PPCC} "{Source}chdir.c" -o "{Source}chdir.c.x" {Make-DocFile-PPCCOptions}
1156
1157 # arch-tag: c9d9bc1a-142f-41da-b75e-79e0c44ffbb4