]> code.delx.au - gnu-emacs/blob - src/Makefile.in
some more docs and polish
[gnu-emacs] / src / Makefile.in
1
2 # Makefile for GNU Emacs.
3 # Copyright (C) 1985, 1987, 1988, 1993, 1994, 1995, 1999, 2000, 2001, 2002,
4 # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
5 # Free Software Foundation, Inc.
6
7 # This file is part of GNU Emacs.
8
9 # GNU Emacs is free software: you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation, either version 3 of the License, or
12 # (at your option) any later version.
13
14 # GNU Emacs is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18
19 # You should have received a copy of the GNU General Public License
20 # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
21
22
23 # Note that this file is edited by msdos/sed1v2.inp for MSDOS. That
24 # script may need modifying in sync with changes made here. Try to
25 # avoid shell-ism because the DOS build has to use the DOS shell.
26
27 SHELL = /bin/sh
28
29 # Here are the things that we expect ../configure to edit.
30 # We use $(srcdir) explicitly in dependencies so as not to depend on VPATH.
31 srcdir = @srcdir@
32 abs_builddir = @abs_builddir@
33 VPATH = $(srcdir)
34 CC = @CC@
35 CFLAGS = @CFLAGS@
36 CPPFLAGS = @CPPFLAGS@
37 LDFLAGS = @LDFLAGS@
38 EXEEXT = @EXEEXT@
39 version = @version@
40 # Substitute an assignment for the MAKE variable, because
41 # BSD doesn't have it as a default.
42 @SET_MAKE@
43 # Don't use LIBS. configure puts stuff in it that either shouldn't be
44 # linked with Emacs or is duplicated by the other stuff below.
45 # LIBS = @LIBS@
46 LIBOBJS = @LIBOBJS@
47
48 lispsource = ${srcdir}/../lisp/
49 libsrc = ../lib-src/
50 etc = ../etc/
51 oldXMenudir = ../oldXMenu/
52 lwlibdir = ../lwlib/
53 lispdir = ../lisp/
54
55 # Configuration files for .o files to depend on.
56 M_FILE = ${srcdir}/@machfile@
57 S_FILE = ${srcdir}/@opsysfile@
58 config_h = config.h $(M_FILE) $(S_FILE)
59
60 bootstrap_exe = ${abs_builddir}/bootstrap-emacs${EXEEXT}
61
62 ## ns-app if HAVE_NS, else empty.
63 OTHER_FILES = @OTHER_FILES@
64
65 CRT_DIR=@CRT_DIR@
66
67 ## Machine-specific CFLAGS.
68 C_SWITCH_MACHINE=@C_SWITCH_MACHINE@
69 ## System-specific CFLAGS.
70 C_SWITCH_SYSTEM=@C_SWITCH_SYSTEM@
71
72 ## Currently only set if NS_IMPL_GNUSTEP.
73 ## C_SWITCH_X_SITE may override this.
74 C_SWITCH_X_SYSTEM=@C_SWITCH_X_SYSTEM@
75
76 ## Define C_SWITCH_X_SITE to contain any special flags your compiler
77 ## may need to deal with X Windows. For instance, if you've defined
78 ## HAVE_X_WINDOWS and your X include files aren't in a place that your
79 ## compiler can find on its own, you might want to add "-I/..." or
80 ## something similar. This is normally set by configure.
81 ## This is used before C_SWITCH_X_SYSTEM and may override it.
82 C_SWITCH_X_SITE=@C_SWITCH_X_SITE@
83
84 ## Define LD_SWITCH_X_SITE to contain any special flags your loader
85 ## may need to deal with X Windows. For instance, if your X libraries
86 ## aren't in a place that your loader can find on its own, you might
87 ## want to add "-L/..." or something similar. Only used if
88 ## HAVE_X_WINDOWS.
89 ## FIXME? configure sets a value for this, but it has never been
90 ## substituted in this or any other Makefile. Cf C_SWITCH_X_SITE.
91 LD_SWITCH_X_SITE=
92
93 ## Next two must come before LD_SWITCH_SYSTEM.
94 ## If needed, a -R option that says where to find X windows at run time.
95 LD_SWITCH_X_SITE_AUX=@LD_SWITCH_X_SITE_AUX@
96 ## As above, but using -rpath instead.
97 LD_SWITCH_X_SITE_AUX_RPATH=@LD_SWITCH_X_SITE_AUX_RPATH@
98
99 ## System-specific LDFLAGS.
100 LD_SWITCH_SYSTEM=@LD_SWITCH_SYSTEM@
101
102 ## This holds any special options for linking temacs only (ie, not
103 ## used by configure). Not used elsewhere because it sometimes
104 ## contains options that have to do with using Emacs's crt0,
105 ## which are only good with temacs.
106 LD_SWITCH_SYSTEM_TEMACS=@LD_SWITCH_SYSTEM_TEMACS@
107
108 ## Flags to pass to ld only for temacs.
109 TEMACS_LDFLAGS = $(LD_SWITCH_SYSTEM) $(LD_SWITCH_SYSTEM_TEMACS)
110
111 ## $LDFLAGS, or empty if NS_IMPL_GNUSTEP (for some reason).
112 TEMACS_LDFLAGS2 = @TEMACS_LDFLAGS2@
113
114 ## Some systems define this to request special libraries.
115 LIBS_SYSTEM=@LIBS_SYSTEM@
116
117 ## Where to find libgcc.a, if using gcc and necessary.
118 LIB_GCC=@LIB_GCC@
119
120 LD=@LINKER@
121
122 ## May use $CRT_DIR.
123 LIB_STANDARD=@LIB_STANDARD@
124
125 ## -lm, or empty.
126 LIB_MATH=@LIB_MATH@
127
128 LIBTIFF=@LIBTIFF@
129 LIBJPEG=@LIBJPEG@
130 LIBPNG=@LIBPNG@
131 LIBGIF=@LIBGIF@
132 LIBXPM=@LIBXPM@
133 XFT_LIBS=@XFT_LIBS@
134 LIBX_EXTRA=$(LIBTIFF) $(LIBJPEG) $(LIBPNG) $(LIBGIF) $(LIBXPM) -lX11 $(XFT_LIBS)
135
136 FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@
137 FONTCONFIG_LIBS = @FONTCONFIG_LIBS@
138 FREETYPE_CFLAGS = @FREETYPE_CFLAGS@
139 FREETYPE_LIBS = @FREETYPE_LIBS@
140 LIBOTF_CFLAGS = @LIBOTF_CFLAGS@
141 LIBOTF_LIBS = @LIBOTF_LIBS@
142 M17N_FLT_CFLAGS = @M17N_FLT_CFLAGS@
143 M17N_FLT_LIBS = @M17N_FLT_LIBS@
144
145 DBUS_CFLAGS = @DBUS_CFLAGS@
146 DBUS_LIBS = @DBUS_LIBS@
147 DBUS_OBJ = @DBUS_OBJ@
148
149 GCONF_CFLAGS = @GCONF_CFLAGS@
150 GCONF_LIBS = @GCONF_LIBS@
151
152 GTK_OBJ=@GTK_OBJ@
153
154 ## -ltermcap, or -lncurses, or -lcurses, or "".
155 LIBS_TERMCAP=@LIBS_TERMCAP@
156 ## terminfo.o if TERMINFO, else tparam.o.
157 TERMCAP_OBJ=@TERMCAP_OBJ@
158
159 LIBXMU=@LIBXMU@
160
161 LIBXSM=@LIBXSM@
162
163 LIBXTR6=@LIBXTR6@
164
165 ## $(LIBXMU) -lXt $(LIBXTR6) -lXext if USE_X_TOOLKIT, else $(LIBXSM).
166 ## Only used if HAVE_X_WINDOWS.
167 LIBXT_OTHER=@LIBXT_OTHER@
168
169 ## If !HAVE_X11 || USE_GTK, empty.
170 ## Else if USE_X_TOOLKIT really-lwlib, else really-oldxmenu.
171 OLDXMENU_TARGET=@OLDXMENU_TARGET@
172
173 ## If !HAVE_X11 || USE_GTK, empty.
174 ## Else if USE_X_TOOLKIT, ${lwlibdir}liblw.a.
175 ## Else ${oldXMenudir}libXMenu11.a.
176 ## (Actually, rather than being empty, it is set to "nothing".
177 ## It is never actually used for anything in this case.
178 ## This is done because there is a rule with target $(OLDXMENU) below,
179 ## and I think it might be a syntax error with some makes to have
180 ## an empty target, even if the associated rule is never run.
181 ## http://lists.gnu.org/archive/html/help-make/2010-05/msg00058.html
182 ## The alternative would be to put that rule in a makefile fragment.)
183 OLDXMENU=@OLDXMENU@
184
185 ## If HAVE_X11 && !USE_GTK, ${OLDXMENU} ../src/${OLDXMENU}; else empty.
186 ## We use stamp-xmenu with these two deps to both ensure that lwlib
187 ## gets remade based on its dependencies in its own makefile,
188 ## and remake temacs if lwlib gets changed by this.
189 OLDXMENU_DEPS=@OLDXMENU_DEPS@
190
191 ## If !HAVE_X11 && HAVE_X_WINDOWS, -lXMenu (this case no longer possible).
192 ## Else if !HAVE_X11 || USE_GTK, empty.
193 ## Else $(OLDXMENU).
194 LIBXMENU=@LIBXMENU@
195
196 XMENU_OBJ=@XMENU_OBJ@
197 XOBJ=@XOBJ@
198
199 TOOLKIT_LIBW=@TOOLKIT_LIBW@
200
201 ## Only used if HAVE_X11, in LIBX_OTHER.
202 LIBXT=$(TOOLKIT_LIBW) $(LIBXT_OTHER)
203
204 ## If HAVE_X11, $(LIBXT) $(LIBX_EXTRA), else empty.
205 LIBX_OTHER=@LIBX_OTHER@
206
207 ## LIBXMENU is nil if !HAVE_X_WINDOWS.
208 ## LD_SWITCH_X_SITE should not be used if not using X, but nothing
209 ## sets it at present, and if something ever does, it should be
210 ## configure, which should set it to nil in non-X builds.
211 LIBX_BASE=$(LIBXMENU) $(LD_SWITCH_X_SITE)
212
213 LIBSOUND= @LIBSOUND@
214 CFLAGS_SOUND= @CFLAGS_SOUND@
215
216 RSVG_LIBS= @RSVG_LIBS@
217 RSVG_CFLAGS= @RSVG_CFLAGS@
218
219 IMAGEMAGICK_LIBS= @IMAGEMAGICK_LIBS@
220 IMAGEMAGICK_CFLAGS= @IMAGEMAGICK_CFLAGS@
221
222
223 ## widget.o if USE_X_TOOLKIT, otherwise empty.
224 WIDGET_OBJ=@WIDGET_OBJ@
225
226 ## sheap.o if CYGWIN, otherwise empty.
227 CYGWIN_OBJ=@CYGWIN_OBJ@
228
229 ## dosfns.o msdos.o w16select.o if MSDOS.
230 MSDOS_OBJ =
231 ## w16select.o termcap.o if MSDOS && HAVE_X_WINDOWS.
232 MSDOS_X_OBJ =
233 MSDOS_SUPPORT_REAL = ${lispsource}ls-lisp.elc ${lispsource}disp-table.elc \
234 ${lispsource}dos-fns.elc ${lispsource}dos-w32.elc ${lispsource}dos-vars.elc \
235 ${lispsource}term/internal.elc ${lispsource}term/pc-win.elc
236 ## $MSDOS_SUPPORT_REAL if MSDOS.
237 MSDOS_SUPPORT =
238
239 ns_appdir=@ns_appdir@
240 ns_appbindir=@ns_appbindir@
241 ns_appsrc=@ns_appsrc@
242 NS_OBJ=@NS_OBJ@
243 NS_SUPPORT=@NS_SUPPORT@
244 ## Only set if NS_IMPL_GNUSTEP.
245 GNU_OBJC_CFLAGS=@GNU_OBJC_CFLAGS@
246
247 ## Empty if !HAVE_X_WINDOWS
248 ## xfont.o ftfont.o xftfont.o ftxfont.o if HAVE_XFT
249 ## xfont.o ftfont.o ftxfont.o if HAVE_FREETYPE
250 ## else xfont.o
251 FONT_OBJ=@FONT_OBJ@
252
253 ## Used if HAVE_MOUSE.
254 REAL_MOUSE_SUPPORT=${lispsource}mouse.elc ${lispsource}select.elc \
255 ${lispsource}scroll-bar.elc
256 ## Used if HAVE_GPM && !HAVE_MOUSE
257 GPM_MOUSE_SUPPORT=${lispsource}mouse.elc
258 LIBGPM = @LIBGPM@
259 ## Either of the two preceding options, or empty.
260 MOUSE_SUPPORT=@MOUSE_SUPPORT@
261
262 ## ${lispsource}tooltip.elc if HAVE_WINDOW_SYSTEM, else empty.
263 TOOLTIP_SUPPORT=@TOOLTIP_SUPPORT@
264
265 BASE_WINDOW_SUPPORT=${lispsource}fringe.elc ${lispsource}image.elc \
266 ${lispsource}international/fontset.elc ${lispsource}dnd.elc \
267 ${lispsource}tool-bar.elc ${lispsource}mwheel.elc
268
269 X_WINDOW_SUPPORT=${lispsource}x-dnd.elc ${lispsource}term/common-win.elc \
270 ${lispsource}term/x-win.elc ${lispsource}dynamic-setting.elc
271
272 ## If HAVE_X_WINDOWS, both the above
273 ## else if HAVE_WINDOW_SYSTEM (ie, HAVE_NS) just the former; else empty.
274 WINDOW_SUPPORT=@WINDOW_SUPPORT@
275
276 ## -lresolv, or empty.
277 LIBRESOLV = @LIBRESOLV@
278
279 LIBSELINUX_LIBS = @LIBSELINUX_LIBS@
280
281 INTERVALS_H = dispextern.h intervals.h composite.h
282
283 GETLOADAVG_LIBS = @GETLOADAVG_LIBS@
284
285 RUN_TEMACS = `/bin/pwd`/temacs
286
287 START_FILES = @START_FILES@
288
289 UNEXEC_OBJ = @UNEXEC_OBJ@
290
291 CANNOT_DUMP=@cannot_dump@
292
293 DEPDIR=deps
294 ## -MMD -MF ${DEPDIR}/$*.d if AUTO_DEPEND; else empty.
295 DEPFLAGS=@DEPFLAGS@
296 ## test -d ${DEPDIR} || mkdir ${DEPDIR} (if AUTO_DEPEND); else ':'.
297 MKDEPDIR=@MKDEPDIR@
298
299 ## DO NOT use -R. There is a special hack described in lastfile.c
300 ## which is used instead. Some initialized data areas are modified
301 ## at initial startup, then labeled as part of the text area when
302 ## Emacs is dumped for the first time, and never changed again.
303 ##
304 ## -Demacs is needed to make some files produce the correct version
305 ## for use in Emacs.
306 ##
307 ## -DHAVE_CONFIG_H is needed for some other files to take advantage of
308 ## the information in `config.h'.
309 ##
310 ## C_SWITCH_X_SITE must come before C_SWITCH_X_SYSTEM
311 ## since it may have -I options that should override those.
312 ##
313 ## FIXME? MYCPPFLAGS only referenced in etc/DEBUG.
314 ALL_CFLAGS=-Demacs -DHAVE_CONFIG_H $(MYCPPFLAGS) -I. -I${srcdir} \
315 ${C_SWITCH_MACHINE} ${C_SWITCH_SYSTEM} ${C_SWITCH_X_SITE} \
316 ${C_SWITCH_X_SYSTEM} ${CFLAGS_SOUND} ${RSVG_CFLAGS} ${IMAGEMAGICK_CFLAGS} ${DBUS_CFLAGS} \
317 ${GCONF_CFLAGS} ${CFLAGS} ${FREETYPE_CFLAGS} ${FONTCONFIG_CFLAGS} \
318 ${LIBOTF_CFLAGS} ${M17N_FLT_CFLAGS} ${DEPFLAGS}
319 ALL_OBJC_CFLAGS=$(ALL_CFLAGS) $(GNU_OBJC_CFLAGS)
320
321 .SUFFIXES: .m
322 .c.o:
323 @$(MKDEPDIR)
324 $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $<
325 .m.o:
326 @$(MKDEPDIR)
327 $(CC) -c $(CPPFLAGS) $(ALL_OBJC_CFLAGS) $<
328
329
330 ## lastfile must follow all files whose initialized data areas should
331 ## be dumped as pure by dump-emacs.
332 obj= dispnew.o frame.o scroll.o xdisp.o menu.o $(XMENU_OBJ) window.o \
333 charset.o coding.o category.o ccl.o character.o chartab.o bidi.o \
334 cm.o term.o terminal.o xfaces.o $(XOBJ) $(GTK_OBJ) $(DBUS_OBJ) \
335 emacs.o keyboard.o macros.o keymap.o sysdep.o \
336 buffer.o filelock.o insdel.o marker.o \
337 minibuf.o fileio.o dired.o filemode.o \
338 cmds.o casetab.o casefiddle.o indent.o search.o regex.o undo.o \
339 alloc.o data.o doc.o editfns.o callint.o \
340 eval.o floatfns.o fns.o font.o print.o lread.o \
341 syntax.o $(UNEXEC_OBJ) bytecode.o \
342 process.o callproc.o \
343 region-cache.o sound.o atimer.o \
344 doprnt.o strftime.o intervals.o textprop.o composite.o md5.o \
345 $(MSDOS_OBJ) $(MSDOS_X_OBJ) $(NS_OBJ) $(CYGWIN_OBJ) $(FONT_OBJ)
346
347 ## Object files used on some machine or other.
348 ## These go in the DOC file on all machines in case they are needed.
349 SOME_MACHINE_OBJECTS = dosfns.o msdos.o \
350 xterm.o xfns.o xmenu.o xselect.o xrdb.o xsmfns.o fringe.o image.o \
351 fontset.o dbusbind.o \
352 nsterm.o nsfns.o nsmenu.o nsselect.o nsimage.o nsfont.o \
353 w32.o w32console.o w32fns.o w32heap.o w32inevt.o \
354 w32menu.o w32proc.o w32reg.o w32select.o w32term.o w32xfns.o $(FONT_OBJ)
355
356 ## gmalloc.o if !SYSTEM_MALLOC && !DOUG_LEA_MALLOC, else empty.
357 GMALLOC_OBJ=@GMALLOC_OBJ@
358
359 ## vm-limit.o if !SYSTEM_MALLOC, else empty.
360 VMLIMIT_OBJ=@VMLIMIT_OBJ@
361
362 ## ralloc.o if !SYSTEM_MALLOC && REL_ALLOC, else empty.
363 RALLOC_OBJ=@RALLOC_OBJ@
364
365 ## Empty on Cygwin, lastfile.o elsewhere.
366 PRE_ALLOC_OBJ=@PRE_ALLOC_OBJ@
367 ## lastfile.o on Cygwin, empty elsewhere.
368 POST_ALLOC_OBJ=@POST_ALLOC_OBJ@
369
370 ## List of object files that make-docfile should not be told about.
371 otherobj= $(TERMCAP_OBJ) $(PRE_ALLOC_OBJ) $(GMALLOC_OBJ) $(RALLOC_OBJ) \
372 $(POST_ALLOC_OBJ) $(VMLIMIT_OBJ) $(WIDGET_OBJ) $(LIBOBJS)
373
374 ## This is the platform-specific list of Lisp files loaded into the
375 ## dumped Emacs. It is arranged like this because it is easier to generate
376 ## it semi-mechanically from loadup.el this way.
377 ##
378 ## Note that this list should not include lisp files which might not
379 ## be present, like site-load.el and site-init.el; this makefile
380 ## expects them all to be either present or buildable.
381 ##
382 ## Files which are loaded unconditionally (i.e., on all platforms) should
383 ## also be in shortlisp. Files which are loaded conditionally (i.e., only
384 ## on some platforms) should instead be in SOME_MACHINE_LISP.
385 ##
386 ## Place loaddefs.el first, so it gets generated first, since it is on
387 ## the critical path (relevant in parallel compilations).
388 lisp= \
389 ${lispsource}loaddefs.el \
390 ${lispsource}abbrev.elc \
391 ${lispsource}buff-menu.elc \
392 ${lispsource}button.elc \
393 ${lispsource}emacs-lisp/byte-run.elc \
394 ${lispsource}composite.elc \
395 ${lispsource}cus-face.elc \
396 ${lispsource}cus-start.elc \
397 ${lispsource}custom.elc \
398 ${lispsource}emacs-lisp/backquote.elc \
399 ${lispsource}emacs-lisp/lisp-mode.elc \
400 ${lispsource}emacs-lisp/lisp.elc \
401 ${lispsource}env.elc \
402 ${lispsource}faces.elc \
403 ${lispsource}files.elc \
404 ${lispsource}format.elc \
405 ${lispsource}facemenu.elc \
406 ${MOUSE_SUPPORT} \
407 ${lispsource}emacs-lisp/float-sup.elc \
408 ${lispsource}frame.elc \
409 ${lispsource}help.elc \
410 ${lispsource}indent.elc \
411 ${lispsource}isearch.elc \
412 ${lispsource}rfn-eshadow.elc \
413 ${lispsource}loadup.el \
414 ${lispsource}bindings.elc \
415 ${lispsource}emacs-lisp/map-ynp.elc \
416 ${lispsource}menu-bar.elc \
417 ${lispsource}international/mule.elc \
418 ${lispsource}international/mule-conf.elc \
419 ${lispsource}international/mule-cmds.elc \
420 ${lispsource}international/characters.elc \
421 ${lispsource}international/charprop.el \
422 ${lispsource}case-table.elc \
423 ${lispsource}language/chinese.elc \
424 ${lispsource}language/cyrillic.elc \
425 ${lispsource}language/indian.elc \
426 ${lispsource}language/sinhala.el \
427 ${lispsource}language/english.el \
428 ${lispsource}language/ethiopic.elc \
429 ${lispsource}language/european.elc \
430 ${lispsource}language/czech.el \
431 ${lispsource}language/slovak.el \
432 ${lispsource}language/romanian.el \
433 ${lispsource}language/greek.el \
434 ${lispsource}language/hebrew.el \
435 ${lispsource}language/japanese.el \
436 ${lispsource}language/korean.el \
437 ${lispsource}language/lao.el \
438 ${lispsource}language/cham.el \
439 ${lispsource}language/tai-viet.el \
440 ${lispsource}language/thai.el \
441 ${lispsource}language/tibetan.elc \
442 ${lispsource}language/vietnamese.elc \
443 ${lispsource}language/misc-lang.el \
444 ${lispsource}language/utf-8-lang.el \
445 ${lispsource}language/georgian.el \
446 ${lispsource}language/khmer.el \
447 ${lispsource}language/burmese.el \
448 ${lispsource}paths.el \
449 ${lispsource}register.elc \
450 ${lispsource}replace.elc \
451 ${lispsource}simple.elc \
452 ${lispsource}minibuffer.elc \
453 ${lispsource}startup.elc \
454 ${lispsource}subr.elc \
455 ${lispsource}term/tty-colors.elc \
456 ${lispsource}font-core.elc \
457 ${lispsource}emacs-lisp/syntax.elc \
458 ${lispsource}font-lock.elc \
459 ${lispsource}jit-lock.elc \
460 ${lispsource}textmodes/fill.elc \
461 ${lispsource}textmodes/page.elc \
462 ${lispsource}textmodes/paragraphs.elc \
463 ${lispsource}textmodes/text-mode.elc \
464 ${lispsource}emacs-lisp/timer.elc \
465 ${lispsource}jka-cmpr-hook.elc \
466 ${lispsource}vc/vc-hooks.elc \
467 ${lispsource}vc/ediff-hook.elc \
468 ${lispsource}epa-hook.elc \
469 ${TOOLTIP_SUPPORT} \
470 ${MSDOS_SUPPORT} \
471 ${WINDOW_SUPPORT} \
472 ${NS_SUPPORT} \
473 ${lispsource}widget.elc \
474 ${lispsource}window.elc \
475 ${lispsource}version.el
476
477 ## List of relative names for those files from $lisp that are loaded
478 ## unconditionally (i.e. on all platforms). Files from $lisp that
479 ## are only loaded on some platforms should instead be placed in
480 ## SOME_MACHINE_LISP. The only reason this variable exists is to prevent
481 ## the make-docfile command-line getting too long for some systems.
482 shortlisp= \
483 ../lisp/loaddefs.el \
484 ../lisp/abbrev.elc \
485 ../lisp/buff-menu.elc \
486 ../lisp/button.elc \
487 ../lisp/emacs-lisp/byte-run.elc \
488 ../lisp/composite.elc \
489 ../lisp/cus-face.elc \
490 ../lisp/cus-start.elc \
491 ../lisp/custom.elc \
492 ../lisp/emacs-lisp/backquote.elc \
493 ../lisp/emacs-lisp/lisp-mode.elc \
494 ../lisp/emacs-lisp/lisp.elc \
495 ../lisp/facemenu.elc \
496 ../lisp/faces.elc \
497 ../lisp/files.elc \
498 ../lisp/emacs-lisp/float-sup.elc \
499 ../lisp/format.elc \
500 ../lisp/frame.elc \
501 ../lisp/help.elc \
502 ../lisp/indent.elc \
503 ../lisp/isearch.elc \
504 ../lisp/rfn-eshadow.elc \
505 ../lisp/loadup.el \
506 ../lisp/bindings.elc \
507 ../lisp/emacs-lisp/map-ynp.elc \
508 ../lisp/env.elc \
509 ../lisp/international/mule.elc \
510 ../lisp/international/mule-conf.elc \
511 ../lisp/international/mule-cmds.elc \
512 ../lisp/international/characters.elc \
513 ../lisp/case-table.elc \
514 ../lisp/language/chinese.elc \
515 ../lisp/language/cyrillic.elc \
516 ../lisp/language/indian.elc \
517 ../lisp/language/sinhala.el \
518 ../lisp/language/english.el \
519 ../lisp/language/ethiopic.elc \
520 ../lisp/language/european.elc \
521 ../lisp/language/czech.el \
522 ../lisp/language/slovak.el \
523 ../lisp/language/romanian.el \
524 ../lisp/language/greek.el \
525 ../lisp/language/hebrew.el \
526 ../lisp/language/japanese.el \
527 ../lisp/language/korean.el \
528 ../lisp/language/lao.el \
529 ../lisp/language/cham.el \
530 ../lisp/language/tai-viet.el \
531 ../lisp/language/thai.el \
532 ../lisp/language/tibetan.elc \
533 ../lisp/language/vietnamese.elc \
534 ../lisp/language/misc-lang.el \
535 ../lisp/language/utf-8-lang.el \
536 ../lisp/language/georgian.el \
537 ../lisp/language/khmer.el \
538 ../lisp/language/burmese.el \
539 ../lisp/menu-bar.elc \
540 ../lisp/paths.el \
541 ../lisp/register.elc \
542 ../lisp/replace.elc \
543 ../lisp/simple.elc \
544 ../lisp/minibuffer.elc \
545 ../lisp/startup.elc \
546 ../lisp/subr.elc \
547 ../lisp/term/tty-colors.elc \
548 ../lisp/font-core.elc \
549 ../lisp/emacs-lisp/syntax.elc \
550 ../lisp/font-lock.elc \
551 ../lisp/jit-lock.elc \
552 ../lisp/textmodes/fill.elc \
553 ../lisp/textmodes/page.elc \
554 ../lisp/textmodes/paragraphs.elc \
555 ../lisp/textmodes/text-mode.elc \
556 ../lisp/emacs-lisp/timer.elc \
557 ../lisp/vc/vc-hooks.elc \
558 ../lisp/vc/ediff-hook.elc \
559 ../lisp/jka-cmpr-hook.elc \
560 ../lisp/epa-hook.elc \
561 ../lisp/widget.elc \
562 ../lisp/window.elc \
563 ../lisp/version.el
564
565 ## Like $shortlisp, but includes only those files from $lisp that are loaded
566 ## conditionally (i.e., only on some platforms).
567 SOME_MACHINE_LISP = ../lisp/mouse.elc \
568 ../lisp/select.elc ../lisp/scroll-bar.elc \
569 ../lisp/ls-lisp.elc ../lisp/dos-fns.elc \
570 ../lisp/w32-fns.elc ../lisp/dos-w32.elc \
571 ../lisp/disp-table.elc ../lisp/dos-vars.elc \
572 ../lisp/tooltip.elc ../lisp/image.elc \
573 ../lisp/fringe.elc ../lisp/dnd.elc \
574 ../lisp/mwheel.elc ../lisp/tool-bar.elc \
575 ../lisp/x-dnd.elc ../lisp/dynamic-setting.elc \
576 ../lisp/international/ccl.elc \
577 ../lisp/international/fontset.elc \
578 ../lisp/mouse.elc \
579 ../lisp/term/common-win.elc \
580 ../lisp/term/x-win.elc \
581 ../lisp/term/pc-win.elc ../lisp/term/internal.elc \
582 ../lisp/term/ns-win.elc ../lisp/term/w32-win.elc \
583 ../lisp/emacs-lisp/easymenu.elc
584
585 ## Construct full set of libraries to be linked.
586 ## Note that SunOS needs -lm to come before -lc; otherwise, you get
587 ## duplicated symbols. If the standard libraries were compiled
588 ## with GCC, we might need LIB_GCC again after them.
589 LIBES = $(LIBS) $(LIBX_BASE) $(LIBX_OTHER) $(LIBSOUND) \
590 $(RSVG_LIBS) ${IMAGEMAGICK_LIBS} $(DBUS_LIBS) $(LIBGPM) $(LIBRESOLV) $(LIBS_SYSTEM) \
591 $(LIBS_TERMCAP) $(GETLOADAVG_LIBS) ${GCONF_LIBS} ${LIBSELINUX_LIBS} \
592 $(FREETYPE_LIBS) $(FONTCONFIG_LIBS) $(LIBOTF_LIBS) $(M17N_FLT_LIBS) \
593 $(LIB_GCC) $(LIB_MATH) $(LIB_STANDARD) $(LIB_GCC)
594
595 all: emacs${EXEEXT} $(OTHER_FILES)
596
597 ## Does anyone ever pay attention to the load-path-shadows output here?
598 ## The dumped Emacs is as functional and more efficient than
599 ## bootstrap-emacs, so we replace the latter with the former.
600 emacs${EXEEXT}: temacs${EXEEXT} ${etc}DOC ${lisp}
601 if test "${CANNOT_DUMP}" = "yes"; then \
602 ln -f temacs${EXEEXT} emacs${EXEEXT}; \
603 EMACSLOADPATH=${lispsource} ./emacs -q -batch \
604 -f list-load-path-shadows || true; \
605 else \
606 LC_ALL=C $(RUN_TEMACS) -batch -l loadup dump || exit 1; \
607 ln -f emacs${EXEEXT} bootstrap-emacs${EXEEXT}; \
608 ./emacs -q -batch -f list-load-path-shadows || true; \
609 fi
610
611 ## We run make-docfile twice because the command line may get too long
612 ## on some systems.
613 ## ${SOME_MACHINE_OBJECTS} comes before ${obj} because some files may
614 ## or may not be included in ${obj}, but they are always included in
615 ## ${SOME_MACHINE_OBJECTS}. Since a file is processed when it is mentioned
616 ## for the first time, this prevents any variation between configurations
617 ## in the contents of the DOC file.
618 ## Likewise for ${SOME_MACHINE_LISP}.
619 ## Most of this Makefile refers to Lisp files via ${lispsource}, so
620 ## we also use ${lisp} rather than ${shortlisp} for the dependency since
621 ## the Makefile uses string equality to decide when we talk about identical
622 ## files. Apparently we pass ${shortlisp} rather than ${lisp} to make-docfile
623 ## only in order to reduce the command line length. --Stef
624 ${etc}DOC: ${libsrc}make-docfile${EXEEXT} ${obj} ${lisp} ${SOME_MACHINE_LISP}
625 -rm -f ${etc}DOC
626 ${libsrc}make-docfile -d ${srcdir} ${SOME_MACHINE_OBJECTS} ${obj} > ${etc}DOC
627 ${libsrc}make-docfile -a ${etc}DOC -d ${srcdir} ${SOME_MACHINE_LISP} ${shortlisp}
628
629 ${libsrc}make-docfile${EXEEXT}:
630 cd ${libsrc}; ${MAKE} ${MFLAGS} make-docfile${EXEEXT}
631
632 buildobj.h: Makefile
633 echo "#define BUILDOBJ \"${obj} ${otherobj} " "\"" > buildobj.h
634
635
636 ## We cannot define variables for PRE_EDIT and POST_EDIT.
637 ## If !ORDINARY_LINK && !LINKER && GCC, they add a
638 ## `./prefix-args -Xlinker ... ` wrapper, otherwise they are empty.
639 ## One alternative to this approach would be to always call prefix-args,
640 ## and have it DTRT in all cases, by testing the above defines.
641 temacs${EXEEXT}: $(START_FILES) stamp-oldxmenu ${obj} ${otherobj} prefix-args${EXEEXT}
642 $(LD) @PRE_EDIT_LDFLAGS@ ${TEMACS_LDFLAGS} @POST_EDIT_LDFLAGS@ \
643 ${TEMACS_LDFLAGS2} \
644 -o temacs ${START_FILES} ${obj} ${otherobj} ${LIBES}
645
646 prefix-args${EXEEXT}: prefix-args.o $(config_h)
647 $(CC) $(LDFLAGS) prefix-args.o -o prefix-args
648
649
650 ## The following oldxmenu-related rules are only (possibly) used if
651 ## HAVE_X11 && !USE_GTK, but there is no harm in always defining them
652 ## (provided we take a little care that OLDXMENU is never empty).
653 really-lwlib:
654 cd ${lwlibdir}; ${MAKE} ${MFLAGS} \
655 CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}'
656 @true # make -t should not create really-lwlib.
657 .PHONY: really-lwlib
658
659 really-oldXMenu:
660 cd ${oldXMenudir}; ${MAKE} ${MFLAGS} \
661 CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}'
662 @true # make -t should not create really-oldXMenu.
663 .PHONY: really-oldXMenu
664
665 ## We do not really need this when OLDXMENU_DEPS is empty, but as
666 ## things stand we need something to satisfy the temacs dependency.
667 stamp-oldxmenu: ${OLDXMENU_DEPS}
668 touch stamp-oldxmenu
669
670 ## Supply an ordering for parallel make.
671 ../src/$(OLDXMENU): ${OLDXMENU}
672
673 $(OLDXMENU): $(OLDXMENU_TARGET)
674
675 ../config.status:: epaths.in
676 @echo "The file epaths.h needs to be set up from epaths.in."
677 @echo "Please run the `configure' script again."
678 exit 1
679
680 ../config.status:: config.in
681 @echo "The file config.h needs to be set up from config.in."
682 @echo "Please run the `configure' script again."
683 exit 1
684
685 ecrt0.o: ecrt0.c $(config_h)
686 @$(MKDEPDIR)
687 $(CC) -c $(ALL_CFLAGS) ${srcdir}/ecrt0.c
688 doc.o: buildobj.h
689
690
691 ## If HAVE_NS, some ns-specific rules (for OTHER_FILES) are inserted here.
692 @ns_frag@
693
694
695 mostlyclean:
696 rm -f temacs${EXEEXT} prefix-args${EXEEXT} core *.core \#* *.o libXMenu11.a liblw.a
697 rm -f ../etc/DOC
698 rm -f bootstrap-emacs${EXEEXT} emacs-${version}${EXEEXT}
699 rm -f buildobj.h
700 clean: mostlyclean
701 rm -f emacs-*.*.*${EXEEXT} emacs${EXEEXT}
702 -rm -rf ${DEPDIR}
703 test "X${ns_appdir}" = "X" || rm -rf ${ns_appdir}
704
705 ## bootstrap-clean is used to clean up just before a bootstrap.
706 ## It should remove all files generated during a compilation/bootstrap,
707 ## but not things like config.status or TAGS.
708 bootstrap-clean: clean
709 rm -f epaths.h config.h config.stamp stamp-oldxmenu ../etc/DOC-*
710 if test -f ./.gdbinit; then \
711 mv ./.gdbinit ./.gdbinit.save; \
712 if test -f "${srcdir}/.gdbinit"; then rm -f ./.gdbinit.save; \
713 else mv ./.gdbinit.save ./.gdbinit; fi; \
714 fi
715 ## This is used in making a distribution.
716 ## Do not use it on development directories!
717 distclean: bootstrap-clean
718 rm -f Makefile
719 maintainer-clean: distclean
720 @echo "This command is intended for maintainers to use;"
721 @echo "it deletes files that may require special tools to rebuild."
722 rm -f TAGS
723 versionclean:
724 -rm -f emacs${EXEEXT} emacs-*.*.*${EXEEXT} ../etc/DOC*
725 extraclean: distclean
726 -rm -f *~ \#* m/?*~ s/?*~
727
728 ## Arrange to make a tags table TAGS-LISP for ../lisp,
729 ## plus TAGS for the C files, which includes ../lisp/TAGS by reference.
730
731 ctagsfiles1 = [xyzXYZ]*.[hcm]
732 ctagsfiles2 = [a-wA-W]*.[hcm]
733
734 TAGS: $(srcdir)/$(ctagsfiles1) $(srcdir)/$(ctagsfiles2)
735 ../lib-src/etags --include=TAGS-LISP --include=${lwlibdir}/TAGS \
736 --regex='/[ ]*DEFVAR_[A-Z_ (]+"\([^"]+\)"/' \
737 $(srcdir)/$(ctagsfiles1) $(srcdir)/$(ctagsfiles2)
738 frc:
739 TAGS-LISP: frc
740 $(MAKE) -f ${lispdir}Makefile TAGS-LISP ETAGS=../lib-src/etags
741
742 $(lwlibdir)TAGS:
743 (cd $(lwlibdir); $(MAKE) -f $(lwlibdir)Makefile tags ETAGS=../lib-src/etags)
744
745 tags: TAGS TAGS-LISP $(lwlibdir)TAGS
746 .PHONY: tags
747
748
749 ### Bootstrapping.
750
751 ## Bootstrapping right is difficult because of the circular dependencies.
752 ## Furthermore, we have to deal with the fact that many compilation targets
753 ## such as loaddefs.el or *.elc can typically be produced by any old
754 ## Emacs executable, so we would like to avoid rebuilding them whenever
755 ## we build a new Emacs executable.
756 ## To solve the circularity, we use 2 different Emacs executables,
757 ## "emacs" is the main target and "bootstrap-emacs" is the one used
758 ## to build the *.elc and loaddefs.el files.
759 ## To solve the freshness issue, we used to use a third file "witness-emacs"
760 ## which was used to witness the fact that there is a bootstrap-emacs
761 ## executable, and then have dependencies on witness-emacs rather than
762 ## bootstrap-emacs, but that lead to problems in parallel builds (because
763 ## witness-emacs needed to be free from dependencies (to avoid rebuilding
764 ## it), so it was compiled in parallel, leading typically to having 2
765 ## processes dumping bootstrap-emacs at the same time).
766 ## So instead, we replace the witness-emacs dependencies by conditional
767 ## bootstrap-dependencies (via ${BOOTSTRAPEMACS}). Of course, since we do
768 ## not want to rely on GNU Make features, we have to rely on an external
769 ## script to do the conditional part of the dependency
770 ## (i.e. see the ${SUBDIR} rule ../Makefile.in).
771
772 .SUFFIXES: .elc .el
773
774 ## These suffix rules do not allow additional dependencies, sadly, so
775 ## instead of adding a $(BOOTSTRAPEMACS) dependency here, we add it
776 ## separately below.
777 ## With GNU Make, we would just say "%.el : %.elc $(BOOTSTRAPEMACS)"
778 .el.elc:
779 @cd ../lisp; $(MAKE) $(MFLAGS) compile-onefile \
780 THEFILE=$< EMACS=${bootstrap_exe}
781
782 ## Since the .el.elc rule cannot specify an extra dependency, we do it here.
783 ${lisp} ${SOME_MACHINE_LISP}: $(BOOTSTRAPEMACS)
784
785 ## VCSWITNESS points to the file that holds info about the current checkout.
786 ## We use it as a heuristic to decide when to rebuild loaddefs.el.
787 ${lispsource}loaddefs.el: $(BOOTSTRAPEMACS) $(VCSWITNESS)
788 cd ../lisp; $(MAKE) $(MFLAGS) autoloads EMACS=${bootstrap_exe}
789
790 ## Dump an Emacs executable named bootstrap-emacs containing the
791 ## files from loadup.el in source form.
792 bootstrap-emacs${EXEEXT}: temacs${EXEEXT}
793 cd ../lisp; $(MAKE) $(MFLAGS) update-subdirs
794 if test "${CANNOT_DUMP}" = "yes"; then \
795 ln -f temacs${EXEEXT} bootstrap-emacs${EXEEXT}; \
796 else \
797 $(RUN_TEMACS) --batch --load loadup bootstrap || exit 1; \
798 mv -f emacs${EXEEXT} bootstrap-emacs${EXEEXT}; \
799 fi
800 @: Compile some files earlier to speed up further compilation.
801 cd ../lisp; $(MAKE) $(MFLAGS) compile-first EMACS=${bootstrap_exe}
802
803 ## Insert either autodeps.mk (if AUTO_DEPEND), else deps.mk.
804 @deps_frag@
805
806
807 ### Makefile.in ends here