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