diff options
| author | Steven Tamm | 2004-12-27 17:23:53 +0000 |
|---|---|---|
| committer | Steven Tamm | 2004-12-27 17:23:53 +0000 |
| commit | 22933cbff47c023e8a37677112e847c9242d8a54 (patch) | |
| tree | bae0f938a00a18f0e4737dfe5becd42a451f2063 /mac/makefile.MPW | |
| parent | 74e2abe26a974d64a1fe006dd99c061c91d71773 (diff) | |
| download | emacs-22933cbff47c023e8a37677112e847c9242d8a54.tar.gz emacs-22933cbff47c023e8a37677112e847c9242d8a54.zip | |
* makefile.MPW: Add dependencies for fringe.c.x, image.c.x, and
lastfile.c.x.
(PPCCOptions): Add -alloca.
(EmacsObjects): Remove alloca.c.x. Add fringe.c.x, image.c.x, and
lastfile.c.x.
(Emacs MPW): Add QuickTimeLib.
(EmacsSource): Remove alloca.c. Add fringe.c, image.c, and
lastfile.c.
(LispSource): Fix pathnames for byte-run.elc, float-sup.elc, and
map-ynp.elc.
* inc/config.h (USE_LSB_TAG) [__MRC__]: Define.
(UNEXEC_SRC): Close comment.
* inc/epaths.h (PATH_BITMAPS, PATH_GAME): New defines.
* inc/m-mac.h (HAVE_ALLOCA) [__MRC__]: Define.
(C_ALLOCA) [__MRC__]: Don't define.
* inc/s-mac.h (X_OK): New define.
(DECL_ALIGN) [USE_LSB_TAG && __MRC__]: New macro.
(GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS.
Diffstat (limited to 'mac/makefile.MPW')
| -rw-r--r-- | mac/makefile.MPW | 45 |
1 files changed, 38 insertions, 7 deletions
diff --git a/mac/makefile.MPW b/mac/makefile.MPW index 063e63e1759..92840d9c730 100644 --- a/mac/makefile.MPW +++ b/mac/makefile.MPW | |||
| @@ -44,7 +44,7 @@ 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 |
| @@ -63,7 +63,6 @@ BLOCKINPUT_H_GROUP = "{Src}blockinput.h" "{Src}atimer.h" "{Src}systime.h" ¶ | |||
| 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" ¶ |
| @@ -92,7 +91,9 @@ EmacsObjects = ¶ | |||
| 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" ¶ |
| @@ -120,7 +121,8 @@ EmacsObjects = ¶ | |||
| 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 | ||
| @@ -142,6 +144,7 @@ Emacs ÄÄ {Makefile} {DocTarget}DOC {EmacsObjects} {MacObjects} | |||
| 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" ¶ |
| @@ -495,10 +498,33 @@ Emacs ÄÄ {Makefile} "{Source}"Emacs.maclf.r "{Source}"EmacsMPW.maclf.r | |||
| 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" |
| 501 | 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" | ||
| 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" ¶ |
| @@ -574,6 +600,9 @@ Emacs ÄÄ {Makefile} "{Source}"Emacs.maclf.r "{Source}"EmacsMPW.maclf.r | |||
| 574 | "{Src}puresize.h" ¶ | 600 | "{Src}puresize.h" ¶ |
| 575 | {INTERVALS_H_GROUP} | 601 | {INTERVALS_H_GROUP} |
| 576 | 602 | ||
| 603 | {Src}lastfile.c.x Ä ¶ | ||
| 604 | {CONFIG_H_GROUP} | ||
| 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" ¶ |
| @@ -935,7 +964,6 @@ DistClean Ä Clean | |||
| 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" ¶ |
| @@ -964,12 +992,15 @@ EmacsSource = ¶ | |||
| 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" ¶ |
| @@ -1017,7 +1048,7 @@ LispSource = ¶ | |||
| 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}byte-run.elc ¶ | 1051 | {Lisp}emacs-lisp:byte-run.elc ¶ |
| 1021 | {Lisp}cus-start.el ¶ | 1052 | {Lisp}cus-start.el ¶ |
| 1022 | {Lisp}custom.elc ¶ | 1053 | {Lisp}custom.elc ¶ |
| 1023 | {Lisp}emacs-lisp:lisp-mode.elc ¶ | 1054 | {Lisp}emacs-lisp:lisp-mode.elc ¶ |
| @@ -1025,7 +1056,7 @@ LispSource = ¶ | |||
| 1025 | {Lisp}facemenu.elc ¶ | 1056 | {Lisp}facemenu.elc ¶ |
| 1026 | {Lisp}faces.elc ¶ | 1057 | {Lisp}faces.elc ¶ |
| 1027 | {Lisp}files.elc ¶ | 1058 | {Lisp}files.elc ¶ |
| 1028 | {Lisp}float-sup.elc ¶ | 1059 | {Lisp}emacs-lisp:float-sup.elc ¶ |
| 1029 | {Lisp}format.elc ¶ | 1060 | {Lisp}format.elc ¶ |
| 1030 | {Lisp}frame.elc ¶ | 1061 | {Lisp}frame.elc ¶ |
| 1031 | {Lisp}help.elc ¶ | 1062 | {Lisp}help.elc ¶ |
| @@ -1034,7 +1065,7 @@ LispSource = ¶ | |||
| 1034 | {Lisp}loadup.el ¶ | 1065 | {Lisp}loadup.el ¶ |
| 1035 | {Lisp}loaddefs.el ¶ | 1066 | {Lisp}loaddefs.el ¶ |
| 1036 | {Lisp}bindings.elc ¶ | 1067 | {Lisp}bindings.elc ¶ |
| 1037 | {Lisp}map-ynp.elc ¶ | 1068 | {Lisp}emacs-lisp:map-ynp.elc ¶ |
| 1038 | {Lisp}international:mule.elc ¶ | 1069 | {Lisp}international:mule.elc ¶ |
| 1039 | {Lisp}international:mule-conf.el ¶ | 1070 | {Lisp}international:mule-conf.el ¶ |
| 1040 | {Lisp}international:mule-cmds.elc ¶ | 1071 | {Lisp}international:mule-cmds.elc ¶ |