Comment typo.
[emacs.git] / src / Makefile.in
blob60aace0a53e362a9a1718aa2e386eedc482d552e
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
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 admindir = $(srcdir)/../admin/
56 libsrc = ../lib-src/
57 etc = ../etc/
58 oldXMenudir = ../oldXMenu/
59 lwlibdir = ../lwlib/
60 lispdir = ../lisp/
62 # Configuration files for .o files to depend on.
63 M_FILE = ${srcdir}/@machfile@
64 S_FILE = ${srcdir}/@opsysfile@
65 config_h = config.h $(M_FILE) $(S_FILE)
67 # ========================== start of cpp stuff =======================
68 /* From here on, comments must be done in C syntax. */
70 C_SWITCH_SYSTEM=
72 /* just to be sure the sh is used */
73 SHELL=/bin/sh
75 #define THIS_IS_MAKEFILE
76 #define NOT_C_CODE
77 #include "config.h"
79 /* Do not let the file name mktime.c get messed up. */
80 #ifdef mktime
81 #undef mktime
82 #endif
84 /* Use HAVE_X11 as an alias for X11 in this file
85 to avoid problems with X11 as a subdirectory name
86 in -I and other such options which pass through this file. */
88 #ifdef X11
89 #define HAVE_X11
90 #undef X11
91 #endif
93 /* On some machines #define register is done in config;
94 do not let it interfere with this file. */
95 #undef register
97 /* On some systems we may not be able to use the system make command. */
98 #ifdef MAKE_COMMAND
99 MAKE = MAKE_COMMAND
100 #endif
102 /* GNU libc requires ORDINARY_LINK so that its own crt0 is used.
103 GNU/Linux is an exception because it uses a funny variant of GNU libc. */
104 #ifdef __GNU_LIBRARY__
105 #ifndef GNU_LINUX
106 #define ORDINARY_LINK
107 #endif
108 #endif
110 /* Some machines do not find the standard C libraries in the usual place. */
111 #ifndef ORDINARY_LINK
112 #ifndef LIB_STANDARD
113 #define LIB_STANDARD -lc
114 #endif
115 #else
116 #ifndef LIB_STANDARD
117 #define LIB_STANDARD
118 #endif
119 #endif
121 /* Unless inhibited or changed, use -lg to link for debugging. */
122 #ifndef LIBS_DEBUG
123 #define LIBS_DEBUG -lg
124 #endif
126 /* Some s/SYSTEM.h files define this to request special libraries. */
127 #ifndef LIBS_SYSTEM
128 #define LIBS_SYSTEM
129 #endif
131 /* Some m/MACHINE.h files define this to request special libraries. */
132 #ifndef LIBS_MACHINE
133 #define LIBS_MACHINE
134 #endif
136 #ifndef LIB_MATH
137 # define LIB_MATH -lm
138 #endif /* LIB_MATH */
140 /* Some s/SYSTEM.h files define this to request special switches in ld. */
141 #ifndef LD_SWITCH_SYSTEM
142 #if !defined (__GNUC__) && ((defined (BSD_SYSTEM) && !defined (COFF)))
143 #define LD_SWITCH_SYSTEM -X
144 #else /* (defined (BSD_SYSTEM) && !defined (COFF)) */
145 #define LD_SWITCH_SYSTEM
146 #endif /* (defined (BSD_SYSTEM) && !defined (COFF)) */
147 #endif /* LD_SWITCH_SYSTEM */
149 /* This holds special options for linking temacs
150 that should be used for linking anything else. */
151 #ifndef LD_SWITCH_SYSTEM_TEMACS
152 #define LD_SWITCH_SYSTEM_TEMACS
153 #endif
155 /* Some s/SYSTEM.h files define this to request special switches
156 for compiling temacs. */
157 #ifndef C_SWITCH_SYSTEM_TEMACS
158 #define C_SWITCH_SYSTEM_TEMACS
159 #endif
161 /* Some m/MACHINE.h files define this to request special switches in ld. */
162 #ifndef LD_SWITCH_MACHINE
163 #define LD_SWITCH_MACHINE
164 #endif
166 /* This holds special options for linking temacs
167 that should be used for linking anything else. */
168 #ifndef LD_SWITCH_MACHINE_TEMACS
169 #define LD_SWITCH_MACHINE_TEMACS
170 #endif
172 /* Some m/MACHINE.h files define this to request special switches in cc. */
173 #ifndef C_SWITCH_MACHINE
174 #define C_SWITCH_MACHINE
175 #endif
177 /* Some s/SYSTEM.h files define this to request special switches in cc. */
178 #ifndef C_SWITCH_SYSTEM
179 #define C_SWITCH_SYSTEM
180 #endif
182 /* These macros are for switches specifically related to X Windows. */
183 #ifndef C_SWITCH_X_MACHINE
184 #define C_SWITCH_X_MACHINE
185 #endif
187 #ifndef C_SWITCH_X_SYSTEM
188 #define C_SWITCH_X_SYSTEM
189 #endif
191 #ifndef C_SWITCH_X_SITE
192 #define C_SWITCH_X_SITE
193 #endif
195 #ifndef LD_SWITCH_X_SITE
196 #define LD_SWITCH_X_SITE
197 #endif
199 #ifndef LD_SWITCH_X_DEFAULT
200 #define LD_SWITCH_X_DEFAULT
201 #endif
203 /* These can be passed in from config.h to define special load and
204 compile switches needed by individual sites */
205 #ifndef LD_SWITCH_SITE
206 #define LD_SWITCH_SITE
207 #endif
209 #ifndef C_SWITCH_SITE
210 #define C_SWITCH_SITE
211 #endif
213 #ifndef ORDINARY_LINK
215 #ifndef CRT0_COMPILE
216 #define CRT0_COMPILE $(CC) -c $(ALL_CFLAGS)
217 #endif
219 #ifndef START_FILES
220 #ifdef NO_REMAP
221 #define START_FILES pre-crt0.o /lib/crt0.o
222 #else /* ! defined (NO_REMAP) */
223 #define START_FILES ecrt0.o
224 #endif /* ! defined (NO_REMAP) */
225 #endif /* START_FILES */
226 STARTFILES = START_FILES
228 #else /* ORDINARY_LINK */
230 /* config.h might want to force START_FILES anyway */
231 #ifdef START_FILES
232 STARTFILES = START_FILES
233 #endif /* START_FILES */
235 #endif /* not ORDINARY_LINK */
238 #ifdef HAVE_DBUS
239 DBUS_CFLAGS = @DBUS_CFLAGS@
240 DBUS_LIBS = @DBUS_LIBS@
241 DBUS_OBJ = dbusbind.o
242 #endif
244 /* DO NOT use -R. There is a special hack described in lastfile.c
245 which is used instead. Some initialized data areas are modified
246 at initial startup, then labeled as part of the text area when
247 Emacs is dumped for the first time, and never changed again. */
249 /* -Demacs is needed to make some files produce the correct version
250 for use in Emacs.
252 -DHAVE_CONFIG_H is needed for some other files to take advantage of
253 the information in ``config.h''. */
255 /* C_SWITCH_X_SITE must come before C_SWITCH_X_MACHINE and C_SWITCH_X_SYSTEM
256 since it may have -I options that should override those two. */
257 ALL_CFLAGS=-Demacs -DHAVE_CONFIG_H $(MYCPPFLAGS) -I. -I${srcdir} C_SWITCH_MACHINE C_SWITCH_SYSTEM C_SWITCH_SITE 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@
258 .c.o:
259 $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $<
261 #ifndef LIBX11_SYSTEM
262 #define LIBX11_SYSTEM
263 #endif
265 #ifndef LIB_X11_LIB
266 #define LIB_X11_LIB -lX11
267 #endif
269 /* xmenu.c should not be compiled on OSX. */
270 #ifndef HAVE_CARBON
271 XMENU_OBJ = xmenu.o
272 #endif
274 #ifdef HAVE_X_WINDOWS
276 XOBJ= xterm.o xfns.o xselect.o xrdb.o fontset.o xsmfns.o fringe.o image.o
278 #ifdef HAVE_MENUS
280 #ifdef USE_GTK
281 GTK_OBJ= gtkutil.o
282 #endif
284 /* The X Menu stuff is present in the X10 distribution, but missing
285 from X11. If we have X10, just use the installed library;
286 otherwise, use our own copy. */
287 #ifdef HAVE_X11
288 #ifdef USE_X_TOOLKIT
289 OLDXMENU=${lwlibdir}liblw.a
290 LIBXMENU= $(OLDXMENU)
291 #else /* not USE_X_TOOLKIT */
292 OLDXMENU= ${oldXMenudir}libXMenu11.a
293 LIBXMENU= $(OLDXMENU)
294 #endif /* not USE_X_TOOLKIT */
295 #else /* not HAVE_X11 */
296 LIBXMENU= -lXMenu
297 #endif /* not HAVE_X11 */
299 #else /* not HAVE_MENUS */
301 /* Otherwise, do not worry about the menu library at all. */
302 LIBXMENU=
303 #endif /* not HAVE_MENUS */
305 #ifdef USE_X_TOOLKIT
306 # define @X_TOOLKIT_TYPE@
307 # if HAVE_XAW3D
308 LUCID_LIBW= -lXaw3d
309 # else
310 LUCID_LIBW= -lXaw
311 # endif
312 # if defined (HAVE_MOTIF_2_1) && defined (HAVE_LIBXP)
313 # define LIB_MOTIF_EXTRA -lXp
314 # else
315 # define LIB_MOTIF_EXTRA
316 # endif
317 # ifdef LIB_MOTIF
318 MOTIF_LIBW= LIB_MOTIF LIB_MOTIF_EXTRA
319 # else
320 MOTIF_LIBW= -lXm LIB_MOTIF_EXTRA
321 # endif
322 LIBW=$(@X_TOOLKIT_TYPE@_LIBW)
324 #ifdef HAVE_X11XTR6
325 #ifdef NEED_LIBW
326 LIBXTR6 = -lSM -lICE -lw
327 #else
328 LIBXTR6 = -lSM -lICE
329 #endif
330 #endif
332 #ifndef LIBXMU
333 #define LIBXMU -lXmu
334 #endif
336 LIBXT= $(LIBW) LIBXMU -lXt $(LIBXTR6) -lXext
338 #else /* not USE_X_TOOLKIT */
340 #ifdef USE_GTK
341 LIBW=@GTK_LIBS@
342 OLDXMENU=
343 LIBXMENU=
344 #endif /* USE_GTK */
346 #ifdef HAVE_X_SM
347 LIBXT=$(LIBW) -lSM -lICE
348 #else
349 LIBXT=$(LIBW)
350 #endif
351 #endif /* not USE_X_TOOLKIT */
353 #if HAVE_XFT
354 XFT_LIBS=@XFT_LIBS@
355 #endif /* HAVE_XFT */
357 #if HAVE_XPM
358 #ifndef LIBXPM
359 #define LIBXPM -lXpm
360 #endif /* not defined LIBXPM */
361 #else /* not HAVE_XPM */
362 #define LIBXPM
363 #endif /* not HAVE_XPM */
365 #if HAVE_JPEG
366 #ifndef LIBJPEG
367 #define LIBJPEG -ljpeg
368 #endif /* not defined LIBJPEG */
369 #else /* not HAVE_JPEG */
370 #define LIBJPEG
371 #endif /* not HAVE_JPEG */
373 #if HAVE_PNG
374 #ifndef LIBPNG
375 #define LIBPNG -lpng -lz -lm
376 #endif /* not defined LIBPNG */
377 #else /* not HAVE_PNG */
378 #define LIBPNG
379 #endif /* not HAVE_PNG */
381 #if HAVE_TIFF
382 #ifndef LIBTIFF
383 #define LIBTIFF -ltiff
384 #endif /* not defined LIBTIFF */
385 #else /* not HAVE_TIFF */
386 #define LIBTIFF
387 #endif /* not HAVE_TIFF */
389 #if HAVE_GIF
390 #ifndef LIBGIF
391 #define LIBGIF -lgif
392 #endif /* not defined LIBGIF */
393 #else /* not HAVE_GIF */
394 #define LIBGIF
395 #endif /* not HAVE_GIF */
397 #ifdef HAVE_X11
398 /* LD_SWITCH_X_DEFAULT comes after everything else that specifies
399 options for where to find X libraries, but before those libraries. */
400 X11_LDFLAGS = LD_SWITCH_X_SITE LD_SWITCH_X_DEFAULT
401 LIBX= $(LIBXMENU) $(X11_LDFLAGS) $(LIBXT) LIBTIFF LIBJPEG LIBPNG LIBGIF LIBXPM LIB_X11_LIB LIBX11_SYSTEM $(XFT_LIBS)
402 #else /* not HAVE_X11 */
403 LIBX= $(LIBXMENU) LD_SWITCH_X_SITE
404 #endif /* not HAVE_X11 */
405 #else /* not HAVE_X_WINDOWS */
406 #endif /* not HAVE_X_WINDOWS */
408 #if HAVE_GPM
409 #ifndef LIBGPM
410 #define LIBGPM -lgpm
411 #endif /* not defined LIBGPM */
412 #else /* not HAVE_GPM */
413 #define LIBGPM
414 #endif /* not HAVE_GPM */
416 #if HAVE_LIBRESOLV
417 #ifndef LIBRESOLV
418 #define LIBRESOLV -lresolv
419 #endif /* not defined LIBRESOLV */
420 #else /* not HAVE_LIBRESOLV */
421 #define LIBRESOLV
422 #endif /* not HAVE_LIBRESOLV */
424 LIBSOUND= @LIBSOUND@
425 CFLAGS_SOUND= @CFLAGS_SOUND@
427 RSVG_LIBS= @RSVG_LIBS@
428 RSVG_CFLAGS= @RSVG_CFLAGS@
430 #ifndef ORDINARY_LINK
431 /* Fix linking if compiled with GCC. */
432 #ifdef __GNUC__
434 #ifdef LINKER
435 #define LINKER_WAS_SPECIFIED
436 #endif
438 /* Versions of GCC >= 2.0 put their library, libgcc.a, in obscure
439 places that are difficult to figure out at make time. Fortunately,
440 these same versions allow you to pass arbitrary flags on to the
441 linker, so there is no reason not to use it as a linker.
443 Well, it is not quite perfect. The "-nostdlib" keeps GCC from
444 searching for libraries in its internal directories, so we have to
445 ask GCC explicitly where to find libgcc.a. */
447 #ifndef LINKER
448 #define LINKER $(CC) -nostdlib
449 #endif
451 #ifndef LIB_GCC
452 /* Ask GCC where to find libgcc.a. */
453 #define LIB_GCC `$(CC) -print-libgcc-file-name`
454 #endif /* not LIB_GCC */
456 GNULIB_VAR = LIB_GCC
458 #ifndef LINKER_WAS_SPECIFIED
459 /* GCC passes any argument prefixed with -Xlinker directly to the
460 linker. See prefix-args.c for an explanation of why we do not do
461 this with the shell''s ``for'' construct.
462 Note that some people do not have '.' in their paths, so we must
463 use ./prefix-args. */
464 #define YMF_PASS_LDFLAGS(flags) `./prefix-args -Xlinker flags`
465 #else
466 #define YMF_PASS_LDFLAGS(flags) flags
467 #endif
469 #else /* not __GNUC__ */
470 GNULIB_VAR =
472 #endif /* not __GNUC__ */
473 #endif /* not ORDINARY_LINK */
475 #ifdef ORDINARY_LINK
476 LD = $(CC)
477 #else
478 #ifdef LINKER
479 LD=LINKER
480 #else /* not LINKER */
481 LD=ld
482 #endif /* not LINKER */
483 #endif /* not ORDINARY_LINK */
485 /* Flags to pass to LD only for temacs. */
486 /* Do not split this line with a backslash. That can cause trouble with
487 some cpps. */
488 TEMACS_LDFLAGS = LD_SWITCH_SYSTEM LD_SWITCH_SYSTEM_TEMACS LD_SWITCH_MACHINE LD_SWITCH_MACHINE_TEMACS LD_SWITCH_SITE
490 /* A macro which other sections of Makefile can redefine to munge the
491 flags before they are passed to LD. This is helpful if you have
492 redefined LD to something odd, like "gcc".
493 (The YMF prefix is a holdover from the old name "ymakefile".)
495 #ifndef YMF_PASS_LDFLAGS
496 #define YMF_PASS_LDFLAGS(flags) flags
497 #endif
499 /* Allow config.h to specify a replacement file for unexec.c. */
500 #ifndef UNEXEC
501 #define UNEXEC unexec.o
502 #endif
503 #ifndef UNEXEC_SRC
504 #define UNEXEC_SRC unexec.c
505 #endif
507 INTERVAL_SRC = intervals.h composite.h
509 GETLOADAVG_LIBS = @GETLOADAVG_LIBS@
511 #ifdef MSDOS
512 #ifdef HAVE_X_WINDOWS
513 MSDOS_OBJ = dosfns.o msdos.o
514 #else
515 MSDOS_OBJ = dosfns.o msdos.o w16select.o
516 #endif
517 #endif
519 #ifdef CYGWIN
520 CYGWIN_OBJ = sheap.o
521 #endif
523 #ifdef HAVE_CARBON
524 mac = ../mac/
525 MAC_OBJ = mac.o macterm.o macfns.o macmenu.o macselect.o fontset.o fringe.o image.o mactoolbox.o
526 emacsapp = $(PWD)/$(mac)Emacs.app/
527 emacsappsrc = ${srcdir}/../mac/Emacs.app/
528 #endif
530 #ifdef HAVE_WINDOW_SYSTEM
531 #ifdef HAVE_X_WINDOWS
532 #if defined (HAVE_XFT)
533 FONT_DRIVERS = xfont.o ftfont.o xftfont.o ftxfont.o
534 #elif defined (HAVE_FREETYPE)
535 FONT_DRIVERS = xfont.o ftfont.o ftxfont.o
536 #else /* ! defined (HAVE_XFT) && ! defined (HAVE_FREETYPE) */
537 FONT_DRIVERS = xfont.o
538 #endif /* ! defined (HAVE_XFT) && ! defined (HAVE_FREETYPE) */
539 #endif /* HAVE_X_WINDOWS */
540 #endif /* HAVE_WINDOW_SYSTEM */
542 /* lastfile must follow all files
543 whose initialized data areas should be dumped as pure by dump-emacs. */
544 obj= dispnew.o frame.o scroll.o xdisp.o menu.o $(XMENU_OBJ) window.o \
545 charset.o coding.o category.o ccl.o character.o chartab.o \
546 cm.o term.o terminal.o xfaces.o $(XOBJ) $(GTK_OBJ) $(DBUS_OBJ) \
547 emacs.o keyboard.o macros.o keymap.o sysdep.o \
548 buffer.o filelock.o insdel.o marker.o \
549 minibuf.o fileio.o dired.o filemode.o \
550 cmds.o casetab.o casefiddle.o indent.o search.o regex.o undo.o \
551 alloc.o data.o doc.o editfns.o callint.o \
552 eval.o floatfns.o fns.o font.o print.o lread.o \
553 syntax.o UNEXEC bytecode.o \
554 process.o callproc.o \
555 region-cache.o sound.o atimer.o \
556 doprnt.o strftime.o intervals.o textprop.o composite.o md5.o \
557 $(MSDOS_OBJ) $(MAC_OBJ) $(CYGWIN_OBJ) $(FONT_DRIVERS)
559 /* Object files used on some machine or other.
560 These go in the DOC file on all machines
561 in case they are needed there. */
562 SOME_MACHINE_OBJECTS = dosfns.o msdos.o \
563 xterm.o xfns.o xmenu.o xselect.o xrdb.o xsmfns.o fringe.o image.o \
564 mac.o macterm.o macfns.o macmenu.o macselect.o fontset.o \
565 w32.o w32bdf.o w32console.o w32fns.o w32heap.o w32inevt.o \
566 w32menu.o w32proc.o w32reg.o w32select.o w32term.o w32xfns.o $(FONT_DRIVERS)
569 #ifdef TERMINFO
570 /* Used to be -ltermcap here. If your machine needs that,
571 define LIBS_TERMCAP in the m/MACHINE.h file. */
572 #ifndef LIBS_TERMCAP
573 #define LIBS_TERMCAP -lcurses
574 #endif /* LIBS_TERMCAP */
575 termcapobj = terminfo.o
576 #else /* ! defined (TERMINFO) */
577 #ifndef LIBS_TERMCAP
578 #define LIBS_TERMCAP
579 termcapobj = termcap.o tparam.o
580 #else /* LIBS_TERMCAP */
581 termcapobj = tparam.o
582 #endif /* LIBS_TERMCAP */
583 #endif /* ! defined (TERMINFO) */
586 #ifndef SYSTEM_MALLOC
588 #ifndef DOUG_LEA_MALLOC
589 gmallocobj = gmalloc.o
590 #endif
592 #ifdef REL_ALLOC
593 rallocobj = ralloc.o
594 #endif
596 mallocobj = $(gmallocobj) $(rallocobj) vm-limit.o
598 #endif /* SYSTEM_MALLOC */
601 #ifdef USE_X_TOOLKIT
602 widgetobj= widget.o
603 #else /* not USE_X_TOOLKIT */
604 widgetobj=
605 #endif /* not USE_X_TOOLKIT */
608 /* define otherobj as list of object files that make-docfile
609 should not be told about. */
610 #ifdef CYGWIN
611 /* Cygwin differs because of its unexec(). */
612 otherobj= $(termcapobj) $(gmallocobj) $(rallocobj) lastfile.o vm-limit.o $(widgetobj) $(LIBOBJS)
613 #else
614 otherobj= $(termcapobj) lastfile.o $(mallocobj) $(widgetobj) $(LIBOBJS)
615 #endif
617 #ifdef HAVE_MOUSE
618 #define MOUSE_SUPPORT ${lispsource}mouse.elc \
619 ${lispsource}select.elc ${lispsource}scroll-bar.elc
620 #else
621 #ifdef HAVE_GPM
622 #define MOUSE_SUPPORT ${lispsource}mouse.elc
623 #else
624 #define MOUSE_SUPPORT
625 #endif
626 #endif
628 #ifdef VMS
629 #define VMS_SUPPORT ${lispsource}vmsproc.elc ${lispsource}vms-patch.elc
630 #else
631 #define VMS_SUPPORT
632 #endif
634 #ifdef MSDOS
635 #define MSDOS_SUPPORT ${lispsource}ls-lisp.elc ${lispsource}disp-table.elc \
636 ${lispsource}dos-fns.elc ${lispsource}dos-w32.elc ${lispsource}dos-vars.elc \
637 ${lispsource}international/ccl.elc ${lispsource}international/codepage.elc
639 #else
640 #define MSDOS_SUPPORT
641 #endif
643 #ifdef HAVE_WINDOW_SYSTEM
644 #ifdef HAVE_X_WINDOWS
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 ${lispsource}x-dnd.elc
648 #else
649 #define WINDOW_SUPPORT ${lispsource}fringe.elc ${lispsource}image.elc \
650 ${lispsource}international/fontset.elc ${lispsource}dnd.elc \
651 ${lispsource}tool-bar.elc ${lispsource}mwheel.elc
652 #endif
653 #else
654 #define WINDOW_SUPPORT
655 #endif
657 #ifdef WINDOWSNT
658 #define WINNT_SUPPORT ${lispsource}ls-lisp.elc ${lispsource}disp-table.elc \
659 ${lispsource}dos-w32.elc ${lispsource}w32-vars.elc \
660 ${lispsource}w32-fns.elc
661 #else
662 #define WINNT_SUPPORT
663 #endif
665 #ifdef HAVE_WINDOW_SYSTEM
666 #define TOOLTIP_SUPPORT ${lispsource}tooltip.elc
667 #else
668 #define TOOLTIP_SUPPORT
669 #endif
671 /* List of Lisp files loaded into the dumped Emacs. It is arranged
672 like this because it is easier to generate it semi-mechanically from
673 loadup.el this way.
675 Note that this list should not include lisp files which might not
676 be present, like site-load.el and site-init.el; this makefile
677 expects them all to be either present or buildable.
679 Files which are loaded unconditionally should be in shortlisp as well.
680 Files included conditionally here should be included (unconditionally)
681 in SOME_MACHINE_LISP. */
683 /* Place loaddefs.el first, so it gets generated first, since it is on
684 the critical path (relevant in parallel compilations). */
686 lisp= \
687 ${lispsource}loaddefs.el \
688 ${lispsource}abbrev.elc \
689 ${lispsource}buff-menu.elc \
690 ${lispsource}button.elc \
691 ${lispsource}emacs-lisp/byte-run.elc \
692 ${lispsource}composite.elc \
693 ${lispsource}cus-face.elc \
694 ${lispsource}cus-start.elc \
695 ${lispsource}custom.elc \
696 ${lispsource}emacs-lisp/backquote.elc \
697 ${lispsource}emacs-lisp/lisp-mode.elc \
698 ${lispsource}emacs-lisp/lisp.elc \
699 ${lispsource}env.elc \
700 ${lispsource}faces.elc \
701 ${lispsource}files.elc \
702 ${lispsource}format.elc \
703 ${lispsource}facemenu.elc \
704 MOUSE_SUPPORT \
705 ${lispsource}emacs-lisp/float-sup.elc \
706 ${lispsource}frame.elc \
707 ${lispsource}help.elc \
708 ${lispsource}indent.elc \
709 ${lispsource}isearch.elc \
710 ${lispsource}rfn-eshadow.elc \
711 ${lispsource}loadup.el \
712 ${lispsource}bindings.elc \
713 ${lispsource}emacs-lisp/map-ynp.elc \
714 ${lispsource}menu-bar.elc \
715 ${lispsource}international/mule.elc \
716 ${lispsource}international/mule-conf.el \
717 ${lispsource}international/mule-cmds.elc \
718 ${lispsource}international/characters.elc \
719 ${lispsource}international/charprop.el \
720 ${lispsource}case-table.elc \
721 ${lispsource}language/chinese.el \
722 ${lispsource}language/cyrillic.el \
723 ${lispsource}language/indian.el \
724 ${lispsource}language/sinhala.el \
725 ${lispsource}language/english.el \
726 ${lispsource}language/ethiopic.elc \
727 ${lispsource}language/european.elc \
728 ${lispsource}language/czech.el \
729 ${lispsource}language/slovak.el \
730 ${lispsource}language/romanian.el \
731 ${lispsource}language/greek.el \
732 ${lispsource}language/hebrew.el \
733 ${lispsource}language/japanese.el \
734 ${lispsource}language/korean.el \
735 ${lispsource}language/lao.el \
736 ${lispsource}language/cham.el \
737 ${lispsource}language/tai-viet.el \
738 ${lispsource}language/thai.el \
739 ${lispsource}language/tibetan.elc \
740 ${lispsource}language/vietnamese.el \
741 ${lispsource}language/misc-lang.el \
742 ${lispsource}language/utf-8-lang.el \
743 ${lispsource}language/georgian.el \
744 ${lispsource}language/khmer.el \
745 ${lispsource}language/burmese.el \
746 ${lispsource}paths.el \
747 ${lispsource}register.elc \
748 ${lispsource}replace.elc \
749 ${lispsource}simple.elc \
750 ${lispsource}minibuffer.elc \
751 ${lispsource}startup.elc \
752 ${lispsource}subr.elc \
753 ${lispsource}term/tty-colors.elc \
754 ${lispsource}font-core.elc \
755 ${lispsource}emacs-lisp/syntax.elc \
756 ${lispsource}font-lock.elc \
757 ${lispsource}jit-lock.elc \
758 ${lispsource}textmodes/fill.elc \
759 ${lispsource}textmodes/page.elc \
760 ${lispsource}textmodes/paragraphs.elc \
761 ${lispsource}textmodes/text-mode.elc \
762 ${lispsource}emacs-lisp/timer.elc \
763 ${lispsource}jka-cmpr-hook.elc \
764 ${lispsource}vc-hooks.elc \
765 ${lispsource}ediff-hook.elc \
766 ${lispsource}epa-hook.elc \
767 TOOLTIP_SUPPORT \
768 VMS_SUPPORT \
769 MSDOS_SUPPORT \
770 WINNT_SUPPORT \
771 WINDOW_SUPPORT \
772 ${lispsource}widget.elc \
773 ${lispsource}window.elc \
774 ${lispsource}version.el
776 /* These are relative file names for the Lisp files
777 that are loaded unconditionally. This is used in make-docfile.
778 It need not contain the files that are loaded conditionally
779 because SOME_MACHINE_LISP has those. */
780 shortlisp= \
781 ../lisp/loaddefs.el \
782 ../lisp/abbrev.elc \
783 ../lisp/buff-menu.elc \
784 ../lisp/button.elc \
785 ../lisp/emacs-lisp/byte-run.elc \
786 ../lisp/composite.elc \
787 ../lisp/cus-face.elc \
788 ../lisp/cus-start.elc \
789 ../lisp/custom.elc \
790 ../lisp/emacs-lisp/backquote.elc \
791 ../lisp/emacs-lisp/lisp-mode.elc \
792 ../lisp/emacs-lisp/lisp.elc \
793 ../lisp/facemenu.elc \
794 ../lisp/faces.elc \
795 ../lisp/files.elc \
796 ../lisp/emacs-lisp/float-sup.elc \
797 ../lisp/format.elc \
798 ../lisp/frame.elc \
799 ../lisp/help.elc \
800 ../lisp/indent.elc \
801 ../lisp/isearch.elc \
802 ../lisp/rfn-eshadow.elc \
803 ../lisp/loadup.el \
804 ../lisp/bindings.elc \
805 ../lisp/emacs-lisp/map-ynp.elc \
806 ../lisp/env.elc \
807 ../lisp/international/mule.elc \
808 ../lisp/international/mule-conf.el \
809 ../lisp/international/mule-cmds.elc \
810 ../lisp/international/characters.elc \
811 ../lisp/case-table.elc \
812 ../lisp/language/chinese.el \
813 ../lisp/language/cyrillic.el \
814 ../lisp/language/indian.el \
815 ../lisp/language/sinhala.el \
816 ../lisp/language/english.el \
817 ../lisp/language/ethiopic.elc \
818 ../lisp/language/european.elc \
819 ../lisp/language/czech.el \
820 ../lisp/language/slovak.el \
821 ../lisp/language/romanian.el \
822 ../lisp/language/greek.el \
823 ../lisp/language/hebrew.el \
824 ../lisp/language/japanese.el \
825 ../lisp/language/korean.el \
826 ../lisp/language/lao.el \
827 ../lisp/language/cham.el \
828 ../lisp/language/tai-viet.el \
829 ../lisp/language/thai.el \
830 ../lisp/language/tibetan.elc \
831 ../lisp/language/vietnamese.el \
832 ../lisp/language/misc-lang.el \
833 ../lisp/language/utf-8-lang.el \
834 ../lisp/language/georgian.el \
835 ../lisp/language/khmer.el \
836 ../lisp/language/burmese.el \
837 ../lisp/menu-bar.elc \
838 ../lisp/paths.el \
839 ../lisp/register.elc \
840 ../lisp/replace.elc \
841 ../lisp/simple.elc \
842 ../lisp/minibuffer.elc \
843 ../lisp/startup.elc \
844 ../lisp/subr.elc \
845 ../lisp/term/tty-colors.elc \
846 ../lisp/font-core.elc \
847 ../lisp/emacs-lisp/syntax.elc \
848 ../lisp/font-lock.elc \
849 ../lisp/jit-lock.elc \
850 ../lisp/textmodes/fill.elc \
851 ../lisp/textmodes/page.elc \
852 ../lisp/textmodes/paragraphs.elc \
853 ../lisp/textmodes/text-mode.elc \
854 ../lisp/emacs-lisp/timer.elc \
855 ../lisp/vc-hooks.elc \
856 ../lisp/jka-cmpr-hook.elc \
857 ../lisp/ediff-hook.elc \
858 ../lisp/epa-hook.elc \
859 ../lisp/widget.elc \
860 ../lisp/window.elc \
861 ../lisp/version.el
863 /* Lisp files that may or may not be used.
864 We must unconditionally put them in the DOC file.
865 We use ../lisp/ to start the file names
866 to reduce the size of the argument list for make-docfile
867 for the sake of systems which can''t handle large ones. */
868 SOME_MACHINE_LISP = ../lisp/mouse.elc \
869 ../lisp/select.elc ../lisp/scroll-bar.elc \
870 VMS_SUPPORT \
871 ../lisp/ls-lisp.elc ../lisp/dos-fns.elc \
872 ../lisp/w32-fns.elc ../lisp/dos-w32.elc \
873 ../lisp/disp-table.elc ../lisp/dos-vars.elc \
874 ../lisp/tooltip.elc ../lisp/image.elc \
875 ../lisp/fringe.elc ../lisp/dnd.elc \
876 ../lisp/mwheel.elc ../lisp/tool-bar.elc \
877 ../lisp/x-dnd.elc \
878 ../lisp/international/ccl.elc \
879 ../lisp/international/codepage.elc \
880 ../lisp/international/fontset.elc \
881 ../lisp/mouse.elc \
882 ../lisp/term/x-win.elc
884 /* Construct full set of libraries to be linked.
885 Note that SunOS needs -lm to come before -lc; otherwise, you get
886 duplicated symbols. If the standard libraries were compiled
887 with GCC, we might need gnulib again after them. */
888 LIBES = $(LOADLIBES) $(LIBS) $(LIBX) $(LIBSOUND) $(RSVG_LIBS) $(DBUS_LIBS) \
889 LIBGPM LIBRESOLV LIBS_SYSTEM LIBS_MACHINE LIBS_TERMCAP \
890 LIBS_DEBUG $(GETLOADAVG_LIBS) \
891 @FREETYPE_LIBS@ @FONTCONFIG_LIBS@ @LIBOTF_LIBS@ @M17N_FLT_LIBS@ \
892 $(GNULIB_VAR) LIB_MATH LIB_STANDARD $(GNULIB_VAR)
894 /* Enable recompilation of certain other files depending on system type. */
896 #ifndef OTHER_FILES
897 #define OTHER_FILES
898 #endif
900 #ifndef OBJECTS_MACHINE
901 #define OBJECTS_MACHINE
902 #endif
904 #ifdef HAVE_SHM
905 RUN_TEMACS = `/bin/pwd`/temacs -nl
906 #else
907 RUN_TEMACS = `/bin/pwd`/temacs
908 #endif
910 all: emacs${EXEEXT} OTHER_FILES
912 emacs${EXEEXT}: temacs${EXEEXT} ${etc}DOC ${lisp} ${SOME_MACHINE_LISP}
913 #ifdef CANNOT_DUMP
914 rm -f emacs${EXEEXT}
915 ln temacs${EXEEXT} emacs${EXEEXT}
916 #else
917 LC_ALL=C $(RUN_TEMACS) -batch -l loadup dump
918 @: This new Emacs is as functional and more efficient then
919 @: bootstrap-emacs, so let us replace it.
920 -ln -f emacs${EXEEXT} bootstrap-emacs${EXEEXT}
921 #endif /* ! defined (CANNOT_DUMP) */
922 -./emacs -q -batch -f list-load-path-shadows
924 /* We run make-docfile twice because the command line may get too long
925 on some systems. */
926 /* ${SOME_MACHINE_OBJECTS} comes before ${obj} because some files may
927 or may not be included in ${obj}, but they are always included in
928 ${SOME_MACHINE_OBJECTS}. Since a file is processed when it is mentioned
929 for the first time, this prevents any variation between configurations
930 in the contents of the DOC file.
931 Likewise for ${SOME_MACHINE_LISP}. */
932 ${etc}DOC: ${libsrc}make-docfile${EXEEXT} ${obj} ${shortlisp} ${SOME_MACHINE_LISP}
933 -rm -f ${etc}DOC
934 ${libsrc}make-docfile -d ${srcdir} ${SOME_MACHINE_OBJECTS} ${obj} > ${etc}DOC
935 ${libsrc}make-docfile -a ${etc}DOC -d ${srcdir} ${SOME_MACHINE_LISP} ${shortlisp}
937 ${libsrc}make-docfile${EXEEXT}:
938 cd ${libsrc}; ${MAKE} ${MFLAGS} make-docfile${EXEEXT}
940 temacs${EXEEXT}: $(LOCALCPP) $(STARTFILES) stamp-oldxmenu ${obj} ${otherobj} OBJECTS_MACHINE prefix-args${EXEEXT}
941 echo "${obj} ${otherobj} " OBJECTS_MACHINE > buildobj.lst
942 $(LD) YMF_PASS_LDFLAGS (${STARTFLAGS} ${TEMACS_LDFLAGS}) $(LDFLAGS) \
943 -o temacs ${STARTFILES} ${obj} ${otherobj} \
944 OBJECTS_MACHINE ${LIBES}
946 /* We do not use ALL_LDFLAGS because LD_SWITCH_SYSTEM and LD_SWITCH_MACHINE
947 often contain options that have to do with using Emacs''s crt0,
948 which are only good with temacs. */
949 prefix-args${EXEEXT}: prefix-args.c $(config_h)
950 $(CC) $(ALL_CFLAGS) $(LDFLAGS) ${srcdir}/prefix-args.c -o prefix-args
952 #if defined (HAVE_X_WINDOWS) && defined (HAVE_X11) && defined (HAVE_MENUS) && ! defined (USE_GTK)
954 /* We use stamp-xmenu with these two deps
955 to both ensure that lwlib gets remade based on its dependencies
956 in its own makefile,
957 and remake temacs if lwlib gets changed by this. */
958 stamp-oldxmenu: ${OLDXMENU} ../src/$(OLDXMENU)
959 touch stamp-oldxmenu
960 /* Supply an ordering for parallel make. */
961 ../src/$(OLDXMENU): ${OLDXMENU}
963 /* Encode the values of these two macros in Make variables,
964 so we can use $(...) to substitute their values within "...". */
965 C_SWITCH_MACHINE_1 = C_SWITCH_MACHINE
966 C_SWITCH_SYSTEM_1 = C_SWITCH_SYSTEM
967 C_SWITCH_SITE_1 = C_SWITCH_SITE
968 C_SWITCH_X_SITE_1 = C_SWITCH_X_SITE
969 C_SWITCH_X_MACHINE_1 = C_SWITCH_X_MACHINE
970 C_SWITCH_X_SYSTEM_1 = C_SWITCH_X_SYSTEM
972 #ifdef USE_X_TOOLKIT
973 $(OLDXMENU): really-lwlib
975 really-lwlib:
976 cd ${lwlibdir}; ${MAKE} ${MFLAGS} \
977 CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}' \
978 "C_SWITCH_X_SITE=$(C_SWITCH_X_SITE_1)" \
979 "C_SWITCH_X_MACHINE=$(C_SWITCH_X_MACHINE_1)" \
980 "C_SWITCH_X_SYSTEM=$(C_SWITCH_X_SYSTEM_1)" \
981 "C_SWITCH_SITE=$(C_SWITCH_SITE_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_SITE=$(C_SWITCH_SITE_1)" \
996 "C_SWITCH_MACHINE=$(C_SWITCH_MACHINE_1)" \
997 "C_SWITCH_SYSTEM=$(C_SWITCH_SYSTEM_1)"
998 @true /* make -t should not create really-oldXMenu. */
999 .PHONY: really-oldXMenu
1000 #endif /* not USE_X_TOOLKIT */
1001 #else /* not (HAVE_X_WINDOWS && HAVE_X11 && HAVE_MENUS && ! USE_GTK) */
1003 /* We don''t really need this, but satisfy the dependency. */
1004 stamp-oldxmenu:
1005 touch stamp-oldxmenu
1006 #endif /* not (HAVE_X_WINDOWS && HAVE_X11 && HAVE_MENUS && ! USE_GTK) */
1008 ../config.status:: epaths.in
1009 @echo "The file epaths.h needs to be set up from epaths.in."
1010 @echo "Please run the `configure' script again."
1011 exit 1
1013 ../config.status:: config.in
1014 @echo "The file config.h needs to be set up from config.in."
1015 @echo "Please run the `configure' script again."
1016 exit 1
1018 /* Nearly all the following files depend on lisp.h,
1019 but it is not included as a dependency because
1020 it is so often changed in ways that do not require any recompilation
1021 and so rarely changed in ways that do require any. */
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 $(INTERVAL_SRC) 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 dired.o: dired.c commands.h buffer.h $(config_h) character.h charset.h \
1054 coding.h regex.h systime.h blockinput.h atimer.h
1055 dispnew.o: dispnew.c systime.h commands.h process.h frame.h \
1056 window.h buffer.h dispextern.h termchar.h termopts.h termhooks.h cm.h \
1057 disptab.h indent.h intervals.h \
1058 xterm.h blockinput.h atimer.h character.h msdos.h composite.h keyboard.h \
1059 $(config_h)
1060 doc.o: doc.c $(config_h) epaths.h buffer.h keyboard.h keymap.h character.h
1061 doprnt.o: doprnt.c character.h $(config_h)
1062 dosfns.o: buffer.h termchar.h termhooks.h frame.h blockinput.h window.h \
1063 msdos.h dosfns.h dispextern.h charset.h coding.h atimer.h systime.h \
1064 $(config_h)
1065 editfns.o: editfns.c window.h buffer.h systime.h $(INTERVAL_SRC) character.h \
1066 coding.h dispextern.h frame.h blockinput.h atimer.h $(config_h)
1067 emacs.o: emacs.c commands.h systty.h syssignal.h blockinput.h process.h \
1068 termhooks.h buffer.h atimer.h systime.h $(INTERVAL_SRC) $(config_h) \
1069 window.h dispextern.h keyboard.h keymap.h
1070 fileio.o: fileio.c window.h buffer.h systime.h $(INTERVAL_SRC) character.h \
1071 coding.h msdos.h dispextern.h blockinput.h atimer.h $(config_h)
1072 filelock.o: filelock.c buffer.h character.h charset.h coding.h systime.h \
1073 epaths.h $(config_h)
1074 filemode.o: filemode.c $(config_h)
1075 frame.o: frame.c xterm.h window.h frame.h termhooks.h commands.h keyboard.h \
1076 blockinput.h atimer.h systime.h buffer.h character.h fontset.h font.h \
1077 msdos.h dosfns.h dispextern.h w32term.h macterm.h termchar.h $(config_h)
1078 fringe.o: fringe.c dispextern.h frame.h window.h buffer.h termhooks.h $(config_h)
1079 font.o: font.c dispextern.h frame.h window.h ccl.h character.h charset.h \
1080 font.h $(config_h)
1081 ftfont.o: dispextern.h frame.h character.h charset.h font.h $(config_h)
1082 fontset.o: dispextern.h fontset.h fontset.c ccl.h buffer.h character.h \
1083 charset.h frame.h keyboard.h termhooks.h font.h $(config_h)
1084 getloadavg.o: getloadavg.c $(config_h)
1085 image.o: image.c frame.h window.h dispextern.h blockinput.h atimer.h \
1086 systime.h xterm.h w32term.h w32gui.h macterm.h macgui.h font.h \
1087 $(config_h)
1088 indent.o: indent.c frame.h window.h indent.h buffer.h $(config_h) termchar.h \
1089 termopts.h disptab.h region-cache.h character.h category.h composite.h \
1090 dispextern.h keyboard.h
1091 insdel.o: insdel.c window.h buffer.h $(INTERVAL_SRC) blockinput.h character.h \
1092 dispextern.h atimer.h systime.h region-cache.h $(config_h)
1093 keyboard.o: keyboard.c termchar.h termhooks.h termopts.h buffer.h character.h \
1094 commands.h frame.h window.h macros.h disptab.h keyboard.h syssignal.h \
1095 systime.h dispextern.h syntax.h $(INTERVAL_SRC) blockinput.h \
1096 atimer.h xterm.h puresize.h msdos.h keymap.h w32term.h macterm.h $(config_h)
1097 keymap.o: keymap.c buffer.h commands.h keyboard.h termhooks.h blockinput.h \
1098 atimer.h systime.h puresize.h character.h intervals.h keymap.h window.h \
1099 $(config_h)
1100 lastfile.o: lastfile.c $(config_h)
1101 macros.o: macros.c window.h buffer.h commands.h macros.h keyboard.h \
1102 dispextern.h $(config_h)
1103 malloc.o: malloc.c $(config_h)
1104 gmalloc.o: gmalloc.c $(config_h)
1105 ralloc.o: ralloc.c $(config_h)
1106 vm-limit.o: vm-limit.c mem-limits.h $(config_h)
1107 marker.o: marker.c buffer.h character.h $(config_h)
1108 md5.o: md5.c md5.h $(config_h)
1109 minibuf.o: minibuf.c syntax.h dispextern.h frame.h window.h keyboard.h \
1110 buffer.h commands.h character.h msdos.h $(INTERVAL_SRC) keymap.h \
1111 termhooks.h $(config_h)
1112 mktime.o: mktime.c $(config_h)
1113 msdos.o: msdos.c msdos.h dosfns.h systime.h termhooks.h dispextern.h frame.h \
1114 termopts.h termchar.h character.h coding.h ccl.h disptab.h window.h \
1115 keyboard.h intervals.h buffer.h commands.h blockinput.h atimer.h $(config_h)
1116 process.o: process.c process.h buffer.h window.h termhooks.h termopts.h \
1117 commands.h syssignal.h systime.h systty.h syswait.h frame.h dispextern.h \
1118 blockinput.h atimer.h charset.h coding.h ccl.h msdos.h composite.h \
1119 keyboard.h $(config_h)
1120 regex.o: regex.c syntax.h buffer.h $(config_h) regex.h category.h character.h \
1121 charset.h
1122 region-cache.o: region-cache.c buffer.h region-cache.h $(config_h)
1123 scroll.o: scroll.c termchar.h dispextern.h frame.h msdos.h keyboard.h \
1124 termhooks.h $(config_h)
1125 search.o: search.c regex.h commands.h buffer.h region-cache.h syntax.h \
1126 blockinput.h atimer.h systime.h category.h character.h charset.h \
1127 composite.h $(INTERVAL_SRC) \
1128 $(config_h)
1129 strftime.o: strftime.c $(config_h)
1130 syntax.o: syntax.c syntax.h buffer.h commands.h category.h character.h \
1131 composite.h keymap.h regex.h $(INTERVAL_SRC) $(config_h)
1132 sysdep.o: sysdep.c syssignal.h systty.h systime.h syswait.h blockinput.h \
1133 process.h dispextern.h termhooks.h termchar.h termopts.h \
1134 frame.h atimer.h window.h msdos.h dosfns.h keyboard.h cm.h $(config_h)
1135 term.o: term.c termchar.h termhooks.h termopts.h $(config_h) cm.h frame.h \
1136 disptab.h dispextern.h keyboard.h character.h charset.h coding.h ccl.h \
1137 msdos.h window.h keymap.h blockinput.h atimer.h systime.h
1138 termcap.o: termcap.c $(config_h)
1139 terminal.o: terminal.c frame.h termchar.h termhooks.h charset.h coding.h \
1140 keyboard.h $(config_h)
1141 terminfo.o: terminfo.c $(config_h)
1142 tparam.o: tparam.c $(config_h)
1143 undo.o: undo.c buffer.h commands.h window.h $(config_h)
1144 /* This hack is to discard any space that cpp might put at the beginning
1145 of UNEXEC when substituting it in. */
1146 UNEXEC_ALIAS=UNEXEC
1147 $(UNEXEC_ALIAS): UNEXEC_SRC $(config_h)
1148 w16select.o: w16select.c dispextern.h frame.h blockinput.h atimer.h systime.h \
1149 msdos.h buffer.h charset.h coding.h composite.h $(config_h)
1150 widget.o: widget.c xterm.h frame.h dispextern.h widgetprv.h \
1151 $(srcdir)/../lwlib/lwlib.h $(config_h)
1152 window.o: window.c indent.h commands.h frame.h window.h buffer.h termchar.h \
1153 disptab.h keyboard.h dispextern.h msdos.h composite.h \
1154 keymap.h blockinput.h atimer.h systime.h $(INTERVAL_SRC) \
1155 xterm.h w32term.h macterm.h $(config_h)
1156 xdisp.o: xdisp.c macros.h commands.h process.h indent.h buffer.h dispextern.h \
1157 coding.h termchar.h frame.h window.h disptab.h termhooks.h character.h \
1158 charset.h $(config_h) keyboard.h $(INTERVAL_SRC) region-cache.h xterm.h \
1159 w32term.h macterm.h msdos.h composite.h fontset.h blockinput.h atimer.h \
1160 systime.h keymap.h font.h
1161 xfaces.o: xfaces.c dispextern.h frame.h xterm.h buffer.h blockinput.h \
1162 window.h character.h charset.h msdos.h dosfns.h composite.h atimer.h \
1163 systime.h keyboard.h fontset.h w32term.h macterm.h $(INTERVAL_SRC) \
1164 termchar.h termhooks.h font.h $(config_h)
1165 xfns.o: xfns.c buffer.h frame.h window.h keyboard.h xterm.h dispextern.h \
1166 $(srcdir)/../lwlib/lwlib.h blockinput.h atimer.h systime.h epaths.h \
1167 character.h charset.h coding.h gtkutil.h $(config_h) termhooks.h \
1168 fontset.h termchar.h font.h
1169 xfont.o: dispextern.h xterm.h frame.h blockinput.h character.h charset.h \
1170 font.h $(config_h)
1171 xftfont.o: dispextern.h xterm.h frame.h blockinput.h character.h charset.h \
1172 font.h $(config_h)
1173 ftxfont.o: dispextern.h xterm.h frame.h blockinput.h character.h charset.h \
1174 font.h $(config_h)
1175 menu.o: menu.c lisp.h keyboard.h keymap.h frame.h termhooks.h blockinput.h \
1176 dispextern.h $(srcdir)/../lwlib/lwlib.h xterm.h gtkutil.h $(config_h)
1177 xmenu.o: xmenu.c xterm.h termhooks.h window.h dispextern.h frame.h buffer.h \
1178 charset.h keyboard.h $(srcdir)/../lwlib/lwlib.h blockinput.h atimer.h \
1179 systime.h gtkutil.h msdos.h coding.h $(config_h)
1180 xterm.o: xterm.c xterm.h termhooks.h termopts.h termchar.h window.h buffer.h \
1181 dispextern.h frame.h disptab.h blockinput.h atimer.h systime.h syssignal.h \
1182 keyboard.h emacs-icon.h character.h charset.h ccl.h fontset.h composite.h \
1183 coding.h process.h gtkutil.h font.h $(config_h)
1184 xselect.o: xselect.c process.h dispextern.h frame.h xterm.h blockinput.h \
1185 buffer.h atimer.h systime.h termhooks.h $(config_h)
1186 xrdb.o: xrdb.c $(config_h) epaths.h
1187 xsmfns.o: xsmfns.c $(config_h) systime.h sysselect.h termhooks.h xterm.h \
1188 lisp.h termopts.h
1189 gtkutil.o: gtkutil.c gtkutil.h xterm.h lisp.h frame.h $(config_h) \
1190 blockinput.h window.h atimer.h systime.h termhooks.h keyboard.h \
1191 charset.h coding.h
1192 dbusbind.o: dbusbind.c termhooks.h $(config_h)
1194 hftctl.o: hftctl.c $(config_h)
1195 sound.o: sound.c dispextern.h $(config_h)
1196 atimer.o: atimer.c atimer.h systime.h $(config_h)
1198 /* The files of Lisp proper */
1200 alloc.o: alloc.c process.h frame.h window.h buffer.h puresize.h syssignal.h keyboard.h \
1201 blockinput.h atimer.h systime.h character.h dispextern.h $(config_h) \
1202 $(INTERVAL_SRC)
1203 bytecode.o: bytecode.c buffer.h syntax.h character.h window.h dispextern.h \
1204 frame.h xterm.h $(config_h)
1205 data.o: data.c buffer.h puresize.h character.h syssignal.h keyboard.h frame.h \
1206 termhooks.h $(config_h)
1207 eval.o: eval.c commands.h keyboard.h blockinput.h atimer.h systime.h \
1208 dispextern.h $(config_h)
1209 floatfns.o: floatfns.c $(config_h)
1210 fns.o: fns.c commands.h $(config_h) frame.h buffer.h character.h keyboard.h \
1211 keymap.h frame.h window.h dispextern.h $(INTERVAL_SRC) coding.h md5.h \
1212 blockinput.h atimer.h systime.h xterm.h termhooks.h
1213 print.o: print.c process.h frame.h window.h buffer.h keyboard.h character.h \
1214 $(config_h) dispextern.h termchar.h $(INTERVAL_SRC) msdos.h composite.h \
1215 blockinput.h atimer.h systime.h font.h
1216 lread.o: lread.c commands.h keyboard.h buffer.h epaths.h character.h \
1217 charset.h $(config_h) $(INTERVAL_SRC) termhooks.h coding.h msdos.h
1219 /* Text properties support */
1220 textprop.o: textprop.c buffer.h window.h dispextern.h $(INTERVAL_SRC) \
1221 $(config_h)
1222 intervals.o: intervals.c buffer.h $(INTERVAL_SRC) keyboard.h puresize.h \
1223 keymap.h $(config_h)
1224 composite.o: composite.c buffer.h character.h $(INTERVAL_SRC) $(config_h)
1226 /* System-specific programs to be made.
1227 OTHER_FILES and OBJECTS_MACHINE
1228 select which of these should be compiled. */
1230 #ifdef HAVE_CARBON
1231 buffer.o callint.o cmds.o dispnew.o editfns.o fileio.o frame.o \
1232 fontset.o indent.o insdel.o keyboard.o macros.o minibuf.o msdos.o process.o \
1233 scroll.o sysdep.o term.o terminal.o widget.o window.o xdisp.o xfaces.o xfns.o xmenu.o \
1234 xterm.o xselect.o sound.o: macgui.h
1235 mac.o: mac.c process.h sysselect.h blockinput.h atimer.h systime.h charset.h \
1236 coding.h ccl.h $(config_h)
1237 macfns.o: macfns.c charset.h macterm.h macgui.h frame.h window.h buffer.h \
1238 dispextern.h macgui.h fontset.h $(INTERVAL_SRC) keyboard.h blockinput.h \
1239 atimer.h systime.h epaths.h termhooks.h coding.h $(config_h)
1240 macmenu.o: macmenu.c termhooks.h frame.h window.h dispextern.h macgui.h \
1241 keyboard.h blockinput.h atimer.h systime.h buffer.h macterm.h $(config_h)
1242 macterm.o: blockinput.h atimer.h systime.h syssignal.h macterm.h macgui.h \
1243 frame.h charset.h ccl.h dispextern.h fontset.h termhooks.h termopts.h \
1244 termchar.h disptab.h buffer.h window.h keyboard.h $(INTERVAL_SRC) \
1245 process.h coding.h $(config_h)
1246 macselect.o: blockinput.h atimer.h systime.h macterm.h macgui.h frame.h \
1247 keymap.h $(config_h)
1248 mactoolbox.o: blockinput.h atimer.h systime.h macterm.h macgui.h frame.h \
1249 charset.h coding.h ccl.h dispextern.h fontset.h termhooks.h buffer.h \
1250 window.h keyboard.h $(config_h)
1252 ${emacsapp}Contents/Resources/English.lproj:
1253 mkdir -p $@
1255 ifneq (${emacsapp},${emacsappsrc})
1256 ${emacsapp}Contents/Info.plist: ${emacsappsrc}Contents/Info.plist
1257 cp $< $@
1258 ${emacsapp}Contents/PkgInfo: ${emacsappsrc}Contents/PkgInfo
1259 cp $< $@
1260 ${emacsapp}Contents/Resources/Emacs.icns: ${emacsappsrc}Contents/Resources/Emacs.icns
1261 mkdir -p ${emacsapp}Contents/Resources
1262 cp $< $@
1263 ${emacsapp}Contents/Resources/English.lproj/InfoPlist.strings: ${emacsappsrc}Contents/Resources/English.lproj/InfoPlist.strings
1264 cp $< $@
1265 endif
1267 macosx-bundle: ${emacsapp}Contents/Resources/English.lproj \
1268 ${emacsapp}Contents/Info.plist ${emacsapp}Contents/PkgInfo \
1269 ${emacsapp}Contents/Resources/Emacs.icns \
1270 ${emacsapp}Contents/Resources/English.lproj/InfoPlist.strings
1271 macosx-app: macosx-bundle ${emacsapp}Contents/MacOS/Emacs
1272 ${emacsapp}Contents/MacOS/Emacs: emacs${EXEEXT}
1273 mkdir -p ${emacsapp}Contents/MacOS/;
1274 cd ${emacsapp}Contents/MacOS/; cp ../../../../src/emacs${EXEEXT} Emacs${EXEEXT}
1275 #endif
1277 mostlyclean:
1278 rm -f temacs${EXEEXT} prefix-args${EXEEXT} core *.core \#* *.o libXMenu11.a liblw.a
1279 rm -f ../etc/DOC
1280 rm -f bootstrap-emacs${EXEEXT} emacs-${version}${EXEEXT}
1281 rm -f buildobj.lst
1282 clean: mostlyclean
1283 rm -f emacs-*.*.*${EXEEXT} emacs${EXEEXT}
1284 /* bootstrap-clean is used to clean up just before a bootstrap.
1285 It should remove all files generated during a compilation/bootstrap,
1286 but not things like config.status or TAGS. */
1287 bootstrap-clean: clean
1288 rm -f epaths.h config.h Makefile.c config.stamp stamp-oldxmenu ../etc/DOC-*
1289 if test -f ./.gdbinit; then \
1290 mv ./.gdbinit ./.gdbinit.save; \
1291 if test -f "${srcdir}/.gdbinit"; then rm -f ./.gdbinit.save; \
1292 else mv ./.gdbinit.save ./.gdbinit; fi; \
1294 /**/# This is used in making a distribution.
1295 /**/# Do not use it on development directories!
1296 distclean: bootstrap-clean
1297 rm -f Makefile
1298 maintainer-clean: distclean
1299 @echo "This command is intended for maintainers to use;"
1300 @echo "it deletes files that may require special tools to rebuild."
1301 rm -f TAGS
1302 versionclean:
1303 -rm -f emacs${EXEEXT} emacs-*.*.*${EXEEXT} ../etc/DOC*
1304 extraclean: distclean
1305 -rm -f *~ \#* m/?*~ s/?*~
1307 /* Arrange to make a tags table TAGS-LISP for ../lisp,
1308 plus TAGS for the C files, which includes ../lisp/TAGS by reference. */
1310 ctagsfiles1 = [xyzXYZ]*.[hc]
1311 ctagsfiles2 = [a-wA-W]*.[hc]
1313 TAGS: $(srcdir)/$(ctagsfiles1) $(srcdir)/$(ctagsfiles2)
1314 ../lib-src/etags --include=TAGS-LISP --include=${lwlibdir}/TAGS \
1315 --regex='/[ ]*DEFVAR_[A-Z_ (]+"\([^"]+\)"/' \
1316 $(srcdir)/$(ctagsfiles1) $(srcdir)/$(ctagsfiles2)
1317 frc:
1318 TAGS-LISP: frc
1319 $(MAKE) -f ${lispdir}Makefile TAGS-LISP ETAGS=../lib-src/etags
1321 $(lwlibdir)TAGS:
1322 (cd $(lwlibdir); $(MAKE) -f $(lwlibdir)Makefile tags ETAGS=../lib-src/etags)
1324 tags: TAGS TAGS-LISP $(lwlibdir)TAGS
1325 .PHONY: tags
1328 /* Bootstrapping. */
1329 /* Bootstrapping right is difficult because of the circular dependencies.
1330 Furthermore, we have to deal with the fact that many compilation targets
1331 such as loaddefs.el or *.elc can typically be produced by any old
1332 Emacs executable, so we would like to avoid rebuilding them whenever
1333 we build a new Emacs executable.
1334 To solve the circularity, we use 2 different Emacs executables,
1335 "emacs" is the main target and "bootstrap-emacs" is the one used
1336 to build the *.elc and loaddefs.el files.
1337 To solve the freshness issue, we used to use a third file "witness-emacs"
1338 which was used to witness the fact that there is a bootstrap-emacs
1339 executable, and then have dependencies on witness-emacs rather than
1340 bootstrap-emacs, but that lead to problems in parallel builds (because
1341 witness-emacs needed to be free from dependencies (to avoid rebuilding
1342 it), so it was compiled in parallel, leading typically to having 2
1343 processes dumping bootstrap-emacs at the same time).
1344 So instead, we replace the witness-emacs dependencies by conditional
1345 bootstrap-dependencies (via ${BOOTSTRAPEMACS}). Of course, since we do
1346 not want to rely on GNU Make features, we have to rely on an external
1347 script to do the conditional part of the dependency
1348 (i.e. see the ${SUBDIR} rule ../Makefile.in). */
1350 .SUFFIXES: .elc .el
1352 /* These suffix rules do not allow additional dependencies, sadly, so
1353 instead of adding a $(BOOTSTRAPEMACS) dependency here, we add it
1354 separately below.
1355 With GNU Make, we would just say "%.el : %.elc $(BOOTSTRAPEMACS)" */
1356 .el.elc:
1357 @cd ../lisp; $(MAKE) $(MFLAGS) compile-onefile \
1358 THEFILE=$< EMACS=../src/bootstrap-emacs${EXEEXT}
1360 /* Since the .el.elc rule cannot specify an extra dependency, we do it here. */
1361 ${lisp} ${SOME_MACHINE_LISP}: $(BOOTSTRAPEMACS)
1363 ${lispsource}loaddefs.el: $(BOOTSTRAPEMACS)
1364 cd ../lisp; $(MAKE) $(MFLAGS) autoloads EMACS=../src/bootstrap-emacs${EXEEXT}
1366 /* Dump an Emacs executable named bootstrap-emacs containing the
1367 files from loadup.el in source form. */
1369 bootstrap-emacs${EXEEXT}: temacs${EXEEXT}
1370 cd ../lisp; $(MAKE) $(MFLAGS) update-subdirs
1371 #ifdef CANNOT_DUMP
1372 ln temacs${EXEEXT} bootstrap-emacs${EXEEXT}
1373 #else
1374 $(RUN_TEMACS) --batch --load loadup bootstrap
1375 mv -f emacs${EXEEXT} bootstrap-emacs${EXEEXT}
1376 #endif /* ! defined (CANNOT_DUMP) */
1377 @: Compile some files earlier to speed up further compilation.
1378 cd ../lisp; $(MAKE) $(MFLAGS) compile-first EMACS=../src/bootstrap-emacs${EXEEXT}