comparison mac/makefile.MPW @ 83238:223c12363c0c

Merged in changes from CVS trunk. Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-747 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-748 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-749 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-750 Merge from gnus--rel--5.10 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-751 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-752 Update from CVS * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-78 Merge from emacs--cvs-trunk--0 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-79 Update from CVS * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-80 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-278
author Karoly Lorentey <lorentey@elte.hu>
date Thu, 06 Jan 2005 15:00:09 +0000
parents d153d9579f9b c331d9c412f2
children 1f334cdd7020
comparison
equal deleted inserted replaced
83237:4ee39d9428b0 83238:223c12363c0c
42 SymOption = # -sym on # remove hash mark before "-sym on" to enable source debugging 42 SymOption = # -sym on # remove hash mark before "-sym on" to enable source debugging
43 OptOption = # -opt speed # alternatively set to -opt off or -opt size 43 OptOption = # -opt speed # alternatively set to -opt off or -opt size
44 44
45 # The -noMapCR options and the two -d's must not be removed. 45 # The -noMapCR options and the two -d's must not be removed.
46 46
47 PPCCOptions = {SymOption} {OptOption} -noMapCR -enum int ¶ 47 PPCCOptions = {SymOption} {OptOption} -noMapCR -enum int -alloca ¶
48 -typecheck relaxed -w off ¶ 48 -typecheck relaxed -w off ¶
49 -includes unix -i {Includes},{Src} ¶ 49 -includes unix -i {Includes},{Src} ¶
50 -d emacs=1 -d HAVE_CONFIG_H -d MAC_OS -d MAC_OS8 50 -d emacs=1 -d HAVE_CONFIG_H -d MAC_OS -d MAC_OS8
51 51
52 LinkOptions = {SymOption} -d 52 LinkOptions = {SymOption} -d
61 # The list all object files from the GNU Emacs 21.0 distribution. 61 # The list all object files from the GNU Emacs 21.0 distribution.
62 62
63 EmacsObjects = ¶ 63 EmacsObjects = ¶
64 "{Src}abbrev.c.x" ¶ 64 "{Src}abbrev.c.x" ¶
65 "{Src}alloc.c.x" ¶ 65 "{Src}alloc.c.x" ¶
66 "{Src}alloca.c.x" ¶
67 "{Src}atimer.c.x" ¶ 66 "{Src}atimer.c.x" ¶
68 "{Src}buffer.c.x" ¶ 67 "{Src}buffer.c.x" ¶
69 "{Src}bytecode.c.x" ¶ 68 "{Src}bytecode.c.x" ¶
70 "{Src}callint.c.x" ¶ 69 "{Src}callint.c.x" ¶
71 "{Src}callproc.c.x" ¶ 70 "{Src}callproc.c.x" ¶
90 "{Src}filemode.c.x" ¶ 89 "{Src}filemode.c.x" ¶
91 "{Src}floatfns.c.x" ¶ 90 "{Src}floatfns.c.x" ¶
92 "{Src}fns.c.x" ¶ 91 "{Src}fns.c.x" ¶
93 "{Src}fontset.c.x" ¶ 92 "{Src}fontset.c.x" ¶
94 "{Src}frame.c.x" ¶ 93 "{Src}frame.c.x" ¶
94 "{Src}fringe.c.x" ¶
95 "{Src}getloadavg.c.x" ¶ 95 "{Src}getloadavg.c.x" ¶
96 "{Src}image.c.x" ¶
96 "{Src}indent.c.x" ¶ 97 "{Src}indent.c.x" ¶
97 "{Src}insdel.c.x" ¶ 98 "{Src}insdel.c.x" ¶
98 "{Src}intervals.c.x" ¶ 99 "{Src}intervals.c.x" ¶
99 "{Src}keyboard.c.x" ¶ 100 "{Src}keyboard.c.x" ¶
100 "{Src}keymap.c.x" ¶ 101 "{Src}keymap.c.x" ¶
118 "{Src}textprop.c.x" ¶ 119 "{Src}textprop.c.x" ¶
119 "{Src}tparam.c.x" ¶ 120 "{Src}tparam.c.x" ¶
120 "{Src}undo.c.x" ¶ 121 "{Src}undo.c.x" ¶
121 "{Src}window.c.x" ¶ 122 "{Src}window.c.x" ¶
122 "{Src}xdisp.c.x" ¶ 123 "{Src}xdisp.c.x" ¶
123 "{Src}xfaces.c.x" 124 "{Src}xfaces.c.x" ¶
125 "{Src}lastfile.c.x"
124 126
125 # The list of object files generated from new source files of the Macintosh port. 127 # The list of object files generated from new source files of the Macintosh port.
126 128
127 MacObjects = ¶ 129 MacObjects = ¶
128 "{Src}mac.c.x" ¶ 130 "{Src}mac.c.x" ¶
140 "{SharedLibraries}StdCLib" ¶ 142 "{SharedLibraries}StdCLib" ¶
141 "{SharedLibraries}MathLib" ¶ 143 "{SharedLibraries}MathLib" ¶
142 "{SharedLibraries}AppleScriptLib" ¶ 144 "{SharedLibraries}AppleScriptLib" ¶
143 "{SharedLibraries}TextEncodingConverter" ¶ 145 "{SharedLibraries}TextEncodingConverter" ¶
144 "{SharedLibraries}AppearanceLib" ¶ 146 "{SharedLibraries}AppearanceLib" ¶
147 "{SharedLibraries}QuickTimeLib" ¶
145 "{PPCLibraries}StdCRuntime.o" ¶ 148 "{PPCLibraries}StdCRuntime.o" ¶
146 "{PPCLibraries}PPCCRuntime.o" ¶ 149 "{PPCLibraries}PPCCRuntime.o" ¶
147 "{PPCLibraries}PPCToolLibs.o" ¶ 150 "{PPCLibraries}PPCToolLibs.o" ¶
148 -o "{EmacsTarget}" 151 -o "{EmacsTarget}"
149 152
493 {WINDOW_H_GROUP} ¶ 496 {WINDOW_H_GROUP} ¶
494 "{Src}buffer.h" ¶ 497 "{Src}buffer.h" ¶
495 "{Src}commands.h" ¶ 498 "{Src}commands.h" ¶
496 "{Src}keyboard.h" 499 "{Src}keyboard.h"
497 500
501 {Src}fringe.c.x Ä ¶
502 {CONFIG_H_GROUP} ¶
503 "{Src}lisp.h" ¶
504 "{Src}frame.h" ¶
505 {WINDOW_H_GROUP} ¶
506 "{Src}buffer.h" ¶
507 {BLOCKINPUT_H_GROUP}
508
498 {Src}getloadavg.c.x Ä ¶ 509 {Src}getloadavg.c.x Ä ¶
499 {CONFIG_H_GROUP} ¶ 510 {CONFIG_H_GROUP} ¶
500 "{Includes}sys:types.h" 511 "{Includes}sys:types.h"
512
513 {Src}image.c.x Ä ¶
514 {CONFIG_H_GROUP} ¶
515 "{Src}lisp.h" ¶
516 "{Src}frame.h" ¶
517 {WINDOW_H_GROUP} ¶
518 {DISPEXTERN_H_GROUP} ¶
519 {BLOCKINPUT_H_GROUP} ¶
520 "{Includes}epaths.h" ¶
521 "{Src}macterm.h" ¶
522 "{Src}macgui.h" ¶
523 "{Src}frame.h" ¶
524 "{Includes}sys:stat.h" ¶
525 "{Includes}alloca.h" ¶
526 "{Includes}sys:param.h"
501 527
502 {Src}indent.c.x Ä ¶ 528 {Src}indent.c.x Ä ¶
503 {CONFIG_H_GROUP} ¶ 529 {CONFIG_H_GROUP} ¶
504 "{Src}lisp.h" ¶ 530 "{Src}lisp.h" ¶
505 "{Src}buffer.h" ¶ 531 "{Src}buffer.h" ¶
571 "{Src}keyboard.h" ¶ 597 "{Src}keyboard.h" ¶
572 "{Src}termhooks.h" ¶ 598 "{Src}termhooks.h" ¶
573 {BLOCKINPUT_H_GROUP} ¶ 599 {BLOCKINPUT_H_GROUP} ¶
574 "{Src}puresize.h" ¶ 600 "{Src}puresize.h" ¶
575 {INTERVALS_H_GROUP} 601 {INTERVALS_H_GROUP}
602
603 {Src}lastfile.c.x Ä ¶
604 {CONFIG_H_GROUP}
576 605
577 {Src}lread.c.x Ä ¶ 606 {Src}lread.c.x Ä ¶
578 {CONFIG_H_GROUP} ¶ 607 {CONFIG_H_GROUP} ¶
579 "{Includes}sys:types.h" ¶ 608 "{Includes}sys:types.h" ¶
580 "{Includes}sys:stat.h" ¶ 609 "{Includes}sys:stat.h" ¶
933 #--------------------------------------# 962 #--------------------------------------#
934 963
935 EmacsSource = ¶ 964 EmacsSource = ¶
936 "{Src}abbrev.c" ¶ 965 "{Src}abbrev.c" ¶
937 "{Src}alloc.c" ¶ 966 "{Src}alloc.c" ¶
938 "{Src}alloca.c" ¶
939 "{Src}atimer.c" ¶ 967 "{Src}atimer.c" ¶
940 "{Src}buffer.c" ¶ 968 "{Src}buffer.c" ¶
941 "{Src}bytecode.c" ¶ 969 "{Src}bytecode.c" ¶
942 "{Src}callint.c" ¶ 970 "{Src}callint.c" ¶
943 "{Src}callproc.c" ¶ 971 "{Src}callproc.c" ¶
962 "{Src}filemode.c" ¶ 990 "{Src}filemode.c" ¶
963 "{Src}floatfns.c" ¶ 991 "{Src}floatfns.c" ¶
964 "{Src}fns.c" ¶ 992 "{Src}fns.c" ¶
965 "{Src}fontset.c" ¶ 993 "{Src}fontset.c" ¶
966 "{Src}frame.c" ¶ 994 "{Src}frame.c" ¶
995 "{Src}fringe.c" ¶
967 "{Src}getloadavg.c" ¶ 996 "{Src}getloadavg.c" ¶
997 "{Src}image.c" ¶
968 "{Src}indent.c" ¶ 998 "{Src}indent.c" ¶
969 "{Src}insdel.c" ¶ 999 "{Src}insdel.c" ¶
970 "{Src}intervals.c" ¶ 1000 "{Src}intervals.c" ¶
971 "{Src}keyboard.c" ¶ 1001 "{Src}keyboard.c" ¶
972 "{Src}keymap.c" ¶ 1002 "{Src}keymap.c" ¶
1003 "{Src}lastfile.c" ¶
973 "{Src}lread.c" ¶ 1004 "{Src}lread.c" ¶
974 "{Src}macros.c" ¶ 1005 "{Src}macros.c" ¶
975 "{Src}marker.c" ¶ 1006 "{Src}marker.c" ¶
976 "{Src}minibuf.c" ¶ 1007 "{Src}minibuf.c" ¶
977 "{Src}mktime.c" ¶ 1008 "{Src}mktime.c" ¶
1016 {Lisp}international:ccl.elc ¶ 1047 {Lisp}international:ccl.elc ¶
1017 {Lisp}international:codepage.elc ¶ 1048 {Lisp}international:codepage.elc ¶
1018 {Lisp}abbrev.elc ¶ 1049 {Lisp}abbrev.elc ¶
1019 {Lisp}buff-menu.elc ¶ 1050 {Lisp}buff-menu.elc ¶
1020 {Lisp}server.elc ¶ 1051 {Lisp}server.elc ¶
1021 {Lisp}byte-run.elc ¶ 1052 {Lisp}emacs-lisp:byte-run.elc ¶
1022 {Lisp}cus-start.el ¶ 1053 {Lisp}cus-start.el ¶
1023 {Lisp}custom.elc ¶ 1054 {Lisp}custom.elc ¶
1024 {Lisp}emacs-lisp:lisp-mode.elc ¶ 1055 {Lisp}emacs-lisp:lisp-mode.elc ¶
1025 {Lisp}emacs-lisp:lisp.elc ¶ 1056 {Lisp}emacs-lisp:lisp.elc ¶
1026 {Lisp}facemenu.elc ¶ 1057 {Lisp}facemenu.elc ¶
1027 {Lisp}faces.elc ¶ 1058 {Lisp}faces.elc ¶
1028 {Lisp}files.elc ¶ 1059 {Lisp}files.elc ¶
1029 {Lisp}float-sup.elc ¶ 1060 {Lisp}emacs-lisp:float-sup.elc ¶
1030 {Lisp}format.elc ¶ 1061 {Lisp}format.elc ¶
1031 {Lisp}frame.elc ¶ 1062 {Lisp}frame.elc ¶
1032 {Lisp}help.elc ¶ 1063 {Lisp}help.elc ¶
1033 {Lisp}indent.elc ¶ 1064 {Lisp}indent.elc ¶
1034 {Lisp}isearch.elc ¶ 1065 {Lisp}isearch.elc ¶
1035 {Lisp}loadup.el ¶ 1066 {Lisp}loadup.el ¶
1036 {Lisp}loaddefs.el ¶ 1067 {Lisp}loaddefs.el ¶
1037 {Lisp}bindings.elc ¶ 1068 {Lisp}bindings.elc ¶
1038 {Lisp}map-ynp.elc ¶ 1069 {Lisp}emacs-lisp:map-ynp.elc ¶
1039 {Lisp}international:mule.elc ¶ 1070 {Lisp}international:mule.elc ¶
1040 {Lisp}international:mule-conf.el ¶ 1071 {Lisp}international:mule-conf.el ¶
1041 {Lisp}international:mule-cmds.elc ¶ 1072 {Lisp}international:mule-cmds.elc ¶
1042 {Lisp}international:characters.elc ¶ 1073 {Lisp}international:characters.elc ¶
1043 {Lisp}case-table.elc ¶ 1074 {Lisp}case-table.elc ¶