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