(push, pop, dolist, dotimes, declare): Don't overwrite CL's
[emacs.git] / src / Makefile.in
blob865f14d8cddf8971aa2d13b75e2aabad4dc502f5
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,
27 # says rms.
28 # Replacing a particular part of the conditionals to work via autoconf
29 # is OK.
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.
36 srcdir=@srcdir@
37 VPATH=@srcdir@
38 CC=@CC@
39 CPP=@CPP@
40 CFLAGS=@CFLAGS@
41 CPPFLAGS=@CPPFLAGS@
42 LDFLAGS=@LDFLAGS@
43 LN_S=@LN_S@
44 EXEEXT=@EXEEXT@
45 version=@version@
46 # Substitute an assignment for the MAKE variable, because
47 # BSD doesn't have it as a default.
48 @SET_MAKE@
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.
51 # LIBS = @LIBS@
52 LIBOBJS = @LIBOBJS@
54 lispsource = ${srcdir}/../lisp/
55 libsrc = ../lib-src/
56 etc = ../etc/
57 oldXMenudir = ../oldXMenu/
58 lwlibdir = ../lwlib/
59 lispdir = ../lisp/
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. */
73 C_SWITCH_SYSTEM=
75 /* just to be sure the sh is used */
76 SHELL=/bin/sh
78 #define THIS_IS_MAKEFILE
79 #define NOT_C_CODE
80 #include "config.h"
82 /* Do not let the file name mktime.c get messed up. */
83 #ifdef mktime
84 #undef mktime
85 #endif
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. */
91 #ifdef X11
92 #define HAVE_X11
93 #undef X11
94 #endif
96 /* On some machines #define register is done in config;
97 do not let it interfere with this file. */
98 #undef register
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__
103 #ifndef GNU_LINUX
104 #define ORDINARY_LINK
105 #endif
106 #endif
108 /* Some machines do not find the standard C libraries in the usual place. */
109 #ifndef ORDINARY_LINK
110 #ifndef LIB_STANDARD
111 #define LIB_STANDARD -lc
112 #endif
113 #else
114 #ifndef LIB_STANDARD
115 #define LIB_STANDARD
116 #endif
117 #endif
119 /* Under GNUstep, putting libc on the link line causes problems. */
120 #ifdef NS_IMPL_GNUSTEP
121 #undef LIB_STANDARD
122 #define LIB_STANDARD
123 #endif
125 /* Unless inhibited or changed, use -lg to link for debugging. */
126 #ifndef LIBS_DEBUG
127 #define LIBS_DEBUG -lg
128 #endif
130 /* Some s/SYSTEM.h files define this to request special libraries. */
131 #ifndef LIBS_SYSTEM
132 #define LIBS_SYSTEM
133 #endif
135 /* Some m/MACHINE.h files define this to request special libraries. */
136 #ifndef LIBS_MACHINE
137 #define LIBS_MACHINE
138 #endif
140 #ifndef LIB_MATH
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
157 #endif
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
163 #endif
165 /* Some m/MACHINE.h files define this to request special switches in ld. */
166 #ifndef LD_SWITCH_MACHINE
167 #define LD_SWITCH_MACHINE
168 #endif
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
174 #endif
176 /* Some m/MACHINE.h files define this to request special switches in cc. */
177 #ifndef C_SWITCH_MACHINE
178 #define C_SWITCH_MACHINE
179 #endif
181 /* Some s/SYSTEM.h files define this to request special switches in cc. */
182 #ifndef C_SWITCH_SYSTEM
183 #define C_SWITCH_SYSTEM
184 #endif
186 /* These macros are for switches specifically related to X Windows. */
187 #ifndef C_SWITCH_X_MACHINE
188 #define C_SWITCH_X_MACHINE
189 #endif
191 #ifndef C_SWITCH_X_SYSTEM
192 #define C_SWITCH_X_SYSTEM
193 #endif
195 #ifndef C_SWITCH_X_SITE
196 #define C_SWITCH_X_SITE
197 #endif
199 #ifndef LD_SWITCH_X_SITE
200 #define LD_SWITCH_X_SITE
201 #endif
203 #ifndef LD_SWITCH_X_DEFAULT
204 #define LD_SWITCH_X_DEFAULT
205 #endif
207 #ifndef ORDINARY_LINK
209 #ifndef CRT0_COMPILE
210 #define CRT0_COMPILE $(CC) -c $(ALL_CFLAGS)
211 #endif
213 #ifndef START_FILES
214 #ifdef NO_REMAP
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 */
225 #ifdef START_FILES
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. */
234 FOUNDATION_LIB=gnu
235 GUI_LIB=gnu
236 include @GNUSTEP_MAKEFILES@/Additional/base.make
237 include @GNUSTEP_MAKEFILES@/Additional/gui.make
238 shared=no
239 #endif
241 #ifdef HAVE_DBUS
242 DBUS_CFLAGS = @DBUS_CFLAGS@
243 DBUS_LIBS = @DBUS_LIBS@
244 DBUS_OBJ = dbusbind.o
245 #endif
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
253 for use in Emacs.
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@
263 .SUFFIXES: .m
264 .c.o:
265 $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $<
266 .m.o:
267 $(CC) -c $(CPPFLAGS) $(ALL_OBJC_CFLAGS) $<
269 #ifndef LIBX11_SYSTEM
270 #define LIBX11_SYSTEM
271 #endif
273 #ifndef LIB_X11_LIB
274 #define LIB_X11_LIB -lX11
275 #endif
277 #ifdef HAVE_X_WINDOWS
278 XMENU_OBJ = xmenu.o
279 XOBJ= xterm.o xfns.o xselect.o xrdb.o fontset.o xsmfns.o fringe.o image.o
281 #ifdef HAVE_MENUS
283 #ifdef USE_GTK
284 GTK_OBJ= gtkutil.o
285 #endif
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. */
290 #ifdef HAVE_X11
291 #ifdef USE_X_TOOLKIT
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 */
299 LIBXMENU= -lXMenu
300 #endif /* not HAVE_X11 */
302 #else /* not HAVE_MENUS */
304 /* Otherwise, do not worry about the menu library at all. */
305 LIBXMENU=
306 #endif /* not HAVE_MENUS */
308 #ifdef USE_X_TOOLKIT
309 # define @X_TOOLKIT_TYPE@
310 # if HAVE_XAW3D
311 LUCID_LIBW= -lXaw3d
312 # else
313 LUCID_LIBW= -lXaw
314 # endif
315 # if defined (HAVE_MOTIF_2_1) && defined (HAVE_LIBXP)
316 # define LIB_MOTIF_EXTRA -lXp
317 # else
318 # define LIB_MOTIF_EXTRA
319 # endif
320 # ifdef LIB_MOTIF
321 MOTIF_LIBW= LIB_MOTIF LIB_MOTIF_EXTRA
322 # else
323 MOTIF_LIBW= -lXm LIB_MOTIF_EXTRA
324 # endif
325 LIBW=$(@X_TOOLKIT_TYPE@_LIBW)
327 #ifdef HAVE_X11XTR6
328 #ifdef NEED_LIBW
329 LIBXTR6 = -lSM -lICE -lw
330 #else
331 LIBXTR6 = -lSM -lICE
332 #endif
333 #endif
335 #ifndef LIBXMU
336 #define LIBXMU -lXmu
337 #endif
339 LIBXT= $(LIBW) LIBXMU -lXt $(LIBXTR6) -lXext
341 #else /* not USE_X_TOOLKIT */
343 #ifdef USE_GTK
344 LIBW=@GTK_LIBS@
345 OLDXMENU=
346 LIBXMENU=
347 #endif /* USE_GTK */
349 #ifdef HAVE_X_SM
350 LIBXT=$(LIBW) -lSM -lICE
351 #else
352 LIBXT=$(LIBW)
353 #endif
354 #endif /* not USE_X_TOOLKIT */
356 #if HAVE_XFT
357 XFT_LIBS=@XFT_LIBS@
358 #endif /* HAVE_XFT */
360 #if HAVE_XPM
361 #ifndef LIBXPM
362 #define LIBXPM -lXpm
363 #endif /* not defined LIBXPM */
364 #else /* not HAVE_XPM */
365 #define LIBXPM
366 #endif /* not HAVE_XPM */
368 #if HAVE_JPEG
369 #ifndef LIBJPEG
370 #define LIBJPEG -ljpeg
371 #endif /* not defined LIBJPEG */
372 #else /* not HAVE_JPEG */
373 #define LIBJPEG
374 #endif /* not HAVE_JPEG */
376 #if HAVE_PNG
377 #ifndef LIBPNG
378 #define LIBPNG -lpng -lz -lm
379 #endif /* not defined LIBPNG */
380 #else /* not HAVE_PNG */
381 #define LIBPNG
382 #endif /* not HAVE_PNG */
384 #if HAVE_TIFF
385 #ifndef LIBTIFF
386 #define LIBTIFF -ltiff
387 #endif /* not defined LIBTIFF */
388 #else /* not HAVE_TIFF */
389 #define LIBTIFF
390 #endif /* not HAVE_TIFF */
392 #if HAVE_GIF
393 #ifndef LIBGIF
394 #define LIBGIF -lgif
395 #endif /* not defined LIBGIF */
396 #else /* not HAVE_GIF */
397 #define LIBGIF
398 #endif /* not HAVE_GIF */
400 #ifdef HAVE_X11
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 */
410 #if HAVE_GPM
411 #ifndef LIBGPM
412 #define LIBGPM -lgpm
413 #endif /* not defined LIBGPM */
414 #else /* not HAVE_GPM */
415 #define LIBGPM
416 #endif /* not HAVE_GPM */
418 #if HAVE_LIBRESOLV
419 #ifndef LIBRESOLV
420 #define LIBRESOLV -lresolv
421 #endif /* not defined LIBRESOLV */
422 #else /* not HAVE_LIBRESOLV */
423 #define LIBRESOLV
424 #endif /* not HAVE_LIBRESOLV */
426 LIBSOUND= @LIBSOUND@
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. */
434 #ifdef __GNUC__
436 #ifdef LINKER
437 #define LINKER_WAS_SPECIFIED
438 #endif
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. */
449 #ifndef LINKER
450 #define LINKER $(CC) -nostdlib
451 #endif
453 #ifndef LIB_GCC
454 /* Ask GCC where to find libgcc.a. */
455 #define LIB_GCC `$(CC) -print-libgcc-file-name`
456 #endif /* not LIB_GCC */
458 GNULIB_VAR = 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`
467 #else
468 #define YMF_PASS_LDFLAGS(flags) flags
469 #endif
471 #else /* not __GNUC__ */
472 GNULIB_VAR =
474 #endif /* not __GNUC__ */
475 #endif /* not ORDINARY_LINK */
477 #ifdef ORDINARY_LINK
478 LD = $(CC)
479 #else
480 #ifdef LINKER
481 LD=LINKER
482 #else /* not LINKER */
483 LD=ld
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
489 some cpps. */
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
499 #endif
501 /* Allow config.h to specify a replacement file for unexec.c. */
502 #ifndef UNEXEC
503 #define UNEXEC unexec.o
504 #endif
506 INTERVALS_H = dispextern.h intervals.h composite.h
508 GETLOADAVG_LIBS = @GETLOADAVG_LIBS@
510 #ifdef MSDOS
511 #ifdef HAVE_X_WINDOWS
512 MSDOS_OBJ = dosfns.o msdos.o xmenu.o
513 #else
514 MSDOS_OBJ = dosfns.o msdos.o w16select.o xmenu.o
515 #endif
516 #endif
518 #ifdef CYGWIN
519 CYGWIN_OBJ = sheap.o
520 #endif
522 #ifdef HAVE_NS
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
530 #endif /* HAVE_NS */
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 \
566 fontset.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)
572 #ifdef TERMINFO
573 /* Used to be -ltermcap here. If your machine needs that,
574 define LIBS_TERMCAP in the m/MACHINE.h file. */
575 #ifndef LIBS_TERMCAP
576 #define LIBS_TERMCAP -lcurses
577 #endif /* LIBS_TERMCAP */
578 termcapobj = terminfo.o
579 #else /* ! defined (TERMINFO) */
580 #ifndef LIBS_TERMCAP
581 #define LIBS_TERMCAP
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
593 #endif
595 #ifdef REL_ALLOC
596 rallocobj = ralloc.o
597 #endif
599 mallocobj = $(gmallocobj) $(rallocobj) vm-limit.o
601 #endif /* SYSTEM_MALLOC */
604 #ifdef USE_X_TOOLKIT
605 widgetobj= widget.o
606 #else /* not USE_X_TOOLKIT */
607 widgetobj=
608 #endif /* not USE_X_TOOLKIT */
611 /* define otherobj as list of object files that make-docfile
612 should not be told about. */
613 #ifdef CYGWIN
614 /* Cygwin differs because of its unexec(). */
615 otherobj= $(termcapobj) $(gmallocobj) $(rallocobj) lastfile.o vm-limit.o $(widgetobj) $(LIBOBJS)
616 #else
617 otherobj= $(termcapobj) lastfile.o $(mallocobj) $(widgetobj) $(LIBOBJS)
618 #endif
620 #ifdef HAVE_MOUSE
621 #define MOUSE_SUPPORT ${lispsource}mouse.elc \
622 ${lispsource}select.elc ${lispsource}scroll-bar.elc
623 #else
624 #ifdef HAVE_GPM
625 #define MOUSE_SUPPORT ${lispsource}mouse.elc
626 #else
627 #define MOUSE_SUPPORT
628 #endif
629 #endif
631 #ifdef MSDOS
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
635 #else
636 #define MSDOS_SUPPORT
637 #endif
639 #ifdef HAVE_WINDOW_SYSTEM
640 #ifdef HAVE_X_WINDOWS
641 #define WINDOW_SUPPORT ${lispsource}fringe.elc ${lispsource}image.elc \
642 ${lispsource}international/fontset.elc ${lispsource}dnd.elc \
643 ${lispsource}tool-bar.elc ${lispsource}mwheel.elc ${lispsource}x-dnd.elc
644 #else
645 #define WINDOW_SUPPORT ${lispsource}fringe.elc ${lispsource}image.elc \
646 ${lispsource}international/fontset.elc ${lispsource}dnd.elc \
647 ${lispsource}tool-bar.elc ${lispsource}mwheel.elc
648 #endif
649 #else
650 #define WINDOW_SUPPORT
651 #endif
653 #ifdef WINDOWSNT
654 #define WINNT_SUPPORT ${lispsource}ls-lisp.elc ${lispsource}disp-table.elc \
655 ${lispsource}dos-w32.elc ${lispsource}w32-vars.elc \
656 ${lispsource}w32-fns.elc
657 #else
658 #define WINNT_SUPPORT
659 #endif
661 #ifdef HAVE_WINDOW_SYSTEM
662 #define TOOLTIP_SUPPORT ${lispsource}tooltip.elc
663 #else
664 #define TOOLTIP_SUPPORT
665 #endif
667 /* List of Lisp files loaded into the dumped Emacs. It is arranged
668 like this because it is easier to generate it semi-mechanically from
669 loadup.el this way.
671 Note that this list should not include lisp files which might not
672 be present, like site-load.el and site-init.el; this makefile
673 expects them all to be either present or buildable.
675 Files which are loaded unconditionally should be in shortlisp as well.
676 Files included conditionally here should be included (unconditionally)
677 in SOME_MACHINE_LISP. */
679 /* Place loaddefs.el first, so it gets generated first, since it is on
680 the critical path (relevant in parallel compilations). */
682 lisp= \
683 ${lispsource}loaddefs.el \
684 ${lispsource}abbrev.elc \
685 ${lispsource}buff-menu.elc \
686 ${lispsource}button.elc \
687 ${lispsource}emacs-lisp/byte-run.elc \
688 ${lispsource}composite.elc \
689 ${lispsource}cus-face.elc \
690 ${lispsource}cus-start.elc \
691 ${lispsource}custom.elc \
692 ${lispsource}emacs-lisp/backquote.elc \
693 ${lispsource}emacs-lisp/lisp-mode.elc \
694 ${lispsource}emacs-lisp/lisp.elc \
695 ${lispsource}env.elc \
696 ${lispsource}faces.elc \
697 ${lispsource}files.elc \
698 ${lispsource}format.elc \
699 ${lispsource}facemenu.elc \
700 MOUSE_SUPPORT \
701 ${lispsource}emacs-lisp/float-sup.elc \
702 ${lispsource}frame.elc \
703 ${lispsource}help.elc \
704 ${lispsource}indent.elc \
705 ${lispsource}isearch.elc \
706 ${lispsource}rfn-eshadow.elc \
707 ${lispsource}loadup.el \
708 ${lispsource}bindings.elc \
709 ${lispsource}emacs-lisp/map-ynp.elc \
710 ${lispsource}menu-bar.elc \
711 ${lispsource}international/mule.elc \
712 ${lispsource}international/mule-conf.el \
713 ${lispsource}international/mule-cmds.elc \
714 ${lispsource}international/characters.elc \
715 ${lispsource}international/charprop.el \
716 ${lispsource}case-table.elc \
717 ${lispsource}language/chinese.el \
718 ${lispsource}language/cyrillic.el \
719 ${lispsource}language/indian.el \
720 ${lispsource}language/sinhala.el \
721 ${lispsource}language/english.el \
722 ${lispsource}language/ethiopic.elc \
723 ${lispsource}language/european.elc \
724 ${lispsource}language/czech.el \
725 ${lispsource}language/slovak.el \
726 ${lispsource}language/romanian.el \
727 ${lispsource}language/greek.el \
728 ${lispsource}language/hebrew.el \
729 ${lispsource}language/japanese.el \
730 ${lispsource}language/korean.el \
731 ${lispsource}language/lao.el \
732 ${lispsource}language/cham.el \
733 ${lispsource}language/tai-viet.el \
734 ${lispsource}language/thai.el \
735 ${lispsource}language/tibetan.elc \
736 ${lispsource}language/vietnamese.el \
737 ${lispsource}language/misc-lang.el \
738 ${lispsource}language/utf-8-lang.el \
739 ${lispsource}language/georgian.el \
740 ${lispsource}language/khmer.el \
741 ${lispsource}language/burmese.el \
742 ${lispsource}paths.el \
743 ${lispsource}register.elc \
744 ${lispsource}replace.elc \
745 ${lispsource}simple.elc \
746 ${lispsource}minibuffer.elc \
747 ${lispsource}startup.elc \
748 ${lispsource}subr.elc \
749 ${lispsource}term/tty-colors.elc \
750 ${lispsource}font-core.elc \
751 ${lispsource}emacs-lisp/syntax.elc \
752 ${lispsource}font-lock.elc \
753 ${lispsource}jit-lock.elc \
754 ${lispsource}textmodes/fill.elc \
755 ${lispsource}textmodes/page.elc \
756 ${lispsource}textmodes/paragraphs.elc \
757 ${lispsource}textmodes/text-mode.elc \
758 ${lispsource}emacs-lisp/timer.elc \
759 ${lispsource}jka-cmpr-hook.elc \
760 ${lispsource}vc-hooks.elc \
761 ${lispsource}ediff-hook.elc \
762 ${lispsource}epa-hook.elc \
763 TOOLTIP_SUPPORT \
764 MSDOS_SUPPORT \
765 WINNT_SUPPORT \
766 WINDOW_SUPPORT \
767 ${lispsource}widget.elc \
768 ${lispsource}window.elc \
769 ${lispsource}version.el
771 /* These are relative file names for the Lisp files
772 that are loaded unconditionally. This is used in make-docfile.
773 It need not contain the files that are loaded conditionally
774 because SOME_MACHINE_LISP has those. */
775 shortlisp= \
776 ../lisp/loaddefs.el \
777 ../lisp/abbrev.elc \
778 ../lisp/buff-menu.elc \
779 ../lisp/button.elc \
780 ../lisp/emacs-lisp/byte-run.elc \
781 ../lisp/composite.elc \
782 ../lisp/cus-face.elc \
783 ../lisp/cus-start.elc \
784 ../lisp/custom.elc \
785 ../lisp/emacs-lisp/backquote.elc \
786 ../lisp/emacs-lisp/lisp-mode.elc \
787 ../lisp/emacs-lisp/lisp.elc \
788 ../lisp/facemenu.elc \
789 ../lisp/faces.elc \
790 ../lisp/files.elc \
791 ../lisp/emacs-lisp/float-sup.elc \
792 ../lisp/format.elc \
793 ../lisp/frame.elc \
794 ../lisp/help.elc \
795 ../lisp/indent.elc \
796 ../lisp/isearch.elc \
797 ../lisp/rfn-eshadow.elc \
798 ../lisp/loadup.el \
799 ../lisp/bindings.elc \
800 ../lisp/emacs-lisp/map-ynp.elc \
801 ../lisp/env.elc \
802 ../lisp/international/mule.elc \
803 ../lisp/international/mule-conf.el \
804 ../lisp/international/mule-cmds.elc \
805 ../lisp/international/characters.elc \
806 ../lisp/case-table.elc \
807 ../lisp/language/chinese.el \
808 ../lisp/language/cyrillic.el \
809 ../lisp/language/indian.el \
810 ../lisp/language/sinhala.el \
811 ../lisp/language/english.el \
812 ../lisp/language/ethiopic.elc \
813 ../lisp/language/european.elc \
814 ../lisp/language/czech.el \
815 ../lisp/language/slovak.el \
816 ../lisp/language/romanian.el \
817 ../lisp/language/greek.el \
818 ../lisp/language/hebrew.el \
819 ../lisp/language/japanese.el \
820 ../lisp/language/korean.el \
821 ../lisp/language/lao.el \
822 ../lisp/language/cham.el \
823 ../lisp/language/tai-viet.el \
824 ../lisp/language/thai.el \
825 ../lisp/language/tibetan.elc \
826 ../lisp/language/vietnamese.el \
827 ../lisp/language/misc-lang.el \
828 ../lisp/language/utf-8-lang.el \
829 ../lisp/language/georgian.el \
830 ../lisp/language/khmer.el \
831 ../lisp/language/burmese.el \
832 ../lisp/menu-bar.elc \
833 ../lisp/paths.el \
834 ../lisp/register.elc \
835 ../lisp/replace.elc \
836 ../lisp/simple.elc \
837 ../lisp/minibuffer.elc \
838 ../lisp/startup.elc \
839 ../lisp/subr.elc \
840 ../lisp/term/tty-colors.elc \
841 ../lisp/font-core.elc \
842 ../lisp/emacs-lisp/syntax.elc \
843 ../lisp/font-lock.elc \
844 ../lisp/jit-lock.elc \
845 ../lisp/textmodes/fill.elc \
846 ../lisp/textmodes/page.elc \
847 ../lisp/textmodes/paragraphs.elc \
848 ../lisp/textmodes/text-mode.elc \
849 ../lisp/emacs-lisp/timer.elc \
850 ../lisp/vc-hooks.elc \
851 ../lisp/jka-cmpr-hook.elc \
852 ../lisp/ediff-hook.elc \
853 ../lisp/epa-hook.elc \
854 ../lisp/widget.elc \
855 ../lisp/window.elc \
856 ../lisp/version.el
858 /* Lisp files that may or may not be used.
859 We must unconditionally put them in the DOC file.
860 We use ../lisp/ to start the file names
861 to reduce the size of the argument list for make-docfile
862 for the sake of systems which can''t handle large ones. */
863 SOME_MACHINE_LISP = ../lisp/mouse.elc \
864 ../lisp/select.elc ../lisp/scroll-bar.elc \
865 ../lisp/ls-lisp.elc ../lisp/dos-fns.elc \
866 ../lisp/w32-fns.elc ../lisp/dos-w32.elc \
867 ../lisp/disp-table.elc ../lisp/dos-vars.elc \
868 ../lisp/tooltip.elc ../lisp/image.elc \
869 ../lisp/fringe.elc ../lisp/dnd.elc \
870 ../lisp/mwheel.elc ../lisp/tool-bar.elc \
871 ../lisp/x-dnd.elc \
872 ../lisp/international/ccl.elc \
873 ../lisp/international/fontset.elc \
874 ../lisp/mouse.elc \
875 ../lisp/term/common-win.elc \
876 ../lisp/term/x-win.elc \
877 ../lisp/term/pc-win.elc \
878 ../lisp/term/ns-win.elc
880 /* Construct full set of libraries to be linked.
881 Note that SunOS needs -lm to come before -lc; otherwise, you get
882 duplicated symbols. If the standard libraries were compiled
883 with GCC, we might need gnulib again after them. */
885 LIBES = $(LOADLIBES) $(LIBS) $(LIBX) $(LIBSOUND) $(RSVG_LIBS) $(DBUS_LIBS) \
886 LIBGPM LIBRESOLV LIBS_SYSTEM LIBS_MACHINE LIBS_TERMCAP \
887 LIBS_DEBUG $(GETLOADAVG_LIBS) \
888 @FREETYPE_LIBS@ @FONTCONFIG_LIBS@ @LIBOTF_LIBS@ @M17N_FLT_LIBS@ \
889 $(GNULIB_VAR) LIB_MATH LIB_STANDARD $(GNULIB_VAR)
891 #ifdef HAVE_SHM
892 RUN_TEMACS = `/bin/pwd`/temacs -nl
893 #else
894 RUN_TEMACS = `/bin/pwd`/temacs
895 #endif
897 all: emacs${EXEEXT} $(OTHER_FILES)
899 emacs${EXEEXT}: temacs${EXEEXT} ${etc}DOC ${lisp} ${SOME_MACHINE_LISP}
900 #ifdef CANNOT_DUMP
901 rm -f emacs${EXEEXT}
902 ln temacs${EXEEXT} emacs${EXEEXT}
903 -EMACSLOADPATH=${lispsource} ./emacs -q -batch -f list-load-path-shadows
904 #else
905 LC_ALL=C $(RUN_TEMACS) -batch -l loadup dump
906 @: This new Emacs is as functional and more efficient then
907 @: bootstrap-emacs, so let us replace it.
908 -ln -f emacs${EXEEXT} bootstrap-emacs${EXEEXT}
909 -./emacs -q -batch -f list-load-path-shadows
910 #endif /* ! defined (CANNOT_DUMP) */
912 /* We run make-docfile twice because the command line may get too long
913 on some systems. */
914 /* ${SOME_MACHINE_OBJECTS} comes before ${obj} because some files may
915 or may not be included in ${obj}, but they are always included in
916 ${SOME_MACHINE_OBJECTS}. Since a file is processed when it is mentioned
917 for the first time, this prevents any variation between configurations
918 in the contents of the DOC file.
919 Likewise for ${SOME_MACHINE_LISP}. */
920 /* Most of this Makefile refers to Lisp files via ${lispsource}, so
921 we also use ${lisp} rather than ${shortlisp} for the dependency since
922 the Makefile uses string equality to decide when we talk about identical
923 files. Apparently we pass ${shortlisp} rather than ${lisp} to make-docfile
924 only in order to reduce the command line length. --Stef */
925 ${etc}DOC: ${libsrc}make-docfile${EXEEXT} ${obj} ${lisp} ${SOME_MACHINE_LISP}
926 -rm -f ${etc}DOC
927 ${libsrc}make-docfile -d ${srcdir} ${SOME_MACHINE_OBJECTS} ${obj} > ${etc}DOC
928 ${libsrc}make-docfile -a ${etc}DOC -d ${srcdir} ${SOME_MACHINE_LISP} ${shortlisp}
930 ${libsrc}make-docfile${EXEEXT}:
931 cd ${libsrc}; ${MAKE} ${MFLAGS} make-docfile${EXEEXT}
933 buildobj.h: Makefile
934 echo "#define BUILDOBJ \"${obj} ${otherobj} " "\"" > buildobj.h
936 temacs${EXEEXT}: $(LOCALCPP) $(STARTFILES) stamp-oldxmenu ${obj} ${otherobj} prefix-args${EXEEXT}
937 #ifdef NS_IMPL_GNUSTEP
938 $(CC) -rdynamic YMF_PASS_LDFLAGS ( ${TEMACS_LDFLAGS} \
939 -L@GNUSTEP_SYSTEM_LIBRARIES@ -lgnustep-gui -lgnustep-base \
940 -lobjc $(CONFIG_SYSTEM_LIBS) -lpthread ) -o temacs \
941 ${obj} ${otherobj} ${LIBES}
942 #else
943 $(LD) YMF_PASS_LDFLAGS (${STARTFLAGS} ${TEMACS_LDFLAGS}) $(LDFLAGS) \
944 -o temacs ${STARTFILES} ${obj} ${otherobj} \
945 ${LIBES}
946 #endif
948 /* We do not use ALL_LDFLAGS because LD_SWITCH_SYSTEM and LD_SWITCH_MACHINE
949 often contain options that have to do with using Emacs''s crt0,
950 which are only good with temacs. */
951 prefix-args${EXEEXT}: prefix-args.c $(config_h)
952 $(CC) $(ALL_CFLAGS) $(LDFLAGS) ${srcdir}/prefix-args.c -o prefix-args
954 #if defined (HAVE_X_WINDOWS) && defined (HAVE_X11) && defined (HAVE_MENUS) && ! defined (USE_GTK)
956 /* We use stamp-xmenu with these two deps
957 to both ensure that lwlib gets remade based on its dependencies
958 in its own makefile,
959 and remake temacs if lwlib gets changed by this. */
960 stamp-oldxmenu: ${OLDXMENU} ../src/$(OLDXMENU)
961 touch stamp-oldxmenu
962 /* Supply an ordering for parallel make. */
963 ../src/$(OLDXMENU): ${OLDXMENU}
965 /* Encode the values of these two macros in Make variables,
966 so we can use $(...) to substitute their values within "...". */
967 C_SWITCH_MACHINE_1 = C_SWITCH_MACHINE
968 C_SWITCH_SYSTEM_1 = C_SWITCH_SYSTEM
969 C_SWITCH_X_SITE_1 = C_SWITCH_X_SITE
970 C_SWITCH_X_MACHINE_1 = C_SWITCH_X_MACHINE
971 C_SWITCH_X_SYSTEM_1 = C_SWITCH_X_SYSTEM
973 #ifdef USE_X_TOOLKIT
974 $(OLDXMENU): really-lwlib
976 really-lwlib:
977 cd ${lwlibdir}; ${MAKE} ${MFLAGS} \
978 CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}' \
979 "C_SWITCH_X_SITE=$(C_SWITCH_X_SITE_1)" \
980 "C_SWITCH_X_MACHINE=$(C_SWITCH_X_MACHINE_1)" \
981 "C_SWITCH_X_SYSTEM=$(C_SWITCH_X_SYSTEM_1)" \
982 "C_SWITCH_MACHINE=$(C_SWITCH_MACHINE_1)" \
983 "C_SWITCH_SYSTEM=$(C_SWITCH_SYSTEM_1)"
984 @true /* make -t should not create really-lwlib. */
985 .PHONY: really-lwlib
986 #else /* not USE_X_TOOLKIT */
987 $(OLDXMENU): really-oldXMenu
989 really-oldXMenu:
990 cd ${oldXMenudir}; ${MAKE} ${MFLAGS} \
991 CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}' \
992 "C_SWITCH_X_SITE=$(C_SWITCH_X_SITE_1)" \
993 "C_SWITCH_X_MACHINE=$(C_SWITCH_X_MACHINE_1)" \
994 "C_SWITCH_X_SYSTEM=$(C_SWITCH_X_SYSTEM_1)" \
995 "C_SWITCH_MACHINE=$(C_SWITCH_MACHINE_1)" \
996 "C_SWITCH_SYSTEM=$(C_SWITCH_SYSTEM_1)"
997 @true /* make -t should not create really-oldXMenu. */
998 .PHONY: really-oldXMenu
999 #endif /* not USE_X_TOOLKIT */
1000 #else /* not (HAVE_X_WINDOWS && HAVE_X11 && HAVE_MENUS && ! USE_GTK) */
1002 /* We don''t really need this, but satisfy the dependency. */
1003 stamp-oldxmenu:
1004 touch stamp-oldxmenu
1005 #endif /* not (HAVE_X_WINDOWS && HAVE_X11 && HAVE_MENUS && ! USE_GTK) */
1007 ../config.status:: epaths.in
1008 @echo "The file epaths.h needs to be set up from epaths.in."
1009 @echo "Please run the `configure' script again."
1010 exit 1
1012 ../config.status:: config.in
1013 @echo "The file config.h needs to be set up from config.in."
1014 @echo "Please run the `configure' script again."
1015 exit 1
1017 /* Nearly all the following files depend on lisp.h,
1018 but it is not included as a dependency because
1019 it is so often changed in ways that do not require any recompilation
1020 and so rarely changed in ways that do require any. */
1022 atimer.o: atimer.c atimer.h syssignal.h systime.h $(config_h)
1023 abbrev.o: abbrev.c buffer.h window.h dispextern.h commands.h character.h \
1024 syntax.h $(config_h)
1025 buffer.o: buffer.c buffer.h region-cache.h commands.h window.h \
1026 dispextern.h $(INTERVALS_H) blockinput.h atimer.h systime.h character.h \
1027 $(config_h)
1028 callint.o: callint.c window.h commands.h buffer.h keymap.h \
1029 keyboard.h dispextern.h $(config_h)
1030 callproc.o: callproc.c epaths.h buffer.h commands.h $(config_h) \
1031 process.h systty.h syssignal.h character.h coding.h ccl.h msdos.h \
1032 composite.h w32.h blockinput.h atimer.h systime.h frame.h termhooks.h
1033 casefiddle.o: casefiddle.c syntax.h commands.h buffer.h character.h \
1034 composite.h \
1035 charset.h keymap.h $(config_h)
1036 casetab.o: casetab.c buffer.h $(config_h)
1037 category.o: category.c category.h buffer.h charset.h keymap.h \
1038 character.h $(config_h)
1039 ccl.o: ccl.c ccl.h charset.h character.h coding.h $(config_h)
1040 character.o: character.c character.h buffer.h charset.h composite.h disptab.h \
1041 $(config_h)
1042 charset.o: charset.c charset.h character.h buffer.h coding.h composite.h \
1043 disptab.h $(config_h)
1044 chartab.o: charset.h character.h $(config_h)
1045 coding.o: coding.c coding.h ccl.h buffer.h character.h charset.h $(INTERVALS_H) composite.h \
1046 window.h dispextern.h frame.h termhooks.h $(config_h)
1047 cm.o: cm.c frame.h cm.h termhooks.h termchar.h $(config_h)
1048 cmds.o: cmds.c syntax.h buffer.h character.h commands.h window.h $(config_h) \
1049 msdos.h dispextern.h keyboard.h keymap.h
1050 pre-crt0.o: pre-crt0.c
1051 ecrt0.o: ecrt0.c $(config_h)
1052 CRT0_COMPILE ${srcdir}/ecrt0.c
1053 dbusbind.o: dbusbind.c termhooks.h frame.h keyboard.h $(config_h)
1054 dired.o: dired.c commands.h buffer.h $(config_h) character.h charset.h \
1055 coding.h regex.h systime.h blockinput.h atimer.h
1056 dispnew.o: dispnew.c systime.h commands.h process.h frame.h \
1057 window.h buffer.h dispextern.h termchar.h termopts.h termhooks.h cm.h \
1058 disptab.h indent.h $(INTERVALS_H) \
1059 xterm.h blockinput.h atimer.h character.h msdos.h composite.h keyboard.h \
1060 syssignal.h $(config_h)
1061 doc.o: doc.c $(config_h) epaths.h buffer.h keyboard.h keymap.h character.h \
1062 buildobj.h
1063 doprnt.o: doprnt.c character.h $(config_h)
1064 dosfns.o: buffer.h termchar.h termhooks.h frame.h blockinput.h window.h \
1065 msdos.h dosfns.h dispextern.h charset.h coding.h atimer.h systime.h \
1066 $(config_h)
1067 editfns.o: editfns.c window.h buffer.h systime.h $(INTERVALS_H) character.h \
1068 coding.h dispextern.h frame.h blockinput.h atimer.h $(config_h)
1069 emacs.o: emacs.c commands.h systty.h syssignal.h blockinput.h process.h \
1070 termhooks.h buffer.h atimer.h systime.h $(INTERVALS_H) $(config_h) \
1071 window.h dispextern.h keyboard.h keymap.h
1072 fileio.o: fileio.c window.h buffer.h systime.h $(INTERVALS_H) character.h \
1073 coding.h msdos.h dispextern.h blockinput.h atimer.h $(config_h)
1074 filelock.o: filelock.c buffer.h character.h charset.h coding.h systime.h \
1075 epaths.h $(config_h)
1076 filemode.o: filemode.c $(config_h)
1077 frame.o: frame.c xterm.h window.h frame.h termhooks.h commands.h keyboard.h \
1078 blockinput.h atimer.h systime.h buffer.h character.h fontset.h font.h \
1079 msdos.h dosfns.h dispextern.h w32term.h termchar.h \
1080 $(config_h)
1081 fringe.o: fringe.c dispextern.h frame.h window.h buffer.h termhooks.h $(config_h)
1082 font.o: font.c dispextern.h frame.h window.h ccl.h character.h charset.h \
1083 font.h $(config_h)
1084 ftfont.o: dispextern.h frame.h character.h charset.h composite.h font.h \
1085 $(config_h)
1086 fontset.o: dispextern.h fontset.h fontset.c ccl.h buffer.h character.h \
1087 charset.h frame.h keyboard.h termhooks.h font.h $(config_h)
1088 getloadavg.o: getloadavg.c $(config_h)
1089 gtkutil.o: gtkutil.c gtkutil.h xterm.h lisp.h frame.h $(config_h) \
1090 blockinput.h window.h atimer.h systime.h termhooks.h keyboard.h \
1091 charset.h coding.h syssignal.h
1092 image.o: image.c frame.h window.h dispextern.h blockinput.h atimer.h \
1093 systime.h xterm.h w32term.h w32gui.h font.h \
1094 nsterm.h nsgui.h $(config_h)
1095 indent.o: indent.c frame.h window.h indent.h buffer.h $(config_h) termchar.h \
1096 termopts.h disptab.h region-cache.h character.h category.h composite.h \
1097 dispextern.h keyboard.h
1098 insdel.o: insdel.c window.h buffer.h $(INTERVALS_H) blockinput.h character.h \
1099 dispextern.h atimer.h systime.h region-cache.h $(config_h)
1100 keyboard.o: keyboard.c termchar.h termhooks.h termopts.h buffer.h character.h \
1101 commands.h frame.h window.h macros.h disptab.h keyboard.h syssignal.h \
1102 systime.h dispextern.h syntax.h $(INTERVALS_H) blockinput.h atimer.h \
1103 xterm.h puresize.h msdos.h keymap.h w32term.h nsterm.h \
1104 $(config_h)
1105 keymap.o: keymap.c buffer.h commands.h keyboard.h termhooks.h blockinput.h \
1106 atimer.h systime.h puresize.h character.h charset.h $(INTERVALS_H) keymap.h window.h \
1107 $(config_h)
1108 lastfile.o: lastfile.c $(config_h)
1109 macros.o: macros.c window.h buffer.h commands.h macros.h keyboard.h \
1110 dispextern.h $(config_h)
1111 malloc.o: malloc.c $(config_h)
1112 gmalloc.o: gmalloc.c $(config_h)
1113 ralloc.o: ralloc.c $(config_h)
1114 vm-limit.o: vm-limit.c mem-limits.h $(config_h)
1115 marker.o: marker.c buffer.h character.h $(config_h)
1116 md5.o: md5.c md5.h $(config_h)
1117 minibuf.o: minibuf.c syntax.h dispextern.h frame.h window.h keyboard.h \
1118 buffer.h commands.h character.h msdos.h $(INTERVALS_H) keymap.h \
1119 termhooks.h $(config_h)
1120 mktime.o: mktime.c $(config_h)
1121 msdos.o: msdos.c msdos.h dosfns.h systime.h termhooks.h dispextern.h frame.h \
1122 termopts.h termchar.h character.h coding.h ccl.h disptab.h window.h \
1123 keyboard.h $(INTERVALS_H) buffer.h commands.h blockinput.h atimer.h $(config_h)
1124 nsfns.o: nsfns.m charset.h nsterm.h nsgui.h frame.h window.h buffer.h \
1125 dispextern.h nsgui.h fontset.h $(INTERVALS_H) keyboard.h blockinput.h \
1126 atimer.h systime.h epaths.h termhooks.h coding.h systime.h $(config_h)
1127 nsfont.o: nsterm.h dispextern.h frame.h lisp.h $(config_h)
1128 nsimage.o: nsimage.m nsterm.h $(config_h)
1129 nsmenu.o: nsmenu.m termhooks.h frame.h window.h dispextern.h \
1130 nsgui.h keyboard.h blockinput.h atimer.h systime.h buffer.h \
1131 nsterm.h $(config_h)
1132 nsterm.o: nsterm.m blockinput.h atimer.h systime.h syssignal.h nsterm.h \
1133 nsgui.h frame.h charset.h ccl.h dispextern.h fontset.h termhooks.h \
1134 termopts.h termchar.h disptab.h buffer.h window.h keyboard.h \
1135 $(INTERVALS_H) process.h coding.h $(config_h)
1136 nsselect.o: nsselect.m blockinput.h nsterm.h nsgui.h frame.h $(config_h)
1137 process.o: process.c process.h buffer.h window.h termhooks.h termopts.h \
1138 commands.h syssignal.h systime.h systty.h syswait.h frame.h dispextern.h \
1139 blockinput.h atimer.h charset.h coding.h ccl.h msdos.h composite.h \
1140 keyboard.h $(config_h)
1141 regex.o: regex.c syntax.h buffer.h $(config_h) regex.h category.h character.h \
1142 charset.h
1143 region-cache.o: region-cache.c buffer.h region-cache.h $(config_h)
1144 scroll.o: scroll.c termchar.h dispextern.h frame.h msdos.h keyboard.h \
1145 termhooks.h $(config_h)
1146 search.o: search.c regex.h commands.h buffer.h region-cache.h syntax.h \
1147 blockinput.h atimer.h systime.h category.h character.h charset.h \
1148 composite.h $(INTERVALS_H) \
1149 $(config_h)
1150 sound.o: sound.c dispextern.h syssignal.h $(config_h)
1151 strftime.o: strftime.c $(config_h)
1152 syntax.o: syntax.c syntax.h buffer.h commands.h category.h character.h \
1153 composite.h keymap.h regex.h $(INTERVALS_H) $(config_h)
1154 sysdep.o: sysdep.c syssignal.h systty.h systime.h syswait.h blockinput.h \
1155 process.h dispextern.h termhooks.h termchar.h termopts.h \
1156 frame.h atimer.h window.h msdos.h dosfns.h keyboard.h cm.h $(config_h)
1157 term.o: term.c termchar.h termhooks.h termopts.h $(config_h) cm.h frame.h \
1158 disptab.h dispextern.h keyboard.h character.h charset.h coding.h ccl.h \
1159 msdos.h window.h keymap.h blockinput.h atimer.h systime.h systty.h \
1160 syssignal.h $(INTERVALS_H)
1161 termcap.o: termcap.c $(config_h)
1162 terminal.o: terminal.c frame.h termchar.h termhooks.h charset.h coding.h \
1163 keyboard.h $(config_h)
1164 terminfo.o: terminfo.c $(config_h)
1165 tparam.o: tparam.c $(config_h)
1166 undo.o: undo.c buffer.h commands.h window.h $(config_h)
1167 unexaix.o: unexaix.c $(config_h)
1168 unexalpha.o: unexalpha.c $(config_h)
1169 unexcw.o: unexcw.c $(config_h)
1170 unexec.o: unexec.c $(config_h)
1171 unexelf.o: unexelf.c $(config_h)
1172 unexhp9k800.o: unexhp9k800.c $(config_h)
1173 unexmacosx.o: unexmacosx.c $(config_h)
1174 unexmips.o: unexmips.c $(config_h)
1175 unexnext.o: unexnext.c $(config_h)
1176 unexsol.o: unexsol.c $(config_h)
1177 unexw32.o: unexw32.c $(config_h)
1178 w16select.o: w16select.c dispextern.h frame.h blockinput.h atimer.h systime.h \
1179 msdos.h buffer.h charset.h coding.h composite.h $(config_h)
1180 widget.o: widget.c xterm.h frame.h dispextern.h widgetprv.h \
1181 $(srcdir)/../lwlib/lwlib.h $(config_h)
1182 window.o: window.c indent.h commands.h frame.h window.h buffer.h termchar.h \
1183 disptab.h keyboard.h dispextern.h msdos.h composite.h \
1184 keymap.h blockinput.h atimer.h systime.h $(INTERVALS_H) \
1185 xterm.h w32term.h nsterm.h $(config_h)
1186 xdisp.o: xdisp.c macros.h commands.h process.h indent.h buffer.h dispextern.h \
1187 coding.h termchar.h frame.h window.h disptab.h termhooks.h character.h \
1188 charset.h $(config_h) keyboard.h $(INTERVALS_H) region-cache.h xterm.h \
1189 w32term.h nsterm.h msdos.h composite.h fontset.h \
1190 blockinput.h atimer.h systime.h keymap.h font.h
1191 xfaces.o: xfaces.c dispextern.h frame.h xterm.h buffer.h blockinput.h \
1192 window.h character.h charset.h msdos.h dosfns.h composite.h atimer.h \
1193 systime.h keyboard.h fontset.h w32term.h nsterm.h \
1194 $(INTERVALS_H) termchar.h termhooks.h font.h $(config_h)
1195 xfns.o: xfns.c buffer.h frame.h window.h keyboard.h xterm.h dispextern.h \
1196 $(srcdir)/../lwlib/lwlib.h blockinput.h atimer.h systime.h epaths.h \
1197 character.h charset.h coding.h gtkutil.h $(config_h) termhooks.h \
1198 fontset.h termchar.h font.h
1199 xfont.o: dispextern.h xterm.h frame.h blockinput.h character.h charset.h \
1200 font.h $(config_h)
1201 xftfont.o: dispextern.h xterm.h frame.h blockinput.h character.h charset.h \
1202 font.h $(config_h)
1203 ftxfont.o: dispextern.h xterm.h frame.h blockinput.h character.h charset.h \
1204 font.h $(config_h)
1205 menu.o: menu.c lisp.h keyboard.h keymap.h frame.h termhooks.h blockinput.h \
1206 dispextern.h $(srcdir)/../lwlib/lwlib.h xterm.h gtkutil.h menu.h \
1207 $(config_h)
1208 xmenu.o: xmenu.c xterm.h termhooks.h window.h dispextern.h frame.h buffer.h \
1209 charset.h keyboard.h $(srcdir)/../lwlib/lwlib.h blockinput.h atimer.h \
1210 systime.h gtkutil.h msdos.h coding.h menu.h $(config_h)
1211 xterm.o: xterm.c xterm.h termhooks.h termopts.h termchar.h window.h buffer.h \
1212 dispextern.h frame.h disptab.h blockinput.h atimer.h systime.h syssignal.h \
1213 keyboard.h emacs-icon.h character.h charset.h ccl.h fontset.h composite.h \
1214 coding.h process.h gtkutil.h font.h fontset.h $(config_h)
1215 xselect.o: xselect.c process.h dispextern.h frame.h xterm.h blockinput.h \
1216 buffer.h atimer.h systime.h termhooks.h $(config_h)
1217 xrdb.o: xrdb.c $(config_h) epaths.h
1218 xsmfns.o: xsmfns.c $(config_h) systime.h sysselect.h termhooks.h xterm.h \
1219 lisp.h termopts.h
1221 /* The files of Lisp proper */
1223 alloc.o: alloc.c process.h frame.h window.h buffer.h puresize.h syssignal.h keyboard.h \
1224 blockinput.h atimer.h systime.h character.h dispextern.h $(config_h) \
1225 $(INTERVALS_H)
1226 bytecode.o: bytecode.c buffer.h syntax.h character.h window.h dispextern.h \
1227 frame.h xterm.h $(config_h)
1228 data.o: data.c buffer.h puresize.h character.h syssignal.h keyboard.h frame.h \
1229 termhooks.h $(config_h)
1230 eval.o: eval.c commands.h keyboard.h blockinput.h atimer.h systime.h \
1231 dispextern.h $(config_h)
1232 floatfns.o: floatfns.c syssignal.h $(config_h)
1233 fns.o: fns.c commands.h $(config_h) frame.h buffer.h character.h keyboard.h \
1234 keymap.h frame.h window.h dispextern.h $(INTERVALS_H) coding.h md5.h \
1235 blockinput.h atimer.h systime.h xterm.h termhooks.h
1236 print.o: print.c process.h frame.h window.h buffer.h keyboard.h character.h \
1237 $(config_h) dispextern.h termchar.h $(INTERVALS_H) msdos.h composite.h \
1238 blockinput.h atimer.h systime.h font.h charset.h
1239 lread.o: lread.c commands.h keyboard.h buffer.h epaths.h character.h \
1240 charset.h $(config_h) $(INTERVALS_H) termhooks.h coding.h msdos.h
1242 /* Text properties support */
1243 composite.o: composite.c buffer.h character.h coding.h dispextern.h font.h \
1244 frame.h termhooks.h $(INTERVALS_H) window.h $(config_h)
1245 intervals.o: intervals.c buffer.h $(INTERVALS_H) keyboard.h puresize.h \
1246 keymap.h $(config_h)
1247 textprop.o: textprop.c buffer.h window.h dispextern.h $(INTERVALS_H) \
1248 $(config_h)
1250 /* System-specific programs to be made.
1251 OTHER_FILES
1252 select which of these should be compiled. */
1254 #ifdef HAVE_NS
1255 /* In fact, every .o file depends directly or indirectly on dispextern.h
1256 and hence nsgui.h under NS. But the ones that actually use stuff there
1257 are more limited. */
1258 dispnew.o font.o fontset.o frame.o fringe.o image.o keyboard.o menu.o \
1259 window.o xdisp.o xfaces.o: nsgui.h
1261 ${ns_appdir}: ${ns_appsrc}
1262 rm -fr ${ns_appdir}
1263 mkdir -p ${ns_appdir}
1264 ( cd ${ns_appsrc} ; tar cfh - . ) | ( cd ${ns_appdir} ; tar xf - )
1265 ( cd ${ns_appdir} ; for subdir in `find . -type d ! -name CVS -print` ; do \
1266 chmod a+rx $${subdir} ; \
1267 rm -rf $${subdir}/CVS ; \
1268 rm -f $${subdir}/.cvsignore ; done ; )
1270 ${ns_appbindir}Emacs: emacs${EXEEXT}
1271 mkdir -p ${ns_appbindir}
1272 cp -f emacs${EXEEXT} ${ns_appbindir}Emacs
1274 ns-app: ${ns_appdir} ${ns_appbindir}Emacs
1276 #endif /* HAVE_NS */
1278 mostlyclean:
1279 rm -f temacs${EXEEXT} prefix-args${EXEEXT} core *.core \#* *.o libXMenu11.a liblw.a
1280 rm -f ../etc/DOC
1281 rm -f bootstrap-emacs${EXEEXT} emacs-${version}${EXEEXT}
1282 rm -f buildobj.h
1283 clean: mostlyclean
1284 rm -f emacs-*.*.*${EXEEXT} emacs${EXEEXT}
1285 #ifdef HAVE_NS
1286 rm -fr ${ns_appdir}
1287 #endif
1288 /* bootstrap-clean is used to clean up just before a bootstrap.
1289 It should remove all files generated during a compilation/bootstrap,
1290 but not things like config.status or TAGS. */
1291 bootstrap-clean: clean
1292 rm -f epaths.h config.h Makefile.c config.stamp stamp-oldxmenu ../etc/DOC-*
1293 if test -f ./.gdbinit; then \
1294 mv ./.gdbinit ./.gdbinit.save; \
1295 if test -f "${srcdir}/.gdbinit"; then rm -f ./.gdbinit.save; \
1296 else mv ./.gdbinit.save ./.gdbinit; fi; \
1298 /**/# This is used in making a distribution.
1299 /**/# Do not use it on development directories!
1300 distclean: bootstrap-clean
1301 rm -f Makefile
1302 maintainer-clean: distclean
1303 @echo "This command is intended for maintainers to use;"
1304 @echo "it deletes files that may require special tools to rebuild."
1305 rm -f TAGS
1306 versionclean:
1307 -rm -f emacs${EXEEXT} emacs-*.*.*${EXEEXT} ../etc/DOC*
1308 extraclean: distclean
1309 -rm -f *~ \#* m/?*~ s/?*~
1311 /* Arrange to make a tags table TAGS-LISP for ../lisp,
1312 plus TAGS for the C files, which includes ../lisp/TAGS by reference. */
1314 ctagsfiles1 = [xyzXYZ]*.[hcm]
1315 ctagsfiles2 = [a-wA-W]*.[hcm]
1317 TAGS: $(srcdir)/$(ctagsfiles1) $(srcdir)/$(ctagsfiles2)
1318 ../lib-src/etags --include=TAGS-LISP --include=${lwlibdir}/TAGS \
1319 --regex='/[ ]*DEFVAR_[A-Z_ (]+"\([^"]+\)"/' \
1320 $(srcdir)/$(ctagsfiles1) $(srcdir)/$(ctagsfiles2)
1321 frc:
1322 TAGS-LISP: frc
1323 $(MAKE) -f ${lispdir}Makefile TAGS-LISP ETAGS=../lib-src/etags
1325 $(lwlibdir)TAGS:
1326 (cd $(lwlibdir); $(MAKE) -f $(lwlibdir)Makefile tags ETAGS=../lib-src/etags)
1328 tags: TAGS TAGS-LISP $(lwlibdir)TAGS
1329 .PHONY: tags
1332 /* Bootstrapping. */
1333 /* Bootstrapping right is difficult because of the circular dependencies.
1334 Furthermore, we have to deal with the fact that many compilation targets
1335 such as loaddefs.el or *.elc can typically be produced by any old
1336 Emacs executable, so we would like to avoid rebuilding them whenever
1337 we build a new Emacs executable.
1338 To solve the circularity, we use 2 different Emacs executables,
1339 "emacs" is the main target and "bootstrap-emacs" is the one used
1340 to build the *.elc and loaddefs.el files.
1341 To solve the freshness issue, we used to use a third file "witness-emacs"
1342 which was used to witness the fact that there is a bootstrap-emacs
1343 executable, and then have dependencies on witness-emacs rather than
1344 bootstrap-emacs, but that lead to problems in parallel builds (because
1345 witness-emacs needed to be free from dependencies (to avoid rebuilding
1346 it), so it was compiled in parallel, leading typically to having 2
1347 processes dumping bootstrap-emacs at the same time).
1348 So instead, we replace the witness-emacs dependencies by conditional
1349 bootstrap-dependencies (via ${BOOTSTRAPEMACS}). Of course, since we do
1350 not want to rely on GNU Make features, we have to rely on an external
1351 script to do the conditional part of the dependency
1352 (i.e. see the ${SUBDIR} rule ../Makefile.in). */
1354 .SUFFIXES: .elc .el
1356 /* These suffix rules do not allow additional dependencies, sadly, so
1357 instead of adding a $(BOOTSTRAPEMACS) dependency here, we add it
1358 separately below.
1359 With GNU Make, we would just say "%.el : %.elc $(BOOTSTRAPEMACS)" */
1360 .el.elc:
1361 @cd ../lisp; $(MAKE) $(MFLAGS) compile-onefile \
1362 THEFILE=$< EMACS=${bootstrap_exe}
1364 /* Since the .el.elc rule cannot specify an extra dependency, we do it here. */
1365 ${lisp} ${SOME_MACHINE_LISP}: $(BOOTSTRAPEMACS)
1367 ${lispsource}loaddefs.el: $(BOOTSTRAPEMACS)
1368 cd ../lisp; $(MAKE) $(MFLAGS) autoloads EMACS=${bootstrap_exe}
1370 /* Dump an Emacs executable named bootstrap-emacs containing the
1371 files from loadup.el in source form. */
1373 bootstrap-emacs${EXEEXT}: temacs${EXEEXT}
1374 cd ../lisp; $(MAKE) $(MFLAGS) update-subdirs
1375 #ifdef CANNOT_DUMP
1376 ln -f temacs${EXEEXT} bootstrap-emacs${EXEEXT}
1377 #else
1378 $(RUN_TEMACS) --batch --load loadup bootstrap
1379 mv -f emacs${EXEEXT} bootstrap-emacs${EXEEXT}
1380 #endif /* ! defined (CANNOT_DUMP) */
1381 @: Compile some files earlier to speed up further compilation.
1382 cd ../lisp; $(MAKE) $(MFLAGS) compile-first EMACS=${bootstrap_exe}