]> code.delx.au - gnu-emacs/blobdiff - mac/makefile.MPW
Change copyright year to 2007.
[gnu-emacs] / mac / makefile.MPW
index f339ed30481687ffa693c660a6cbfa3f6b640101..f0d8fdc6e4ebaf2fbd4663ce97bbf82dd43c54eb 100644 (file)
@@ -1,32 +1,32 @@
 #    Make file for building GNU Emacs on the Macintosh.
-#    Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+#    Copyright (C) 1999, 2000, 2002, 2003, 2004,
+#       2005, 2006 Free Software Foundation, Inc.
 #
 #    Author: Andrew Choi <akochoi@users.sourceforge.net>
-# 
+#
 # This file is part of GNU Emacs.
-# 
+#
 # GNU Emacs is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 2, or (at your option)
 # any later version.
-# 
+#
 # GNU Emacs is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License
 # along with GNU Emacs; see the file COPYING.  If not, write to
-# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-# Boston, MA 02111-1307, USA.  */
+# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+# Boston, MA 02110-1301, USA.  */
 #
 # Defines the following targets:
-#   Emacs (default) - normal Emacs build.
+#   Emacs (default) - normal Carbon Emacs build.
+#   NonCarbon - non-Carbon Emacs build.
 #   Clean - remove all object and executable files to prepare for a fresh build.
 #   Doc - generate the "DOC" file in ~emacs/etc/.
 #   Make-DocFile - build the make-docfile tool, utility for generating "DOC".
-#   PrepSource - prepare the source files after unstuffing the distribution.
-#   PrepDist - prepare for distribution: generate diff files; move mac-win.el to {Patches}.
 
 Src = ::src:                                           # emacs's src directory
 Includes = :inc:                                       # mac includes directory (common for MPW and CW)
@@ -38,22 +38,24 @@ Lisp = ::lisp:                                              # emacs's lisp directory
 Make-DocFileDir = {Lib-Src}                    # directory containing make-docfile tool
 
 Makefile = makefile.MPW                        # self reference
+NonCarbonMakeOut = NonCarbon.MakeOut   # temporary file for non-Carbon build script
 
+CarbonOption = -d HAVE_CARBON
 SymOption = # -sym on                  # remove hash mark before "-sym on" to enable source debugging
 OptOption = # -opt speed                       # alternatively set to -opt off or -opt size
 
 # The -noMapCR options and the two -d's must not be removed.
 
-PPCCOptions = {SymOption} {OptOption} -noMapCR -enum int ¶
+PPCCOptions = {SymOption} {OptOption} -noMapCR -enum int -alloca 
        -typecheck relaxed -w off ¶
        -includes unix -i {Includes},{Src} ¶
-       -d emacs=1 -d HAVE_CONFIG_H
+       -d emacs=1 -d HAVE_CONFIG_H -d MAC_OS -d MAC_OS8 {CarbonOption}
 
 LinkOptions = {SymOption} -d
 
 CONFIG_H_GROUP = "{Includes}config.h" "{Includes}s-mac.h" "{Includes}utsname.h" "{Includes}m-mac.h"
-DISPEXTERN_H_GROUP = "{Src}dispextern.h" "{Includes}macgui.h"
-INTERVALS_H_GROUP = "{Src}intervals.h" "{Src}dispextern.h" "{Includes}macgui.h"
+DISPEXTERN_H_GROUP = "{Src}dispextern.h" "{Src}macgui.h"
+INTERVALS_H_GROUP = "{Src}intervals.h" "{Src}dispextern.h" "{Src}macgui.h"
 WINDOW_H_GROUP = "{Src}window.h" {DISPEXTERN_H_GROUP}
 BLOCKINPUT_H_GROUP = "{Src}blockinput.h" "{Src}atimer.h" "{Src}systime.h" ¶
   "{Includes}sys:time.h" "{Includes}sys:time.h"
@@ -63,7 +65,6 @@ BLOCKINPUT_H_GROUP = "{Src}blockinput.h" "{Src}atimer.h" "{Src}systime.h" 
 EmacsObjects = ¶
        "{Src}abbrev.c.x" ¶
        "{Src}alloc.c.x" ¶
-       "{Src}alloca.c.x" ¶
        "{Src}atimer.c.x" ¶
        "{Src}buffer.c.x" ¶
        "{Src}bytecode.c.x" ¶
@@ -92,7 +93,9 @@ EmacsObjects = 
        "{Src}fns.c.x" ¶
        "{Src}fontset.c.x" ¶
        "{Src}frame.c.x" ¶
+       "{Src}fringe.c.x" ¶
        "{Src}getloadavg.c.x" ¶
+       "{Src}image.c.x" ¶
        "{Src}indent.c.x" ¶
        "{Src}insdel.c.x" ¶
        "{Src}intervals.c.x" ¶
@@ -104,7 +107,6 @@ EmacsObjects = 
        "{Src}md5.c.x" ¶
        "{Src}minibuf.c.x" ¶
        "{Src}mktime.c.x" ¶
-       "{Src}mocklisp.c.x" ¶
        "{Src}print.c.x" ¶
        "{Src}process.c.x" ¶
        "{Src}regex.c.x" ¶
@@ -121,38 +123,54 @@ EmacsObjects = 
        "{Src}undo.c.x" ¶
        "{Src}window.c.x" ¶
        "{Src}xdisp.c.x" ¶
-       "{Src}xfaces.c.x"
+       "{Src}xfaces.c.x" ¶
+       "{Src}lastfile.c.x"
 
 # The list of object files generated from new source files of the Macintosh port.
 
 MacObjects = ¶
-       "{Source}mac.c.x" ¶
-       "{Source}macfns.c.x" ¶
-       "{Source}macmenu.c.x" ¶
-       "{Source}macterm.c.x"
+       "{Src}mac.c.x" ¶
+       "{Src}macfns.c.x" ¶
+       "{Src}macmenu.c.x" ¶
+       "{Src}macselect.c.x" ¶
+       "{Src}macterm.c.x"
+
+StdLibraries = ¶
+       "{SharedLibraries}CarbonLib" ¶
+       "{SharedLibraries}StdCLib" ¶
+       "{PPCLibraries}StdCRuntime.o" ¶
+       "{PPCLibraries}PPCCRuntime.o"
+
+NonCarbonLibs = ¶
+       "{SharedLibraries}InterfaceLib" ¶
+       "{SharedLibraries}StdCLib" ¶
+       "{SharedLibraries}MathLib" ¶
+       "{SharedLibraries}AppleScriptLib" ¶
+       "{SharedLibraries}LocalesLib" ¶
+       "{SharedLibraries}AppearanceLib" ¶
+       "{SharedLibraries}QuickTimeLib" ¶
+       "{PPCLibraries}StdCRuntime.o" ¶
+       "{PPCLibraries}PPCCRuntime.o" ¶
+       "{PPCLibraries}PPCToolLibs.o"
 
 # The next two are the dependency rules for building Emacs.
 
-Emacs ÄÄ {Makefile} {DocTarget}DOC {EmacsObjects} {MacObjects}
+Emacs ÄÄ {Makefile} buildobj.lst {DocTarget}DOC {EmacsObjects} {MacObjects}
        PPCLink ¶
                {LinkOptions} ¶
                {EmacsObjects} {MacObjects} ¶
-               "{SharedLibraries}InterfaceLib" ¶
-               "{SharedLibraries}StdCLib" ¶
-               "{SharedLibraries}MathLib" ¶
-               "{SharedLibraries}AppleScriptLib" ¶
-               "{SharedLibraries}TextEncodingConverter" ¶
-               "{SharedLibraries}AppearanceLib" ¶
-               "{PPCLibraries}StdCRuntime.o" ¶
-               "{PPCLibraries}PPCCRuntime.o" ¶
-               "{PPCLibraries}PPCToolLibs.o" ¶
+               {StdLibraries} ¶
                -o "{EmacsTarget}"
 
-Emacs ÄÄ {Makefile} "{Source}"Emacs.maclf.r "{Source}"EmacsMPW.maclf.r 
-       Rez -a "{Source}"Emacs.maclf.r -o "{EmacsTarget}"
-       Rez -a "{Source}"EmacsMPW.maclf.r -o "{EmacsTarget}"
+Emacs ÄÄ {Makefile} "{Source}"Emacs.maclf.r "{Source}"EmacsMPW.maclf.r
+       Rez {CarbonOption} -a "{Source}"Emacs.maclf.r -o "{EmacsTarget}"
+       Rez {CarbonOption} -a "{Source}"EmacsMPW.maclf.r -o "{EmacsTarget}"
        SetFile "{EmacsTarget}" -t APPL -c 'EMAx' -a B
 
+NonCarbon Ä
+       Make -f "{Makefile}" -d CarbonOption="" -d StdLibraries='{NonCarbonLibs}' > "{NonCarbonMakeOut}"
+       "{NonCarbonMakeOut}"
+
 # Rez cannot handle files with Unix style end lines at all.  So generate
 # them.  It does not hurt if Emacs.r and EmacsMPW.r already have Mac end
 # lines.
@@ -163,6 +181,9 @@ Emacs 
 "{Source}"EmacsMPW.maclf.r Ä "{Source}"EmacsMPW.r
        translate ¶0x0a ¶n < "{Source}"EmacsMPW.r > "{Source}"EmacsMPW.maclf.r
 
+buildobj.lst Ä
+       Echo "{EmacsObjects} {MacObjects}" | StreamEdit -e '1,$ Replace -c ° /[ ]*:([Â: ]*)¨1.c.x/ ¨1".o"' > buildobj.lst
+
 # Here comes a long boring list of rules saying which files depend on which
 # other ones.  I generated them by hand using the "-p" option of the MrC compiler.
 # Know about MakeMake, but this is probably more accurate.
@@ -233,8 +254,7 @@ Emacs 
        "{Src}buffer.h" ¶
        "{Src}commands.h" ¶
        "{Src}keyboard.h" ¶
-       {WINDOW_H_GROUP} ¶
-       "{Src}mocklisp.h"
+       {WINDOW_H_GROUP}
 
 {Src}callproc.c.x Ä ¶
        {CONFIG_H_GROUP} ¶
@@ -350,7 +370,8 @@ Emacs 
        "{Src}charset.h" ¶
        "{Src}coding.h" ¶
                "{Src}ccl.h" ¶
-       "{Src}regex.h"
+       "{Src}regex.h" ¶
+       "{Src}blockinput.h"
 
 {Src}dispnew.c.x Ä ¶
        {CONFIG_H_GROUP} ¶
@@ -371,11 +392,11 @@ Emacs 
        "{Src}process.h" ¶
        "{Src}keyboard.h" ¶
        "{Src}syssignal.h" ¶
-       "{Includes}macterm.h" ¶
-               "{Includes}macgui.h" ¶
+       "{Src}macterm.h" ¶
+               "{Src}macgui.h" ¶
                "{Src}frame.h" ¶
        "{Src}systime.h"
-       
+
 {Src}doc.c.x Ä ¶
        {CONFIG_H_GROUP} ¶
        "{Includes}sys:types.h" ¶
@@ -402,7 +423,8 @@ Emacs 
        "{Src}ccl.h" ¶
        {WINDOW_H_GROUP} ¶
        "{Src}systime.h" ¶
-               "{Includes}sys:time.h"
+               "{Includes}sys:time.h" ¶
+       "{Src}blockinput.h"
 
 {Src}emacs.c.x Ä ¶
        {CONFIG_H_GROUP} ¶
@@ -445,7 +467,8 @@ Emacs 
        {WINDOW_H_GROUP} ¶
        "{Src}systime.h" ¶
                "{Includes}sys:time.h" ¶
-       "{Src}commands.h"
+       "{Src}commands.h" ¶
+       "{Src}blockinput.h"
 
 {Src}filemode.c.x Ä ¶
        {CONFIG_H_GROUP} ¶
@@ -484,22 +507,46 @@ Emacs 
        "{Src}lisp.h" ¶
        "{Src}charset.h" ¶
        "{Src}fontset.h" ¶
-       "{Includes}macterm.h" ¶
-               "{Includes}macgui.h" ¶
+       "{Src}macterm.h" ¶
+               "{Src}macgui.h" ¶
                "{Src}frame.h" ¶
        "{Src}frame.h" ¶
        "{Src}fontset.h" ¶
        "{Src}termhooks.h" ¶
+       {BLOCKINPUT_H_GROUP} ¶
        {DISPEXTERN_H_GROUP} ¶
        {WINDOW_H_GROUP} ¶
        "{Src}buffer.h" ¶
        "{Src}commands.h" ¶
        "{Src}keyboard.h"
-       
+
+{Src}fringe.c.x Ä ¶
+       {CONFIG_H_GROUP} ¶
+       "{Src}lisp.h" ¶
+       "{Src}frame.h" ¶
+       {WINDOW_H_GROUP} ¶
+       "{Src}buffer.h" ¶
+       {BLOCKINPUT_H_GROUP}
+
 {Src}getloadavg.c.x Ä ¶
        {CONFIG_H_GROUP} ¶
        "{Includes}sys:types.h"
 
+{Src}image.c.x Ä ¶
+       {CONFIG_H_GROUP} ¶
+       "{Src}lisp.h" ¶
+       "{Src}frame.h" ¶
+       {WINDOW_H_GROUP} ¶
+       {DISPEXTERN_H_GROUP} ¶
+       {BLOCKINPUT_H_GROUP} ¶
+       "{Includes}epaths.h" ¶
+       "{Src}macterm.h" ¶
+               "{Src}macgui.h" ¶
+               "{Src}frame.h" ¶
+       "{Includes}sys:stat.h" ¶
+       "{Includes}alloca.h" ¶
+       "{Includes}sys:param.h"
+
 {Src}indent.c.x Ä ¶
        {CONFIG_H_GROUP} ¶
        "{Src}lisp.h" ¶
@@ -558,8 +605,8 @@ Emacs 
        "{Src}systty.h" ¶
                "{Includes}termio.h" ¶
        "{Includes}sys:types.h" ¶
-       "{Includes}macterm.h" ¶
-               "{Includes}macgui.h" ¶
+       "{Src}macterm.h" ¶
+               "{Src}macgui.h" ¶
                "{Src}frame.h" ¶
        "{Src}systime.h"
 
@@ -575,6 +622,9 @@ Emacs 
        "{Src}puresize.h" ¶
        {INTERVALS_H_GROUP}
 
+{Src}lastfile.c.x Ä ¶
+       {CONFIG_H_GROUP}
+
 {Src}lread.c.x Ä ¶
        {CONFIG_H_GROUP} ¶
        "{Includes}sys:types.h" ¶
@@ -588,7 +638,7 @@ Emacs 
        "{Src}commands.h" ¶
        "{Src}keyboard.h" ¶
        "{Src}termhooks.h"
-       
+
 {Src}macros.c.x Ä ¶
        {CONFIG_H_GROUP} ¶
        "{Src}lisp.h" ¶
@@ -620,11 +670,6 @@ Emacs 
        {CONFIG_H_GROUP} ¶
        "{Includes}sys:types.h"
 
-{Src}mocklisp.c.x Ä ¶
-       {CONFIG_H_GROUP} ¶
-       "{Src}lisp.h" ¶
-       "{Src}buffer.h"
-
 {Src}print.c.x Ä ¶
        {CONFIG_H_GROUP} ¶
        "{Src}lisp.h" ¶
@@ -637,7 +682,7 @@ Emacs 
        "{Src}termchar.h" ¶
        "{Src}keyboard.h" ¶
        {INTERVALS_H_GROUP}
-       
+
 {Src}process.c.x Ä ¶
        {CONFIG_H_GROUP} ¶
        "{Includes}sys:types.h" ¶
@@ -649,7 +694,7 @@ Emacs 
                "{Src}ccl.h" ¶
        "{Src}termopts.h" ¶
        "{Src}sysselect.h"
-       
+
 {Src}regex.c.x Ä ¶
        {CONFIG_H_GROUP} ¶
        "{Includes}sys:types.h" ¶
@@ -665,7 +710,7 @@ Emacs 
        "{Src}lisp.h" ¶
        "{Src}buffer.h" ¶
        "{Src}region-cache.h"
-       
+
 {Src}scroll.c.x Ä ¶
        {CONFIG_H_GROUP} ¶
        "{Src}termchar.h" ¶
@@ -673,7 +718,7 @@ Emacs 
        {DISPEXTERN_H_GROUP} ¶
        "{Src}frame.h" ¶
        {WINDOW_H_GROUP}
-       
+
 {Src}search.c.x Ä ¶
        {CONFIG_H_GROUP} ¶
        "{Src}lisp.h" ¶
@@ -687,12 +732,12 @@ Emacs 
        {INTERVALS_H_GROUP} ¶
        "{Includes}sys:types.h" ¶
        "{Src}regex.h"
-       
+
 {Src}strftime.c.x Ä ¶
        {CONFIG_H_GROUP} ¶
        "{Includes}sys:types.h" ¶
-       "{Includes}sys:time.h"  
-       
+       "{Includes}sys:time.h"
+
 {Src}syntax.c.x Ä ¶
        {CONFIG_H_GROUP} ¶
        "{Src}lisp.h" ¶
@@ -702,7 +747,7 @@ Emacs 
        "{Src}syntax.h" ¶
        {INTERVALS_H_GROUP} ¶
        "{Src}category.h"
-       
+
 {Src}sysdep.c.x Ä ¶
        {CONFIG_H_GROUP} ¶
        "{Src}lisp.h" ¶
@@ -741,10 +786,10 @@ Emacs 
        {DISPEXTERN_H_GROUP} ¶
        {WINDOW_H_GROUP} ¶
        "{Src}cm.h" ¶
-       "{Includes}macterm.h" ¶
-               "{Includes}macgui.h" ¶
+       "{Src}macterm.h" ¶
+               "{Src}macgui.h" ¶
                "{Src}frame.h"
-       
+
 {Src}termcap.c.x Ä ¶
        {CONFIG_H_GROUP} ¶
        "{Src}lisp.h" ¶
@@ -756,17 +801,17 @@ Emacs 
        {INTERVALS_H_GROUP} ¶
        "{Src}buffer.h" ¶
        {WINDOW_H_GROUP}
-       
+
 {Src}tparam.c.x Ä ¶
        {CONFIG_H_GROUP} ¶
        "{Src}lisp.h"
-       
+
 {Src}undo.c.x Ä ¶
        {CONFIG_H_GROUP} ¶
        "{Src}lisp.h" ¶
        "{Src}buffer.h" ¶
        "{Src}commands.h"
-       
+
 {Src}window.c.x Ä ¶
        {CONFIG_H_GROUP} ¶
        "{Src}lisp.h" ¶
@@ -781,10 +826,10 @@ Emacs 
        {DISPEXTERN_H_GROUP} ¶
        {BLOCKINPUT_H_GROUP} ¶
        {INTERVALS_H_GROUP} ¶
-       "{Includes}macterm.h" ¶
-               "{Includes}macgui.h" ¶
-               "{Src}frame.h"  
-       
+       "{Src}macterm.h" ¶
+               "{Src}macgui.h" ¶
+               "{Src}frame.h"
+
 {Src}xdisp.c.x Ä ¶
        {CONFIG_H_GROUP} ¶
        "{Src}lisp.h" ¶
@@ -797,19 +842,21 @@ Emacs 
        "{Src}indent.h" ¶
        "{Src}commands.h" ¶
        "{Src}macros.h" ¶
+       {BLOCKINPUT_H_GROUP} ¶
        "{Src}disptab.h" ¶
        "{Src}termhooks.h" ¶
        {INTERVALS_H_GROUP} ¶
        "{Src}keyboard.h" ¶
+       "{Src}keymap.h" ¶
        "{Src}coding.h" ¶
                "{Src}ccl.h" ¶
        "{Src}process.h" ¶
        "{Src}region-cache.h" ¶
        "{Src}fontset.h" ¶
-       "{Includes}macterm.h" ¶
-               "{Includes}macgui.h" ¶
-               "{Src}frame.h"  
-       
+       "{Src}macterm.h" ¶
+               "{Src}macgui.h" ¶
+               "{Src}frame.h"
+
 {Src}xfaces.c.x Ä ¶
        {CONFIG_H_GROUP} ¶
        "{Includes}sys:types.h" ¶
@@ -818,8 +865,8 @@ Emacs 
        "{Src}charset.h" ¶
        "{Src}frame.h" ¶
        "{Src}fontset.h" ¶
-       "{Includes}macterm.h" ¶
-               "{Includes}macgui.h" ¶
+       "{Src}macterm.h" ¶
+               "{Src}macgui.h" ¶
                "{Src}frame.h" ¶
        "{Src}buffer.h" ¶
        {DISPEXTERN_H_GROUP} ¶
@@ -840,7 +887,16 @@ Emacs 
        "{Includes}sys:types.h" ¶
        {DISPEXTERN_H_GROUP}
 
-{Source}mac.c Ä ¶
+{Src}macselect.c.x Ä ¶
+       {CONFIG_H_GROUP} ¶
+       "{Src}lisp.h" ¶
+       "{Src}macterm.h" ¶
+               "{Src}macgui.h" ¶
+               "{Src}frame.h" ¶
+       "{Src}keymap.h" ¶
+       {BLOCKINPUT_H_GROUP}
+
+{Src}mac.c Ä ¶
        {CONFIG_H_GROUP} ¶
        "{Includes}utime.h" ¶
        "{Includes}dirent.h" ¶
@@ -854,14 +910,21 @@ Emacs 
        "{Src}sysselect.h" ¶
        "{Src}systime.h" ¶
                "{Includes}sys:time.h" ¶
-       "{Includes}utsname.h"
+       "{Includes}utsname.h" ¶
+       "{Src}macterm.h" ¶
+               "{Src}macgui.h" ¶
+               "{Src}frame.h" ¶
+       {BLOCKINPUT_H_GROUP} ¶
+       "{Src}charset.h" ¶
+       "{Src}coding.h" ¶
+               "{Src}ccl.h"
 
-{Source}macfns.c Ä ¶
+{Src}macfns.c Ä ¶
        {CONFIG_H_GROUP} ¶
        "{Src}lisp.h" ¶
        "{Src}charset.h" ¶
-       "{Includes}macterm.h" ¶
-               "{Includes}macgui.h" ¶
+       "{Src}macterm.h" ¶
+               "{Src}macgui.h" ¶
                "{Src}frame.h" ¶
        "{Src}frame.h" ¶
        {WINDOW_H_GROUP} ¶
@@ -878,13 +941,13 @@ Emacs 
        "{Src}systime.h" ¶
        "{Src}bitmaps:gray.xbm"
 
-{Source}macterm.c Ä ¶
+{Src}macterm.c Ä ¶
        {CONFIG_H_GROUP} ¶
        "{Src}lisp.h" ¶
        {BLOCKINPUT_H_GROUP} ¶
        "{Src}syssignal.h" ¶
-       "{Includes}macterm.h" ¶
-               "{Includes}macgui.h" ¶
+       "{Src}macterm.h" ¶
+               "{Src}macgui.h" ¶
                "{Src}frame.h" ¶
        "{Includes}alloca.h" ¶
        "{Includes}sys:types.h" ¶
@@ -914,8 +977,8 @@ Emacs 
        "{Src}termhooks.h" ¶
        "{Src}coding.h" ¶
                "{Src}ccl.h"
-               
-               
+
+
 #----------------------------------------#
 # Variables and rules for target "Clean" #
 #----------------------------------------#
@@ -926,6 +989,8 @@ Clean 
        Delete -i stdout stderr
        Delete -i {Make-DocFile-Objects} {Make-DocFileDir}make-docfile
        Delete -i "{Source}"Emacs.maclf.r "{Source}"EmacsMPW.maclf.r
+       Delete -i "{NonCarbonMakeOut}"
+       Delete -i buildobj.lst
 
 DistClean Ä Clean
        Delete -i "Emacs CW"Å
@@ -936,122 +1001,63 @@ DistClean 
 # Variables and rules for target "Doc" #
 #--------------------------------------#
 
-EmacsSource = ¶
-       "{Src}abbrev.c" ¶
-       "{Src}alloc.c" ¶
-       "{Src}alloca.c" ¶
-       "{Src}atimer.c" ¶
-       "{Src}buffer.c" ¶
-       "{Src}bytecode.c" ¶
-       "{Src}callint.c" ¶
-       "{Src}callproc.c" ¶
-       "{Src}casefiddle.c" ¶
-       "{Src}casetab.c" ¶
-       "{Src}category.c" ¶
-       "{Src}ccl.c" ¶
-       "{Src}charset.c" ¶
-       "{Src}cm.c" ¶
-       "{Src}cmds.c" ¶
-       "{Src}coding.c" ¶
-       "{Src}composite.c" ¶
-       "{Src}data.c" ¶
-       "{Src}dired.c" ¶
-       "{Src}dispnew.c" ¶
-       "{Src}doc.c" ¶
-       "{Src}doprnt.c" ¶
-       "{Src}editfns.c" ¶
-       "{Src}emacs.c" ¶
-       "{Src}eval.c" ¶
-       "{Src}fileio.c" ¶
-       "{Src}filemode.c" ¶
-       "{Src}floatfns.c" ¶
-       "{Src}fns.c" ¶
-       "{Src}fontset.c" ¶
-       "{Src}frame.c" ¶
-       "{Src}getloadavg.c" ¶
-       "{Src}indent.c" ¶
-       "{Src}insdel.c" ¶
-       "{Src}intervals.c" ¶
-       "{Src}keyboard.c" ¶
-       "{Src}keymap.c" ¶
-       "{Src}lread.c" ¶
-       "{Src}macros.c" ¶
-       "{Src}marker.c" ¶
-       "{Src}minibuf.c" ¶
-       "{Src}mktime.c" ¶
-       "{Src}mocklisp.c" ¶
-       "{Src}print.c" ¶
-       "{Src}process.c" ¶
-       "{Src}regex.c" ¶
-       "{Src}region-cache.c" ¶
-       "{Src}scroll.c" ¶
-       "{Src}search.c" ¶
-       "{Src}strftime.c" ¶
-       "{Src}syntax.c" ¶
-       "{Src}sysdep.c" ¶
-       "{Src}term.c" ¶
-       "{Src}termcap.c" ¶
-       "{Src}textprop.c" ¶
-       "{Src}tparam.c" ¶
-       "{Src}undo.c" ¶
-       "{Src}window.c" ¶
-       "{Src}xdisp.c" ¶
-       "{Src}xfaces.c" ¶
-       "{Src}xmenu.c"
-
-MacSource = ¶
-       "{Source}mac.c" ¶
-       "{Source}macfns.c" ¶
-       "{Source}macterm.c"
-
-
-LispSource = ¶
-       {Lisp}menu-bar.el ¶
-       {Lisp}mouse.el ¶
-       {Lisp}select.el ¶
-       {Lisp}scroll-bar.el ¶
-       {Lisp}vmsproc.el ¶
-       {Lisp}vms-patch.el ¶
-       {Lisp}ls-lisp.el ¶
-       {Lisp}dos-fns.el ¶
-       {Lisp}w32-fns.el ¶
-       {Lisp}dos-w32.el ¶
-       {Lisp}disp-table.el ¶
-       {Lisp}dos-vars.el ¶
-       {Lisp}international:ccl.el ¶
-       {Lisp}international:codepage.el ¶
-       {Lisp}abbrev.el ¶
-       {Lisp}buff-menu.el ¶
-       {Lisp}byte-run.el ¶
-       {Lisp}cus-start.el ¶
-       {Lisp}custom.el ¶
-       {Lisp}emacs-lisp:lisp-mode.el ¶
-       {Lisp}emacs-lisp:lisp.el ¶
-       {Lisp}facemenu.el ¶
-       {Lisp}faces.el ¶
-       {Lisp}files.el ¶
-       {Lisp}float-sup.el ¶
-       {Lisp}format.el ¶
-       {Lisp}frame.el ¶
-       {Lisp}help.el ¶
-       {Lisp}indent.el ¶
-       {Lisp}isearch.el ¶
+SOME_MACHINE_OBJECTS = sunfns.o dosfns.o msdos.o ¶
+  xterm.o xfns.o xmenu.o xselect.o xrdb.o xsmfns.o fringe.o image.o ¶
+  mac.o macterm.o macfns.o macmenu.o macselect.o fontset.o ¶
+  w32.o w32bdf.o w32console.o w32fns.o w32heap.o w32inevt.o ¶
+  w32menu.o w32proc.o w32reg.o w32select.o w32term.o w32xfns.o
+
+shortlisp = ¶
+       {Lisp}abbrev.elc ¶
+       {Lisp}buff-menu.elc ¶
+       {Lisp}button.elc ¶
+       {Lisp}emacs-lisp:byte-run.elc ¶
+       {Lisp}cus-face.elc ¶
+       {Lisp}cus-start.elc ¶
+       {Lisp}custom.elc ¶
+       {Lisp}emacs-lisp:backquote.elc ¶
+       {Lisp}emacs-lisp:lisp-mode.elc ¶
+       {Lisp}emacs-lisp:lisp.elc ¶
+       {Lisp}facemenu.elc ¶
+       {Lisp}faces.elc ¶
+       {Lisp}files.elc ¶
+       {Lisp}emacs-lisp:float-sup.elc ¶
+       {Lisp}format.elc ¶
+       {Lisp}frame.elc ¶
+       {Lisp}help.elc ¶
+       {Lisp}indent.elc ¶
+       {Lisp}isearch.elc ¶
+       {Lisp}rfn-eshadow.elc ¶
        {Lisp}loadup.el ¶
        {Lisp}loaddefs.el ¶
-       {Lisp}bindings.el ¶
-       {Lisp}map-ynp.el ¶
-       {Lisp}international:mule.el ¶
+       {Lisp}bindings.elc ¶
+       {Lisp}emacs-lisp:map-ynp.elc ¶
+       {Lisp}env.elc ¶
+       {Lisp}international:mule.elc ¶
        {Lisp}international:mule-conf.el ¶
-       {Lisp}international:mule-cmds.el ¶
-       {Lisp}international:characters.el ¶
-       {Lisp}case-table.el ¶
-       {Lisp}language:chinese.el ¶
-       {Lisp}language:cyrillic.el ¶
-       {Lisp}language:indian.el ¶
+       {Lisp}international:mule-cmds.elc ¶
+       {Lisp}international:characters.elc ¶
+       {Lisp}international:ucs-tables.elc ¶
+       {Lisp}international:utf-8.elc ¶
+       {Lisp}international:utf-16.elc ¶
+       {Lisp}international:latin-1.el ¶
+       {Lisp}international:latin-2.el ¶
+       {Lisp}international:latin-3.el ¶
+       {Lisp}international:latin-4.el ¶
+       {Lisp}international:latin-5.el ¶
+       {Lisp}international:latin-8.el ¶
+       {Lisp}international:latin-9.el ¶
+       {Lisp}case-table.elc ¶
+       {Lisp}language:chinese.elc ¶
+       {Lisp}language:cyrillic.elc ¶
+       {Lisp}language:indian.elc ¶
        {Lisp}language:devanagari.el ¶
+       {Lisp}language:kannada.el ¶
+       {Lisp}language:malayalam.el ¶
+       {Lisp}language:tamil.el ¶
        {Lisp}language:english.el ¶
-       {Lisp}language:ethiopic.el ¶
-       {Lisp}language:european.el ¶
+       {Lisp}language:ethiopic.elc ¶
+       {Lisp}language:european.elc ¶
        {Lisp}language:czech.el ¶
        {Lisp}language:slovak.el ¶
        {Lisp}language:romanian.el ¶
@@ -1061,33 +1067,54 @@ LispSource = 
        {Lisp}language:korean.el ¶
        {Lisp}language:lao.el ¶
        {Lisp}language:thai.el ¶
-       {Lisp}language:tibetan.el ¶
-       {Lisp}language:vietnamese.el ¶
+       {Lisp}language:tibetan.elc ¶
+       {Lisp}language:vietnamese.elc ¶
        {Lisp}language:misc-lang.el ¶
+       {Lisp}language:utf-8-lang.el ¶
+       {Lisp}language:georgian.el ¶
+       {Lisp}menu-bar.elc ¶
        {Lisp}paths.el ¶
-       {Lisp}register.el ¶
-       {Lisp}replace.el ¶
-       {Lisp}simple.el ¶
-       {Lisp}startup.el ¶
-       {Lisp}subr.el ¶
-       {Lisp}term:tty-colors.el ¶
-       {Lisp}textmodes:fill.el ¶
-       {Lisp}textmodes:page.el ¶
-       {Lisp}textmodes:paragraphs.el ¶
-       {Lisp}textmodes:text-mode.el ¶
-       {Lisp}vc-hooks.el ¶
-       {Lisp}ediff-hook.el ¶
-       {Lisp}widget.el ¶
-       {Lisp}window.el ¶
+       {Lisp}register.elc ¶
+       {Lisp}replace.elc ¶
+       {Lisp}simple.elc ¶
+       {Lisp}startup.elc ¶
+       {Lisp}subr.elc ¶
+       {Lisp}term:tty-colors.elc ¶
+       {Lisp}font-core.elc ¶
+       {Lisp}emacs-lisp:syntax.elc ¶
+       {Lisp}font-lock.elc ¶
+       {Lisp}jit-lock.elc ¶
+       {Lisp}textmodes:fill.elc ¶
+       {Lisp}textmodes:page.elc ¶
+       {Lisp}textmodes:paragraphs.elc ¶
+       {Lisp}textmodes:text-mode.elc ¶
+       {Lisp}emacs-lisp:timer.elc ¶
+       {Lisp}vc-hooks.elc ¶
+       {Lisp}jka-cmpr-hook.elc ¶
+       {Lisp}ediff-hook.elc ¶
+       {Lisp}widget.elc ¶
+       {Lisp}window.elc ¶
        {Lisp}version.el
 
+SOME_MACHINE_LISP = {Lisp}mouse.elc ¶
+  {Lisp}select.elc {Lisp}scroll-bar.elc ¶
+  {Lisp}vmsproc.elc {Lisp}vms-patch.elc ¶
+  {Lisp}ls-lisp.elc {Lisp}dos-fns.elc ¶
+  {Lisp}w32-fns.elc {Lisp}dos-w32.elc ¶
+  {Lisp}disp-table.elc {Lisp}dos-vars.elc ¶
+  {Lisp}tooltip.elc {Lisp}image.elc ¶
+  {Lisp}fringe.elc {Lisp}dnd.elc ¶
+  {Lisp}mwheel.elc {Lisp}tool-bar.elc ¶
+  {Lisp}x-dnd.elc ¶
+  {Lisp}international:ccl.elc ¶
+  {Lisp}international:codepage.elc ¶
+  {Lisp}international:fontset.elc
 
 Doc Ä {DocTarget}DOC
 
-{DocTarget}DOC Ä {Makefile} {EmacsSource} {MacSource} {LispSource} {Make-DocFileDir}Make-DocFile
-       {Make-DocFileDir}make-docfile {EmacsSource} > {DocTarget}DOC
-       {Make-DocFileDir}make-docfile {MacSource} >> {DocTarget}DOC
-       {Make-DocFileDir}make-docfile {LispSource} >> {DocTarget}DOC
+{DocTarget}DOC Ä {Makefile} {shortlisp} {SOME_MACHINE_LISP} {Make-DocFileDir}Make-DocFile buildobj.lst
+       {Make-DocFileDir}make-docfile -d {Src} {SOME_MACHINE_OBJECTS} `Catenate buildobj.lst` > {DocTarget}DOC
+       {Make-DocFileDir}make-docfile -a {DocTarget}DOC -d {Src} {SOME_MACHINE_LISP} {shortlisp}
 
 
 #-----------------------------------------------#
@@ -1095,10 +1122,11 @@ Doc 
 #-----------------------------------------------#
 
 Make-DocFile-Includes          = -i :inc:
-Make-DocFile-Sym                       = 
+Make-DocFile-Sym                       =
 
 Make-DocFile-PPCCOptions       = -typecheck relaxed -w off -noMapCR ¶
-                                                               {Make-DocFile-Includes} {Make-DocFile-Sym}
+                                 -d MAC_OS -d MAC_OS8 ¶
+                                 {Make-DocFile-Includes} {Make-DocFile-Sym}
 
 Make-DocFile-Objects = ¶
                "{Lib-Src}make-docfile.c.x" ¶
@@ -1126,3 +1154,4 @@ Make-DocFile 
 "{Source}chdir.c.x" Ä {Makefile} "{Source}chdir.c"
        {PPCC} "{Source}chdir.c" -o "{Source}chdir.c.x" {Make-DocFile-PPCCOptions}
 
+# arch-tag: c9d9bc1a-142f-41da-b75e-79e0c44ffbb4