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