Files
emacs/mac/makefile.MPW
Andrew Choi 1a578e9be2 Initial check-in: changes for building Emacs under Mac OS.
2000-10-23  Andrew Choi  <akochoi@i-cable.com>

	* dispextern.h [macintosh]: Include macgui.h instead of macterm.h.

	* dispnew.c [macintosh]: Include macterm.h.
	(init_display) [macintosh]: initialization for window system.

	* emacs.c (main) [macintosh]: Call syms_of_textprop,
	syms_of_macfns, syms_of_ccl, syms_of_fontset, syms_of_xterm,
	syms_of_search, x_term_init, and init_keyboard before calling
	init_window_once.  Also, call syms_of_xmenu.

	* fontset.c (syms_of_fontset) [macintosh]: Set ASCII font of
	default fontset to Monaco.

	* frame.c [macintosh]: Include macterm.h.  Remove declarations of
	NewMacWindow and DisposeMacWindow.
	(make_terminal_frame) [macintosh]: Call make_mac_terminal_frame
	instead of calling NewMacWindow and setting fields of
	f->output_data.mac directly.  Call init_frame_faces.
	(Fdelete_frame) [macintosh]: Remove unused code.
	(Fmodify_frame_parameters) [macintosh]: Call
	x_set_frame_parameters instead of mac_set_frame_parameters.

	* frame.h [macintosh]: Define menu_bar_lines field in struct
	frame.  Define FRAME_EXTERNAL_MENU_BAR macro.

	* keyboard.c [macintosh]: Include macterm.h.
	(kbd_buffer_get_event) [macintosh]: Generate delete_window_event
	and menu_bar_activate_event type events as for X and NT.
	(make_lispy_event) [macintosh]: Construct lisp events of type
	MENU_BAR_EVENT as for X and NT.

	* sysdep.c [macintosh]: Remove declaration for sys_signal.
	Include stdlib.h.  Remove definition of Vx_bitmap_file_path.
	(sys_subshell) [macintosh]: Remove definition entirely.
	(init_sys_modes) [macintosh]: Do not initialize Vwindow_system and
	Vwindow_system_version here.  Remove initialization of
	Vx_bitmap_file_path.
	(read_input_waiting): Correct the number of parameters passed to
	read_socket_hook.
	Move all Macintosh functions to mac/mac.c.

	* term.c [macintosh]: Include macterm.h.

	* window.c [macintosh]: Include macterm.h.

	* xdisp.c [macintosh]: Include macterm.h.  Declare
	set_frame_menubar and pending_menu_activation.
	(echo_area_display) [macintosh]: Do not return if terminal frame
	is the selected frame.
	(update_menu_bar) [macintosh]: Check FRAME_EXTERNAL_MENU_BAR (f).
	Allow only the selected frame to set menu bar.
	(redisplay_window) [macintosh]: Obtain menu bar to redisplay by
	calling FRAME_EXTERNAL_MENU_BAR (f).
	(display_menu_bar) [macintosh]: Check FRAME_MAC_P (f).

	* xfaces.c [macintosh]: Include macterm.h.  Define x_display_info
	and check_x.  Declare XCreateGC.  Define x_create_gc and
	x_free_gc.  Initialize font_sort_order.
	(x_face_list_fonts) [macintosh]: Use the same code as WINDOWSNT,
	but call x_list_fonts instead of w32_list_fonts.
	(Finternal_face_x_get_resource) [macintosh]: Do not call
	display_x_get_resource.
	(prepare_face_for_display) [macintosh]: Set xgcv.font.
	(realize_x_face) [macintosh]: Load the font if it is specified in
	ATTRS.
	(syms_of_xfaces) [macintosh]: Initialize Vscalable_fonts_allowed
	to Qt.

	* cus-edit.el (custom-button-face): Use 3D look for mac.
	(custom-button-pressed-face): Likewise.

	* faces.el (set-face-attributes-from-resources): Handle mac frames
	in the same way as x and w32 frames.
	(face-valid-attribute-values): Likewise.
	(read-face-attribute): Likewise.
	(defined-colors): Likewise.
	(color-defined-p): Likewise.
	(color-values): Likewise.
	(display-grayscale-p): Likewise.
	(face-set-after-frame-default): Likewise.
	(mode-line): Same default face as for x and w32.
	(tool-bar): Likewise.

	* frame.el: Remove call to frame-notice-user-settings at end of
	the file.

	* info.el (Info-fontify-node): make underlines invisible for mac
	as for x, pc, and w32 frame types.

	* term/mac-win.el: New file.
2000-10-22 16:50:16 +00:00

1128 lines
24 KiB
Plaintext

# 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 ¶
-typecheck relaxed -w off ¶
-includes unix -i {Includes},{Src} ¶
-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" ¶
"{Includes}sys:time.h" "{Includes}sys:time.h"
# The list all object files from the GNU Emacs 21.0 distribution.
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" ¶
"{Src}callint.c.x" ¶
"{Src}callproc.c.x" ¶
"{Src}casefiddle.c.x" ¶
"{Src}casetab.c.x" ¶
"{Src}category.c.x" ¶
"{Src}ccl.c.x" ¶
"{Src}charset.c.x" ¶
"{Src}cm.c.x" ¶
"{Src}cmds.c.x" ¶
"{Src}coding.c.x" ¶
"{Src}composite.c.x" ¶
"{Src}data.c.x" ¶
"{Src}dired.c.x" ¶
"{Src}dispnew.c.x" ¶
"{Src}doc.c.x" ¶
"{Src}doprnt.c.x" ¶
"{Src}editfns.c.x" ¶
"{Src}emacs.c.x" ¶
"{Src}eval.c.x" ¶
"{Src}fileio.c.x" ¶
"{Src}filemode.c.x" ¶
"{Src}floatfns.c.x" ¶
"{Src}fns.c.x" ¶
"{Src}fontset.c.x" ¶
"{Src}frame.c.x" ¶
"{Src}getloadavg.c.x" ¶
"{Src}indent.c.x" ¶
"{Src}insdel.c.x" ¶
"{Src}intervals.c.x" ¶
"{Src}keyboard.c.x" ¶
"{Src}keymap.c.x" ¶
"{Src}lread.c.x" ¶
"{Src}macros.c.x" ¶
"{Src}marker.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" ¶
"{Src}region-cache.c.x" ¶
"{Src}scroll.c.x" ¶
"{Src}search.c.x" ¶
"{Src}strftime.c.x" ¶
"{Src}syntax.c.x" ¶
"{Src}sysdep.c.x" ¶
"{Src}term.c.x" ¶
"{Src}termcap.c.x" ¶
"{Src}textprop.c.x" ¶
"{Src}tparam.c.x" ¶
"{Src}undo.c.x" ¶
"{Src}window.c.x" ¶
"{Src}xdisp.c.x" ¶
"{Src}xfaces.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"
# The next two are the dependency rules for building Emacs.
Emacs ÄÄ {Makefile} {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" ¶
-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}"
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 Ä "{Source}"Emacs.r
translate ¶0x0a ¶n < "{Source}"Emacs.r > "{Source}"Emacs.maclf.r
"{Source}"EmacsMPW.maclf.r Ä "{Source}"EmacsMPW.r
translate ¶0x0a ¶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 Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}commands.h" ¶
"{Src}buffer.h" ¶
{WINDOW_H_GROUP} ¶
"{Src}charset.h" ¶
"{Src}syntax.h"
{Src}alloc.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
{INTERVALS_H_GROUP} ¶
"{Src}puresize.h" ¶
"{Src}buffer.h" ¶
{WINDOW_H_GROUP} ¶
"{Src}frame.h" ¶
{BLOCKINPUT_H_GROUP} ¶
"{Src}keyboard.h" ¶
"{Src}charset.h" ¶
"{Src}syssignal.h"
{Src}alloca.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
{BLOCKINPUT_H_GROUP}
{Src}atimer.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}syssignal.h" ¶
"{Src}systime.h" ¶
"{Includes}sys:time.h" ¶
{BLOCKINPUT_H_GROUP} ¶
"{Src}atimer.h" ¶
"{Includes}sys:time.h"
{Src}buffer.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Includes}sys:types.h" ¶
"{Includes}sys:stat.h" ¶
"{Includes}sys:param.h" ¶
"{Src}lisp.h" ¶
{INTERVALS_H_GROUP} ¶
"{Src}window.h" ¶
"{Src}commands.h" ¶
"{Src}buffer.h" ¶
"{Src}charset.h" ¶
"{Src}region-cache.h" ¶
"{Src}indent.h" ¶
{BLOCKINPUT_H_GROUP} ¶
"{Src}frame.h"
{Src}bytecode.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}buffer.h" ¶
"{Src}charset.h" ¶
"{Src}syntax.h"
{Src}callint.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}buffer.h" ¶
"{Src}commands.h" ¶
"{Src}keyboard.h" ¶
{WINDOW_H_GROUP} ¶
"{Src}mocklisp.h"
{Src}callproc.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Includes}sys:types.h" ¶
"{Includes}sys:file.h" ¶
"{Includes}sys:types.h" ¶
"{Includes}sys:stat.h" ¶
"{Src}lisp.h" ¶
"{Src}commands.h" ¶
"{Src}buffer.h" ¶
"{Src}charset.h" ¶
"{Src}ccl.h" ¶
"{Src}coding.h" ¶
"{Src}composite.h" ¶
"{Includes}epaths.h" ¶
"{Src}process.h" ¶
"{Src}syssignal.h" ¶
"{Src}systty.h" ¶
"{Includes}termio.h"
{Src}casefiddle Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}buffer.h" ¶
"{Src}charset.h" ¶
"{Src}commands.h" ¶
"{Src}syntax.h" ¶
"{Src}composite.h"
{Src}casetab.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}buffer.h" ¶
"{Src}charset.h"
{Src}category.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}buffer.h" ¶
"{Src}charset.h" ¶
"{Src}category.h"
{Src}ccl.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}charset.h" ¶
"{Src}ccl.h" ¶
"{Src}coding.h"
{Src}charset.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Includes}sys:types.h" ¶
"{Src}lisp.h" ¶
"{Src}buffer.h" ¶
"{Src}charset.h" ¶
"{Src}coding.h" ¶
"{Src}ccl.h" ¶
"{Src}disptab.h"
{Src}cm.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}cm.h" ¶
"{Src}termhooks.h"
{Src}cmds.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}commands.h" ¶
"{Src}buffer.h" ¶
"{Src}charset.h" ¶
"{Src}syntax.h" ¶
{WINDOW_H_GROUP} ¶
"{Src}keyboard.h" ¶
{DISPEXTERN_H_GROUP}
{Src}coding.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}buffer.h" ¶
"{Src}charset.h" ¶
"{Src}composite.h" ¶
"{Src}ccl.h" ¶
"{Src}coding.h" ¶
{WINDOW_H_GROUP}
{Src}composite.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}buffer.h" ¶
"{Src}charset.h" ¶
{INTERVALS_H_GROUP}
{Src}data.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}puresize.h" ¶
"{Src}charset.h" ¶
"{Src}buffer.h" ¶
"{Src}keyboard.h" ¶
"{Src}frame.h" ¶
"{Src}syssignal.h"
{Src}dired.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Includes}sys:types.h" ¶
"{Includes}sys:stat.h" ¶
"{Src}systime.h" ¶
"{Includes}sys:time.h" ¶
"{Includes}dirent.h" ¶
"{Src}lisp.h" ¶
"{Src}buffer.h" ¶
"{Src}commands.h" ¶
"{Src}charset.h" ¶
"{Src}coding.h" ¶
"{Src}ccl.h" ¶
"{Src}regex.h"
{Src}dispnew.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}termchar.h" ¶
"{Src}termopts.h" ¶
"{Src}termhooks.h" ¶
{DISPEXTERN_H_GROUP} ¶
"{Src}cm.h" ¶
"{Src}buffer.h" ¶
"{Src}charset.h" ¶
{WINDOW_H_GROUP} ¶
"{Src}commands.h" ¶
"{Src}disptab.h" ¶
"{Src}indent.h" ¶
{INTERVALS_H_GROUP} ¶
{BLOCKINPUT_H_GROUP} ¶
"{Src}process.h" ¶
"{Src}keyboard.h" ¶
"{Src}syssignal.h" ¶
"{Includes}macterm.h" ¶
"{Includes}macgui.h" ¶
"{Src}frame.h" ¶
"{Src}systime.h"
{Src}doc.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Includes}sys:types.h" ¶
"{Includes}sys:file.h" ¶
"{Src}lisp.h" ¶
"{Src}buffer.h" ¶
"{Src}keyboard.h" ¶
"{Src}charset.h"
{Src}doprnt.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}charset.h"
{Src}editfns.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Includes}sys:types.h" ¶
"{Includes}pwd.h" ¶
"{Src}lisp.h" ¶
{INTERVALS_H_GROUP} ¶
"{Src}buffer.h" ¶
"{Src}charset.h" ¶
"{Src}coding.h" ¶
"{Src}ccl.h" ¶
{WINDOW_H_GROUP} ¶
"{Src}systime.h" ¶
"{Includes}sys:time.h"
{Src}emacs.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Includes}sys:types.h" ¶
"{Includes}sys:file.h" ¶
"{Includes}sys:types.h" ¶
"{Includes}sys:stat.h" ¶
"{Src}lisp.h" ¶
"{Src}commands.h" ¶
{INTERVALS_H_GROUP} ¶
"{Src}buffer.h" ¶
"{Src}systty.h" ¶
"{Includes}termio.h" ¶
{BLOCKINPUT_H_GROUP} ¶
"{Src}syssignal.h" ¶
"{Src}process.h" ¶
"{Src}termhooks.h" ¶
"{Src}keyboard.h" ¶
"{Src}frame.h"
{Src}eval.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
{BLOCKINPUT_H_GROUP} ¶
"{Src}commands.h" ¶
"{Src}keyboard.h" ¶
{DISPEXTERN_H_GROUP}
{Src}fileio.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Includes}sys:types.h" ¶
"{Includes}sys:stat.h" ¶
"{Includes}pwd.h" ¶
"{Src}lisp.h" ¶
{INTERVALS_H_GROUP} ¶
"{Src}buffer.h" ¶
"{Src}charset.h" ¶
"{Src}coding.h" ¶
"{Src}ccl.h" ¶
{WINDOW_H_GROUP} ¶
"{Src}systime.h" ¶
"{Includes}sys:time.h" ¶
"{Src}commands.h"
{Src}filemode.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Includes}sys:types.h" ¶
"{Includes}sys:stat.h"
{Src}floatfns.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}syssignal.h"
{Src}fns.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}commands.h" ¶
"{Src}charset.h" ¶
"{Src}buffer.h" ¶
"{Src}keyboard.h" ¶
{INTERVALS_H_GROUP} ¶
"{Src}frame.h" ¶
{WINDOW_H_GROUP}
{Src}fontset.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}buffer.h" ¶
"{Src}charset.h" ¶
"{Src}ccl.h" ¶
"{Src}frame.h" ¶
{DISPEXTERN_H_GROUP} ¶
"{Src}fontset.h" ¶
{WINDOW_H_GROUP}
{Src}frame.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}charset.h" ¶
"{Src}fontset.h" ¶
"{Includes}macterm.h" ¶
"{Includes}macgui.h" ¶
"{Src}frame.h" ¶
"{Src}frame.h" ¶
"{Src}fontset.h" ¶
"{Src}termhooks.h" ¶
{DISPEXTERN_H_GROUP} ¶
{WINDOW_H_GROUP} ¶
"{Src}buffer.h" ¶
"{Src}commands.h" ¶
"{Src}keyboard.h"
{Src}getloadavg.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Includes}sys:types.h"
{Src}indent.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}buffer.h" ¶
"{Src}charset.h" ¶
"{Src}category.h" ¶
"{Src}indent.h" ¶
"{Src}frame.h" ¶
{WINDOW_H_GROUP} ¶
"{Src}termchar.h" ¶
"{Src}termopts.h" ¶
"{Src}disptab.h" ¶
{INTERVALS_H_GROUP} ¶
"{Src}region-cache.h"
{Src}insdel.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
{INTERVALS_H_GROUP} ¶
"{Src}buffer.h" ¶
"{Src}charset.h" ¶
{WINDOW_H_GROUP} ¶
{BLOCKINPUT_H_GROUP} ¶
"{Src}region-cache.h"
{Src}intervals.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
{INTERVALS_H_GROUP} ¶
"{Src}buffer.h" ¶
"{Src}puresize.h" ¶
"{Src}keyboard.h"
{Src}keyboard.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}termchar.h" ¶
"{Src}termopts.h" ¶
"{Src}lisp.h" ¶
"{Src}termhooks.h" ¶
"{Src}macros.h" ¶
"{Src}frame.h" ¶
{WINDOW_H_GROUP} ¶
"{Src}commands.h" ¶
"{Src}buffer.h" ¶
"{Src}charset.h" ¶
{DISPEXTERN_H_GROUP} ¶
"{Src}keyboard.h" ¶
"{Src}syntax.h" ¶
{INTERVALS_H_GROUP} ¶
{BLOCKINPUT_H_GROUP} ¶
"{Src}puresize.h" ¶
"{Src}systime.h" ¶
"{Src}atimer.h" ¶
"{Includes}sys:ioctl.h" ¶
"{Src}syssignal.h" ¶
"{Src}systty.h" ¶
"{Includes}termio.h" ¶
"{Includes}sys:types.h" ¶
"{Includes}macterm.h" ¶
"{Includes}macgui.h" ¶
"{Src}frame.h" ¶
"{Src}systime.h"
{Src}keymap.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}commands.h" ¶
"{Src}buffer.h" ¶
"{Src}charset.h" ¶
"{Src}keyboard.h" ¶
"{Src}termhooks.h" ¶
{BLOCKINPUT_H_GROUP} ¶
"{Src}puresize.h" ¶
{INTERVALS_H_GROUP}
{Src}lread.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Includes}sys:types.h" ¶
"{Includes}sys:stat.h" ¶
"{Includes}sys:file.h" ¶
"{Src}lisp.h" ¶
{INTERVALS_H_GROUP} ¶
"{Src}buffer.h" ¶
"{Src}charset.h" ¶
"{Includes}epaths.h" ¶
"{Src}commands.h" ¶
"{Src}keyboard.h" ¶
"{Src}termhooks.h"
{Src}macros.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}macros.h" ¶
"{Src}commands.h" ¶
"{Src}buffer.h" ¶
{WINDOW_H_GROUP} ¶
"{Src}keyboard.h"
{Src}marker.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}buffer.h" ¶
"{Src}charset.h"
{Src}minibuf.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}commands.h" ¶
"{Src}buffer.h" ¶
"{Src}charset.h" ¶
{DISPEXTERN_H_GROUP} ¶
"{Src}frame.h" ¶
{WINDOW_H_GROUP} ¶
"{Src}syntax.h" ¶
"{Src}keyboard.h"
{Src}mktime.c.x Ä ¶
{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" ¶
"{Src}buffer.h" ¶
"{Src}charset.h" ¶
"{Src}frame.h" ¶
{WINDOW_H_GROUP} ¶
"{Src}process.h" ¶
{DISPEXTERN_H_GROUP} ¶
"{Src}termchar.h" ¶
"{Src}keyboard.h" ¶
{INTERVALS_H_GROUP}
{Src}process.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Includes}sys:types.h" ¶
"{Src}lisp.h" ¶
"{Src}systime.h" ¶
"{Includes}sys:time.h" ¶
"{Src}charset.h" ¶
"{Src}coding.h" ¶
"{Src}ccl.h" ¶
"{Src}termopts.h" ¶
"{Src}sysselect.h"
{Src}regex.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Includes}sys:types.h" ¶
"{Src}lisp.h" ¶
"{Src}buffer.h" ¶
"{Src}syntax.h" ¶
"{Src}charset.h" ¶
"{Src}category.h" ¶
"{Src}regex.h"
{Src}region-cache.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}buffer.h" ¶
"{Src}region-cache.h"
{Src}scroll.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}termchar.h" ¶
"{Src}lisp.h" ¶
{DISPEXTERN_H_GROUP} ¶
"{Src}frame.h" ¶
{WINDOW_H_GROUP}
{Src}search.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}syntax.h" ¶
"{Src}category.h" ¶
"{Src}buffer.h" ¶
"{Src}charset.h" ¶
"{Src}region-cache.h" ¶
"{Src}commands.h" ¶
{BLOCKINPUT_H_GROUP} ¶
{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"
{Src}syntax.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}commands.h" ¶
"{Src}buffer.h" ¶
"{Src}charset.h" ¶
"{Src}syntax.h" ¶
{INTERVALS_H_GROUP} ¶
"{Src}category.h"
{Src}sysdep.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
{BLOCKINPUT_H_GROUP} ¶
"{Includes}sys:types.h" ¶
"{Includes}sys:stat.h" ¶
"{Includes}sys:ioctl.h" ¶
"{Src}syswait.h" ¶
"{Includes}sys:types.h" ¶
"{Src}frame.h" ¶
{WINDOW_H_GROUP} ¶
"{Src}termhooks.h" ¶
"{Src}termchar.h" ¶
"{Src}termopts.h" ¶
{DISPEXTERN_H_GROUP} ¶
"{Src}process.h" ¶
"{Src}syssignal.h" ¶
"{Src}systime.h" ¶
"{Includes}utime.h" ¶
"{Src}sysselect.h" ¶
"{Includes}dirent.h" ¶
"{Includes}sys:types.h"
{Src}term.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}termchar.h" ¶
"{Src}termopts.h" ¶
"{Src}lisp.h" ¶
"{Src}charset.h" ¶
"{Src}coding.h" ¶
"{Src}ccl.h" ¶
"{Src}frame.h" ¶
"{Src}disptab.h" ¶
"{Src}termhooks.h" ¶
"{Src}keyboard.h" ¶
{DISPEXTERN_H_GROUP} ¶
{WINDOW_H_GROUP} ¶
"{Src}cm.h" ¶
"{Includes}macterm.h" ¶
"{Includes}macgui.h" ¶
"{Src}frame.h"
{Src}termcap.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Includes}sys:file.h"
{Src}textproc.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
{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" ¶
"{Src}buffer.h" ¶
"{Src}frame.h" ¶
{WINDOW_H_GROUP} ¶
"{Src}commands.h" ¶
"{Src}indent.h" ¶
"{Src}termchar.h" ¶
"{Src}disptab.h" ¶
"{Src}keyboard.h" ¶
{DISPEXTERN_H_GROUP} ¶
{BLOCKINPUT_H_GROUP} ¶
{INTERVALS_H_GROUP} ¶
"{Includes}macterm.h" ¶
"{Includes}macgui.h" ¶
"{Src}frame.h"
{Src}xdisp.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}frame.h" ¶
{WINDOW_H_GROUP} ¶
"{Src}termchar.h" ¶
{DISPEXTERN_H_GROUP} ¶
"{Src}buffer.h" ¶
"{Src}charset.h" ¶
"{Src}indent.h" ¶
"{Src}commands.h" ¶
"{Src}macros.h" ¶
"{Src}disptab.h" ¶
"{Src}termhooks.h" ¶
{INTERVALS_H_GROUP} ¶
"{Src}keyboard.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}xfaces.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Includes}sys:types.h" ¶
"{Includes}sys:stat.h" ¶
"{Src}lisp.h" ¶
"{Src}charset.h" ¶
"{Src}frame.h" ¶
"{Src}fontset.h" ¶
"{Includes}macterm.h" ¶
"{Includes}macgui.h" ¶
"{Src}frame.h" ¶
"{Src}buffer.h" ¶
{DISPEXTERN_H_GROUP} ¶
{BLOCKINPUT_H_GROUP} ¶
{WINDOW_H_GROUP} ¶
{INTERVALS_H_GROUP} ¶
"{Src}keyboard.h"
{Src}macmenu.c.x Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}termhooks.h" ¶
"{Src}frame.h" ¶
{WINDOW_H_GROUP} ¶
"{Src}keyboard.h" ¶
{BLOCKINPUT_H_GROUP} ¶
"{Src}buffer.h" ¶
"{Includes}sys:types.h" ¶
{DISPEXTERN_H_GROUP}
{Source}mac.c Ä ¶
{CONFIG_H_GROUP} ¶
"{Includes}utime.h" ¶
"{Includes}dirent.h" ¶
"{Includes}sys:types.h" ¶
"{Includes}sys:stat.h" ¶
"{Includes}pwd.h" ¶
"{Includes}sys:types.h" ¶
"{Includes}sys:param.h" ¶
"{Src}lisp.h" ¶
"{Src}process.h" ¶
"{Src}sysselect.h" ¶
"{Src}systime.h" ¶
"{Includes}sys:time.h" ¶
"{Includes}utsname.h"
{Source}macfns.c Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
"{Src}charset.h" ¶
"{Includes}macterm.h" ¶
"{Includes}macgui.h" ¶
"{Src}frame.h" ¶
"{Src}frame.h" ¶
{WINDOW_H_GROUP} ¶
"{Src}buffer.h" ¶
{DISPEXTERN_H_GROUP} ¶
"{Src}fontset.h" ¶
{INTERVALS_H_GROUP} ¶
"{Src}keyboard.h" ¶
{BLOCKINPUT_H_GROUP} ¶
"{Includes}epaths.h" ¶
"{Src}termhooks.h" ¶
"{Src}coding.h" ¶
"{Src}ccl.h" ¶
"{Src}systime.h" ¶
"{Src}bitmaps:gray.xbm"
{Source}macterm.c Ä ¶
{CONFIG_H_GROUP} ¶
"{Src}lisp.h" ¶
{BLOCKINPUT_H_GROUP} ¶
"{Src}syssignal.h" ¶
"{Includes}macterm.h" ¶
"{Includes}macgui.h" ¶
"{Src}frame.h" ¶
"{Includes}alloca.h" ¶
"{Includes}sys:types.h" ¶
"{Src}systty.h" ¶
"{Includes}termio.h" ¶
"{Src}systime.h" ¶
"{Includes}sys:stat.h" ¶
"{Src}charset.h" ¶
"{Src}ccl.h" ¶
"{Src}frame.h" ¶
{DISPEXTERN_H_GROUP} ¶
"{Src}fontset.h" ¶
"{Src}termhooks.h" ¶
"{Src}termopts.h" ¶
"{Src}termchar.h" ¶
"{Src}gnu.h" ¶
"{Src}disptab.h" ¶
"{Src}buffer.h" ¶
{WINDOW_H_GROUP} ¶
"{Src}keyboard.h" ¶
{INTERVALS_H_GROUP} ¶
"{Src}process.h" ¶
"{Src}atimer.h" ¶
"{Src}coding.h" ¶
"{Src}ccl.h" ¶
"{Includes}epaths.h" ¶
"{Src}termhooks.h" ¶
"{Src}coding.h" ¶
"{Src}ccl.h"
#----------------------------------------#
# Variables and rules for target "Clean" #
#----------------------------------------#
Clean Ä
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 Ä Clean
Delete -i "Emacs CW"Å
Delete -y "emacs Data"
Delete -i emacs.mcp
#--------------------------------------#
# 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 ¶
{Lisp}loadup.el ¶
{Lisp}loaddefs.el ¶
{Lisp}bindings.el ¶
{Lisp}map-ynp.el ¶
{Lisp}international:mule.el ¶
{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}language:devanagari.el ¶
{Lisp}language:english.el ¶
{Lisp}language:ethiopic.el ¶
{Lisp}language:european.el ¶
{Lisp}language:czech.el ¶
{Lisp}language:slovak.el ¶
{Lisp}language:romanian.el ¶
{Lisp}language:greek.el ¶
{Lisp}language:hebrew.el ¶
{Lisp}language:japanese.el ¶
{Lisp}language:korean.el ¶
{Lisp}language:lao.el ¶
{Lisp}language:thai.el ¶
{Lisp}language:tibetan.el ¶
{Lisp}language:vietnamese.el ¶
{Lisp}language:misc-lang.el ¶
{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}version.el
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
#-----------------------------------------------#
# Variables and rules for target "Make-DocFile" #
#-----------------------------------------------#
Make-DocFile-Includes = -i :inc:
Make-DocFile-Sym =
Make-DocFile-PPCCOptions = -typecheck relaxed -w off -noMapCR ¶
{Make-DocFile-Includes} {Make-DocFile-Sym}
Make-DocFile-Objects = ¶
"{Lib-Src}make-docfile.c.x" ¶
"{Source}chdir.c.x"
Make-DocFile Ä {Make-DocFileDir}Make-DocFile
{Make-DocFileDir}Make-DocFile Ä {Makefile} {Make-DocFile-Objects}
PPCLink ¶
-o {Make-DocFileDir}Make-DocFile ¶
{Make-DocFile-Sym} ¶
{Make-DocFile-Objects} ¶
-t 'MPST' ¶
-c 'MPS ' ¶
"{SharedLibraries}InterfaceLib" ¶
"{SharedLibraries}StdCLib" ¶
"{SharedLibraries}MathLib" ¶
"{PPCLibraries}StdCRuntime.o" ¶
"{PPCLibraries}PPCCRuntime.o" ¶
"{PPCLibraries}PPCToolLibs.o"
"{Lib-Src}make-docfile.c.x" Ä {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" Ä {Makefile} "{Source}chdir.c"
{PPCC} "{Source}chdir.c" -o "{Source}chdir.c.x" {Make-DocFile-PPCCOptions}