1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00
emacs/mac/makefile.MPW
Andrew Choi fa0b4c1479 * src/Emacs.r: Change About box message.
* makefile.MPW: Add md5.c.x to EmacsObjects.

        * src/mac.c (select): Call WaitNextEvent instead of Delay.
        (pause): Ditto.
        (sleep): Ditto.

        * src/macterm.c (do_app_resume): Set cursor to arrow.
        (clear_mouse_face): check for NIL Lisp object instead of null
        pointer.

        * INSTALL: Delete note on compiling Lisp files on a Unix system.
        Add note on turning off end of line conversion.
2001-05-15 11:08:46 +00:00

1129 lines
24 KiB
Plaintext
Raw Blame History

# Make file for building GNU Emacs on the Macintosh.
# Copyright (C) 1999, 2000 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. */
#
# Defines the following targets:
# Emacs (default) - normal 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)
Source = :src: # mac source directory
Lib-Src = ::lib-src: # ~emacs/lib-src directory, containing make-docfile.c
EmacsTarget = :Emacs MPW # pathname of target executable file
DocTarget = ::etc: # where the generated DOC file should be placed
Lisp = ::lisp: # emacs's lisp directory
Make-DocFileDir = {Lib-Src} # directory containing make-docfile tool
Makefile = makefile.MPW # self reference
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 <20>
-typecheck relaxed -w off <20>
-includes unix -i {Includes},{Src} <20>
-d emacs=1 -d HAVE_CONFIG_H
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"
WINDOW_H_GROUP = "{Src}window.h" {DISPEXTERN_H_GROUP}
BLOCKINPUT_H_GROUP = "{Src}blockinput.h" "{Src}atimer.h" "{Src}systime.h" <20>
"{Includes}sys:time.h" "{Includes}sys:time.h"
# The list all object files from the GNU Emacs 21.0 distribution.
EmacsObjects = <20>
"{Src}abbrev.c.x" <20>
"{Src}alloc.c.x" <20>
"{Src}alloca.c.x" <20>
"{Src}atimer.c.x" <20>
"{Src}buffer.c.x" <20>
"{Src}bytecode.c.x" <20>
"{Src}callint.c.x" <20>
"{Src}callproc.c.x" <20>
"{Src}casefiddle.c.x" <20>
"{Src}casetab.c.x" <20>
"{Src}category.c.x" <20>
"{Src}ccl.c.x" <20>
"{Src}charset.c.x" <20>
"{Src}cm.c.x" <20>
"{Src}cmds.c.x" <20>
"{Src}coding.c.x" <20>
"{Src}composite.c.x" <20>
"{Src}data.c.x" <20>
"{Src}dired.c.x" <20>
"{Src}dispnew.c.x" <20>
"{Src}doc.c.x" <20>
"{Src}doprnt.c.x" <20>
"{Src}editfns.c.x" <20>
"{Src}emacs.c.x" <20>
"{Src}eval.c.x" <20>
"{Src}fileio.c.x" <20>
"{Src}filemode.c.x" <20>
"{Src}floatfns.c.x" <20>
"{Src}fns.c.x" <20>
"{Src}fontset.c.x" <20>
"{Src}frame.c.x" <20>
"{Src}getloadavg.c.x" <20>
"{Src}indent.c.x" <20>
"{Src}insdel.c.x" <20>
"{Src}intervals.c.x" <20>
"{Src}keyboard.c.x" <20>
"{Src}keymap.c.x" <20>
"{Src}lread.c.x" <20>
"{Src}macros.c.x" <20>
"{Src}marker.c.x" <20>
"{Src}md5.c.x" <20>
"{Src}minibuf.c.x" <20>
"{Src}mktime.c.x" <20>
"{Src}mocklisp.c.x" <20>
"{Src}print.c.x" <20>
"{Src}process.c.x" <20>
"{Src}regex.c.x" <20>
"{Src}region-cache.c.x" <20>
"{Src}scroll.c.x" <20>
"{Src}search.c.x" <20>
"{Src}strftime.c.x" <20>
"{Src}syntax.c.x" <20>
"{Src}sysdep.c.x" <20>
"{Src}term.c.x" <20>
"{Src}termcap.c.x" <20>
"{Src}textprop.c.x" <20>
"{Src}tparam.c.x" <20>
"{Src}undo.c.x" <20>
"{Src}window.c.x" <20>
"{Src}xdisp.c.x" <20>
"{Src}xfaces.c.x"
# The list of object files generated from new source files of the Macintosh port.
MacObjects = <20>
"{Source}mac.c.x" <20>
"{Source}macfns.c.x" <20>
"{Source}macmenu.c.x" <20>
"{Source}macterm.c.x"
# The next two are the dependency rules for building Emacs.
Emacs <20><> {Makefile} {DocTarget}DOC {EmacsObjects} {MacObjects}
PPCLink <20>
{LinkOptions} <20>
{EmacsObjects} {MacObjects} <20>
"{SharedLibraries}InterfaceLib" <20>
"{SharedLibraries}StdCLib" <20>
"{SharedLibraries}MathLib" <20>
"{SharedLibraries}AppleScriptLib" <20>
"{SharedLibraries}TextEncodingConverter" <20>
"{SharedLibraries}AppearanceLib" <20>
"{PPCLibraries}StdCRuntime.o" <20>
"{PPCLibraries}PPCCRuntime.o" <20>
"{PPCLibraries}PPCToolLibs.o" <20>
-o "{EmacsTarget}"
Emacs <20><> {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}"
SetFile "{EmacsTarget}" -t APPL -c 'EMAx' -a B
# 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.
"{Source}"Emacs.maclf.r <20> "{Source}"Emacs.r
translate <20>0x0a <20>n < "{Source}"Emacs.r > "{Source}"Emacs.maclf.r
"{Source}"EmacsMPW.maclf.r <20> "{Source}"EmacsMPW.r
translate <20>0x0a <20>n < "{Source}"EmacsMPW.r > "{Source}"EmacsMPW.maclf.r
# 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.
{Src}abbrev.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}commands.h" <20>
"{Src}buffer.h" <20>
{WINDOW_H_GROUP} <20>
"{Src}charset.h" <20>
"{Src}syntax.h"
{Src}alloc.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
{INTERVALS_H_GROUP} <20>
"{Src}puresize.h" <20>
"{Src}buffer.h" <20>
{WINDOW_H_GROUP} <20>
"{Src}frame.h" <20>
{BLOCKINPUT_H_GROUP} <20>
"{Src}keyboard.h" <20>
"{Src}charset.h" <20>
"{Src}syssignal.h"
{Src}alloca.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
{BLOCKINPUT_H_GROUP}
{Src}atimer.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}syssignal.h" <20>
"{Src}systime.h" <20>
"{Includes}sys:time.h" <20>
{BLOCKINPUT_H_GROUP} <20>
"{Src}atimer.h" <20>
"{Includes}sys:time.h"
{Src}buffer.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Includes}sys:types.h" <20>
"{Includes}sys:stat.h" <20>
"{Includes}sys:param.h" <20>
"{Src}lisp.h" <20>
{INTERVALS_H_GROUP} <20>
"{Src}window.h" <20>
"{Src}commands.h" <20>
"{Src}buffer.h" <20>
"{Src}charset.h" <20>
"{Src}region-cache.h" <20>
"{Src}indent.h" <20>
{BLOCKINPUT_H_GROUP} <20>
"{Src}frame.h"
{Src}bytecode.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}buffer.h" <20>
"{Src}charset.h" <20>
"{Src}syntax.h"
{Src}callint.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}buffer.h" <20>
"{Src}commands.h" <20>
"{Src}keyboard.h" <20>
{WINDOW_H_GROUP} <20>
"{Src}mocklisp.h"
{Src}callproc.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Includes}sys:types.h" <20>
"{Includes}sys:file.h" <20>
"{Includes}sys:types.h" <20>
"{Includes}sys:stat.h" <20>
"{Src}lisp.h" <20>
"{Src}commands.h" <20>
"{Src}buffer.h" <20>
"{Src}charset.h" <20>
"{Src}ccl.h" <20>
"{Src}coding.h" <20>
"{Src}composite.h" <20>
"{Includes}epaths.h" <20>
"{Src}process.h" <20>
"{Src}syssignal.h" <20>
"{Src}systty.h" <20>
"{Includes}termio.h"
{Src}casefiddle <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}buffer.h" <20>
"{Src}charset.h" <20>
"{Src}commands.h" <20>
"{Src}syntax.h" <20>
"{Src}composite.h"
{Src}casetab.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}buffer.h" <20>
"{Src}charset.h"
{Src}category.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}buffer.h" <20>
"{Src}charset.h" <20>
"{Src}category.h"
{Src}ccl.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}charset.h" <20>
"{Src}ccl.h" <20>
"{Src}coding.h"
{Src}charset.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Includes}sys:types.h" <20>
"{Src}lisp.h" <20>
"{Src}buffer.h" <20>
"{Src}charset.h" <20>
"{Src}coding.h" <20>
"{Src}ccl.h" <20>
"{Src}disptab.h"
{Src}cm.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}cm.h" <20>
"{Src}termhooks.h"
{Src}cmds.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}commands.h" <20>
"{Src}buffer.h" <20>
"{Src}charset.h" <20>
"{Src}syntax.h" <20>
{WINDOW_H_GROUP} <20>
"{Src}keyboard.h" <20>
{DISPEXTERN_H_GROUP}
{Src}coding.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}buffer.h" <20>
"{Src}charset.h" <20>
"{Src}composite.h" <20>
"{Src}ccl.h" <20>
"{Src}coding.h" <20>
{WINDOW_H_GROUP}
{Src}composite.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}buffer.h" <20>
"{Src}charset.h" <20>
{INTERVALS_H_GROUP}
{Src}data.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}puresize.h" <20>
"{Src}charset.h" <20>
"{Src}buffer.h" <20>
"{Src}keyboard.h" <20>
"{Src}frame.h" <20>
"{Src}syssignal.h"
{Src}dired.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Includes}sys:types.h" <20>
"{Includes}sys:stat.h" <20>
"{Src}systime.h" <20>
"{Includes}sys:time.h" <20>
"{Includes}dirent.h" <20>
"{Src}lisp.h" <20>
"{Src}buffer.h" <20>
"{Src}commands.h" <20>
"{Src}charset.h" <20>
"{Src}coding.h" <20>
"{Src}ccl.h" <20>
"{Src}regex.h"
{Src}dispnew.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}termchar.h" <20>
"{Src}termopts.h" <20>
"{Src}termhooks.h" <20>
{DISPEXTERN_H_GROUP} <20>
"{Src}cm.h" <20>
"{Src}buffer.h" <20>
"{Src}charset.h" <20>
{WINDOW_H_GROUP} <20>
"{Src}commands.h" <20>
"{Src}disptab.h" <20>
"{Src}indent.h" <20>
{INTERVALS_H_GROUP} <20>
{BLOCKINPUT_H_GROUP} <20>
"{Src}process.h" <20>
"{Src}keyboard.h" <20>
"{Src}syssignal.h" <20>
"{Includes}macterm.h" <20>
"{Includes}macgui.h" <20>
"{Src}frame.h" <20>
"{Src}systime.h"
{Src}doc.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Includes}sys:types.h" <20>
"{Includes}sys:file.h" <20>
"{Src}lisp.h" <20>
"{Src}buffer.h" <20>
"{Src}keyboard.h" <20>
"{Src}charset.h"
{Src}doprnt.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}charset.h"
{Src}editfns.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Includes}sys:types.h" <20>
"{Includes}pwd.h" <20>
"{Src}lisp.h" <20>
{INTERVALS_H_GROUP} <20>
"{Src}buffer.h" <20>
"{Src}charset.h" <20>
"{Src}coding.h" <20>
"{Src}ccl.h" <20>
{WINDOW_H_GROUP} <20>
"{Src}systime.h" <20>
"{Includes}sys:time.h"
{Src}emacs.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Includes}sys:types.h" <20>
"{Includes}sys:file.h" <20>
"{Includes}sys:types.h" <20>
"{Includes}sys:stat.h" <20>
"{Src}lisp.h" <20>
"{Src}commands.h" <20>
{INTERVALS_H_GROUP} <20>
"{Src}buffer.h" <20>
"{Src}systty.h" <20>
"{Includes}termio.h" <20>
{BLOCKINPUT_H_GROUP} <20>
"{Src}syssignal.h" <20>
"{Src}process.h" <20>
"{Src}termhooks.h" <20>
"{Src}keyboard.h" <20>
"{Src}frame.h"
{Src}eval.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
{BLOCKINPUT_H_GROUP} <20>
"{Src}commands.h" <20>
"{Src}keyboard.h" <20>
{DISPEXTERN_H_GROUP}
{Src}fileio.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Includes}sys:types.h" <20>
"{Includes}sys:stat.h" <20>
"{Includes}pwd.h" <20>
"{Src}lisp.h" <20>
{INTERVALS_H_GROUP} <20>
"{Src}buffer.h" <20>
"{Src}charset.h" <20>
"{Src}coding.h" <20>
"{Src}ccl.h" <20>
{WINDOW_H_GROUP} <20>
"{Src}systime.h" <20>
"{Includes}sys:time.h" <20>
"{Src}commands.h"
{Src}filemode.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Includes}sys:types.h" <20>
"{Includes}sys:stat.h"
{Src}floatfns.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}syssignal.h"
{Src}fns.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}commands.h" <20>
"{Src}charset.h" <20>
"{Src}buffer.h" <20>
"{Src}keyboard.h" <20>
{INTERVALS_H_GROUP} <20>
"{Src}frame.h" <20>
{WINDOW_H_GROUP}
{Src}fontset.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}buffer.h" <20>
"{Src}charset.h" <20>
"{Src}ccl.h" <20>
"{Src}frame.h" <20>
{DISPEXTERN_H_GROUP} <20>
"{Src}fontset.h" <20>
{WINDOW_H_GROUP}
{Src}frame.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}charset.h" <20>
"{Src}fontset.h" <20>
"{Includes}macterm.h" <20>
"{Includes}macgui.h" <20>
"{Src}frame.h" <20>
"{Src}frame.h" <20>
"{Src}fontset.h" <20>
"{Src}termhooks.h" <20>
{DISPEXTERN_H_GROUP} <20>
{WINDOW_H_GROUP} <20>
"{Src}buffer.h" <20>
"{Src}commands.h" <20>
"{Src}keyboard.h"
{Src}getloadavg.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Includes}sys:types.h"
{Src}indent.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}buffer.h" <20>
"{Src}charset.h" <20>
"{Src}category.h" <20>
"{Src}indent.h" <20>
"{Src}frame.h" <20>
{WINDOW_H_GROUP} <20>
"{Src}termchar.h" <20>
"{Src}termopts.h" <20>
"{Src}disptab.h" <20>
{INTERVALS_H_GROUP} <20>
"{Src}region-cache.h"
{Src}insdel.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
{INTERVALS_H_GROUP} <20>
"{Src}buffer.h" <20>
"{Src}charset.h" <20>
{WINDOW_H_GROUP} <20>
{BLOCKINPUT_H_GROUP} <20>
"{Src}region-cache.h"
{Src}intervals.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
{INTERVALS_H_GROUP} <20>
"{Src}buffer.h" <20>
"{Src}puresize.h" <20>
"{Src}keyboard.h"
{Src}keyboard.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}termchar.h" <20>
"{Src}termopts.h" <20>
"{Src}lisp.h" <20>
"{Src}termhooks.h" <20>
"{Src}macros.h" <20>
"{Src}frame.h" <20>
{WINDOW_H_GROUP} <20>
"{Src}commands.h" <20>
"{Src}buffer.h" <20>
"{Src}charset.h" <20>
{DISPEXTERN_H_GROUP} <20>
"{Src}keyboard.h" <20>
"{Src}syntax.h" <20>
{INTERVALS_H_GROUP} <20>
{BLOCKINPUT_H_GROUP} <20>
"{Src}puresize.h" <20>
"{Src}systime.h" <20>
"{Src}atimer.h" <20>
"{Includes}sys:ioctl.h" <20>
"{Src}syssignal.h" <20>
"{Src}systty.h" <20>
"{Includes}termio.h" <20>
"{Includes}sys:types.h" <20>
"{Includes}macterm.h" <20>
"{Includes}macgui.h" <20>
"{Src}frame.h" <20>
"{Src}systime.h"
{Src}keymap.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}commands.h" <20>
"{Src}buffer.h" <20>
"{Src}charset.h" <20>
"{Src}keyboard.h" <20>
"{Src}termhooks.h" <20>
{BLOCKINPUT_H_GROUP} <20>
"{Src}puresize.h" <20>
{INTERVALS_H_GROUP}
{Src}lread.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Includes}sys:types.h" <20>
"{Includes}sys:stat.h" <20>
"{Includes}sys:file.h" <20>
"{Src}lisp.h" <20>
{INTERVALS_H_GROUP} <20>
"{Src}buffer.h" <20>
"{Src}charset.h" <20>
"{Includes}epaths.h" <20>
"{Src}commands.h" <20>
"{Src}keyboard.h" <20>
"{Src}termhooks.h"
{Src}macros.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}macros.h" <20>
"{Src}commands.h" <20>
"{Src}buffer.h" <20>
{WINDOW_H_GROUP} <20>
"{Src}keyboard.h"
{Src}marker.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}buffer.h" <20>
"{Src}charset.h"
{Src}minibuf.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}commands.h" <20>
"{Src}buffer.h" <20>
"{Src}charset.h" <20>
{DISPEXTERN_H_GROUP} <20>
"{Src}frame.h" <20>
{WINDOW_H_GROUP} <20>
"{Src}syntax.h" <20>
"{Src}keyboard.h"
{Src}mktime.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Includes}sys:types.h"
{Src}mocklisp.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}buffer.h"
{Src}print.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}buffer.h" <20>
"{Src}charset.h" <20>
"{Src}frame.h" <20>
{WINDOW_H_GROUP} <20>
"{Src}process.h" <20>
{DISPEXTERN_H_GROUP} <20>
"{Src}termchar.h" <20>
"{Src}keyboard.h" <20>
{INTERVALS_H_GROUP}
{Src}process.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Includes}sys:types.h" <20>
"{Src}lisp.h" <20>
"{Src}systime.h" <20>
"{Includes}sys:time.h" <20>
"{Src}charset.h" <20>
"{Src}coding.h" <20>
"{Src}ccl.h" <20>
"{Src}termopts.h" <20>
"{Src}sysselect.h"
{Src}regex.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Includes}sys:types.h" <20>
"{Src}lisp.h" <20>
"{Src}buffer.h" <20>
"{Src}syntax.h" <20>
"{Src}charset.h" <20>
"{Src}category.h" <20>
"{Src}regex.h"
{Src}region-cache.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}buffer.h" <20>
"{Src}region-cache.h"
{Src}scroll.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}termchar.h" <20>
"{Src}lisp.h" <20>
{DISPEXTERN_H_GROUP} <20>
"{Src}frame.h" <20>
{WINDOW_H_GROUP}
{Src}search.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}syntax.h" <20>
"{Src}category.h" <20>
"{Src}buffer.h" <20>
"{Src}charset.h" <20>
"{Src}region-cache.h" <20>
"{Src}commands.h" <20>
{BLOCKINPUT_H_GROUP} <20>
{INTERVALS_H_GROUP} <20>
"{Includes}sys:types.h" <20>
"{Src}regex.h"
{Src}strftime.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Includes}sys:types.h" <20>
"{Includes}sys:time.h"
{Src}syntax.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}commands.h" <20>
"{Src}buffer.h" <20>
"{Src}charset.h" <20>
"{Src}syntax.h" <20>
{INTERVALS_H_GROUP} <20>
"{Src}category.h"
{Src}sysdep.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
{BLOCKINPUT_H_GROUP} <20>
"{Includes}sys:types.h" <20>
"{Includes}sys:stat.h" <20>
"{Includes}sys:ioctl.h" <20>
"{Src}syswait.h" <20>
"{Includes}sys:types.h" <20>
"{Src}frame.h" <20>
{WINDOW_H_GROUP} <20>
"{Src}termhooks.h" <20>
"{Src}termchar.h" <20>
"{Src}termopts.h" <20>
{DISPEXTERN_H_GROUP} <20>
"{Src}process.h" <20>
"{Src}syssignal.h" <20>
"{Src}systime.h" <20>
"{Includes}utime.h" <20>
"{Src}sysselect.h" <20>
"{Includes}dirent.h" <20>
"{Includes}sys:types.h"
{Src}term.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}termchar.h" <20>
"{Src}termopts.h" <20>
"{Src}lisp.h" <20>
"{Src}charset.h" <20>
"{Src}coding.h" <20>
"{Src}ccl.h" <20>
"{Src}frame.h" <20>
"{Src}disptab.h" <20>
"{Src}termhooks.h" <20>
"{Src}keyboard.h" <20>
{DISPEXTERN_H_GROUP} <20>
{WINDOW_H_GROUP} <20>
"{Src}cm.h" <20>
"{Includes}macterm.h" <20>
"{Includes}macgui.h" <20>
"{Src}frame.h"
{Src}termcap.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Includes}sys:file.h"
{Src}textproc.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
{INTERVALS_H_GROUP} <20>
"{Src}buffer.h" <20>
{WINDOW_H_GROUP}
{Src}tparam.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h"
{Src}undo.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}buffer.h" <20>
"{Src}commands.h"
{Src}window.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}buffer.h" <20>
"{Src}frame.h" <20>
{WINDOW_H_GROUP} <20>
"{Src}commands.h" <20>
"{Src}indent.h" <20>
"{Src}termchar.h" <20>
"{Src}disptab.h" <20>
"{Src}keyboard.h" <20>
{DISPEXTERN_H_GROUP} <20>
{BLOCKINPUT_H_GROUP} <20>
{INTERVALS_H_GROUP} <20>
"{Includes}macterm.h" <20>
"{Includes}macgui.h" <20>
"{Src}frame.h"
{Src}xdisp.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}frame.h" <20>
{WINDOW_H_GROUP} <20>
"{Src}termchar.h" <20>
{DISPEXTERN_H_GROUP} <20>
"{Src}buffer.h" <20>
"{Src}charset.h" <20>
"{Src}indent.h" <20>
"{Src}commands.h" <20>
"{Src}macros.h" <20>
"{Src}disptab.h" <20>
"{Src}termhooks.h" <20>
{INTERVALS_H_GROUP} <20>
"{Src}keyboard.h" <20>
"{Src}coding.h" <20>
"{Src}ccl.h" <20>
"{Src}process.h" <20>
"{Src}region-cache.h" <20>
"{Src}fontset.h" <20>
"{Includes}macterm.h" <20>
"{Includes}macgui.h" <20>
"{Src}frame.h"
{Src}xfaces.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Includes}sys:types.h" <20>
"{Includes}sys:stat.h" <20>
"{Src}lisp.h" <20>
"{Src}charset.h" <20>
"{Src}frame.h" <20>
"{Src}fontset.h" <20>
"{Includes}macterm.h" <20>
"{Includes}macgui.h" <20>
"{Src}frame.h" <20>
"{Src}buffer.h" <20>
{DISPEXTERN_H_GROUP} <20>
{BLOCKINPUT_H_GROUP} <20>
{WINDOW_H_GROUP} <20>
{INTERVALS_H_GROUP} <20>
"{Src}keyboard.h"
{Src}macmenu.c.x <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}termhooks.h" <20>
"{Src}frame.h" <20>
{WINDOW_H_GROUP} <20>
"{Src}keyboard.h" <20>
{BLOCKINPUT_H_GROUP} <20>
"{Src}buffer.h" <20>
"{Includes}sys:types.h" <20>
{DISPEXTERN_H_GROUP}
{Source}mac.c <20> <20>
{CONFIG_H_GROUP} <20>
"{Includes}utime.h" <20>
"{Includes}dirent.h" <20>
"{Includes}sys:types.h" <20>
"{Includes}sys:stat.h" <20>
"{Includes}pwd.h" <20>
"{Includes}sys:types.h" <20>
"{Includes}sys:param.h" <20>
"{Src}lisp.h" <20>
"{Src}process.h" <20>
"{Src}sysselect.h" <20>
"{Src}systime.h" <20>
"{Includes}sys:time.h" <20>
"{Includes}utsname.h"
{Source}macfns.c <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
"{Src}charset.h" <20>
"{Includes}macterm.h" <20>
"{Includes}macgui.h" <20>
"{Src}frame.h" <20>
"{Src}frame.h" <20>
{WINDOW_H_GROUP} <20>
"{Src}buffer.h" <20>
{DISPEXTERN_H_GROUP} <20>
"{Src}fontset.h" <20>
{INTERVALS_H_GROUP} <20>
"{Src}keyboard.h" <20>
{BLOCKINPUT_H_GROUP} <20>
"{Includes}epaths.h" <20>
"{Src}termhooks.h" <20>
"{Src}coding.h" <20>
"{Src}ccl.h" <20>
"{Src}systime.h" <20>
"{Src}bitmaps:gray.xbm"
{Source}macterm.c <20> <20>
{CONFIG_H_GROUP} <20>
"{Src}lisp.h" <20>
{BLOCKINPUT_H_GROUP} <20>
"{Src}syssignal.h" <20>
"{Includes}macterm.h" <20>
"{Includes}macgui.h" <20>
"{Src}frame.h" <20>
"{Includes}alloca.h" <20>
"{Includes}sys:types.h" <20>
"{Src}systty.h" <20>
"{Includes}termio.h" <20>
"{Src}systime.h" <20>
"{Includes}sys:stat.h" <20>
"{Src}charset.h" <20>
"{Src}ccl.h" <20>
"{Src}frame.h" <20>
{DISPEXTERN_H_GROUP} <20>
"{Src}fontset.h" <20>
"{Src}termhooks.h" <20>
"{Src}termopts.h" <20>
"{Src}termchar.h" <20>
"{Src}gnu.h" <20>
"{Src}disptab.h" <20>
"{Src}buffer.h" <20>
{WINDOW_H_GROUP} <20>
"{Src}keyboard.h" <20>
{INTERVALS_H_GROUP} <20>
"{Src}process.h" <20>
"{Src}atimer.h" <20>
"{Src}coding.h" <20>
"{Src}ccl.h" <20>
"{Includes}epaths.h" <20>
"{Src}termhooks.h" <20>
"{Src}coding.h" <20>
"{Src}ccl.h"
#----------------------------------------#
# Variables and rules for target "Clean" #
#----------------------------------------#
Clean <20>
Delete -i {EmacsObjects} {MacObjects}
Delete -i "{EmacsTarget}"
Delete -i stdout stderr
Delete -i {Make-DocFile-Objects} {Make-DocFileDir}make-docfile
Delete -i "{Source}"Emacs.maclf.r "{Source}"EmacsMPW.maclf.r
DistClean <20> Clean
Delete -i "Emacs CW"<22>
Delete -y "emacs Data"
Delete -i emacs.mcp
#--------------------------------------#
# Variables and rules for target "Doc" #
#--------------------------------------#
EmacsSource = <20>
"{Src}abbrev.c" <20>
"{Src}alloc.c" <20>
"{Src}alloca.c" <20>
"{Src}atimer.c" <20>
"{Src}buffer.c" <20>
"{Src}bytecode.c" <20>
"{Src}callint.c" <20>
"{Src}callproc.c" <20>
"{Src}casefiddle.c" <20>
"{Src}casetab.c" <20>
"{Src}category.c" <20>
"{Src}ccl.c" <20>
"{Src}charset.c" <20>
"{Src}cm.c" <20>
"{Src}cmds.c" <20>
"{Src}coding.c" <20>
"{Src}composite.c" <20>
"{Src}data.c" <20>
"{Src}dired.c" <20>
"{Src}dispnew.c" <20>
"{Src}doc.c" <20>
"{Src}doprnt.c" <20>
"{Src}editfns.c" <20>
"{Src}emacs.c" <20>
"{Src}eval.c" <20>
"{Src}fileio.c" <20>
"{Src}filemode.c" <20>
"{Src}floatfns.c" <20>
"{Src}fns.c" <20>
"{Src}fontset.c" <20>
"{Src}frame.c" <20>
"{Src}getloadavg.c" <20>
"{Src}indent.c" <20>
"{Src}insdel.c" <20>
"{Src}intervals.c" <20>
"{Src}keyboard.c" <20>
"{Src}keymap.c" <20>
"{Src}lread.c" <20>
"{Src}macros.c" <20>
"{Src}marker.c" <20>
"{Src}minibuf.c" <20>
"{Src}mktime.c" <20>
"{Src}mocklisp.c" <20>
"{Src}print.c" <20>
"{Src}process.c" <20>
"{Src}regex.c" <20>
"{Src}region-cache.c" <20>
"{Src}scroll.c" <20>
"{Src}search.c" <20>
"{Src}strftime.c" <20>
"{Src}syntax.c" <20>
"{Src}sysdep.c" <20>
"{Src}term.c" <20>
"{Src}termcap.c" <20>
"{Src}textprop.c" <20>
"{Src}tparam.c" <20>
"{Src}undo.c" <20>
"{Src}window.c" <20>
"{Src}xdisp.c" <20>
"{Src}xfaces.c" <20>
"{Src}xmenu.c"
MacSource = <20>
"{Source}mac.c" <20>
"{Source}macfns.c" <20>
"{Source}macterm.c"
LispSource = <20>
{Lisp}menu-bar.el <20>
{Lisp}mouse.el <20>
{Lisp}select.el <20>
{Lisp}scroll-bar.el <20>
{Lisp}vmsproc.el <20>
{Lisp}vms-patch.el <20>
{Lisp}ls-lisp.el <20>
{Lisp}dos-fns.el <20>
{Lisp}w32-fns.el <20>
{Lisp}dos-w32.el <20>
{Lisp}disp-table.el <20>
{Lisp}dos-vars.el <20>
{Lisp}international:ccl.el <20>
{Lisp}international:codepage.el <20>
{Lisp}abbrev.el <20>
{Lisp}buff-menu.el <20>
{Lisp}byte-run.el <20>
{Lisp}cus-start.el <20>
{Lisp}custom.el <20>
{Lisp}emacs-lisp:lisp-mode.el <20>
{Lisp}emacs-lisp:lisp.el <20>
{Lisp}facemenu.el <20>
{Lisp}faces.el <20>
{Lisp}files.el <20>
{Lisp}float-sup.el <20>
{Lisp}format.el <20>
{Lisp}frame.el <20>
{Lisp}help.el <20>
{Lisp}indent.el <20>
{Lisp}isearch.el <20>
{Lisp}loadup.el <20>
{Lisp}loaddefs.el <20>
{Lisp}bindings.el <20>
{Lisp}map-ynp.el <20>
{Lisp}international:mule.el <20>
{Lisp}international:mule-conf.el <20>
{Lisp}international:mule-cmds.el <20>
{Lisp}international:characters.el <20>
{Lisp}case-table.el <20>
{Lisp}language:chinese.el <20>
{Lisp}language:cyrillic.el <20>
{Lisp}language:indian.el <20>
{Lisp}language:devanagari.el <20>
{Lisp}language:english.el <20>
{Lisp}language:ethiopic.el <20>
{Lisp}language:european.el <20>
{Lisp}language:czech.el <20>
{Lisp}language:slovak.el <20>
{Lisp}language:romanian.el <20>
{Lisp}language:greek.el <20>
{Lisp}language:hebrew.el <20>
{Lisp}language:japanese.el <20>
{Lisp}language:korean.el <20>
{Lisp}language:lao.el <20>
{Lisp}language:thai.el <20>
{Lisp}language:tibetan.el <20>
{Lisp}language:vietnamese.el <20>
{Lisp}language:misc-lang.el <20>
{Lisp}paths.el <20>
{Lisp}register.el <20>
{Lisp}replace.el <20>
{Lisp}simple.el <20>
{Lisp}startup.el <20>
{Lisp}subr.el <20>
{Lisp}term:tty-colors.el <20>
{Lisp}textmodes:fill.el <20>
{Lisp}textmodes:page.el <20>
{Lisp}textmodes:paragraphs.el <20>
{Lisp}textmodes:text-mode.el <20>
{Lisp}vc-hooks.el <20>
{Lisp}ediff-hook.el <20>
{Lisp}widget.el <20>
{Lisp}window.el <20>
{Lisp}version.el
Doc <20> {DocTarget}DOC
{DocTarget}DOC <20> {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
#-----------------------------------------------#
# Variables and rules for target "Make-DocFile" #
#-----------------------------------------------#
Make-DocFile-Includes = -i :inc:
Make-DocFile-Sym =
Make-DocFile-PPCCOptions = -typecheck relaxed -w off -noMapCR <20>
{Make-DocFile-Includes} {Make-DocFile-Sym}
Make-DocFile-Objects = <20>
"{Lib-Src}make-docfile.c.x" <20>
"{Source}chdir.c.x"
Make-DocFile <20> {Make-DocFileDir}Make-DocFile
{Make-DocFileDir}Make-DocFile <20> {Makefile} {Make-DocFile-Objects}
PPCLink <20>
-o {Make-DocFileDir}Make-DocFile <20>
{Make-DocFile-Sym} <20>
{Make-DocFile-Objects} <20>
-t 'MPST' <20>
-c 'MPS ' <20>
"{SharedLibraries}InterfaceLib" <20>
"{SharedLibraries}StdCLib" <20>
"{SharedLibraries}MathLib" <20>
"{PPCLibraries}StdCRuntime.o" <20>
"{PPCLibraries}PPCCRuntime.o" <20>
"{PPCLibraries}PPCToolLibs.o"
"{Lib-Src}make-docfile.c.x" <20> {Makefile} "{Lib-Src}make-docfile.c"
{PPCC} "{Lib-Src}make-docfile.c" -o "{Lib-Src}make-docfile.c.x" {Make-DocFile-PPCCOptions}
"{Source}chdir.c.x" <20> {Makefile} "{Source}chdir.c"
{PPCC} "{Source}chdir.c" -o "{Source}chdir.c.x" {Make-DocFile-PPCCOptions}