Use Gnulib ACL implementation, for benefit of Solaris etc.
[bpt/emacs.git] / src / Makefile.in
CommitLineData
5fb59edb 1# src/Makefile for GNU Emacs.
3de25479 2
ab422c4d
PE
3# Copyright (C) 1985, 1987-1988, 1993-1995, 1999-2013 Free Software
4# Foundation, Inc.
a0528984
EZ
5
6# This file is part of GNU Emacs.
7
b9b1cc14 8# GNU Emacs is free software: you can redistribute it and/or modify
a0528984 9# it under the terms of the GNU General Public License as published by
b9b1cc14
GM
10# the Free Software Foundation, either version 3 of the License, or
11# (at your option) any later version.
a0528984
EZ
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
b9b1cc14 19# along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
a0528984
EZ
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
e20f1f07 26SHELL = /bin/sh
a0528984
EZ
27
28# Here are the things that we expect ../configure to edit.
29# We use $(srcdir) explicitly in dependencies so as not to depend on VPATH.
82c3d67a 30srcdir = @srcdir@
1cf1bbd5 31ntsource = $(srcdir)/../nt
82c3d67a
AS
32abs_builddir = @abs_builddir@
33VPATH = $(srcdir)
34CC = @CC@
1cf1bbd5 35WINDRES = @WINDRES@
82c3d67a
AS
36CFLAGS = @CFLAGS@
37CPPFLAGS = @CPPFLAGS@
38LDFLAGS = @LDFLAGS@
82c3d67a
AS
39EXEEXT = @EXEEXT@
40version = @version@
a0528984
EZ
41# Substitute an assignment for the MAKE variable, because
42# BSD doesn't have it as a default.
43@SET_MAKE@
3fe7cdc8 44MKDIR_P = @MKDIR_P@
a0528984 45# Don't use LIBS. configure puts stuff in it that either shouldn't be
81ac4f35 46# linked with Emacs or is duplicated by the other stuff below.
a0528984
EZ
47# LIBS = @LIBS@
48LIBOBJS = @LIBOBJS@
49
aba1381b 50lispsource = $(srcdir)/../lisp
9a514d4a 51lib = ../lib
aba1381b
DN
52libsrc = ../lib-src
53etc = ../etc
50fe702a 54leimdir = ../leim
aba1381b
DN
55oldXMenudir = ../oldXMenu
56lwlibdir = ../lwlib
57lispdir = ../lisp
a0528984
EZ
58
59# Configuration files for .o files to depend on.
4b94e8cf 60config_h = config.h $(srcdir)/conf_post.h
a0528984 61
2cb72a75 62bootstrap_exe = $(abs_builddir)/bootstrap-emacs$(EXEEXT)
7763401b 63
1a82cca9 64## ns-app if HAVE_NS, else empty.
005bd5a2
DN
65OTHER_FILES = @OTHER_FILES@
66
2cb72a75 67## Flags to pass for profiling builds
e6cfa7c3 68PROFILING_CFLAGS = @PROFILING_CFLAGS@
e6cfa7c3
AS
69
70## Flags to pass to the compiler to enable build warnings
b8df54ff
PE
71WARN_CFLAGS = @WARN_CFLAGS@
72WERROR_CFLAGS = @WERROR_CFLAGS@
e6cfa7c3 73
49628785
GM
74## Machine-specific CFLAGS.
75C_SWITCH_MACHINE=@C_SWITCH_MACHINE@
76## System-specific CFLAGS.
77C_SWITCH_SYSTEM=@C_SWITCH_SYSTEM@
5a903aa9 78
2f097256 79GNUSTEP_CFLAGS=@GNUSTEP_CFLAGS@
5a903aa9
GM
80
81## Define C_SWITCH_X_SITE to contain any special flags your compiler
82## may need to deal with X Windows. For instance, if you've defined
83## HAVE_X_WINDOWS and your X include files aren't in a place that your
84## compiler can find on its own, you might want to add "-I/..." or
85## something similar. This is normally set by configure.
5a903aa9
GM
86C_SWITCH_X_SITE=@C_SWITCH_X_SITE@
87
0116466b
GM
88## Define LD_SWITCH_X_SITE to contain any special flags your loader
89## may need to deal with X Windows. For instance, if your X libraries
90## aren't in a place that your loader can find on its own, you might
91## want to add "-L/..." or something similar. Only used if
92## HAVE_X_WINDOWS.
93## FIXME? configure sets a value for this, but it has never been
94## substituted in this or any other Makefile. Cf C_SWITCH_X_SITE.
95LD_SWITCH_X_SITE=
96
4737362e
GM
97## This must come before LD_SWITCH_SYSTEM.
98## If needed, a -rpath option that says where to find X windows at run time.
4d5c6349 99LD_SWITCH_X_SITE_RPATH=@LD_SWITCH_X_SITE_RPATH@
5a903aa9 100
2f86b22b
GM
101## System-specific LDFLAGS.
102LD_SWITCH_SYSTEM=@LD_SWITCH_SYSTEM@
5a903aa9 103
1ddc2bd6
PE
104## This holds any special options for linking temacs only (i.e., not
105## used by configure).
8009a5e8
GM
106LD_SWITCH_SYSTEM_TEMACS=@LD_SWITCH_SYSTEM_TEMACS@
107
2f86b22b 108## Flags to pass to ld only for temacs.
ccd89fb3 109TEMACS_LDFLAGS = $(LD_SWITCH_SYSTEM) $(LD_SWITCH_SYSTEM_TEMACS)
49628785 110
c71232db
UM
111## If available, the full path to the paxctl program.
112## On grsecurity/PaX systems, unexec will fail due to a gap between
113## the bss section and the heap. This can be prevented by disabling
114## memory randomization in temacs with "paxctl -r". See bug#11398.
115PAXCTL = @PAXCTL@
116
97efb629
GM
117## Some systems define this to request special libraries.
118LIBS_SYSTEM=@LIBS_SYSTEM@
119
5a903aa9
GM
120## -lm, or empty.
121LIB_MATH=@LIB_MATH@
122
ae9e757a
JD
123## -lpthreads, or empty.
124LIB_PTHREAD=@LIB_PTHREAD@
125
0fda9b75
DC
126LIBIMAGE=@LIBTIFF@ @LIBJPEG@ @LIBPNG@ @LIBGIF@ @LIBXPM@
127
0dc2e11d 128XFT_LIBS=@XFT_LIBS@
0fda9b75 129LIBX_EXTRA=-lX11 $(XFT_LIBS)
8d9c8ece 130
5a903aa9
GM
131FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@
132FONTCONFIG_LIBS = @FONTCONFIG_LIBS@
133FREETYPE_CFLAGS = @FREETYPE_CFLAGS@
134FREETYPE_LIBS = @FREETYPE_LIBS@
135LIBOTF_CFLAGS = @LIBOTF_CFLAGS@
136LIBOTF_LIBS = @LIBOTF_LIBS@
137M17N_FLT_CFLAGS = @M17N_FLT_CFLAGS@
138M17N_FLT_LIBS = @M17N_FLT_LIBS@
139
ffdc270a 140LIB_ACL=@LIB_ACL@
d35af63c 141LIB_CLOCK_GETTIME=@LIB_CLOCK_GETTIME@
73dcdb9f 142LIB_EACCESS=@LIB_EACCESS@
47d7532e 143LIB_FDATASYNC=@LIB_FDATASYNC@
89d17fd0 144LIB_TIMER_TIME=@LIB_TIMER_TIME@
d35af63c 145
19d4c244
DN
146DBUS_CFLAGS = @DBUS_CFLAGS@
147DBUS_LIBS = @DBUS_LIBS@
33cf345f 148## dbusbind.o if HAVE_DBUS, else empty.
10efe302 149DBUS_OBJ = @DBUS_OBJ@
19d4c244 150
f4a681b0
PE
151LIB_EXECINFO=@LIB_EXECINFO@
152
9851bfc5 153SETTINGS_CFLAGS = @SETTINGS_CFLAGS@
3279eb87 154SETTINGS_LIBS = @SETTINGS_LIBS@
19d4c244 155
33cf345f 156## gtkutil.o if USE_GTK, else empty.
10efe302
GM
157GTK_OBJ=@GTK_OBJ@
158
40c17879
GM
159## -ltermcap, or -lncurses, or -lcurses, or "".
160LIBS_TERMCAP=@LIBS_TERMCAP@
161## terminfo.o if TERMINFO, else tparam.o.
162TERMCAP_OBJ=@TERMCAP_OBJ@
163
294c50a0
GM
164LIBXMU=@LIBXMU@
165
10efe302
GM
166LIBXSM=@LIBXSM@
167
8fdac2c3
GM
168LIBXTR6=@LIBXTR6@
169
3dee6fdb
GM
170## $(LIBXMU) -lXt $(LIBXTR6) -lXext if USE_X_TOOLKIT, else $(LIBXSM).
171## Only used if HAVE_X_WINDOWS.
172LIBXT_OTHER=@LIBXT_OTHER@
173
04384b2d
GM
174## If !HAVE_X11 || USE_GTK, empty.
175## Else if USE_X_TOOLKIT really-lwlib, else really-oldxmenu.
1a82cca9
GM
176OLDXMENU_TARGET=@OLDXMENU_TARGET@
177
c0b0aed5 178## If !HAVE_X11 || USE_GTK, empty.
aba1381b 179## Else if USE_X_TOOLKIT, $(lwlibdir)/liblw.a.
ff851b61 180## Else $(oldXMenudir)/libXMenu11.a.
04384b2d
GM
181## (Actually, rather than being empty, it is set to "nothing".
182## It is never actually used for anything in this case.
183## This is done because there is a rule with target $(OLDXMENU) below,
184## and I think it might be a syntax error with some makes to have
185## an empty target, even if the associated rule is never run.
186## http://lists.gnu.org/archive/html/help-make/2010-05/msg00058.html
187## The alternative would be to put that rule in a makefile fragment.)
c0b0aed5
GM
188OLDXMENU=@OLDXMENU@
189
2cb72a75 190## If HAVE_X11 && !USE_GTK, $(OLDXMENU) ../src/$(OLDXMENU); else empty.
16455a85
GM
191## We use stamp-xmenu with these two deps to both ensure that lwlib
192## gets remade based on its dependencies in its own makefile,
f9f2e7f5 193## and remake temacs if lwlib gets changed by this.
16455a85
GM
194OLDXMENU_DEPS=@OLDXMENU_DEPS@
195
4235ca47
GM
196## If !HAVE_X11 && HAVE_X_WINDOWS, -lXMenu (this case no longer possible).
197## Else if !HAVE_X11 || USE_GTK, empty.
198## Else $(OLDXMENU).
199LIBXMENU=@LIBXMENU@
200
33cf345f 201## xmenu.o if HAVE_X_WINDOWS, else empty.
10efe302 202XMENU_OBJ=@XMENU_OBJ@
17a2cbbd
DC
203## xterm.o xfns.o xselect.o xrdb.o xsmfns.o xsettings.o xgselect.o if
204## HAVE_X_WINDOWS, else empty.
10efe302
GM
205XOBJ=@XOBJ@
206
986fb647 207TOOLKIT_LIBW=@TOOLKIT_LIBW@
b678dd8b 208
676b6304
GM
209## Only used if HAVE_X11, in LIBX_OTHER.
210LIBXT=$(TOOLKIT_LIBW) $(LIBXT_OTHER)
211
8a95f0e7
GM
212## If HAVE_X11, $(LIBXT) $(LIBX_EXTRA), else empty.
213LIBX_OTHER=@LIBX_OTHER@
214
9beab9ce
GM
215## LIBXMENU is nil if !HAVE_X_WINDOWS.
216## LD_SWITCH_X_SITE should not be used if not using X, but nothing
217## sets it at present, and if something ever does, it should be
218## configure, which should set it to nil in non-X builds.
219LIBX_BASE=$(LIBXMENU) $(LD_SWITCH_X_SITE)
220
2550c6e4
AS
221## Only used for GNUstep
222LIBS_GNUSTEP=@LIBS_GNUSTEP@
223
19d4c244
DN
224LIBSOUND= @LIBSOUND@
225CFLAGS_SOUND= @CFLAGS_SOUND@
226
227RSVG_LIBS= @RSVG_LIBS@
228RSVG_CFLAGS= @RSVG_CFLAGS@
229
ce07fa9a
JV
230IMAGEMAGICK_LIBS= @IMAGEMAGICK_LIBS@
231IMAGEMAGICK_CFLAGS= @IMAGEMAGICK_CFLAGS@
232
381408e2
LMI
233LIBXML2_LIBS = @LIBXML2_LIBS@
234LIBXML2_CFLAGS = @LIBXML2_CFLAGS@
ce07fa9a 235
4e3f9230
YM
236XRANDR_LIBS = @XRANDR_LIBS@
237XRANDR_CFLAGS = @XRANDR_CFLAGS@
238
239XINERAMA_LIBS = @XINERAMA_LIBS@
240XINERAMA_CFLAGS = @XINERAMA_CFLAGS@
241
b678dd8b
GM
242## widget.o if USE_X_TOOLKIT, otherwise empty.
243WIDGET_OBJ=@WIDGET_OBJ@
244
c40f9449
GM
245## sheap.o if CYGWIN, otherwise empty.
246CYGWIN_OBJ=@CYGWIN_OBJ@
247
17a2cbbd
DC
248## fontset.o fringe.o image.o if we have any window system
249WINDOW_SYSTEM_OBJ=@WINDOW_SYSTEM_OBJ@
250
dbd3f723 251## dosfns.o msdos.o w16select.o if MSDOS.
f14d1dfd
GM
252MSDOS_OBJ =
253## w16select.o termcap.o if MSDOS && HAVE_X_WINDOWS.
254MSDOS_X_OBJ =
f14d1dfd 255
e6ec4e99 256NS_OBJ=@NS_OBJ@
33cf345f 257## nsterm.o nsfns.o nsmenu.o nsselect.o nsimage.o nsfont.o if HAVE_NS.
00b3c7ac 258NS_OBJC_OBJ=@NS_OBJC_OBJ@
8877ca0f 259## Only set if NS_IMPL_GNUSTEP.
5a903aa9 260GNU_OBJC_CFLAGS=@GNU_OBJC_CFLAGS@
0fda9b75
DC
261## w32fns.o w32menu.c w32reg.o fringe.o fontset.o w32font.o w32term.o
262## w32xfns.o w32select.o image.o w32uniscribe.o if HAVE_W32, else
263## empty.
264W32_OBJ=@W32_OBJ@
265## -lkernel32 -luser32 -lgdi32 -lole32 -lcomdlg32 lusp10 -lcomctl32
266## --lwinspool if HAVE_W32, else empty.
267W32_LIBS=@W32_LIBS@
e6ec4e99 268
1cf1bbd5
DC
269## emacs.res if HAVE_W32
270W32_RES=@W32_RES@
271## If HAVE_W32, compiler arguments for including
272## the resource file in the binary.
273## XXX -Wl,-b -Wl,pe-i386 -Wl,emacs.res
274W32_RES_LINK=@W32_RES_LINK@
275
6e546d18
GM
276## Empty if !HAVE_X_WINDOWS
277## xfont.o ftfont.o xftfont.o ftxfont.o if HAVE_XFT
278## xfont.o ftfont.o ftxfont.o if HAVE_FREETYPE
279## else xfont.o
bc0b5f61
GM
280FONT_OBJ=@FONT_OBJ@
281
5a903aa9 282LIBGPM = @LIBGPM@
11842bd8 283
5a903aa9
GM
284## -lresolv, or empty.
285LIBRESOLV = @LIBRESOLV@
286
2807228d
GM
287LIBSELINUX_LIBS = @LIBSELINUX_LIBS@
288
8af55556
TZ
289LIBGNUTLS_LIBS = @LIBGNUTLS_LIBS@
290LIBGNUTLS_CFLAGS = @LIBGNUTLS_CFLAGS@
291
2a84b02d
PE
292LIB_PTHREAD_SIGMASK = @LIB_PTHREAD_SIGMASK@
293
19d4c244
DN
294INTERVALS_H = dispextern.h intervals.h composite.h
295
296GETLOADAVG_LIBS = @GETLOADAVG_LIBS@
297
298RUN_TEMACS = `/bin/pwd`/temacs
299
eb697db5 300UNEXEC_OBJ = @UNEXEC_OBJ@
5a903aa9 301
6259c2ec 302CANNOT_DUMP=@CANNOT_DUMP@
e8752c66 303
9d5cf9b6 304DEPDIR=deps
2cb72a75 305## -MMD -MF $(DEPDIR)/$*.d if AUTO_DEPEND; else empty.
9d5cf9b6 306DEPFLAGS=@DEPFLAGS@
3fe7cdc8 307## ${MKDIR_P} ${DEPDIR} (if AUTO_DEPEND); else ':'.
9d5cf9b6
GM
308MKDEPDIR=@MKDEPDIR@
309
81ac4f35
GM
310## DO NOT use -R. There is a special hack described in lastfile.c
311## which is used instead. Some initialized data areas are modified
312## at initial startup, then labeled as part of the text area when
313## Emacs is dumped for the first time, and never changed again.
314##
315## -Demacs is needed to make some files produce the correct version
316## for use in Emacs.
317##
81ac4f35 318## FIXME? MYCPPFLAGS only referenced in etc/DEBUG.
cf38a720 319ALL_CFLAGS=-Demacs $(MYCPPFLAGS) -I. -I$(srcdir) \
9a514d4a 320 -I$(lib) -I$(srcdir)/../lib \
2cb72a75 321 $(C_SWITCH_MACHINE) $(C_SWITCH_SYSTEM) $(C_SWITCH_X_SITE) \
2f097256 322 $(GNUSTEP_CFLAGS) $(CFLAGS_SOUND) $(RSVG_CFLAGS) $(IMAGEMAGICK_CFLAGS) \
4e3f9230 323 $(LIBXML2_CFLAGS) $(DBUS_CFLAGS) $(XRANDR_CFLAGS) $(XINERAMA_CFLAGS) \
9851bfc5 324 $(SETTINGS_CFLAGS) $(FREETYPE_CFLAGS) $(FONTCONFIG_CFLAGS) \
876da980 325 $(LIBOTF_CFLAGS) $(M17N_FLT_CFLAGS) $(DEPFLAGS) \
8af55556 326 $(LIBGNUTLS_CFLAGS) \
b8df54ff 327 $(WARN_CFLAGS) $(WERROR_CFLAGS) $(CFLAGS)
5a903aa9 328ALL_OBJC_CFLAGS=$(ALL_CFLAGS) $(GNU_OBJC_CFLAGS)
48fad8e8 329
edfda783 330.SUFFIXES: .m
a0528984 331.c.o:
9d5cf9b6 332 @$(MKDEPDIR)
876da980 333 $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $(PROFILING_CFLAGS) $<
edfda783 334.m.o:
9d5cf9b6 335 @$(MKDEPDIR)
876da980 336 $(CC) -c $(CPPFLAGS) $(ALL_OBJC_CFLAGS) $(PROFILING_CFLAGS) $<
a0528984 337
81ac4f35
GM
338## lastfile must follow all files whose initialized data areas should
339## be dumped as pure by dump-emacs.
00b3c7ac 340base_obj = dispnew.o frame.o scroll.o xdisp.o menu.o $(XMENU_OBJ) window.o \
f44e260c 341 charset.o coding.o category.o ccl.o character.o chartab.o bidi.o \
033b73e2 342 cm.o term.o terminal.o xfaces.o $(XOBJ) $(GTK_OBJ) $(DBUS_OBJ) \
a0528984
EZ
343 emacs.o keyboard.o macros.o keymap.o sysdep.o \
344 buffer.o filelock.o insdel.o marker.o \
cfd812fa 345 minibuf.o fileio.o dired.o \
a0528984
EZ
346 cmds.o casetab.o casefiddle.o indent.o search.o regex.o undo.o \
347 alloc.o data.o doc.o editfns.o callint.o \
0f91ebe6 348 eval.o floatfns.o fns.o font.o print.o lread.o \
5a903aa9 349 syntax.o $(UNEXEC_OBJ) bytecode.o \
8af55556 350 process.o gnutls.o callproc.o \
a0528984 351 region-cache.o sound.o atimer.o \
81606b10 352 doprnt.o intervals.o textprop.o composite.o xml.o inotify.o \
c2d7786e 353 profiler.o \
17a2cbbd 354 $(MSDOS_OBJ) $(MSDOS_X_OBJ) $(NS_OBJ) $(CYGWIN_OBJ) $(FONT_OBJ) \
0fda9b75 355 $(W32_OBJ) $(WINDOW_SYSTEM_OBJ)
00b3c7ac 356obj = $(base_obj) $(NS_OBJC_OBJ)
a0528984 357
81ac4f35
GM
358## Object files used on some machine or other.
359## These go in the DOC file on all machines in case they are needed.
33cf345f
GM
360## Some of them have no DOC entries, but it does no harm to have them
361## in the list, in case they ever add any such entries.
04a697fe 362SOME_MACHINE_OBJECTS = dosfns.o msdos.o \
d87a9ab8 363 xterm.o xfns.o xmenu.o xselect.o xrdb.o xsmfns.o fringe.o image.o \
0fda9b75 364 fontset.o dbusbind.o cygw32.o \
a68fda4a 365 nsterm.o nsfns.o nsmenu.o nsselect.o nsimage.o nsfont.o \
87c141ce 366 w32.o w32console.o w32fns.o w32heap.o w32inevt.o w32notify.o \
33cf345f
GM
367 w32menu.o w32proc.o w32reg.o w32select.o w32term.o w32xfns.o \
368 w16select.o widget.o xfont.o ftfont.o xftfont.o ftxfont.o gtkutil.o \
369 xsettings.o xgselect.o termcap.o
a0528984 370
81ac4f35 371## gmalloc.o if !SYSTEM_MALLOC && !DOUG_LEA_MALLOC, else empty.
be4ff9da 372GMALLOC_OBJ=@GMALLOC_OBJ@
2fa0eedf 373
81ac4f35 374## vm-limit.o if !SYSTEM_MALLOC, else empty.
be4ff9da 375VMLIMIT_OBJ=@VMLIMIT_OBJ@
2fa0eedf 376
81ac4f35 377## ralloc.o if !SYSTEM_MALLOC && REL_ALLOC, else empty.
40dc6bf4 378RALLOC_OBJ=@RALLOC_OBJ@
a0528984 379
81ac4f35 380## Empty on Cygwin, lastfile.o elsewhere.
7acac9f4 381PRE_ALLOC_OBJ=@PRE_ALLOC_OBJ@
81ac4f35 382## lastfile.o on Cygwin, empty elsewhere.
7acac9f4 383POST_ALLOC_OBJ=@POST_ALLOC_OBJ@
a0528984 384
81ac4f35 385## List of object files that make-docfile should not be told about.
40dc6bf4 386otherobj= $(TERMCAP_OBJ) $(PRE_ALLOC_OBJ) $(GMALLOC_OBJ) $(RALLOC_OBJ) \
1ddc2bd6 387 $(POST_ALLOC_OBJ) $(WIDGET_OBJ) $(LIBOBJS)
a0528984 388
1ddc2bd6
PE
389## All object files linked into temacs. $(VMLIMIT_OBJ) should be first.
390ALLOBJS = $(VMLIMIT_OBJ) $(obj) $(otherobj)
b9704ad9
GM
391
392## Configure inserts the file lisp.mk at this point, defining $lisp.
393@lisp_frag@
394
a0528984 395
81ac4f35 396## Construct full set of libraries to be linked.
2550c6e4 397LIBES = $(LIBS) $(W32_LIBS) $(LIBS_GNUSTEP) $(LIBX_BASE) $(LIBIMAGE) \
0fda9b75 398 $(LIBX_OTHER) $(LIBSOUND) \
ffdc270a 399 $(RSVG_LIBS) $(IMAGEMAGICK_LIBS) $(LIB_ACL) $(LIB_CLOCK_GETTIME) \
47d7532e 400 $(LIB_EACCESS) $(LIB_FDATASYNC) $(LIB_TIMER_TIME) $(DBUS_LIBS) \
4e3f9230 401 $(LIB_EXECINFO) $(XRANDR_LIBS) $(XINERAMA_LIBS) \
2cb72a75 402 $(LIBXML2_LIBS) $(LIBGPM) $(LIBRESOLV) $(LIBS_SYSTEM) \
9851bfc5 403 $(LIBS_TERMCAP) $(GETLOADAVG_LIBS) $(SETTINGS_LIBS) $(LIBSELINUX_LIBS) \
5a903aa9 404 $(FREETYPE_LIBS) $(FONTCONFIG_LIBS) $(LIBOTF_LIBS) $(M17N_FLT_LIBS) \
ffdc270a 405 $(LIBGNUTLS_LIBS) $(LIB_PTHREAD) $(LIB_PTHREAD_SIGMASK) \
1ddc2bd6 406 $(LIB_MATH)
a0528984 407
2cb72a75 408all: emacs$(EXEEXT) $(OTHER_FILES)
0aee6912 409.PHONY: all
a0528984 410
50fe702a 411$(leimdir)/leim-list.el: bootstrap-emacs$(EXEEXT)
935396c0 412 cd $(leimdir) && $(MAKE) $(MFLAGS) leim-list.el EMACS=$(bootstrap_exe)
50fe702a 413
81ac4f35
GM
414## The dumped Emacs is as functional and more efficient than
415## bootstrap-emacs, so we replace the latter with the former.
4a720484
GM
416## Strictly speaking, emacs does not depend directly on all of $lisp,
417## since not all pieces are used on all platforms. But DOC depends
418## on all of $lisp, and emacs depends on DOC, so it is ok to use $lisp here.
50fe702a 419emacs$(EXEEXT): temacs$(EXEEXT) $(etc)/DOC $(lisp) $(leimdir)/leim-list.el
2cb72a75 420 if test "$(CANNOT_DUMP)" = "yes"; then \
24564fe1
GM
421 rm -f emacs$(EXEEXT); \
422 ln temacs$(EXEEXT) emacs$(EXEEXT); \
e8752c66
GM
423 else \
424 LC_ALL=C $(RUN_TEMACS) -batch -l loadup dump || exit 1; \
c71232db 425 test "X$(PAXCTL)" = X || $(PAXCTL) -zex emacs$(EXEEXT); \
24564fe1
GM
426 rm -f bootstrap-emacs$(EXEEXT); \
427 ln emacs$(EXEEXT) bootstrap-emacs$(EXEEXT); \
e8752c66 428 fi
a0528984 429
81ac4f35 430## We run make-docfile twice because the command line may get too long
b9704ad9
GM
431## on some systems. The sed command operating on lisp.mk also reduces
432## the length of the command line. Unfortunately, no-one has any idea
433## exactly how long the maximum safe command line length is on all the
434## various systems that Emacs supports. Obviously, the length depends
435## on what your value of $srcdir is. If the length restriction goes
436## away, lisp.mk can be merged back into this file.
437##
2cb72a75
DN
438## $(SOME_MACHINE_OBJECTS) comes before $(obj) because some files may
439## or may not be included in $(obj), but they are always included in
440## $(SOME_MACHINE_OBJECTS). Since a file is processed when it is mentioned
81ac4f35
GM
441## for the first time, this prevents any variation between configurations
442## in the contents of the DOC file.
b9704ad9 443##
4a720484 444$(etc)/DOC: $(libsrc)/make-docfile$(EXEEXT) $(obj) $(lisp)
aba1381b
DN
445 -rm -f $(etc)/DOC
446 $(libsrc)/make-docfile -d $(srcdir) $(SOME_MACHINE_OBJECTS) $(obj) > $(etc)/DOC
32078c8d 447 $(libsrc)/make-docfile -a $(etc)/DOC -d $(lispsource) `sed -n -e 's| \\\\||' -e 's|^[ ]*$$(lispsource)/||p' $(srcdir)/lisp.mk`
a0528984 448
aba1381b 449$(libsrc)/make-docfile$(EXEEXT):
2cb72a75 450 cd $(libsrc); $(MAKE) $(MFLAGS) make-docfile$(EXEEXT)
a0528984 451
878bde49 452buildobj.h: Makefile
1ddc2bd6 453 echo "#define BUILDOBJ \"$(ALLOBJS) " "\"" >$@
878bde49 454
33cd3ee4 455globals.h: gl-stamp; @true
00b3c7ac
TT
456
457GLOBAL_SOURCES = $(base_obj:.o=.c) $(NS_OBJC_OBJ:.o=.m)
458
459gl-stamp: $(libsrc)/make-docfile$(EXEEXT) $(GLOBAL_SOURCES)
460 @rm -f gl-tmp
c04889f8 461 $(libsrc)/make-docfile -d $(srcdir) -g $(obj) > gl-tmp
24e0f6b1 462 $(srcdir)/../build-aux/move-if-change gl-tmp globals.h
33cd3ee4 463 echo timestamp > $@
00b3c7ac 464
1ddc2bd6 465$(ALLOBJS): globals.h
00b3c7ac 466
9a514d4a
PE
467$(lib)/libgnu.a: $(config_h)
468 cd $(lib) && $(MAKE) libgnu.a
c1d0dcfd 469
1ddc2bd6 470temacs$(EXEEXT): stamp-oldxmenu $(ALLOBJS) \
1cf1bbd5 471 $(lib)/libgnu.a $(W32_RES)
1ddc2bd6
PE
472 $(CC) $(ALL_CFLAGS) $(TEMACS_LDFLAGS) $(LDFLAGS) \
473 -o temacs $(ALLOBJS) $(lib)/libgnu.a $(LIBES) \
1cf1bbd5 474 $(W32_RES_LINK)
c71232db
UM
475 test "$(CANNOT_DUMP)" = "yes" || \
476 test "X$(PAXCTL)" = X || $(PAXCTL) -r temacs$(EXEEXT)
a0528984 477
81ac4f35
GM
478## The following oldxmenu-related rules are only (possibly) used if
479## HAVE_X11 && !USE_GTK, but there is no harm in always defining them
480## (provided we take a little care that OLDXMENU is never empty).
5ac75e8f 481really-lwlib: globals.h
2cb72a75
DN
482 cd $(lwlibdir); $(MAKE) $(MFLAGS) \
483 CC='$(CC)' CFLAGS='$(CFLAGS)' MAKE='$(MAKE)'
81ac4f35 484 @true # make -t should not create really-lwlib.
a0528984 485.PHONY: really-lwlib
a0528984 486
a0528984 487really-oldXMenu:
cc98b256 488 cd $(oldXMenudir); $(MAKE) $(MFLAGS) \
2cb72a75 489 CC='$(CC)' CFLAGS='$(CFLAGS)' MAKE='$(MAKE)'
81ac4f35 490 @true # make -t should not create really-oldXMenu.
a0528984 491.PHONY: really-oldXMenu
a0528984 492
81ac4f35
GM
493## We do not really need this when OLDXMENU_DEPS is empty, but as
494## things stand we need something to satisfy the temacs dependency.
2cb72a75 495stamp-oldxmenu: $(OLDXMENU_DEPS)
a0528984 496 touch stamp-oldxmenu
16455a85 497
81ac4f35 498## Supply an ordering for parallel make.
2cb72a75 499../src/$(OLDXMENU): $(OLDXMENU)
1a82cca9
GM
500
501$(OLDXMENU): $(OLDXMENU_TARGET)
a0528984
EZ
502
503../config.status:: epaths.in
504 @echo "The file epaths.h needs to be set up from epaths.in."
505 @echo "Please run the `configure' script again."
506 exit 1
507
508../config.status:: config.in
509 @echo "The file config.h needs to be set up from config.in."
510 @echo "Please run the `configure' script again."
511 exit 1
512
a53cfbe5
JD
513doc.o: buildobj.h
514
1cf1bbd5
DC
515emacs.res: $(ntsource)/emacs.rc \
516 $(ntsource)/icons/emacs.ico \
517 $(ntsource)/emacs-x86.manifest
518 $(WINDRES) -O COFF -o $@ $(ntsource)/emacs.rc
a53cfbe5 519
83da1b55
GM
520ns-app: emacs$(EXEEXT)
521 cd ../nextstep && $(MAKE) $(MFLAGS) all
522
0aee6912 523.PHONY: mostlyclean clean bootstrap-clean distclean maintainer-clean
8b2e00a3 524.PHONY: versionclean extraclean frc
e0f712ba 525
a0528984 526mostlyclean:
2cb72a75 527 rm -f temacs$(EXEEXT) core *.core \#* *.o libXMenu11.a liblw.a
a0528984 528 rm -f ../etc/DOC
2cb72a75 529 rm -f bootstrap-emacs$(EXEEXT) emacs-$(version)$(EXEEXT)
878bde49 530 rm -f buildobj.h
33cd3ee4 531 rm -f globals.h gl-stamp
a0528984 532clean: mostlyclean
2cb72a75
DN
533 rm -f emacs-*.*.*$(EXEEXT) emacs$(EXEEXT)
534 -rm -rf $(DEPDIR)
7541dad5 535
81ac4f35
GM
536## bootstrap-clean is used to clean up just before a bootstrap.
537## It should remove all files generated during a compilation/bootstrap,
538## but not things like config.status or TAGS.
fd13748d 539bootstrap-clean: clean
84fc48e5 540 rm -f epaths.h config.h config.stamp stamp-h1 stamp-oldxmenu ../etc/DOC-*
fd13748d
AS
541 if test -f ./.gdbinit; then \
542 mv ./.gdbinit ./.gdbinit.save; \
2cb72a75 543 if test -f "$(srcdir)/.gdbinit"; then rm -f ./.gdbinit.save; \
fd13748d
AS
544 else mv ./.gdbinit.save ./.gdbinit; fi; \
545 fi
81ac4f35
GM
546## This is used in making a distribution.
547## Do not use it on development directories!
fd13748d
AS
548distclean: bootstrap-clean
549 rm -f Makefile
a0528984
EZ
550maintainer-clean: distclean
551 @echo "This command is intended for maintainers to use;"
552 @echo "it deletes files that may require special tools to rebuild."
553 rm -f TAGS
554versionclean:
2cb72a75 555 -rm -f emacs$(EXEEXT) emacs-*.*.*$(EXEEXT) ../etc/DOC*
a0528984
EZ
556extraclean: distclean
557 -rm -f *~ \#* m/?*~ s/?*~
558
81ac4f35
GM
559## Arrange to make a tags table TAGS-LISP for ../lisp,
560## plus TAGS for the C files, which includes ../lisp/TAGS by reference.
a0528984 561
50da4e56
SM
562ctagsfiles1 = [xyzXYZ]*.[hcm]
563ctagsfiles2 = [a-wA-W]*.[hcm]
a0528984 564
34374650 565TAGS: $(srcdir)/$(ctagsfiles1) $(srcdir)/$(ctagsfiles2) $(S_FILE)
2cb72a75 566 ../lib-src/etags --include=TAGS-LISP --include=$(lwlibdir)/TAGS \
a0528984 567 --regex='/[ ]*DEFVAR_[A-Z_ (]+"\([^"]+\)"/' \
34374650 568 $(srcdir)/$(ctagsfiles1) $(srcdir)/$(ctagsfiles2) $(S_FILE)
a0528984
EZ
569frc:
570TAGS-LISP: frc
aba1381b 571 $(MAKE) -f $(lispdir)/Makefile TAGS-LISP ETAGS=../lib-src/etags
a0528984 572
aba1381b
DN
573$(lwlibdir)/TAGS:
574 (cd $(lwlibdir); $(MAKE) -f $(lwlibdir)/Makefile tags ETAGS=../lib-src/etags)
a0528984 575
aba1381b 576tags: TAGS TAGS-LISP $(lwlibdir)/TAGS
a0528984
EZ
577.PHONY: tags
578
579
81ac4f35
GM
580### Bootstrapping.
581
582## Bootstrapping right is difficult because of the circular dependencies.
583## Furthermore, we have to deal with the fact that many compilation targets
584## such as loaddefs.el or *.elc can typically be produced by any old
585## Emacs executable, so we would like to avoid rebuilding them whenever
586## we build a new Emacs executable.
587## To solve the circularity, we use 2 different Emacs executables,
588## "emacs" is the main target and "bootstrap-emacs" is the one used
589## to build the *.elc and loaddefs.el files.
590## To solve the freshness issue, we used to use a third file "witness-emacs"
591## which was used to witness the fact that there is a bootstrap-emacs
592## executable, and then have dependencies on witness-emacs rather than
593## bootstrap-emacs, but that lead to problems in parallel builds (because
594## witness-emacs needed to be free from dependencies (to avoid rebuilding
595## it), so it was compiled in parallel, leading typically to having 2
596## processes dumping bootstrap-emacs at the same time).
597## So instead, we replace the witness-emacs dependencies by conditional
2cb72a75 598## bootstrap-dependencies (via $(BOOTSTRAPEMACS)). Of course, since we do
81ac4f35
GM
599## not want to rely on GNU Make features, we have to rely on an external
600## script to do the conditional part of the dependency
2cb72a75 601## (i.e. see the $(SUBDIR) rule ../Makefile.in).
fc46d219 602
36565815
GM
603.SUFFIXES: .elc .el
604
81ac4f35
GM
605## These suffix rules do not allow additional dependencies, sadly, so
606## instead of adding a $(BOOTSTRAPEMACS) dependency here, we add it
607## separately below.
608## With GNU Make, we would just say "%.el : %.elc $(BOOTSTRAPEMACS)"
fc46d219 609.el.elc:
82c3d67a 610 @cd ../lisp; $(MAKE) $(MFLAGS) compile-onefile \
2cb72a75 611 THEFILE=$< EMACS=$(bootstrap_exe)
fc46d219 612
81ac4f35 613## Since the .el.elc rule cannot specify an extra dependency, we do it here.
4a720484 614$(lisp): $(BOOTSTRAPEMACS)
fc46d219 615
81ac4f35
GM
616## VCSWITNESS points to the file that holds info about the current checkout.
617## We use it as a heuristic to decide when to rebuild loaddefs.el.
aba1381b 618$(lispsource)/loaddefs.el: $(BOOTSTRAPEMACS) $(VCSWITNESS)
2cb72a75 619 cd ../lisp; $(MAKE) $(MFLAGS) autoloads EMACS=$(bootstrap_exe)
49f6eb95 620
81ac4f35
GM
621## Dump an Emacs executable named bootstrap-emacs containing the
622## files from loadup.el in source form.
2cb72a75 623bootstrap-emacs$(EXEEXT): temacs$(EXEEXT)
b4945b95 624 cd ../lisp; $(MAKE) $(MFLAGS) update-subdirs
2cb72a75 625 if test "$(CANNOT_DUMP)" = "yes"; then \
24564fe1
GM
626 rm -f bootstrap-emacs$(EXEEXT); \
627 ln temacs$(EXEEXT) bootstrap-emacs$(EXEEXT); \
e8752c66
GM
628 else \
629 $(RUN_TEMACS) --batch --load loadup bootstrap || exit 1; \
c71232db 630 test "X$(PAXCTL)" = X || $(PAXCTL) -zex emacs$(EXEEXT); \
2cb72a75 631 mv -f emacs$(EXEEXT) bootstrap-emacs$(EXEEXT); \
e8752c66 632 fi
768efd84 633 @: Compile some files earlier to speed up further compilation.
2cb72a75 634 cd ../lisp; $(MAKE) $(MFLAGS) compile-first EMACS=$(bootstrap_exe)
a53cfbe5 635
81ac4f35 636## Insert either autodeps.mk (if AUTO_DEPEND), else deps.mk.
9d5cf9b6 637@deps_frag@
81ac4f35
GM
638
639
640### Makefile.in ends here