1 # Makefile for GNU Emacs.
2 # Copyright (C) 1985, 1987, 1988, 1993, 1994, 1995, 1999, 2000, 2001, 2002,
3 # 2003, 2004, 2005, 2006, 2007, 2008, 2009
4 # Free Software Foundation, Inc.
6 # This file is part of GNU Emacs.
8 # GNU Emacs is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
13 # GNU Emacs is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
22 # Note that this file is edited by msdos/sed1v2.inp for MSDOS. That
23 # script may need modifying in sync with changes made here. Try to
24 # avoid shell-ism because the DOS build has to use the DOS shell.
26 # Don't try to replace the cpp processing using autoconf facilities,
28 # Replacing a particular part of the conditionals to work via autoconf
30 # Some of the conditionals might be dead now. Finding them and
31 # deleting them would be fine.
34 # Here are the things that we expect ../configure to edit.
35 # We use $(srcdir) explicitly in dependencies so as not to depend on VPATH.
46 # Substitute an assignment for the MAKE variable, because
47 # BSD doesn't have it as a default.
49 # Don't use LIBS. configure puts stuff in it that either shouldn't be
50 # linked with Emacs or is duplicated by the cpp stuff below.
54 lispsource
= ${srcdir}/..
/lisp
/
57 oldXMenudir
= ..
/oldXMenu
/
61 # Configuration files for .o files to depend on.
62 M_FILE
= ${srcdir}/@machfile@
63 S_FILE
= ${srcdir}/@opsysfile@
64 config_h
= config.h
$(M_FILE
) $(S_FILE
)
66 bootstrap_exe
= ..
/src
/bootstrap-emacs
${EXEEXT}
68 OTHER_FILES
= @OTHER_FILES@
70 # ========================== start of cpp stuff =======================
71 /* From here on
, comments must be done in C syntax.
*/
75 /* just to be sure the sh is used
*/
78 #define THIS_IS_MAKEFILE
82 /* Do not let the file name mktime.c
get messed up.
*/
87 /* Use HAVE_X11
as an alias for X11 in this file
88 to avoid problems with X11
as a subdirectory name
89 in
-I and other such options which pass through this file.
*/
96 /* On some machines
#define register is done in config;
97 do not let it interfere with this file.
*/
100 /* GNU libc requires ORDINARY_LINK so that its own crt0 is used.
101 GNU
/Linux is an exception because it uses a funny variant of GNU libc.
*/
102 #ifdef __GNU_LIBRARY__
104 #define ORDINARY_LINK
108 /* Some machines do not find the standard C libraries in the usual place.
*/
109 #ifndef ORDINARY_LINK
111 #define LIB_STANDARD -lc
119 /* Under GNUstep
, putting libc on the link line causes problems.
*/
120 #ifdef NS_IMPL_GNUSTEP
125 /* Unless inhibited or changed
, use
-lg to link for debugging.
*/
127 #define LIBS_DEBUG -lg
130 /* Some s
/SYSTEM.h files
define this to request special libraries.
*/
135 /* Some m
/MACHINE.h files
define this to request special libraries.
*/
141 # define LIB_MATH -lm
142 #endif /* LIB_MATH */
144 /* Some s
/SYSTEM.h files
define this to request special switches in
ld.
*/
145 #ifndef LD_SWITCH_SYSTEM
146 #if !defined (__GNUC__) && ((defined (BSD_SYSTEM) && !defined (COFF)))
147 #define LD_SWITCH_SYSTEM -X
148 #else /* (defined (BSD_SYSTEM) && !defined (COFF)) */
149 #define LD_SWITCH_SYSTEM
150 #endif /* (defined (BSD_SYSTEM) && !defined (COFF)) */
151 #endif /* LD_SWITCH_SYSTEM */
153 /* This holds special options for linking temacs
154 that should be used for linking anything
else.
*/
155 #ifndef LD_SWITCH_SYSTEM_TEMACS
156 #define LD_SWITCH_SYSTEM_TEMACS
159 /* Some s
/SYSTEM.h files
define this to request special switches
160 for compiling temacs.
*/
161 #ifndef C_SWITCH_SYSTEM_TEMACS
162 #define C_SWITCH_SYSTEM_TEMACS
165 /* Some m
/MACHINE.h files
define this to request special switches in
ld.
*/
166 #ifndef LD_SWITCH_MACHINE
167 #define LD_SWITCH_MACHINE
170 /* This holds special options for linking temacs
171 that should be used for linking anything
else.
*/
172 #ifndef LD_SWITCH_MACHINE_TEMACS
173 #define LD_SWITCH_MACHINE_TEMACS
176 /* Some m
/MACHINE.h files
define this to request special switches in
cc.
*/
177 #ifndef C_SWITCH_MACHINE
178 #define C_SWITCH_MACHINE
181 /* Some s
/SYSTEM.h files
define this to request special switches in
cc.
*/
182 #ifndef C_SWITCH_SYSTEM
183 #define C_SWITCH_SYSTEM
186 /* These macros are for switches specifically related to X Windows.
*/
187 #ifndef C_SWITCH_X_MACHINE
188 #define C_SWITCH_X_MACHINE
191 #ifndef C_SWITCH_X_SYSTEM
192 #define C_SWITCH_X_SYSTEM
195 #ifndef C_SWITCH_X_SITE
196 #define C_SWITCH_X_SITE
199 #ifndef LD_SWITCH_X_SITE
200 #define LD_SWITCH_X_SITE
203 #ifndef LD_SWITCH_X_DEFAULT
204 #define LD_SWITCH_X_DEFAULT
207 #ifndef ORDINARY_LINK
210 #define CRT0_COMPILE $(CC) -c $(ALL_CFLAGS)
215 #define START_FILES pre-crt0.o /lib/crt0.o
216 #else /* ! defined (NO_REMAP) */
217 #define START_FILES ecrt0.o
218 #endif /* ! defined (NO_REMAP) */
219 #endif /* START_FILES */
220 STARTFILES
= START_FILES
222 #else /* ORDINARY_LINK */
224 /* config.h might want to
force START_FILES anyway
*/
226 STARTFILES
= START_FILES
227 #endif /* START_FILES */
229 #endif /* not ORDINARY_LINK */
232 #ifdef NS_IMPL_GNUSTEP
233 /* Pull in stuff from GNUstep-make.
*/
236 include @GNUSTEP_MAKEFILES@
/Additional
/base.make
237 include @GNUSTEP_MAKEFILES@
/Additional
/gui.make
242 DBUS_CFLAGS
= @DBUS_CFLAGS@
243 DBUS_LIBS
= @DBUS_LIBS@
244 DBUS_OBJ
= dbusbind.o
247 /* DO NOT use
-R. There is a special hack described in lastfile.c
248 which is used instead. Some initialized data areas are modified
249 at initial startup
, then labeled
as part of the text area when
250 Emacs is dumped for the first time
, and never changed again.
*/
252 /* -Demacs is needed to make some files produce the correct version
255 -DHAVE_CONFIG_H is needed for some other files to take advantage of
256 the information in
``config.h
''.
*/
258 /* C_SWITCH_X_SITE must come before C_SWITCH_X_MACHINE and C_SWITCH_X_SYSTEM
259 since it may have
-I options that should
override those two.
*/
260 ALL_CFLAGS
=-Demacs
-DHAVE_CONFIG_H
$(MYCPPFLAGS
) -I.
-I
${srcdir} C_SWITCH_MACHINE C_SWITCH_SYSTEM C_SWITCH_X_SITE C_SWITCH_X_MACHINE C_SWITCH_X_SYSTEM C_SWITCH_SYSTEM_TEMACS
${CFLAGS_SOUND} ${RSVG_CFLAGS} ${DBUS_CFLAGS} ${CFLAGS} @FREETYPE_CFLAGS@ @FONTCONFIG_CFLAGS@ @LIBOTF_CFLAGS@ @M17N_FLT_CFLAGS@
261 ALL_OBJC_CFLAGS
=$(ALL_CFLAGS
) @GNU_OBJC_CFLAGS@
265 $(CC
) -c
$(CPPFLAGS
) $(ALL_CFLAGS
) $<
267 $(CC
) -c
$(CPPFLAGS
) $(ALL_OBJC_CFLAGS
) $<
269 #ifndef LIBX11_SYSTEM
270 #define LIBX11_SYSTEM
274 #define LIB_X11_LIB -lX11
277 #ifdef HAVE_X_WINDOWS
279 XOBJ
= xterm.o xfns.o xselect.o xrdb.o fontset.o xsmfns.o fringe.o image.o
287 /* The X Menu stuff is present in the X10 distribution
, but missing
288 from X11. If we have X10
, just use the installed library
;
289 otherwise
, use our own copy.
*/
292 OLDXMENU
=${lwlibdir}liblw.a
293 LIBXMENU
= $(OLDXMENU
)
294 #else /* not USE_X_TOOLKIT */
295 OLDXMENU
= ${oldXMenudir}libXMenu11.a
296 LIBXMENU
= $(OLDXMENU
)
297 #endif /* not USE_X_TOOLKIT */
298 #else /* not HAVE_X11 */
300 #endif /* not HAVE_X11 */
302 #else /* not HAVE_MENUS */
304 /* Otherwise
, do not worry about the menu library at
all.
*/
306 #endif /* not HAVE_MENUS */
309 # define @X_TOOLKIT_TYPE@
315 # if defined (HAVE_MOTIF_2_1) && defined (HAVE_LIBXP)
316 # define LIB_MOTIF_EXTRA -lXp
318 # define LIB_MOTIF_EXTRA
321 MOTIF_LIBW
= LIB_MOTIF LIB_MOTIF_EXTRA
323 MOTIF_LIBW
= -lXm LIB_MOTIF_EXTRA
325 LIBW
=$(@X_TOOLKIT_TYPE@_LIBW
)
329 LIBXTR6
= -lSM
-lICE
-lw
339 LIBXT
= $(LIBW
) LIBXMU
-lXt
$(LIBXTR6
) -lXext
341 #else /* not USE_X_TOOLKIT */
350 LIBXT
=$(LIBW
) -lSM
-lICE
354 #endif /* not USE_X_TOOLKIT */
358 #endif /* HAVE_XFT */
363 #endif /* not defined LIBXPM */
364 #else /* not HAVE_XPM */
366 #endif /* not HAVE_XPM */
370 #define LIBJPEG -ljpeg
371 #endif /* not defined LIBJPEG */
372 #else /* not HAVE_JPEG */
374 #endif /* not HAVE_JPEG */
378 #define LIBPNG -lpng -lz -lm
379 #endif /* not defined LIBPNG */
380 #else /* not HAVE_PNG */
382 #endif /* not HAVE_PNG */
386 #define LIBTIFF -ltiff
387 #endif /* not defined LIBTIFF */
388 #else /* not HAVE_TIFF */
390 #endif /* not HAVE_TIFF */
395 #endif /* not defined LIBGIF */
396 #else /* not HAVE_GIF */
398 #endif /* not HAVE_GIF */
401 /* LD_SWITCH_X_DEFAULT comes after everything
else that specifies
402 options for where to find X libraries
, but before those libraries.
*/
403 X11_LDFLAGS
= LD_SWITCH_X_SITE LD_SWITCH_X_DEFAULT
404 LIBX
= $(LIBXMENU
) $(X11_LDFLAGS
) $(LIBXT
) LIBTIFF LIBJPEG LIBPNG LIBGIF LIBXPM LIB_X11_LIB LIBX11_SYSTEM
$(XFT_LIBS
)
405 #else /* not HAVE_X11 */
406 LIBX
= $(LIBXMENU
) LD_SWITCH_X_SITE
407 #endif /* not HAVE_X11 */
408 #endif /* not HAVE_X_WINDOWS */
413 #endif /* not defined LIBGPM */
414 #else /* not HAVE_GPM */
416 #endif /* not HAVE_GPM */
420 #define LIBRESOLV -lresolv
421 #endif /* not defined LIBRESOLV */
422 #else /* not HAVE_LIBRESOLV */
424 #endif /* not HAVE_LIBRESOLV */
427 CFLAGS_SOUND
= @CFLAGS_SOUND@
429 RSVG_LIBS
= @RSVG_LIBS@
430 RSVG_CFLAGS
= @RSVG_CFLAGS@
432 #ifndef ORDINARY_LINK
433 /* Fix linking if compiled with GCC.
*/
437 #define LINKER_WAS_SPECIFIED
440 /* Versions of GCC
>= 2.0 put their library
, libgcc.a
, in obscure
441 places that are difficult to figure out at make time. Fortunately
,
442 these same versions allow you to pass arbitrary flags on to the
443 linker
, so there is no reason not to use it
as a linker.
445 Well
, it is not quite perfect. The
"-nostdlib" keeps GCC from
446 searching for libraries in its internal directories
, so we have to
447 ask GCC explicitly where to find libgcc.a.
*/
450 #define LINKER $(CC) -nostdlib
454 /* Ask GCC where to find libgcc.a.
*/
455 #define LIB_GCC `$(CC) -print-libgcc-file-name`
456 #endif /* not LIB_GCC */
460 #ifndef LINKER_WAS_SPECIFIED
461 /* GCC passes any argument prefixed with
-Xlinker directly to the
462 linker. See prefix-args.c for an explanation of why we do not do
463 this with the
shell''s
``for
'' construct.
464 Note that some people do not have
'.' in their paths
, so we must
465 use .
/prefix-args.
*/
466 #define YMF_PASS_LDFLAGS(flags) `./prefix-args -Xlinker flags`
468 #define YMF_PASS_LDFLAGS(flags) flags
471 #else /* not __GNUC__ */
474 #endif /* not __GNUC__ */
475 #endif /* not ORDINARY_LINK */
482 #else /* not LINKER */
484 #endif /* not LINKER */
485 #endif /* not ORDINARY_LINK */
487 /* Flags to pass to LD only for temacs.
*/
488 /* Do not split this line with a backslash. That can cause trouble with
490 TEMACS_LDFLAGS
= LD_SWITCH_SYSTEM LD_SWITCH_SYSTEM_TEMACS LD_SWITCH_MACHINE LD_SWITCH_MACHINE_TEMACS
492 /* A macro which other sections of Makefile can redefine to munge the
493 flags before they are passed to LD. This is helpful if you have
494 redefined LD to something odd
, like
"gcc".
495 (The YMF
prefix is a holdover from the old name
"ymakefile".
)
497 #ifndef YMF_PASS_LDFLAGS
498 #define YMF_PASS_LDFLAGS(flags) flags
501 /* Allow config.h to specify a replacement file for unexec.c.
*/
503 #define UNEXEC unexec.o
506 INTERVALS_H
= dispextern.h intervals.h composite.h
508 GETLOADAVG_LIBS
= @GETLOADAVG_LIBS@
511 #ifdef HAVE_X_WINDOWS
512 MSDOS_OBJ
= dosfns.o msdos.o xmenu.o
514 MSDOS_OBJ
= dosfns.o msdos.o w16select.o xmenu.o
523 ns_appdir
=@ns_appdir@
/
524 ns_appbindir
=@ns_appbindir@
/
525 ns_appresdir
=@ns_appresdir@
/
526 ns_appsrc
=@ns_appsrc@
527 /* Object files for NeXTstep
*/
528 NS_OBJ
= nsterm.o nsfns.o nsmenu.o nsselect.o nsimage.o nsfont.o \
529 fontset.o fringe.o image.o
532 #ifdef HAVE_WINDOW_SYSTEM
533 #ifdef HAVE_X_WINDOWS
534 #if defined (HAVE_XFT)
535 FONT_DRIVERS
= xfont.o ftfont.o xftfont.o ftxfont.o
536 #elif defined (HAVE_FREETYPE)
537 FONT_DRIVERS
= xfont.o ftfont.o ftxfont.o
538 #else /* ! defined (HAVE_XFT) && ! defined (HAVE_FREETYPE) */
539 FONT_DRIVERS
= xfont.o
540 #endif /* ! defined (HAVE_XFT) && ! defined (HAVE_FREETYPE) */
541 #endif /* HAVE_X_WINDOWS */
542 #endif /* HAVE_WINDOW_SYSTEM */
544 /* lastfile must follow
all files
545 whose initialized data areas should be dumped
as pure by dump-emacs.
*/
546 obj
= dispnew.o frame.o scroll.o xdisp.o menu.o
$(XMENU_OBJ
) window.o \
547 charset.o coding.o category.o ccl.o character.o chartab.o \
548 cm.o term.o terminal.o xfaces.o
$(XOBJ
) $(GTK_OBJ
) $(DBUS_OBJ
) \
549 emacs.o keyboard.o macros.o keymap.o sysdep.o \
550 buffer.o filelock.o insdel.o marker.o \
551 minibuf.o fileio.o dired.o filemode.o \
552 cmds.o casetab.o casefiddle.o indent.o search.o regex.o undo.o \
553 alloc.o data.o doc.o editfns.o callint.o \
554 eval.o floatfns.o fns.o font.o
print.o lread.o \
555 syntax.o UNEXEC bytecode.o \
556 process.o callproc.o \
557 region-cache.o sound.o atimer.o \
558 doprnt.o strftime.o intervals.o textprop.o composite.o md5.o \
559 $(MSDOS_OBJ
) $(NS_OBJ
) $(CYGWIN_OBJ
) $(FONT_DRIVERS
)
561 /* Object files used on some machine or other.
562 These go in the DOC file on
all machines
563 in case they are needed there.
*/
564 SOME_MACHINE_OBJECTS
= dosfns.o msdos.o \
565 xterm.o xfns.o xmenu.o xselect.o xrdb.o xsmfns.o fringe.o image.o \
567 nsterm.o nsfns.o nsmenu.o nsselect.o nsimage.o nsfont.o \
568 w32.o w32console.o w32fns.o w32heap.o w32inevt.o \
569 w32menu.o w32proc.o w32reg.o w32select.o w32term.o w32xfns.o
$(FONT_DRIVERS
)
573 /* Used to be
-ltermcap here. If your machine needs that
,
574 define LIBS_TERMCAP in the m
/MACHINE.h file.
*/
576 #define LIBS_TERMCAP -lcurses
577 #endif /* LIBS_TERMCAP */
578 termcapobj
= terminfo.o
579 #else /* ! defined (TERMINFO) */
582 termcapobj
= termcap.o tparam.o
583 #else /* LIBS_TERMCAP */
584 termcapobj
= tparam.o
585 #endif /* LIBS_TERMCAP */
586 #endif /* ! defined (TERMINFO) */
589 #ifndef SYSTEM_MALLOC
591 #ifndef DOUG_LEA_MALLOC
592 gmallocobj
= gmalloc.o
599 mallocobj
= $(gmallocobj
) $(rallocobj
) vm-limit.o
601 #endif /* SYSTEM_MALLOC */
606 #else /* not USE_X_TOOLKIT */
608 #endif /* not USE_X_TOOLKIT */
611 /* define otherobj
as list of object files that make-docfile
612 should not be told about.
*/
614 /* Cygwin differs because of its unexec
().
*/
615 otherobj
= $(termcapobj
) $(gmallocobj
) $(rallocobj
) lastfile.o vm-limit.o
$(widgetobj
) $(LIBOBJS
)
617 otherobj
= $(termcapobj
) lastfile.o
$(mallocobj
) $(widgetobj
) $(LIBOBJS
)
621 #define MOUSE_SUPPORT ${lispsource}mouse.elc \
622 ${lispsource}select.elc
${lispsource}scroll-bar.elc
625 #define MOUSE_SUPPORT ${lispsource}mouse.elc
627 #define MOUSE_SUPPORT
632 #define MSDOS_SUPPORT ${lispsource}ls-lisp.elc ${lispsource}disp-table.elc \
633 ${lispsource}dos-fns.elc
${lispsource}dos-w32.elc
${lispsource}dos-vars.elc \
634 ${lispsource}term
/internal.elc
${lispsource}term
/pc-win.elc
637 #define MSDOS_SUPPORT
640 #ifdef HAVE_WINDOW_SYSTEM
641 #ifdef HAVE_X_WINDOWS
642 #define WINDOW_SUPPORT ${lispsource}fringe.elc ${lispsource}image.elc \
643 ${lispsource}international
/fontset.elc
${lispsource}dnd.elc \
644 ${lispsource}tool-bar.elc
${lispsource}mwheel.elc
${lispsource}x-dnd.elc \
645 ${lispsource}term
/common-win.elc
${lispsource}term
/x-win.elc
647 #define WINDOW_SUPPORT ${lispsource}fringe.elc ${lispsource}image.elc \
648 ${lispsource}international
/fontset.elc
${lispsource}dnd.elc \
649 ${lispsource}tool-bar.elc
${lispsource}mwheel.elc
652 #define WINDOW_SUPPORT
656 #define WINNT_SUPPORT ${lispsource}ls-lisp.elc ${lispsource}disp-table.elc \
657 ${lispsource}dos-w32.elc
${lispsource}w32-vars.elc \
658 ${lispsource}w32-fns.elc
${lispsource}term
/common-win.elc \
659 ${lispsource}term
/w32-win.elc
661 #define WINNT_SUPPORT
664 #ifdef HAVE_WINDOW_SYSTEM
665 #define TOOLTIP_SUPPORT ${lispsource}tooltip.elc
667 #define TOOLTIP_SUPPORT
671 #define NS_SUPPORT ${lispsource}emacs-lisp/easymenu.elc \
672 ${lispsource}term
/ns-win.elc
677 /* This is the platform-specific list of Lisp files loaded into the
678 dumped Emacs. It is arranged like this because it is easier to generate
679 it semi-mechanically from loadup.el this way.
681 Note that this list should not
include lisp files which might not
682 be present
, like site-load.el and site-init.el
; this makefile
683 expects them
all to be either present or buildable.
685 Files which are loaded unconditionally
(i.e.
, on
all platforms
) should
686 also be in shortlisp. Files which are loaded conditionally
(i.e.
, only
687 on some platforms
) should instead be in SOME_MACHINE_LISP.
*/
689 /* Place loaddefs.el first
, so it gets generated first
, since it is on
690 the critical path
(relevant in parallel compilations
).
*/
693 ${lispsource}loaddefs.el \
694 ${lispsource}abbrev.elc \
695 ${lispsource}buff-menu.elc \
696 ${lispsource}button.elc \
697 ${lispsource}emacs-lisp
/byte-run.elc \
698 ${lispsource}composite.elc \
699 ${lispsource}cus-face.elc \
700 ${lispsource}cus-start.elc \
701 ${lispsource}custom.elc \
702 ${lispsource}emacs-lisp
/backquote.elc \
703 ${lispsource}emacs-lisp
/lisp-mode.elc \
704 ${lispsource}emacs-lisp
/lisp.elc \
705 ${lispsource}env.elc \
706 ${lispsource}faces.elc \
707 ${lispsource}files.elc \
708 ${lispsource}format.elc \
709 ${lispsource}facemenu.elc \
711 ${lispsource}emacs-lisp
/float-sup.elc \
712 ${lispsource}frame.elc \
713 ${lispsource}help.elc \
714 ${lispsource}indent.elc \
715 ${lispsource}isearch.elc \
716 ${lispsource}rfn-eshadow.elc \
717 ${lispsource}loadup.el \
718 ${lispsource}bindings.elc \
719 ${lispsource}emacs-lisp
/map-ynp.elc \
720 ${lispsource}menu-bar.elc \
721 ${lispsource}international
/mule.elc \
722 ${lispsource}international
/mule-conf.el \
723 ${lispsource}international
/mule-cmds.elc \
724 ${lispsource}international
/characters.elc \
725 ${lispsource}international
/charprop.el \
726 ${lispsource}case-table.elc \
727 ${lispsource}language
/chinese.el \
728 ${lispsource}language
/cyrillic.el \
729 ${lispsource}language
/indian.el \
730 ${lispsource}language
/sinhala.el \
731 ${lispsource}language
/english.el \
732 ${lispsource}language
/ethiopic.elc \
733 ${lispsource}language
/european.elc \
734 ${lispsource}language
/czech.el \
735 ${lispsource}language
/slovak.el \
736 ${lispsource}language
/romanian.el \
737 ${lispsource}language
/greek.el \
738 ${lispsource}language
/hebrew.el \
739 ${lispsource}language
/japanese.el \
740 ${lispsource}language
/korean.el \
741 ${lispsource}language
/lao.el \
742 ${lispsource}language
/cham.el \
743 ${lispsource}language
/tai-viet.el \
744 ${lispsource}language
/thai.el \
745 ${lispsource}language
/tibetan.elc \
746 ${lispsource}language
/vietnamese.el \
747 ${lispsource}language
/misc-lang.el \
748 ${lispsource}language
/utf-8-lang.el \
749 ${lispsource}language
/georgian.el \
750 ${lispsource}language
/khmer.el \
751 ${lispsource}language
/burmese.el \
752 ${lispsource}paths.el \
753 ${lispsource}register.elc \
754 ${lispsource}replace.elc \
755 ${lispsource}simple.elc \
756 ${lispsource}minibuffer.elc \
757 ${lispsource}startup.elc \
758 ${lispsource}subr.elc \
759 ${lispsource}term
/tty-colors.elc \
760 ${lispsource}font-core.elc \
761 ${lispsource}emacs-lisp
/syntax.elc \
762 ${lispsource}font-lock.elc \
763 ${lispsource}jit-lock.elc \
764 ${lispsource}textmodes
/fill.elc \
765 ${lispsource}textmodes
/page.elc \
766 ${lispsource}textmodes
/paragraphs.elc \
767 ${lispsource}textmodes
/text-mode.elc \
768 ${lispsource}emacs-lisp
/timer.elc \
769 ${lispsource}jka-cmpr-hook.elc \
770 ${lispsource}vc-hooks.elc \
771 ${lispsource}ediff-hook.elc \
772 ${lispsource}epa-hook.elc \
778 ${lispsource}widget.elc \
779 ${lispsource}window.elc \
780 ${lispsource}version.el
782 /* List of relative names for those files from
$lisp that are loaded
783 unconditionally
(i.e. on
all platforms
). Files from
$lisp that
784 are only loaded on some platforms should instead be placed in
785 SOME_MACHINE_LISP. The only reason this variable exists is to prevent
786 the make-docfile command-line getting too long for some systems.
*/
788 ..
/lisp
/loaddefs.el \
790 ..
/lisp
/buff-menu.elc \
792 ..
/lisp
/emacs-lisp
/byte-run.elc \
793 ..
/lisp
/composite.elc \
794 ..
/lisp
/cus-face.elc \
795 ..
/lisp
/cus-start.elc \
797 ..
/lisp
/emacs-lisp
/backquote.elc \
798 ..
/lisp
/emacs-lisp
/lisp-mode.elc \
799 ..
/lisp
/emacs-lisp
/lisp.elc \
800 ..
/lisp
/facemenu.elc \
803 ..
/lisp
/emacs-lisp
/float-sup.elc \
808 ..
/lisp
/isearch.elc \
809 ..
/lisp
/rfn-eshadow.elc \
811 ..
/lisp
/bindings.elc \
812 ..
/lisp
/emacs-lisp
/map-ynp.elc \
814 ..
/lisp
/international
/mule.elc \
815 ..
/lisp
/international
/mule-conf.el \
816 ..
/lisp
/international
/mule-cmds.elc \
817 ..
/lisp
/international
/characters.elc \
818 ..
/lisp
/case-table.elc \
819 ..
/lisp
/language
/chinese.el \
820 ..
/lisp
/language
/cyrillic.el \
821 ..
/lisp
/language
/indian.el \
822 ..
/lisp
/language
/sinhala.el \
823 ..
/lisp
/language
/english.el \
824 ..
/lisp
/language
/ethiopic.elc \
825 ..
/lisp
/language
/european.elc \
826 ..
/lisp
/language
/czech.el \
827 ..
/lisp
/language
/slovak.el \
828 ..
/lisp
/language
/romanian.el \
829 ..
/lisp
/language
/greek.el \
830 ..
/lisp
/language
/hebrew.el \
831 ..
/lisp
/language
/japanese.el \
832 ..
/lisp
/language
/korean.el \
833 ..
/lisp
/language
/lao.el \
834 ..
/lisp
/language
/cham.el \
835 ..
/lisp
/language
/tai-viet.el \
836 ..
/lisp
/language
/thai.el \
837 ..
/lisp
/language
/tibetan.elc \
838 ..
/lisp
/language
/vietnamese.el \
839 ..
/lisp
/language
/misc-lang.el \
840 ..
/lisp
/language
/utf-8-lang.el \
841 ..
/lisp
/language
/georgian.el \
842 ..
/lisp
/language
/khmer.el \
843 ..
/lisp
/language
/burmese.el \
844 ..
/lisp
/menu-bar.elc \
846 ..
/lisp
/register.elc \
847 ..
/lisp
/replace.elc \
849 ..
/lisp
/minibuffer.elc \
850 ..
/lisp
/startup.elc \
852 ..
/lisp
/term
/tty-colors.elc \
853 ..
/lisp
/font-core.elc \
854 ..
/lisp
/emacs-lisp
/syntax.elc \
855 ..
/lisp
/font-lock.elc \
856 ..
/lisp
/jit-lock.elc \
857 ..
/lisp
/textmodes
/fill.elc \
858 ..
/lisp
/textmodes
/page.elc \
859 ..
/lisp
/textmodes
/paragraphs.elc \
860 ..
/lisp
/textmodes
/text-mode.elc \
861 ..
/lisp
/emacs-lisp
/timer.elc \
862 ..
/lisp
/vc-hooks.elc \
863 ..
/lisp
/jka-cmpr-hook.elc \
864 ..
/lisp
/ediff-hook.elc \
865 ..
/lisp
/epa-hook.elc \
870 /* Like
$shortlisp, but includes only those files from
$lisp that are loaded
871 conditionally
(i.e.
, only on some platforms
).
*/
872 SOME_MACHINE_LISP
= ..
/lisp
/mouse.elc \
873 ..
/lisp
/select.elc ..
/lisp
/scroll-bar.elc \
874 ..
/lisp
/ls-lisp.elc ..
/lisp
/dos-fns.elc \
875 ..
/lisp
/w32-fns.elc ..
/lisp
/dos-w32.elc \
876 ..
/lisp
/disp-table.elc ..
/lisp
/dos-vars.elc \
877 ..
/lisp
/tooltip.elc ..
/lisp
/image.elc \
878 ..
/lisp
/fringe.elc ..
/lisp
/dnd.elc \
879 ..
/lisp
/mwheel.elc ..
/lisp
/tool-bar.elc \
881 ..
/lisp
/international
/ccl.elc \
882 ..
/lisp
/international
/fontset.elc \
884 ..
/lisp
/term
/common-win.elc \
885 ..
/lisp
/term
/x-win.elc \
886 ..
/lisp
/term
/pc-win.elc ..
/lisp
/term
/internal.elc \
887 ..
/lisp
/term
/ns-win.elc ..
/lisp
/term
/w32-win.elc \
888 ..
/lisp
/emacs-lisp
/easymenu.elc
890 /* Construct full set of libraries to be linked.
891 Note that SunOS needs
-lm to come before
-lc
; otherwise
, you
get
892 duplicated symbols. If the standard libraries were compiled
893 with GCC
, we might need gnulib again after them.
*/
895 LIBES
= $(LOADLIBES
) $(LIBS
) $(LIBX
) $(LIBSOUND
) $(RSVG_LIBS
) $(DBUS_LIBS
) \
896 LIBGPM LIBRESOLV LIBS_SYSTEM LIBS_MACHINE LIBS_TERMCAP \
897 LIBS_DEBUG
$(GETLOADAVG_LIBS
) \
898 @FREETYPE_LIBS@ @FONTCONFIG_LIBS@ @LIBOTF_LIBS@ @M17N_FLT_LIBS@ \
899 $(GNULIB_VAR
) LIB_MATH LIB_STANDARD
$(GNULIB_VAR
)
902 RUN_TEMACS
= `/bin/pwd`/temacs
-nl
904 RUN_TEMACS
= `/bin/pwd`/temacs
907 all: emacs
${EXEEXT} $(OTHER_FILES
)
909 emacs
${EXEEXT}: temacs
${EXEEXT} ${etc}DOC
${lisp} ${SOME_MACHINE_LISP}
912 ln temacs
${EXEEXT} emacs
${EXEEXT}
913 -EMACSLOADPATH
=${lispsource} .
/emacs
-q
-batch
-f list-load-path-shadows
915 LC_ALL
=C
$(RUN_TEMACS
) -batch
-l loadup dump
916 @
: This new Emacs is
as functional and more efficient then
917 @
: bootstrap-emacs
, so let us replace it.
918 -ln
-f emacs
${EXEEXT} bootstrap-emacs
${EXEEXT}
919 -.
/emacs
-q
-batch
-f list-load-path-shadows
920 #endif /* ! defined (CANNOT_DUMP) */
922 /* We run make-docfile twice because the command line may
get too long
924 /* ${SOME_MACHINE_OBJECTS} comes before
${obj} because some files may
925 or may not be included in
${obj}, but they are always included in
926 ${SOME_MACHINE_OBJECTS}. Since a file is processed when it is mentioned
927 for the first time
, this prevents any variation between configurations
928 in the contents of the DOC file.
929 Likewise for
${SOME_MACHINE_LISP}.
*/
930 /* Most of this Makefile refers to Lisp files via
${lispsource}, so
931 we also use
${lisp} rather than
${shortlisp} for the dependency since
932 the Makefile uses string equality to decide when we talk about identical
933 files. Apparently we pass
${shortlisp} rather than
${lisp} to make-docfile
934 only in order to reduce the command line length.
--Stef
*/
935 ${etc}DOC
: ${libsrc}make-docfile
${EXEEXT} ${obj} ${lisp} ${SOME_MACHINE_LISP}
937 ${libsrc}make-docfile
-d
${srcdir} ${SOME_MACHINE_OBJECTS} ${obj} > ${etc}DOC
938 ${libsrc}make-docfile
-a
${etc}DOC
-d
${srcdir} ${SOME_MACHINE_LISP} ${shortlisp}
940 ${libsrc}make-docfile
${EXEEXT}:
941 cd
${libsrc}; ${MAKE} ${MFLAGS} make-docfile
${EXEEXT}
944 echo
"#define BUILDOBJ \"${obj} ${otherobj} " "\"" > buildobj.h
946 temacs
${EXEEXT}: $(LOCALCPP
) $(STARTFILES
) stamp-oldxmenu
${obj} ${otherobj} prefix-args
${EXEEXT}
947 #ifdef NS_IMPL_GNUSTEP
948 $(CC
) -rdynamic YMF_PASS_LDFLAGS
( ${TEMACS_LDFLAGS} \
949 -L@GNUSTEP_SYSTEM_LIBRARIES@
-lgnustep-gui
-lgnustep-base \
950 -lobjc
$(CONFIG_SYSTEM_LIBS
) -lpthread
) -o temacs \
951 ${obj} ${otherobj} ${LIBES}
953 $(LD
) YMF_PASS_LDFLAGS
(${STARTFLAGS} ${TEMACS_LDFLAGS}) $(LDFLAGS
) \
954 -o temacs
${STARTFILES} ${obj} ${otherobj} \
958 /* We do not use ALL_LDFLAGS because LD_SWITCH_SYSTEM and LD_SWITCH_MACHINE
959 often contain options that have to do with using Emacs
''s crt0
,
960 which are only good with temacs.
*/
961 prefix-args
${EXEEXT}: prefix-args.c
$(config_h
)
962 $(CC
) $(ALL_CFLAGS
) $(LDFLAGS
) ${srcdir}/prefix-args.c
-o prefix-args
964 #if defined (HAVE_X_WINDOWS) && defined (HAVE_X11) && defined (HAVE_MENUS) && ! defined (USE_GTK)
966 /* We use stamp-xmenu with these two deps
967 to both ensure that lwlib gets remade based on its dependencies
969 and remake temacs if lwlib gets changed by this.
*/
970 stamp-oldxmenu
: ${OLDXMENU} ..
/src
/$(OLDXMENU
)
972 /* Supply an ordering for parallel make.
*/
973 ..
/src
/$(OLDXMENU
): ${OLDXMENU}
975 /* Encode the values of these two macros in Make variables
,
976 so we can use
$(...
) to substitute their values within
"...".
*/
977 C_SWITCH_MACHINE_1
= C_SWITCH_MACHINE
978 C_SWITCH_SYSTEM_1
= C_SWITCH_SYSTEM
979 C_SWITCH_X_SITE_1
= C_SWITCH_X_SITE
980 C_SWITCH_X_MACHINE_1
= C_SWITCH_X_MACHINE
981 C_SWITCH_X_SYSTEM_1
= C_SWITCH_X_SYSTEM
984 $(OLDXMENU
): really-lwlib
987 cd
${lwlibdir}; ${MAKE} ${MFLAGS} \
988 CC
='${CC}' CFLAGS
='${CFLAGS}' MAKE
='${MAKE}' \
989 "C_SWITCH_X_SITE=$(C_SWITCH_X_SITE_1)" \
990 "C_SWITCH_X_MACHINE=$(C_SWITCH_X_MACHINE_1)" \
991 "C_SWITCH_X_SYSTEM=$(C_SWITCH_X_SYSTEM_1)" \
992 "C_SWITCH_MACHINE=$(C_SWITCH_MACHINE_1)" \
993 "C_SWITCH_SYSTEM=$(C_SWITCH_SYSTEM_1)"
994 @true
/* make
-t should not create really-lwlib.
*/
996 #else /* not USE_X_TOOLKIT */
997 $(OLDXMENU
): really-oldXMenu
1000 cd
${oldXMenudir}; ${MAKE} ${MFLAGS} \
1001 CC
='${CC}' CFLAGS
='${CFLAGS}' MAKE
='${MAKE}' \
1002 "C_SWITCH_X_SITE=$(C_SWITCH_X_SITE_1)" \
1003 "C_SWITCH_X_MACHINE=$(C_SWITCH_X_MACHINE_1)" \
1004 "C_SWITCH_X_SYSTEM=$(C_SWITCH_X_SYSTEM_1)" \
1005 "C_SWITCH_MACHINE=$(C_SWITCH_MACHINE_1)" \
1006 "C_SWITCH_SYSTEM=$(C_SWITCH_SYSTEM_1)"
1007 @true
/* make
-t should not create really-oldXMenu.
*/
1008 .PHONY
: really-oldXMenu
1009 #endif /* not USE_X_TOOLKIT */
1010 #else /* not (HAVE_X_WINDOWS && HAVE_X11 && HAVE_MENUS && ! USE_GTK) */
1012 /* We don
''t really need this
, but satisfy the dependency.
*/
1014 touch stamp-oldxmenu
1015 #endif /* not (HAVE_X_WINDOWS && HAVE_X11 && HAVE_MENUS && ! USE_GTK) */
1017 ..
/config.status
:: epaths.in
1018 @echo
"The file epaths.h needs to be set up from epaths.in."
1019 @echo
"Please run the `configure' script again."
1022 ..
/config.status
:: config.in
1023 @echo
"The file config.h needs to be set up from config.in."
1024 @echo
"Please run the `configure' script again."
1027 /* Nearly
all the following files depend on lisp.h
,
1028 but it is not included
as a dependency because
1029 it is so often changed in ways that do not require any recompilation
1030 and so rarely changed in ways that do require any.
*/
1032 atimer.o
: atimer.c atimer.h syssignal.h systime.h
$(config_h
)
1033 abbrev.o
: abbrev.c buffer.h window.h dispextern.h commands.h character.h \
1034 syntax.h
$(config_h
)
1035 buffer.o
: buffer.c buffer.h region-cache.h commands.h window.h \
1036 dispextern.h
$(INTERVALS_H
) blockinput.h atimer.h systime.h character.h \
1038 callint.o
: callint.c window.h commands.h buffer.h keymap.h \
1039 keyboard.h dispextern.h
$(config_h
)
1040 callproc.o
: callproc.c epaths.h buffer.h commands.h
$(config_h
) \
1041 process.h systty.h syssignal.h character.h coding.h ccl.h msdos.h \
1042 composite.h w32.h blockinput.h atimer.h systime.h frame.h termhooks.h
1043 casefiddle.o
: casefiddle.c syntax.h commands.h buffer.h character.h \
1045 charset.h keymap.h
$(config_h
)
1046 casetab.o
: casetab.c buffer.h
$(config_h
)
1047 category.o
: category.c category.h buffer.h charset.h keymap.h \
1048 character.h
$(config_h
)
1049 ccl.o
: ccl.c ccl.h charset.h character.h coding.h
$(config_h
)
1050 character.o
: character.c character.h buffer.h charset.h composite.h disptab.h \
1052 charset.o
: charset.c charset.h character.h buffer.h coding.h composite.h \
1053 disptab.h
$(config_h
)
1054 chartab.o
: charset.h character.h
$(config_h
)
1055 coding.o
: coding.c coding.h ccl.h buffer.h character.h charset.h
$(INTERVALS_H
) composite.h \
1056 window.h dispextern.h frame.h termhooks.h
$(config_h
)
1057 cm.o
: cm.c frame.h cm.h termhooks.h termchar.h
$(config_h
)
1058 cmds.o
: cmds.c syntax.h buffer.h character.h commands.h window.h
$(config_h
) \
1059 msdos.h dispextern.h keyboard.h keymap.h
1060 pre-crt0.o
: pre-crt0.c
1061 ecrt0.o
: ecrt0.c
$(config_h
)
1062 CRT0_COMPILE
${srcdir}/ecrt0.c
1063 dbusbind.o
: dbusbind.c termhooks.h frame.h keyboard.h
$(config_h
)
1064 dired.o
: dired.c commands.h buffer.h
$(config_h
) character.h charset.h \
1065 coding.h regex.h systime.h blockinput.h atimer.h
1066 dispnew.o
: dispnew.c systime.h commands.h process.h frame.h \
1067 window.h buffer.h dispextern.h termchar.h termopts.h termhooks.h cm.h \
1068 disptab.h indent.h
$(INTERVALS_H
) \
1069 xterm.h blockinput.h atimer.h character.h msdos.h composite.h keyboard.h \
1070 syssignal.h
$(config_h
)
1071 doc.o
: doc.c
$(config_h
) epaths.h buffer.h keyboard.h keymap.h character.h \
1073 doprnt.o
: doprnt.c character.h
$(config_h
)
1074 dosfns.o
: buffer.h termchar.h termhooks.h frame.h blockinput.h window.h \
1075 msdos.h dosfns.h dispextern.h charset.h coding.h atimer.h systime.h \
1077 editfns.o
: editfns.c window.h buffer.h systime.h
$(INTERVALS_H
) character.h \
1078 coding.h dispextern.h frame.h blockinput.h atimer.h
$(config_h
)
1079 emacs.o
: emacs.c commands.h systty.h syssignal.h blockinput.h process.h \
1080 termhooks.h buffer.h atimer.h systime.h
$(INTERVALS_H
) $(config_h
) \
1081 window.h dispextern.h keyboard.h keymap.h
1082 fileio.o
: fileio.c window.h buffer.h systime.h
$(INTERVALS_H
) character.h \
1083 coding.h msdos.h dispextern.h blockinput.h atimer.h
$(config_h
)
1084 filelock.o
: filelock.c buffer.h character.h charset.h coding.h systime.h \
1085 epaths.h
$(config_h
)
1086 filemode.o
: filemode.c
$(config_h
)
1087 frame.o
: frame.c xterm.h window.h frame.h termhooks.h commands.h keyboard.h \
1088 blockinput.h atimer.h systime.h buffer.h character.h fontset.h font.h \
1089 msdos.h dosfns.h dispextern.h w32term.h termchar.h \
1091 fringe.o
: fringe.c dispextern.h frame.h window.h buffer.h termhooks.h
$(config_h
)
1092 font.o
: font.c dispextern.h frame.h window.h ccl.h character.h charset.h \
1094 ftfont.o
: dispextern.h frame.h character.h charset.h composite.h font.h \
1096 fontset.o
: dispextern.h fontset.h fontset.c ccl.h buffer.h character.h \
1097 charset.h frame.h keyboard.h termhooks.h font.h
$(config_h
)
1098 getloadavg.o
: getloadavg.c
$(config_h
)
1099 gtkutil.o
: gtkutil.c gtkutil.h xterm.h lisp.h frame.h
$(config_h
) \
1100 blockinput.h window.h atimer.h systime.h termhooks.h keyboard.h \
1101 charset.h coding.h syssignal.h
1102 image.o
: image.c frame.h window.h dispextern.h blockinput.h atimer.h \
1103 systime.h xterm.h w32term.h w32gui.h font.h \
1104 nsterm.h nsgui.h
$(config_h
)
1105 indent.o
: indent.c frame.h window.h indent.h buffer.h
$(config_h
) termchar.h \
1106 termopts.h disptab.h region-cache.h character.h category.h composite.h \
1107 dispextern.h keyboard.h
1108 insdel.o
: insdel.c window.h buffer.h
$(INTERVALS_H
) blockinput.h character.h \
1109 dispextern.h atimer.h systime.h region-cache.h
$(config_h
)
1110 keyboard.o
: keyboard.c termchar.h termhooks.h termopts.h buffer.h character.h \
1111 commands.h frame.h window.h macros.h disptab.h keyboard.h syssignal.h \
1112 systime.h dispextern.h syntax.h
$(INTERVALS_H
) blockinput.h atimer.h \
1113 xterm.h puresize.h msdos.h keymap.h w32term.h nsterm.h \
1115 keymap.o
: keymap.c buffer.h commands.h keyboard.h termhooks.h blockinput.h \
1116 atimer.h systime.h puresize.h character.h charset.h
$(INTERVALS_H
) keymap.h window.h \
1118 lastfile.o
: lastfile.c
$(config_h
)
1119 macros.o
: macros.c window.h buffer.h commands.h macros.h keyboard.h \
1120 dispextern.h
$(config_h
)
1121 malloc.o
: malloc.c
$(config_h
)
1122 gmalloc.o
: gmalloc.c
$(config_h
)
1123 ralloc.o
: ralloc.c
$(config_h
)
1124 vm-limit.o
: vm-limit.c mem-limits.h
$(config_h
)
1125 marker.o
: marker.c buffer.h character.h
$(config_h
)
1126 md5.o
: md5.c md5.h
$(config_h
)
1127 minibuf.o
: minibuf.c syntax.h dispextern.h frame.h window.h keyboard.h \
1128 buffer.h commands.h character.h msdos.h
$(INTERVALS_H
) keymap.h \
1129 termhooks.h
$(config_h
)
1130 mktime.o
: mktime.c
$(config_h
)
1131 msdos.o
: msdos.c msdos.h dosfns.h systime.h termhooks.h dispextern.h frame.h \
1132 termopts.h termchar.h character.h coding.h ccl.h disptab.h window.h \
1133 keyboard.h
$(INTERVALS_H
) buffer.h commands.h blockinput.h atimer.h
$(config_h
)
1134 nsfns.o
: nsfns.m charset.h nsterm.h nsgui.h frame.h window.h buffer.h \
1135 dispextern.h nsgui.h fontset.h
$(INTERVALS_H
) keyboard.h blockinput.h \
1136 atimer.h systime.h epaths.h termhooks.h coding.h systime.h
$(config_h
)
1137 nsfont.o
: nsterm.h dispextern.h frame.h lisp.h
$(config_h
)
1138 nsimage.o
: nsimage.m nsterm.h
$(config_h
)
1139 nsmenu.o
: nsmenu.m termhooks.h frame.h window.h dispextern.h \
1140 nsgui.h keyboard.h blockinput.h atimer.h systime.h buffer.h \
1141 nsterm.h
$(config_h
)
1142 nsterm.o
: nsterm.m blockinput.h atimer.h systime.h syssignal.h nsterm.h \
1143 nsgui.h frame.h charset.h ccl.h dispextern.h fontset.h termhooks.h \
1144 termopts.h termchar.h disptab.h buffer.h window.h keyboard.h \
1145 $(INTERVALS_H
) process.h coding.h
$(config_h
)
1146 nsselect.o
: nsselect.m blockinput.h nsterm.h nsgui.h frame.h
$(config_h
)
1147 process.o
: process.c process.h buffer.h window.h termhooks.h termopts.h \
1148 commands.h syssignal.h systime.h systty.h syswait.h frame.h dispextern.h \
1149 blockinput.h atimer.h charset.h coding.h ccl.h msdos.h composite.h \
1150 keyboard.h
$(config_h
)
1151 regex.o
: regex.c syntax.h buffer.h
$(config_h
) regex.h category.h character.h \
1153 region-cache.o
: region-cache.c buffer.h region-cache.h
$(config_h
)
1154 scroll.o
: scroll.c termchar.h dispextern.h frame.h msdos.h keyboard.h \
1155 termhooks.h
$(config_h
)
1156 search.o
: search.c regex.h commands.h buffer.h region-cache.h syntax.h \
1157 blockinput.h atimer.h systime.h category.h character.h charset.h \
1158 composite.h
$(INTERVALS_H
) \
1160 sound.o
: sound.c dispextern.h syssignal.h
$(config_h
)
1161 strftime.o
: strftime.c
$(config_h
)
1162 syntax.o
: syntax.c syntax.h buffer.h commands.h category.h character.h \
1163 composite.h keymap.h regex.h
$(INTERVALS_H
) $(config_h
)
1164 sysdep.o
: sysdep.c syssignal.h systty.h systime.h syswait.h blockinput.h \
1165 process.h dispextern.h termhooks.h termchar.h termopts.h \
1166 frame.h atimer.h window.h msdos.h dosfns.h keyboard.h cm.h
$(config_h
)
1167 term.o
: term.c termchar.h termhooks.h termopts.h
$(config_h
) cm.h frame.h \
1168 disptab.h dispextern.h keyboard.h character.h charset.h coding.h ccl.h \
1169 msdos.h window.h keymap.h blockinput.h atimer.h systime.h systty.h \
1170 syssignal.h
$(INTERVALS_H
)
1171 termcap.o
: termcap.c
$(config_h
)
1172 terminal.o
: terminal.c frame.h termchar.h termhooks.h charset.h coding.h \
1173 keyboard.h
$(config_h
)
1174 terminfo.o
: terminfo.c
$(config_h
)
1175 tparam.o
: tparam.c
$(config_h
)
1176 undo.o
: undo.c buffer.h commands.h window.h
$(config_h
)
1177 unexaix.o
: unexaix.c
$(config_h
)
1178 unexalpha.o
: unexalpha.c
$(config_h
)
1179 unexcw.o
: unexcw.c
$(config_h
)
1180 unexec.o
: unexec.c
$(config_h
)
1181 unexelf.o
: unexelf.c
$(config_h
)
1182 unexhp9k800.o
: unexhp9k800.c
$(config_h
)
1183 unexmacosx.o
: unexmacosx.c
$(config_h
)
1184 unexmips.o
: unexmips.c
$(config_h
)
1185 unexnext.o
: unexnext.c
$(config_h
)
1186 unexsol.o
: unexsol.c
$(config_h
)
1187 unexw32.o
: unexw32.c
$(config_h
)
1188 w16select.o
: w16select.c dispextern.h frame.h blockinput.h atimer.h systime.h \
1189 msdos.h buffer.h charset.h coding.h composite.h
$(config_h
)
1190 widget.o
: widget.c xterm.h frame.h dispextern.h widgetprv.h \
1191 $(srcdir)/..
/lwlib
/lwlib.h
$(config_h
)
1192 window.o
: window.c indent.h commands.h frame.h window.h buffer.h termchar.h \
1193 disptab.h keyboard.h dispextern.h msdos.h composite.h \
1194 keymap.h blockinput.h atimer.h systime.h
$(INTERVALS_H
) \
1195 xterm.h w32term.h nsterm.h
$(config_h
)
1196 xdisp.o
: xdisp.c macros.h commands.h process.h indent.h buffer.h dispextern.h \
1197 coding.h termchar.h frame.h window.h disptab.h termhooks.h character.h \
1198 charset.h
$(config_h
) keyboard.h
$(INTERVALS_H
) region-cache.h xterm.h \
1199 w32term.h nsterm.h msdos.h composite.h fontset.h \
1200 blockinput.h atimer.h systime.h keymap.h font.h
1201 xfaces.o
: xfaces.c dispextern.h frame.h xterm.h buffer.h blockinput.h \
1202 window.h character.h charset.h msdos.h dosfns.h composite.h atimer.h \
1203 systime.h keyboard.h fontset.h w32term.h nsterm.h \
1204 $(INTERVALS_H
) termchar.h termhooks.h font.h
$(config_h
)
1205 xfns.o
: xfns.c buffer.h frame.h window.h keyboard.h xterm.h dispextern.h \
1206 $(srcdir)/..
/lwlib
/lwlib.h blockinput.h atimer.h systime.h epaths.h \
1207 character.h charset.h coding.h gtkutil.h
$(config_h
) termhooks.h \
1208 fontset.h termchar.h font.h
1209 xfont.o
: dispextern.h xterm.h frame.h blockinput.h character.h charset.h \
1211 xftfont.o
: dispextern.h xterm.h frame.h blockinput.h character.h charset.h \
1213 ftxfont.o
: dispextern.h xterm.h frame.h blockinput.h character.h charset.h \
1215 menu.o
: menu.c lisp.h keyboard.h keymap.h frame.h termhooks.h blockinput.h \
1216 dispextern.h
$(srcdir)/..
/lwlib
/lwlib.h xterm.h gtkutil.h menu.h \
1218 xmenu.o
: xmenu.c xterm.h termhooks.h window.h dispextern.h frame.h buffer.h \
1219 charset.h keyboard.h
$(srcdir)/..
/lwlib
/lwlib.h blockinput.h atimer.h \
1220 systime.h gtkutil.h msdos.h coding.h menu.h
$(config_h
)
1221 xterm.o
: xterm.c xterm.h termhooks.h termopts.h termchar.h window.h buffer.h \
1222 dispextern.h frame.h disptab.h blockinput.h atimer.h systime.h syssignal.h \
1223 keyboard.h emacs-icon.h character.h charset.h ccl.h fontset.h composite.h \
1224 coding.h process.h gtkutil.h font.h fontset.h
$(config_h
)
1225 xselect.o
: xselect.c process.h dispextern.h frame.h xterm.h blockinput.h \
1226 buffer.h atimer.h systime.h termhooks.h
$(config_h
)
1227 xrdb.o
: xrdb.c
$(config_h
) epaths.h
1228 xsmfns.o
: xsmfns.c
$(config_h
) systime.h sysselect.h termhooks.h xterm.h \
1231 /* The files of Lisp proper
*/
1233 alloc.o
: alloc.c process.h frame.h window.h buffer.h puresize.h syssignal.h keyboard.h \
1234 blockinput.h atimer.h systime.h character.h dispextern.h
$(config_h
) \
1236 bytecode.o
: bytecode.c buffer.h syntax.h character.h window.h dispextern.h \
1237 frame.h xterm.h
$(config_h
)
1238 data.o
: data.c buffer.h puresize.h character.h syssignal.h keyboard.h frame.h \
1239 termhooks.h
$(config_h
)
1240 eval.o
: eval.c commands.h keyboard.h blockinput.h atimer.h systime.h \
1241 dispextern.h
$(config_h
)
1242 floatfns.o
: floatfns.c syssignal.h
$(config_h
)
1243 fns.o
: fns.c commands.h
$(config_h
) frame.h buffer.h character.h keyboard.h \
1244 keymap.h frame.h window.h dispextern.h
$(INTERVALS_H
) coding.h md5.h \
1245 blockinput.h atimer.h systime.h xterm.h termhooks.h
1246 print.o
: print.c process.h frame.h window.h buffer.h keyboard.h character.h \
1247 $(config_h
) dispextern.h termchar.h
$(INTERVALS_H
) msdos.h composite.h \
1248 blockinput.h atimer.h systime.h font.h charset.h
1249 lread.o
: lread.c commands.h keyboard.h buffer.h epaths.h character.h \
1250 charset.h
$(config_h
) $(INTERVALS_H
) termhooks.h coding.h msdos.h
1252 /* Text properties support
*/
1253 composite.o
: composite.c buffer.h character.h coding.h dispextern.h font.h \
1254 frame.h termhooks.h
$(INTERVALS_H
) window.h
$(config_h
)
1255 intervals.o
: intervals.c buffer.h
$(INTERVALS_H
) keyboard.h puresize.h \
1256 keymap.h
$(config_h
)
1257 textprop.o
: textprop.c buffer.h window.h dispextern.h
$(INTERVALS_H
) \
1260 /* System-specific programs to be made.
1262 select which of these should be compiled.
*/
1265 /* In fact
, every .o file depends directly or indirectly on dispextern.h
1266 and hence nsgui.h under NS. But the ones that actually use stuff there
1267 are more limited.
*/
1268 dispnew.o font.o fontset.o frame.o fringe.o image.o keyboard.o menu.o \
1269 window.o xdisp.o xfaces.o
: nsgui.h
1271 ${ns_appdir}: ${ns_appsrc}
1273 mkdir
-p
${ns_appdir}
1274 ( cd
${ns_appsrc} ; tar cfh
- .
) |
( cd
${ns_appdir} ; tar xf
- )
1275 ( cd
${ns_appdir} ; for subdir in
`find . -type d ! -name CVS -print` ; do \
1276 chmod a
+rx
$${subdir} ; \
1277 rm -rf
$${subdir}/CVS
; \
1278 rm -f
$${subdir}/.cvsignore
; done
; )
1280 ${ns_appbindir}Emacs
: emacs
${EXEEXT}
1281 mkdir
-p
${ns_appbindir}
1282 cp
-f emacs
${EXEEXT} ${ns_appbindir}Emacs
1284 ns-app
: ${ns_appdir} ${ns_appbindir}Emacs
1286 #endif /* HAVE_NS */
1289 rm -f temacs
${EXEEXT} prefix-args
${EXEEXT} core
*.core \
#* *.o libXMenu11.a liblw.a
1291 rm -f bootstrap-emacs
${EXEEXT} emacs-
${version}${EXEEXT}
1294 rm -f emacs-
*.
*.
*${EXEEXT} emacs
${EXEEXT}
1298 /* bootstrap-clean is used to
clean up just before a bootstrap.
1299 It should remove
all files generated during a compilation
/bootstrap
,
1300 but not things like config.status or TAGS.
*/
1301 bootstrap-clean
: clean
1302 rm -f epaths.h config.h Makefile.c config.stamp stamp-oldxmenu ..
/etc
/DOC-
*
1303 if
test -f .
/.gdbinit
; then \
1304 mv .
/.gdbinit .
/.gdbinit.save
; \
1305 if
test -f
"${srcdir}/.gdbinit"; then
rm -f .
/.gdbinit.save
; \
1306 else mv .
/.gdbinit.save .
/.gdbinit
; fi
; \
1308 /**/# This is used in making a distribution.
1309 /**/# Do not use it on development directories!
1310 distclean: bootstrap-clean
1312 maintainer-clean
: distclean
1313 @echo
"This command is intended for maintainers to use;"
1314 @echo
"it deletes files that may require special tools to rebuild."
1317 -rm -f emacs
${EXEEXT} emacs-
*.
*.
*${EXEEXT} ..
/etc
/DOC
*
1318 extraclean
: distclean
1319 -rm -f
*~ \
#* m/?*~ s/?*~
1321 /* Arrange to make a
tags table TAGS-LISP for ..
/lisp
,
1322 plus TAGS for the C files
, which includes ..
/lisp
/TAGS by reference.
*/
1324 ctagsfiles1
= [xyzXYZ
]*.
[hcm
]
1325 ctagsfiles2
= [a-wA-W
]*.
[hcm
]
1327 TAGS
: $(srcdir)/$(ctagsfiles1
) $(srcdir)/$(ctagsfiles2
)
1328 ..
/lib-src
/etags
--include=TAGS-LISP
--include=${lwlibdir}/TAGS \
1329 --regex
='/[ ]*DEFVAR_[A-Z_ (]+"\([^"]+\)"/' \
1330 $(srcdir)/$(ctagsfiles1
) $(srcdir)/$(ctagsfiles2
)
1333 $(MAKE
) -f
${lispdir}Makefile TAGS-LISP ETAGS
=..
/lib-src
/etags
1336 (cd
$(lwlibdir
); $(MAKE
) -f
$(lwlibdir
)Makefile
tags ETAGS
=..
/lib-src
/etags
)
1338 tags: TAGS TAGS-LISP
$(lwlibdir
)TAGS
1342 /* Bootstrapping.
*/
1343 /* Bootstrapping right is difficult because of the circular dependencies.
1344 Furthermore
, we have to deal with the fact that many compilation targets
1345 such
as loaddefs.el or
*.elc can typically be produced by any old
1346 Emacs executable
, so we would like to avoid rebuilding them whenever
1347 we build a new Emacs executable.
1348 To solve the circularity
, we use
2 different Emacs executables
,
1349 "emacs" is the main target and
"bootstrap-emacs" is the one used
1350 to build the
*.elc and loaddefs.el files.
1351 To solve the freshness issue
, we used to use a third file
"witness-emacs"
1352 which was used to witness the fact that there is a bootstrap-emacs
1353 executable
, and then have dependencies on witness-emacs rather than
1354 bootstrap-emacs
, but that lead to problems in parallel builds
(because
1355 witness-emacs needed to be free from dependencies
(to avoid rebuilding
1356 it
), so it was compiled in parallel
, leading typically to having
2
1357 processes dumping bootstrap-emacs at the same time
).
1358 So instead
, we replace the witness-emacs dependencies by conditional
1359 bootstrap-dependencies
(via
${BOOTSTRAPEMACS}). Of course
, since we do
1360 not want to rely on GNU Make features
, we have to rely on an external
1361 script to do the conditional part of the dependency
1362 (i.e. see the
${SUBDIR} rule ..
/Makefile.in
).
*/
1366 /* These
suffix rules do not allow additional dependencies
, sadly
, so
1367 instead of adding a
$(BOOTSTRAPEMACS
) dependency here
, we add it
1369 With GNU Make
, we would just say
"%.el : %.elc $(BOOTSTRAPEMACS)" */
1371 @cd ..
/lisp
; $(MAKE
) $(MFLAGS
) compile-onefile \
1372 THEFILE
=$< EMACS
=${bootstrap_exe}
1374 /* Since the .el.elc rule cannot specify an extra dependency
, we do it here.
*/
1375 ${lisp} ${SOME_MACHINE_LISP}: $(BOOTSTRAPEMACS
)
1377 ${lispsource}loaddefs.el
: $(BOOTSTRAPEMACS
)
1378 cd ..
/lisp
; $(MAKE
) $(MFLAGS
) autoloads EMACS
=${bootstrap_exe}
1380 /* Dump an Emacs executable named bootstrap-emacs containing the
1381 files from loadup.el in source form.
*/
1383 bootstrap-emacs
${EXEEXT}: temacs
${EXEEXT}
1384 cd ..
/lisp
; $(MAKE
) $(MFLAGS
) update-subdirs
1386 ln
-f temacs
${EXEEXT} bootstrap-emacs
${EXEEXT}
1388 $(RUN_TEMACS
) --batch
--load loadup bootstrap
1389 mv
-f emacs
${EXEEXT} bootstrap-emacs
${EXEEXT}
1390 #endif /* ! defined (CANNOT_DUMP) */
1391 @
: Compile some files earlier to speed up further compilation.
1392 cd ..
/lisp
; $(MAKE
) $(MFLAGS
) compile-first EMACS
=${bootstrap_exe}