(window_loop) <GET_BUFFER_WINDOW>: Prefer to return
[bpt/emacs.git] / src / Makefile.in
CommitLineData
b06f07c0 1# Makefile for GNU Emacs.
bffc71d6
GM
2# Copyright (C) 1985, 87, 88, 93, 94, 95, 99, 2000, 2001
3# Free Software Foundation, Inc.
ec558adc 4
b06f07c0 5# This file is part of GNU Emacs.
ae3bed12 6
b06f07c0
RS
7# GNU Emacs is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation; either version 2, or (at your option)
10# any later version.
ae3bed12 11
b06f07c0
RS
12# GNU Emacs is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
ae3bed12 16
b06f07c0
RS
17# You should have received a copy of the GNU General Public License
18# along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
19# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20# Boston, MA 02111-1307, USA.
ae3bed12 21
cd667a18
DL
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# Don't try to replace the ccp processing using autoconf facilities,
28# says rms.
29
b06f07c0 30# Here are the things that we expect ../configure to edit.
8f393ef9 31# We use $(srcdir) explicitly in dependencies so as not to depend on VPATH.
ae3bed12
BF
32srcdir=@srcdir@
33VPATH=@srcdir@
34CC=@CC@
35CPP=@CPP@
36CFLAGS=@CFLAGS@
d5600d49
RS
37CPPFLAGS=@CPPFLAGS@
38LDFLAGS=@LDFLAGS@
ae3bed12 39LN_S=@LN_S@
b06f07c0
RS
40# Substitute an assignment for the MAKE variable, because
41# BSD doesn't have it as a default.
3bdaa06a 42@SET_MAKE@
cd667a18
DL
43# Don't use LIBS. configure puts stuff in it that either shouldn't be
44# linked with Emacs or is duplicated by the cpp stuff below.
45# LIBS = @LIBS@
f6a92bd8 46LIBOBJS = @LIBOBJS@
ae3bed12 47
b06f07c0 48# On Xenix and the IBM RS6000, double-dot gets screwed up.
ae3bed12 49dot = .
449d572b 50dotdot = ${dot}${dot}
02ae1501 51lispsource = ${srcdir}/$(dot)$(dot)/lisp/
ae3bed12
BF
52libsrc = $(dot)$(dot)/lib-src/
53etc = $(dot)$(dot)/etc/
ae3bed12 54oldXMenudir = $(dot)$(dot)/oldXMenu/
3e285e4d 55lwlibdir = $(dot)$(dot)/lwlib/
2a3c6d11 56
b06f07c0 57# Configuration files for .o files to depend on.
2a3c6d11
RS
58M_FILE = ${srcdir}/@machfile@
59S_FILE = ${srcdir}/@opsysfile@
60config_h = config.h $(M_FILE) $(S_FILE)
ae3bed12 61
db188a61 62# ========================== start of cpp stuff =======================
b06f07c0
RS
63/* From here on, comments must be done in C syntax. */
64
02e8e167
RS
65C_SWITCH_SYSTEM=
66
ae3bed12
BF
67/* just to be sure the sh is used */
68SHELL=/bin/sh
69
449d572b 70#define THIS_IS_MAKEFILE
ae3bed12 71#define NO_SHORTNAMES
ae3bed12
BF
72#define NOT_C_CODE
73#include "config.h"
74
4622fe48
RS
75/* We won't really call alloca;
76 don't let the file name alloca.c get messed up. */
77#ifdef alloca
78#undef alloca
79#endif
80
57a6d773
PE
81/* Don't let the file name mktime.c get messed up. */
82#ifdef mktime
83#undef mktime
84#endif
85
ae3bed12
BF
86/* Use HAVE_X11 as an alias for X11 in this file
87 to avoid problems with X11 as a subdirectory name
88 in -I and other such options which pass through this file. */
89
90#ifdef X11
91#define HAVE_X11
92#undef X11
93#endif
94
95/* On some machines #define register is done in config;
96 don't let it interfere with this file. */
97#undef register
98
99/* On some systems we may not be able to use the system make command. */
100#ifdef MAKE_COMMAND
101MAKE = MAKE_COMMAND
ae3bed12
BF
102#endif
103
104#ifdef C_COMPILER
105CC = C_COMPILER
106#endif
107
5520f84f
RS
108/* GNU libc requires ORDINARY_LINK so that its own crt0 is used.
109 Linux is an exception because it uses a funny variant of GNU libc. */
110#ifdef __GNU_LIBRARY__
111#ifndef LINUX
112#define ORDINARY_LINK
113#endif
114#endif
115
ae3bed12
BF
116/* Some machines don't find the standard C libraries in the usual place. */
117#ifndef ORDINARY_LINK
118#ifndef LIB_STANDARD
119#define LIB_STANDARD -lc
120#endif
121#else
122#ifndef LIB_STANDARD
123#define LIB_STANDARD
124#endif
125#endif
126
127/* Unless inhibited or changed, use -lg to link for debugging. */
128#ifndef LIBS_DEBUG
129#define LIBS_DEBUG -lg
130#endif
131
f11c1c14 132/* Some s/SYSTEM.h files define this to request special libraries. */
ae3bed12
BF
133#ifndef LIBS_SYSTEM
134#define LIBS_SYSTEM
135#endif
136
f11c1c14 137/* Some m/MACHINE.h files define this to request special libraries. */
ae3bed12
BF
138#ifndef LIBS_MACHINE
139#define LIBS_MACHINE
140#endif
141
142#ifndef LIB_MATH
ae3bed12 143# define LIB_MATH -lm
ae3bed12
BF
144#endif /* LIB_MATH */
145
f11c1c14 146/* Some s/SYSTEM.h files define this to request special switches in ld. */
ae3bed12 147#ifndef LD_SWITCH_SYSTEM
488b7cb3 148#if !defined (__GNUC__) && (defined(COFF_ENCAPSULATE) || (defined (BSD_SYSTEM) && !defined (COFF)))
ae3bed12 149#define LD_SWITCH_SYSTEM -X
488b7cb3 150#else /* ! defined(COFF_ENCAPSULATE) || (defined (BSD_SYSTEM) && !defined (COFF)) */
ae3bed12 151#define LD_SWITCH_SYSTEM
488b7cb3 152#endif /* ! defined(COFF_ENCAPSULATE) || (defined (BSD_SYSTEM) && !defined (COFF)) */
ae3bed12
BF
153#endif /* LD_SWITCH_SYSTEM */
154
0273f2e5
RS
155/* This holds special options for linking temacs
156 that should be used for linking anything else. */
157#ifndef LD_SWITCH_SYSTEM_TEMACS
158#define LD_SWITCH_SYSTEM_TEMACS
159#endif
160
f11c1c14 161/* Some m/MACHINE.h files define this to request special switches in ld. */
ae3bed12
BF
162#ifndef LD_SWITCH_MACHINE
163#define LD_SWITCH_MACHINE
164#endif
165
5be75283
KH
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
f11c1c14 172/* Some m/MACHINE.h files define this to request special switches in cc. */
ae3bed12
BF
173#ifndef C_SWITCH_MACHINE
174#define C_SWITCH_MACHINE
175#endif
176
f11c1c14 177/* Some s/SYSTEM.h files define this to request special switches in cc. */
ae3bed12
BF
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
d2e75974
RS
199#ifndef LD_SWITCH_X_DEFAULT
200#define LD_SWITCH_X_DEFAULT
201#endif
202
ae3bed12
BF
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
9e012fc3 214
ae3bed12 215#ifndef CRT0_COMPILE
8f641052 216#define CRT0_COMPILE $(CC) -c $(ALL_CFLAGS) C_SWITCH_ASM
ae3bed12
BF
217#endif
218
219#ifndef START_FILES
220#ifdef NO_REMAP
221#ifdef COFF_ENCAPSULATE
222#define START_FILES pre-crt0.o /usr/local/lib/gcc-crt0.o
223#else /* ! defined (COFF_ENCAPSULATE) */
224#define START_FILES pre-crt0.o /lib/crt0.o
225#endif /* ! defined (COFF_ENCAPSULATE) */
226#else /* ! defined (NO_REMAP) */
1c738407 227#define START_FILES ecrt0.o
ae3bed12
BF
228#endif /* ! defined (NO_REMAP) */
229#endif /* START_FILES */
230STARTFILES = START_FILES
231
232#else /* ORDINARY_LINK */
233
234/* config.h might want to force START_FILES anyway */
235#ifdef START_FILES
236STARTFILES = START_FILES
237#endif /* START_FILES */
238
239#endif /* not ORDINARY_LINK */
240
241
242/* cc switches needed to make `asm' keyword work.
243 Nothing special needed on most machines. */
244#ifndef C_SWITCH_ASM
245#define C_SWITCH_ASM
246#endif
247
52ee0561 248#ifdef USE_X_TOOLKIT
7ee4884a 249#define USE_@X_TOOLKIT_TYPE@
52ee0561
KH
250TOOLKIT_DEFINES = -DUSE_@X_TOOLKIT_TYPE@
251#else
252TOOLKIT_DEFINES =
253#endif
254
ae3bed12
BF
255/* DO NOT use -R. There is a special hack described in lastfile.c
256 which is used instead. Some initialized data areas are modified
257 at initial startup, then labeled as part of the text area when
258 Emacs is dumped for the first time, and never changed again. */
259
ae3bed12
BF
260/* -Demacs is needed to make some files produce the correct version
261 for use in Emacs.
262
263 -DHAVE_CONFIG_H is needed for some other files to take advantage of
264 the information in `config.h'. */
644ab589 265
ae3bed12
BF
266/* C_SWITCH_X_SITE must come before C_SWITCH_X_MACHINE and C_SWITCH_X_SYSTEM
267 since it may have -I options that should override those two. */
52ee0561 268ALL_CFLAGS=-Demacs -DHAVE_CONFIG_H $(TOOLKIT_DEFINES) $(MYCPPFLAG) -I. -I${srcdir} C_SWITCH_MACHINE C_SWITCH_SYSTEM C_SWITCH_SITE C_SWITCH_X_SITE C_SWITCH_X_MACHINE C_SWITCH_X_SYSTEM ${CFLAGS}
ae3bed12
BF
269.c.o:
270 $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $<
271
272#ifndef LIBX10_MACHINE
273#define LIBX10_MACHINE
274#endif
275
276#ifndef LIBX11_MACHINE
277#define LIBX11_MACHINE
278#endif
279
280#ifndef LIBX10_SYSTEM
281#define LIBX10_SYSTEM
282#endif
283
284#ifndef LIBX11_SYSTEM
285#define LIBX11_SYSTEM
286#endif
287
288#ifndef LIB_X11_LIB
289#define LIB_X11_LIB -lX11
290#endif
291
292#ifdef HAVE_X_WINDOWS
46c0ddcf 293#ifdef HAVE_MENUS
ae3bed12
BF
294
295/* Include xmenu.o in the list of X object files. */
5bfd038e 296XOBJ= xterm.o xfns.o xselect.o xrdb.o fontset.o
ae3bed12
BF
297
298/* The X Menu stuff is present in the X10 distribution, but missing
299 from X11. If we have X10, just use the installed library;
300 otherwise, use our own copy. */
301#ifdef HAVE_X11
3e285e4d 302#ifdef USE_X_TOOLKIT
f489d526 303OLDXMENU=${lwlibdir}liblw.a
3e285e4d
RS
304LIBXMENU= $(OLDXMENU)
305#else /* not USE_X_TOOLKIT */
f489d526 306OLDXMENU= ${oldXMenudir}libXMenu11.a
ae3bed12 307LIBXMENU= $(OLDXMENU)
3e285e4d
RS
308#endif /* not USE_X_TOOLKIT */
309#else /* not HAVE_X11 */
ae3bed12 310LIBXMENU= -lXMenu
3e285e4d 311#endif /* not HAVE_X11 */
ae3bed12 312
46c0ddcf 313#else /* not HAVE_MENUS */
ae3bed12
BF
314
315/* Otherwise, omit xmenu.o from the list of X object files, and
316 don't worry about the menu library at all. */
5bfd038e 317XOBJ= xterm.o xfns.o xselect.o xrdb.o fontset.o
ae3bed12 318LIBXMENU=
46c0ddcf 319#endif /* not HAVE_MENUS */
3e285e4d
RS
320
321#ifdef USE_X_TOOLKIT
b1fc21c5
RS
322#define @X_TOOLKIT_TYPE@
323#if defined (LUCID) || defined (ATHENA)
04e209dc
GM
324#if HAVE_XAW3D
325LIBW= -lXaw3d
326#else
b1fc21c5
RS
327LIBW= -lXaw
328#endif
04e209dc 329#endif
b1fc21c5 330#ifdef MOTIF
6389f670 331#if defined (HAVE_MOTIF_2_1) && defined (HAVE_LIBXP)
2790bdd8
RS
332#define LIB_MOTIF_EXTRA -lXp
333#else
334#define LIB_MOTIF_EXTRA
335#endif
b1fc21c5 336#ifdef LIB_MOTIF
2790bdd8 337LIBW= LIB_MOTIF LIB_MOTIF_EXTRA
b1fc21c5 338#else
2790bdd8 339LIBW= -lXm LIB_MOTIF_EXTRA
b1fc21c5
RS
340#endif
341#endif
342#ifdef OPEN_LOOK
343LIBW= -lXol
344#endif
345
b036baef 346#ifdef HAVE_X11XTR6
a0efd887
RS
347#ifdef NEED_LIBW
348LIBXTR6 = -lSM -lICE -lw
349#else
8b550e92
RS
350LIBXTR6 = -lSM -lICE
351#endif
a0efd887 352#endif
8b550e92 353
eb6a9dca
RS
354#ifndef LIBXMU
355#define LIBXMU -lXmu
356#endif
357
449d572b
KH
358#ifdef LIBXT_STATIC
359/* We assume the config files have defined STATIC_OPTION
360 since that might depend on the operating system.
361 (Don't forget you need different definitions with and without __GNUC__.) */
8f641052 362LIBXT= STATIC_OPTION $(LIBW) LIBXMU -lXt $(LIBXTR6) -lXext DYNAMIC_OPTION
449d572b 363#else /* not LIBXT_STATIC */
eb6a9dca 364LIBXT= $(LIBW) LIBXMU -lXt $(LIBXTR6) -lXext
449d572b
KH
365#endif /* not LIBXT_STATIC */
366
367#else /* not USE_X_TOOLKIT */
3e285e4d 368LIBXT=
449d572b 369#endif /* not USE_X_TOOLKIT */
ae3bed12 370
04e209dc
GM
371#if HAVE_XPM
372#ifndef LIBXPM
373#define LIBXPM -lXpm
374#endif /* not defined LIBXPM */
375#else /* not HAVE_XPM */
376#define LIBXPM
377#endif /* not HAVE_XPM */
378
379#if HAVE_JPEG
380#ifndef LIBJPEG
381#define LIBJPEG -ljpeg
382#endif /* not defined LIBJPEG */
383#else /* not HAVE_JPEG */
384#define LIBJPEG
385#endif /* not HAVE_JPEG */
386
387#if HAVE_PNG
388#ifndef LIBPNG
389#define LIBPNG -lpng -lz -lm
390#endif /* not defined LIBPNG */
391#else /* not HAVE_PNG */
392#define LIBPNG
393#endif /* not HAVE_PNG */
394
395#if HAVE_TIFF
396#ifndef LIBTIFF
5dd6aea8 397#define LIBTIFF -ltiff
04e209dc
GM
398#endif /* not defined LIBTIFF */
399#else /* not HAVE_TIFF */
400#define LIBTIFF
401#endif /* not HAVE_TIFF */
402
403#if HAVE_GIF
404#ifndef LIBGIF
405#define LIBGIF -lungif
406#endif /* not defined LIBGIF */
407#else /* not HAVE_GIF */
408#define LIBGIF
409#endif /* not HAVE_GIF */
410
ae3bed12 411#ifdef HAVE_X11
d2e75974
RS
412/* LD_SWITCH_X_DEFAULT comes after everything else that specifies
413 options for where to find X libraries, but before those libraries. */
fe9f955a 414X11_LDFLAGS = LD_SWITCH_X_SITE LD_SWITCH_X_DEFAULT
81459ac9 415LIBX= $(LIBXMENU) $(X11_LDFLAGS) $(LIBXT) LIBTIFF LIBJPEG LIBPNG LIBGIF LIBXPM LIB_X11_LIB LIBX11_MACHINE LIBX11_SYSTEM
3e285e4d 416#else /* not HAVE_X11 */
ae3bed12 417LIBX= $(LIBXMENU) LD_SWITCH_X_SITE -lX10 LIBX10_MACHINE LIBX10_SYSTEM
3e285e4d
RS
418#endif /* not HAVE_X11 */
419#endif /* not HAVE_X_WINDOWS */
ae3bed12 420
80fcd514
KR
421LIBSOUND= @LIBSOUND@
422
ae3bed12
BF
423#ifndef ORDINARY_LINK
424/* Fix linking if compiled with GCC. */
425#ifdef __GNUC__
426
427#if __GNUC__ > 1
428
ab8fbbf7
RS
429#ifdef LINKER
430#define LINKER_WAS_SPECIFIED
431#endif
432
ae3bed12
BF
433/* Versions of GCC >= 2.0 put their library, libgcc.a, in obscure
434 places that are difficult to figure out at make time. Fortunately,
435 these same versions allow you to pass arbitrary flags on to the
436 linker, so there's no reason not to use it as a linker.
437
438 Well, it's not quite perfect. The `-nostdlib' keeps GCC from
439 searching for libraries in its internal directories, so we have to
440 ask GCC explicitly where to find libgcc.a. */
9e012fc3 441
ae3bed12
BF
442#ifndef LINKER
443#define LINKER $(CC) -nostdlib
444#endif
0c22fbca 445
ae3bed12
BF
446#ifndef LIB_GCC
447/* Ask GCC where to find libgcc.a. */
448#define LIB_GCC `$(CC) -print-libgcc-file-name`
3e285e4d 449#endif /* not LIB_GCC */
c8ff0e1b 450
ae3bed12 451GNULIB_VAR = LIB_GCC
5627d72e 452
ab8fbbf7 453#ifndef LINKER_WAS_SPECIFIED
ae3bed12
BF
454/* GCC passes any argument prefixed with -Xlinker directly to the
455 linker. See prefix-args.c for an explanation of why we don't do
456 this with the shell's `for' construct.
457 Note that some people don't have '.' in their paths, so we must
458 use ./prefix-args. */
459#define YMF_PASS_LDFLAGS(flags) `./prefix-args -Xlinker flags`
ab8fbbf7
RS
460#else
461#define YMF_PASS_LDFLAGS(flags) flags
462#endif
9e012fc3 463
ae3bed12 464#else /* __GNUC__ < 2 */
c8ff0e1b 465
ae3bed12
BF
466#ifndef LIB_GCC
467#define LIB_GCC /usr/local/lib/gcc-gnulib
3e285e4d 468#endif /* not LIB_GCC */
ae3bed12
BF
469GNULIB_VAR = `if [ -f LIB_GCC ] ; then echo LIB_GCC; else echo; fi`
470#endif /* __GNUC__ < 2 */
3e285e4d 471#else /* not __GNUC__ */
8f641052 472GNULIB_VAR =
c8ff0e1b 473
3e285e4d 474#endif /* not __GNUC__ */
ae3bed12
BF
475#endif /* not ORDINARY_LINK */
476
477/* Specify address for ld to start loading at,
478 if requested by configuration. */
479#ifdef LD_TEXT_START_ADDR
480STARTFLAGS = -T LD_TEXT_START_ADDR -e __start
481#endif
482
483#ifdef ORDINARY_LINK
484LD = $(CC)
485#else
486#ifdef COFF_ENCAPSULATE
487LD=$(CC) -nostdlib
488#else /* not ORDINARY_LINK */
489#ifdef LINKER
490LD=LINKER
3e285e4d 491#else /* not LINKER */
ae3bed12 492LD=ld
3e285e4d
RS
493#endif /* not LINKER */
494#endif /* not COFF_ENCAPSULATE */
ae3bed12
BF
495#endif /* not ORDINARY_LINK */
496
2f5ee43f 497ALL_LDFLAGS = LD_SWITCH_SYSTEM LD_SWITCH_SYSTEM_TEMACS LD_SWITCH_MACHINE \
5be75283 498 LD_SWITCH_MACHINE_TEMACS LD_SWITCH_SITE $(LDFLAGS)
ae3bed12 499
907d2190 500/* A macro which other sections of Makefile can redefine to munge the
ae3bed12 501 flags before they're passed to LD. This is helpful if you have
907d2190
KH
502 redefined LD to something odd, like "gcc".
503 (The YMF prefix is a holdover from the old name "ymakefile".)
504 */
ae3bed12
BF
505#ifndef YMF_PASS_LDFLAGS
506#define YMF_PASS_LDFLAGS(flags) flags
507#endif
508
509/* Allow config.h to specify a replacement file for unexec.c. */
510#ifndef UNEXEC
511#define UNEXEC unexec.o
512#endif
513#ifndef UNEXEC_SRC
514#define UNEXEC_SRC unexec.c
515#endif
516
33fef74e 517INTERVAL_SRC = intervals.h composite.h
ae3bed12 518
a308416f 519GETLOADAVG_LIBS = @GETLOADAVG_LIBS@
cd667a18 520
87485d6f
MW
521#ifdef MSDOS
522#ifdef HAVE_X_WINDOWS
07c6adec 523MSDOS_OBJ = dosfns.o msdos.o
87485d6f 524#else
07c6adec 525MSDOS_OBJ = dosfns.o msdos.o w16select.o
87485d6f 526#endif
87485d6f
MW
527#endif
528
529
ae3bed12 530/* lastfile must follow all files
dddff397
RS
531 whose initialized data areas should be dumped as pure by dump-emacs. */
532obj= dispnew.o frame.o scroll.o xdisp.o xmenu.o window.o \
713c0574 533 charset.o coding.o category.o ccl.o\
5bfd038e 534 cm.o term.o xfaces.o $(XOBJ) \
ae3bed12 535 emacs.o keyboard.o macros.o keymap.o sysdep.o \
33fef74e 536 buffer.o filelock.o insdel.o marker.o \
ae3bed12
BF
537 minibuf.o fileio.o dired.o filemode.o \
538 cmds.o casetab.o casefiddle.o indent.o search.o regex.o undo.o \
539 alloc.o data.o doc.o editfns.o callint.o \
540 eval.o floatfns.o fns.o print.o lread.o \
541 abbrev.o syntax.o UNEXEC mocklisp.o bytecode.o \
542 process.o callproc.o \
e77ab12e 543 region-cache.o sound.o atimer.o \
d06b8688 544 doprnt.o strftime.o intervals.o textprop.o composite.o md5.o \
07c6adec 545 $(MSDOS_OBJ)
ae3bed12 546
229c1c6a
RS
547/* Object files used on some machine or other.
548 These go in the DOC file on all machines
549 in case they are needed there. */
33fef74e
DL
550SOME_MACHINE_OBJECTS = sunfns.o dosfns.o msdos.o \
551 xterm.o xfns.o xmenu.o xselect.o xrdb.o
149cbcb0 552
229c1c6a 553
ae3bed12
BF
554#ifdef TERMINFO
555/* Used to be -ltermcap here. If your machine needs that,
f11c1c14 556 define LIBS_TERMCAP in the m/MACHINE.h file. */
ae3bed12
BF
557#ifndef LIBS_TERMCAP
558#define LIBS_TERMCAP -lcurses
559#endif /* LIBS_TERMCAP */
560termcapobj = terminfo.o
561#else /* ! defined (TERMINFO) */
562#ifndef LIBS_TERMCAP
563#define LIBS_TERMCAP
564termcapobj = termcap.o tparam.o
565#else /* LIBS_TERMCAP */
566termcapobj = tparam.o
567#endif /* LIBS_TERMCAP */
568#endif /* ! defined (TERMINFO) */
569
570
571#ifndef SYSTEM_MALLOC
572
b1377d7f
RS
573#ifdef DOUG_LEA_MALLOC
574#ifdef REL_ALLOC
575mallocobj = ralloc.o vm-limit.o
576#else /* ! defined (REL_ALLOC) */
27d77e96 577mallocobj = vm-limit.o
b1377d7f
RS
578#endif /* ! defined (REL_ALLOC) */
579#else /* ! defined (DOUG_LEA_MALLOC) */
ae3bed12
BF
580#ifdef REL_ALLOC
581mallocobj = gmalloc.o ralloc.o vm-limit.o
582#else /* ! defined (REL_ALLOC) */
583mallocobj = gmalloc.o vm-limit.o
584#endif /* ! defined (REL_ALLOC) */
b1377d7f 585#endif /* ! defined (DOUG_LEA_MALLOC) */
ae3bed12
BF
586
587#endif /* SYSTEM_MALLOC */
588
589
590#ifndef HAVE_ALLOCA
591allocaobj = alloca.o
592#else
593allocaobj =
594#endif
595
3e285e4d
RS
596#ifdef USE_X_TOOLKIT
597widgetobj= widget.o
598#else /* not USE_X_TOOLKIT */
599widgetobj=
600#endif /* not USE_X_TOOLKIT */
601
ae3bed12
BF
602
603/* define otherobj as list of object files that make-docfile
604 should not be told about. */
9f2bbc92 605otherobj= $(termcapobj) lastfile.o $(mallocobj) $(allocaobj) $(widgetobj) $(LIBOBJS)
ae3bed12 606
ce339dfb 607#ifdef HAVE_MOUSE
94636ed5 608#define MOUSE_SUPPORT ${lispsource}mouse.elc \
02ae1501 609 ${lispsource}select.elc ${lispsource}scroll-bar.elc
ce339dfb
KH
610#else
611#define MOUSE_SUPPORT
612#endif
613
ae3bed12 614#ifdef VMS
02ae1501 615#define VMS_SUPPORT ${lispsource}vmsproc.elc ${lispsource}vms-patch.elc
ae3bed12
BF
616#else
617#define VMS_SUPPORT
618#endif
619
d95ebf76 620#ifdef MSDOS
dc32bb91 621#define MSDOS_SUPPORT ${lispsource}ls-lisp.elc ${lispsource}disp-table.elc \
9aeb39fa
EZ
622 ${lispsource}dos-fns.elc ${lispsource}dos-w32.elc ${lispsource}dos-vars.elc \
623 ${lispsource}international/ccl.elc ${lispsource}international/codepage.elc
624
d95ebf76
RS
625#else
626#define MSDOS_SUPPORT
627#endif
628
ce339dfb 629#ifdef WINDOWSNT
489f9371
GV
630#define WINNT_SUPPORT ${lispsource}ls-lisp.elc ${lispsource}w32-fns.elc \
631 ${lispsource}dos-w32.elc
ce339dfb
KH
632#else
633#define WINNT_SUPPORT
634#endif
635
ae3bed12
BF
636/* List of Lisp files loaded into the dumped Emacs. It's arranged
637 like this because it's easier to generate it semi-mechanically from
638 loadup.el this way.
639
640 Note that this list should not include lisp files which might not
641 be present, like site-load.el and site-init.el; this makefile
449d572b
KH
642 expects them all to be either present or buildable.
643
df36c262
RS
644 Files which are loaded unconditionally should be in shortlisp as well.
645 Files included conditionally here should be included (unconditionally)
646 in SOME_MACHINE_LISP. */
449d572b 647
ae3bed12 648lisp= \
02ae1501
KH
649 ${lispsource}abbrev.elc \
650 ${lispsource}buff-menu.elc \
651 ${lispsource}byte-run.elc \
7b30f6cf 652 ${lispsource}cus-start.el \
94636ed5 653 ${lispsource}custom.elc \
de732ea7
RS
654 ${lispsource}emacs-lisp/lisp-mode.elc \
655 ${lispsource}emacs-lisp/lisp.elc \
55a9f648 656 ${lispsource}env.elc \
5bfd038e 657 ${lispsource}faces.elc \
02ae1501 658 ${lispsource}files.elc \
02ae1501 659 ${lispsource}format.elc \
33fef74e 660 ${lispsource}facemenu.elc \
ce339dfb 661 MOUSE_SUPPORT \
33fef74e 662 ${lispsource}float-sup.elc \
e3678b64 663 ${lispsource}frame.elc\
02ae1501
KH
664 ${lispsource}help.elc \
665 ${lispsource}indent.elc \
666 ${lispsource}isearch.elc \
7ee4884a 667 ${lispsource}loadup.el \
02ae1501 668 ${lispsource}loaddefs.el \
d23ad362 669 ${lispsource}bindings.el \
02ae1501 670 ${lispsource}map-ynp.elc \
94636ed5 671 ${lispsource}menu-bar.elc \
29fad69a
RS
672 ${lispsource}international/mule.elc \
673 ${lispsource}international/mule-conf.el \
674 ${lispsource}international/mule-cmds.elc \
675 ${lispsource}international/characters.elc \
d23ad362 676 ${lispsource}case-table.elc \
713c0574
KH
677 ${lispsource}language/chinese.elc \
678 ${lispsource}language/cyrillic.elc \
f9185491 679 ${lispsource}language/indian.elc \
713c0574 680 ${lispsource}language/devanagari.elc \
3604fd00 681 ${lispsource}language/english.elc \
713c0574
KH
682 ${lispsource}language/ethiopic.elc \
683 ${lispsource}language/european.elc \
f9185491
KH
684 ${lispsource}language/czech.elc \
685 ${lispsource}language/slovak.elc \
686 ${lispsource}language/romanian.elc \
713c0574
KH
687 ${lispsource}language/greek.elc \
688 ${lispsource}language/hebrew.elc \
713c0574
KH
689 ${lispsource}language/japanese.elc \
690 ${lispsource}language/korean.elc \
57647d09 691 ${lispsource}language/lao.elc \
713c0574 692 ${lispsource}language/thai.elc \
3604fd00 693 ${lispsource}language/tibetan.elc \
713c0574
KH
694 ${lispsource}language/vietnamese.elc \
695 ${lispsource}language/misc-lang.elc \
02ae1501
KH
696 ${lispsource}paths.el \
697 ${lispsource}register.elc \
698 ${lispsource}replace.elc \
699 ${lispsource}simple.elc \
700 ${lispsource}startup.elc \
701 ${lispsource}subr.elc \
2d764c78 702 ${lispsource}term/tty-colors.elc \
de732ea7
RS
703 ${lispsource}textmodes/fill.elc \
704 ${lispsource}textmodes/page.elc \
705 ${lispsource}textmodes/paragraphs.elc \
706 ${lispsource}textmodes/text-mode.elc \
02ae1501 707 ${lispsource}vc-hooks.elc \
730cce4a 708 ${lispsource}ediff-hook.elc \
ae3bed12 709 VMS_SUPPORT \
d95ebf76 710 MSDOS_SUPPORT \
ce339dfb 711 WINNT_SUPPORT \
0273f2e5 712 ${lispsource}widget.elc \
02ae1501
KH
713 ${lispsource}window.elc \
714 ${lispsource}version.el
ae3bed12 715
449d572b
KH
716/* These are relative file names for the Lisp files
717 that are loaded unconditionally. This is used in make-docfile.
718 It need not contain the files that are loaded conditionally
719 because SOME_MACHINE_LISP has those. */
720shortlisp= \
721 ../lisp/abbrev.elc \
722 ../lisp/buff-menu.elc \
723 ../lisp/byte-run.elc \
7b30f6cf 724 ../lisp/cus-start.el \
df36c262 725 ../lisp/custom.elc \
de732ea7
RS
726 ../lisp/emacs-lisp/lisp-mode.elc \
727 ../lisp/emacs-lisp/lisp.elc \
33fef74e 728 ../lisp/facemenu.elc \
5bfd038e 729 ../lisp/faces.elc \
449d572b 730 ../lisp/files.elc \
33fef74e 731 ../lisp/float-sup.elc \
449d572b 732 ../lisp/format.elc \
33fef74e 733 ../lisp/frame.elc \
449d572b
KH
734 ../lisp/help.elc \
735 ../lisp/indent.elc \
736 ../lisp/isearch.elc \
449d572b
KH
737 ../lisp/loadup.el \
738 ../lisp/loaddefs.el \
d23ad362 739 ../lisp/bindings.el \
449d572b 740 ../lisp/map-ynp.elc \
29fad69a
RS
741 ../lisp/international/mule.elc \
742 ../lisp/international/mule-conf.el \
743 ../lisp/international/mule-cmds.elc \
d32515cd 744 ../lisp/international/characters.elc \
d23ad362 745 ../lisp/case-table.elc \
713c0574
KH
746 ../lisp/language/chinese.elc \
747 ../lisp/language/cyrillic.elc \
f9185491 748 ../lisp/language/indian.elc \
713c0574 749 ../lisp/language/devanagari.elc \
3604fd00 750 ../lisp/language/english.elc \
713c0574
KH
751 ../lisp/language/ethiopic.elc \
752 ../lisp/language/european.elc \
f9185491
KH
753 ../lisp/language/czech.elc \
754 ../lisp/language/slovak.elc \
755 ../lisp/language/romanian.elc \
713c0574
KH
756 ../lisp/language/greek.elc \
757 ../lisp/language/hebrew.elc \
713c0574
KH
758 ../lisp/language/japanese.elc \
759 ../lisp/language/korean.elc \
57647d09 760 ../lisp/language/lao.elc \
713c0574 761 ../lisp/language/thai.elc \
3604fd00 762 ../lisp/language/tibetan.elc \
713c0574
KH
763 ../lisp/language/vietnamese.elc \
764 ../lisp/language/misc-lang.elc \
449d572b
KH
765 ../lisp/paths.el \
766 ../lisp/register.elc \
767 ../lisp/replace.elc \
768 ../lisp/simple.elc \
769 ../lisp/startup.elc \
770 ../lisp/subr.elc \
2d764c78 771 ../lisp/term/tty-colors.elc \
de732ea7
RS
772 ../lisp/textmodes/fill.elc \
773 ../lisp/textmodes/page.elc \
774 ../lisp/textmodes/paragraphs.elc \
775 ../lisp/textmodes/text-mode.elc \
449d572b
KH
776 ../lisp/vc-hooks.elc \
777 ../lisp/ediff-hook.elc \
0273f2e5 778 ../lisp/widget.elc \
449d572b
KH
779 ../lisp/window.elc \
780 ../lisp/version.el
781
f9d6b3c9 782/* Lisp files that may or may not be used.
8f641052 783 We must unconditionally put them in the DOC file.
449d572b
KH
784 We use ../lisp/ to start the file names
785 to reduce the size of the argument list for make-docfile
786 for the sake of systems which can't handle large ones. */
33fef74e 787SOME_MACHINE_LISP = ${dotdot}/lisp/menu-bar.elc ${dotdot}/lisp/mouse.elc \
449d572b
KH
788 ${dotdot}/lisp/select.elc ${dotdot}/lisp/scroll-bar.elc \
789 ${dotdot}/lisp/vmsproc.elc ${dotdot}/lisp/vms-patch.elc \
790 ${dotdot}/lisp/ls-lisp.elc ${dotdot}/lisp/dos-fns.elc \
9aeb39fa
EZ
791 ${dotdot}/lisp/w32-fns.elc ${dotdot}/lisp/dos-w32.elc \
792 ${dotdot}/lisp/disp-table.elc ${dotdot}/lisp/dos-vars.elc \
793 ${dotdot}/lisp/international/ccl.elc \
794 ${dotdot}/lisp/international/codepage.elc
f9d6b3c9 795
ae3bed12
BF
796/* Construct full set of libraries to be linked.
797 Note that SunOS needs -lm to come before -lc; otherwise, you get
709f7c1f
RM
798 duplicated symbols. If the standard libraries were compiled
799 with GCC, we might need gnulib again after them. */
80fcd514
KR
800LIBES = $(LOADLIBES) $(LIBS) $(LIBX) $(LIBSOUND) \
801 LIBS_SYSTEM LIBS_MACHINE LIBS_TERMCAP \
a308416f
DL
802 LIBS_DEBUG $(GETLOADAVG_LIBS) $(GNULIB_VAR) LIB_MATH LIB_STANDARD \
803 $(GNULIB_VAR)
ae3bed12
BF
804
805/* Enable recompilation of certain other files depending on system type. */
806
807#ifndef OTHER_FILES
808#define OTHER_FILES
809#endif
810
ae3bed12
BF
811#ifndef OBJECTS_MACHINE
812#define OBJECTS_MACHINE
813#endif
814
815all: emacs OTHER_FILES
816
817emacs: temacs ${etc}DOC ${lisp}
818#ifdef CANNOT_DUMP
2bbc6b0a 819 rm -f emacs
ae3bed12
BF
820 ln temacs emacs
821#else
822#ifdef HAVE_SHM
68c45bf0 823 LC_ALL=C ./temacs -nl -batch -l loadup dump
ae3bed12 824#else /* ! defined (HAVE_SHM) */
68c45bf0 825 LC_ALL=C ./temacs -batch -l loadup dump
ae3bed12
BF
826#endif /* ! defined (HAVE_SHM) */
827#endif /* ! defined (CANNOT_DUMP) */
3b366769 828 -./emacs -q -batch -f list-load-path-shadows
ae3bed12 829
847bb755
RS
830/* We run make-docfile twice because the command line may get too long
831 on some systems. */
633796fe
RS
832/* ${SOME_MACHINE_OBJECTS} comes before ${obj} because some files may
833 or may not be included in ${obj}, but they are always included in
834 ${SOME_MACHINE_OBJECTS}. Since a file is processed when it is mentioned
835 for the first time, this prevents any variation between configurations
f9d6b3c9
RS
836 in the contents of the DOC file.
837 Likewise for ${SOME_MACHINE_LISP}. */
bffc71d6 838${etc}DOC: ${libsrc}make-docfile ${obj} ${shortlisp} ${SOME_MACHINE_LISP}
d95ebf76 839 -rm -f ${etc}DOC
633796fe 840 ${libsrc}make-docfile -d ${srcdir} ${SOME_MACHINE_OBJECTS} ${obj} > ${etc}DOC
449d572b 841 ${libsrc}make-docfile -a ${etc}DOC -d ${srcdir} ${SOME_MACHINE_LISP} ${shortlisp}
ae3bed12
BF
842
843${libsrc}make-docfile:
918a80cf 844 cd ${libsrc}; ${MAKE} ${MFLAGS} make-docfile
ae3bed12
BF
845
846/* Some systems define this to cause parallel Make-ing. */
847#ifndef MAKE_PARALLEL
848#define MAKE_PARALLEL
849#endif
850
33fef74e 851temacs: MAKE_PARALLEL $(LOCALCPP) $(STARTFILES) stamp-oldxmenu ${obj} ${otherobj} OBJECTS_MACHINE prefix-args
6ed56568 852 $(LD) YMF_PASS_LDFLAGS (${STARTFLAGS} ${ALL_LDFLAGS}) \
ae3bed12 853 -o temacs ${STARTFILES} ${obj} ${otherobj} \
33fef74e 854 OBJECTS_MACHINE ${LIBES}
ae3bed12 855
f6190d46
RS
856/* We don't use ALL_LDFLAGS because LD_SWITCH_SYSTEM and LD_SWITCH_MACHINE
857 often contain options that have to do with using Emacs's crt0,
858 which are only good with temacs. */
ae3bed12 859prefix-args: prefix-args.c $(config_h)
f6190d46 860 $(CC) $(ALL_CFLAGS) $(LDFLAGS) ${srcdir}/prefix-args.c -o prefix-args
ae3bed12 861
ae3bed12
BF
862/* Don't lose if this was not defined. */
863#ifndef OLDXMENU_OPTIONS
864#define OLDXMENU_OPTIONS
865#endif
866
3e285e4d
RS
867/* Don't lose if this was not defined. */
868#ifndef LWLIB_OPTIONS
869#define LWLIB_OPTIONS
870#endif
871
6c6c2f69
RM
872#if defined (HAVE_X_WINDOWS) && defined (HAVE_X11) && defined (HAVE_MENUS)
873
084f76ff
RS
874/* We use stamp-xmenu with these two deps
875 to both ensure that lwlib gets remade based on its dependencies
876 in its own makefile,
877 and remake temacs if lwlib gets changed by this. */
878stamp-oldxmenu: ${OLDXMENU} ../src/$(OLDXMENU)
879 touch stamp-oldxmenu
ee371b01
RS
880/* Supply an ordering for parallel make. */
881../src/$(OLDXMENU): ${OLDXMENU}
084f76ff 882
3e285e4d
RS
883#ifdef USE_X_TOOLKIT
884$(OLDXMENU): really-lwlib
3e285e4d
RS
885
886/* Encode the values of these two macros in Make variables,
887 so we can use $(...) to substitute their values within "...". */
888C_SWITCH_MACHINE_1 = C_SWITCH_MACHINE
889C_SWITCH_SYSTEM_1 = C_SWITCH_SYSTEM
890C_SWITCH_SITE_1 = C_SWITCH_SITE
891C_SWITCH_X_SITE_1 = C_SWITCH_X_SITE
892C_SWITCH_X_MACHINE_1 = C_SWITCH_X_MACHINE
893C_SWITCH_X_SYSTEM_1 = C_SWITCH_X_SYSTEM
894really-lwlib:
895 cd ${lwlibdir}; ${MAKE} ${MFLAGS} LWLIB_OPTIONS \
896 CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}' \
897 "C_SWITCH_X_SITE=$(C_SWITCH_X_SITE_1)" \
898 "C_SWITCH_X_MACHINE=$(C_SWITCH_X_MACHINE_1)" \
899 "C_SWITCH_X_SYSTEM=$(C_SWITCH_X_SYSTEM_1)" \
900 "C_SWITCH_SITE=$(C_SWITCH_SITE_1)" \
901 "C_SWITCH_MACHINE=$(C_SWITCH_MACHINE_1)" \
902 "C_SWITCH_SYSTEM=$(C_SWITCH_SYSTEM_1)"
903 @true /* make -t should not create really-lwlib. */
b1e9ff69 904.PHONY: really-lwlib
3e285e4d 905#else /* not USE_X_TOOLKIT */
ae3bed12 906$(OLDXMENU): really-oldXMenu
ae3bed12
BF
907
908/* Encode the values of these two macros in Make variables,
909 so we can use $(...) to substitute their values within "...". */
910C_SWITCH_MACHINE_1 = C_SWITCH_MACHINE
911C_SWITCH_SYSTEM_1 = C_SWITCH_SYSTEM
912C_SWITCH_SITE_1 = C_SWITCH_SITE
913C_SWITCH_X_SITE_1 = C_SWITCH_X_SITE
914C_SWITCH_X_MACHINE_1 = C_SWITCH_X_MACHINE
915C_SWITCH_X_SYSTEM_1 = C_SWITCH_X_SYSTEM
916really-oldXMenu:
917 cd ${oldXMenudir}; ${MAKE} ${MFLAGS} OLDXMENU_OPTIONS \
918 CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}' \
919 "C_SWITCH_X_SITE=$(C_SWITCH_X_SITE_1)" \
920 "C_SWITCH_X_MACHINE=$(C_SWITCH_X_MACHINE_1)" \
921 "C_SWITCH_X_SYSTEM=$(C_SWITCH_X_SYSTEM_1)" \
922 "C_SWITCH_SITE=$(C_SWITCH_SITE_1)" \
923 "C_SWITCH_MACHINE=$(C_SWITCH_MACHINE_1)" \
924 "C_SWITCH_SYSTEM=$(C_SWITCH_SYSTEM_1)"
925 @true /* make -t should not create really-oldXMenu. */
b1e9ff69 926.PHONY: really-oldXMenu
3e285e4d 927#endif /* not USE_X_TOOLKIT */
4e7c142c
RS
928#else /* not (HAVE_X_WINDOWS && HAVE_X11 && HAVE_MENUS) */
929
930/* We don't really need this, but satisfy the dependency. */
931stamp-oldxmenu:
932 touch stamp-oldxmenu
933#endif /* not (HAVE_X_WINDOWS && HAVE_X11 && HAVE_MENUS) */
ae3bed12 934
affb9299
RS
935../config.status:: epaths.in
936 @echo "The file epaths.h needs to be set up from epaths.in."
9ee83b02 937 @echo "Please run the `configure' script again."
ae3bed12
BF
938 exit 1
939
9ee83b02 940../config.status:: config.in
66ac18ab 941 @echo "The file config.h needs to be set up from config.in."
9ee83b02 942 @echo "Please run the `configure' script again."
ae3bed12
BF
943 exit 1
944
945/* Some machines have alloca built-in.
946 They should define HAVE_ALLOCA, or may just let alloca.s
947 be used but generate no code.
948 Some have it written in assembler in alloca.s.
949 Some use the C version in alloca.c (these define C_ALLOCA in config.h).
950 */
951
952#ifdef C_ALLOCA
953/* We could put something in alloca.c to #define free and malloc
954 whenever emacs was #defined, but that's not appropriate for all
955 users of alloca in Emacs. Check out ../lib-src/getopt.c. */
956alloca.o : alloca.c
00edcd1d 957 $(CC) -c $(CPPFLAGS) -DEMACS_FREE=xfree \
ae3bed12
BF
958 $(ALL_CFLAGS) ${srcdir}/alloca.c
959#else
960#ifndef HAVE_ALLOCA
2a3c6d11 961alloca.o : alloca.s $(config_h)
ae3bed12
BF
962/* $(CPP) is cc -E, which may get confused by filenames
963 that do not end in .c. So copy file to a safe name. */
38a31f61 964 -rm -f allocatem.c
ae3bed12
BF
965 cp ${srcdir}/alloca.s allocatem.c
966/* Remove any ^L, blank lines, and preprocessor comments,
967 since some assemblers barf on them. Use a different basename for the
968 output file, since some stupid compilers (Green Hill's) use that
969 name for the intermediate assembler file. */
970 $(CPP) $(CPPFLAGS) $(ALL_CFLAGS) allocatem.c | \
971 sed -e 's/\f//' -e 's/^#.*//' | \
972 sed -n -e '/^..*$$/p' > allocax.s
973 -rm -f alloca.o
974/* Xenix, in particular, needs to run assembler via cc. */
975 $(CC) -c allocax.s
976 mv allocax.o alloca.o
f194e509 977 -rm -f allocax.s allocatem.c
ae3bed12
BF
978#endif /* HAVE_ALLOCA */
979#endif /* ! defined (C_ALLOCA) */
980
981/* Nearly all the following files depend on lisp.h,
982 but it is not included as a dependency because
983 it is so often changed in ways that do not require any recompilation
984 and so rarely changed in ways that do require any. */
985
00edcd1d
GM
986abbrev.o: abbrev.c buffer.h window.h dispextern.h commands.h charset.h \
987 $(config_h)
e8951513 988buffer.o: buffer.c buffer.h region-cache.h commands.h window.h \
bbcf05c1
DL
989 dispextern.h $(INTERVAL_SRC) blockinput.h atimer.h systime.h charset.h \
990 $(config_h)
656828cf 991callint.o: callint.c window.h commands.h buffer.h mocklisp.h \
00edcd1d 992 keyboard.h dispextern.h $(config_h)
affb9299 993callproc.o: callproc.c epaths.h buffer.h commands.h $(config_h) \
f4cda61e
KH
994 process.h systty.h syssignal.h charset.h coding.h ccl.h msdos.h \
995 composite.h
5b2f4dca 996casefiddle.o: casefiddle.c syntax.h commands.h buffer.h composite.h $(config_h)
656828cf 997casetab.o: casetab.c buffer.h $(config_h)
713c0574
KH
998category.o: category.c category.h buffer.h charset.h $(config_h)
999ccl.o: ccl.c ccl.h charset.h coding.h $(config_h)
0a42d134
KH
1000charset.o: charset.c charset.h buffer.h coding.h composite.h disptab.h \
1001 $(config_h)
f1653e8f 1002coding.o: coding.c coding.h ccl.h buffer.h charset.h $(config_h)
656828cf 1003cm.o: cm.c cm.h termhooks.h $(config_h)
c26949c3 1004cmds.o: cmds.c syntax.h buffer.h charset.h commands.h window.h $(config_h) \
00edcd1d 1005 msdos.h dispextern.h
656828cf 1006pre-crt0.o: pre-crt0.c
1c738407
RS
1007ecrt0.o: ecrt0.c $(config_h)
1008 CRT0_COMPILE ${srcdir}/ecrt0.c
68c45bf0
PE
1009dired.o: dired.c commands.h buffer.h $(config_h) charset.h coding.h regex.h \
1010 systime.h
713c0574 1011dispnew.o: dispnew.c commands.h frame.h window.h buffer.h dispextern.h \
c07d3a87 1012 termchar.h termopts.h termhooks.h cm.h disptab.h systty.h systime.h \
e931344e
EZ
1013 xterm.h blockinput.h atimer.h charset.h msdos.h composite.h keyboard.h \
1014 $(config_h)
5b2f4dca 1015doc.o: doc.c $(config_h) epaths.h buffer.h keyboard.h charset.h
713c0574 1016doprnt.o: doprnt.c charset.h $(config_h)
87485d6f 1017dosfns.o: buffer.h termchar.h termhooks.h frame.h msdos.h dosfns.h $(config_h)
33fef74e 1018editfns.o: editfns.c window.h buffer.h systime.h $(INTERVAL_SRC) charset.h \
00edcd1d 1019 coding.h dispextern.h $(config_h)
6bda48a4 1020emacs.o: emacs.c commands.h systty.h syssignal.h blockinput.h process.h \
bbcf05c1 1021 termhooks.h buffer.h atimer.h systime.h $(INTERVAL_SRC) $(config_h)
33fef74e 1022fileio.o: fileio.c window.h buffer.h systime.h $(INTERVAL_SRC) charset.h \
00edcd1d 1023 coding.h ccl.h msdos.h dispextern.h $(config_h)
affb9299 1024filelock.o: filelock.c buffer.h systime.h epaths.h $(config_h)
656828cf 1025filemode.o: filemode.c $(config_h)
da6b134c 1026frame.o: frame.c xterm.h window.h frame.h termhooks.h commands.h keyboard.h \
00edcd1d 1027 buffer.h charset.h fontset.h msdos.h dosfns.h dispextern.h $(config_h)
e931344e
EZ
1028fontset.o: dispextern.h fontset.h fontset.c ccl.h charset.h frame.h \
1029 keyboard.h $(config_h)
656828cf
RS
1030getloadavg.o: getloadavg.c $(config_h)
1031indent.o: indent.c frame.h window.h indent.h buffer.h $(config_h) termchar.h \
e931344e
EZ
1032 termopts.h disptab.h region-cache.h charset.h composite.h dispextern.h \
1033 keyboard.h
33fef74e 1034insdel.o: insdel.c window.h buffer.h $(INTERVAL_SRC) blockinput.h charset.h\
bbcf05c1 1035 dispextern.h atimer.h systime.h $(config_h)
713c0574 1036keyboard.o: keyboard.c termchar.h termhooks.h termopts.h buffer.h charset.h \
ae3bed12 1037 commands.h frame.h window.h macros.h disptab.h keyboard.h syssignal.h \
33fef74e 1038 systty.h systime.h dispextern.h syntax.h $(INTERVAL_SRC) blockinput.h \
bbcf05c1 1039 atimer.h xterm.h puresize.h msdos.h $(config_h)
656828cf 1040keymap.o: keymap.c buffer.h commands.h keyboard.h termhooks.h blockinput.h \
bbcf05c1 1041 atimer.h systime.h puresize.h charset.h intervals.h $(config_h)
656828cf 1042lastfile.o: lastfile.c $(config_h)
00edcd1d
GM
1043macros.o: macros.c window.h buffer.h commands.h macros.h keyboard.h \
1044 dispextern.h $(config_h)
656828cf
RS
1045malloc.o: malloc.c $(config_h)
1046gmalloc.o: gmalloc.c $(config_h)
1047ralloc.o: ralloc.c $(config_h)
8f641052 1048vm-limit.o: vm-limit.c mem-limits.h $(config_h)
3fa51c4e 1049marker.o: marker.c buffer.h charset.h $(config_h)
e931344e 1050minibuf.o: minibuf.c syntax.h dispextern.h frame.h window.h keyboard.h \
c26949c3 1051 buffer.h commands.h charset.h msdos.h $(config_h)
da6b134c 1052mktime.o: mktime.c $(config_h)
656828cf 1053mocklisp.o: mocklisp.c buffer.h $(config_h)
d2442270 1054msdos.o: msdos.c msdos.h dosfns.h systime.h termhooks.h dispextern.h frame.h \
b2feb1d4
EZ
1055 termopts.h termchar.h charset.h coding.h ccl.h disptab.h window.h \
1056 keyboard.h $(config_h)
656828cf 1057process.o: process.c process.h buffer.h window.h termhooks.h termopts.h \
00edcd1d 1058 commands.h syssignal.h systime.h systty.h syswait.h frame.h dispextern.h \
e931344e
EZ
1059 blockinput.h atimer.h charset.h coding.h ccl.h msdos.h composite.h \
1060 keyboard.h $(config_h)
713c0574 1061regex.o: regex.c syntax.h buffer.h $(config_h) regex.h category.h charset.h
e8951513 1062region-cache.o: region-cache.c buffer.h region-cache.h
e931344e
EZ
1063scroll.o: scroll.c termchar.h dispextern.h frame.h msdos.h keyboard.h \
1064 $(config_h)
e8951513 1065search.o: search.c regex.h commands.h buffer.h region-cache.h syntax.h \
bbcf05c1 1066 blockinput.h atimer.h systime.h category.h charset.h composite.h $(config_h)
0df7d18a 1067strftime.o: strftime.c $(config_h)
713c0574 1068syntax.o: syntax.c syntax.h buffer.h commands.h category.h charset.h \
5b2f4dca 1069 composite.h $(config_h)
656828cf 1070sysdep.o: sysdep.c $(config_h) dispextern.h termhooks.h termchar.h termopts.h \
bbcf05c1 1071 frame.h syssignal.h systty.h systime.h syswait.h blockinput.h atimer.h \
e931344e 1072 window.h msdos.h dosfns.h keyboard.h
656828cf 1073term.o: term.c termchar.h termhooks.h termopts.h $(config_h) cm.h frame.h \
7dd2a2b2 1074 disptab.h dispextern.h keyboard.h charset.h coding.h ccl.h msdos.h
656828cf
RS
1075termcap.o: termcap.c $(config_h)
1076terminfo.o: terminfo.c $(config_h)
1077tparam.o: tparam.c $(config_h)
8f641052 1078undo.o: undo.c buffer.h commands.h $(config_h)
c04d7da3
RS
1079/* This hack is to discard any space that cpp might put at the beginning
1080 of UNEXEC when substituting it in. */
1081UNEXEC_ALIAS=UNEXEC
656828cf 1082$(UNEXEC_ALIAS): UNEXEC_SRC $(config_h)
bbcf05c1 1083w16select.o: w16select.c dispextern.h frame.h blockinput.h atimer.h systime.h \
c26949c3 1084 msdos.h $(config_h)
2c01dfb7 1085widget.o: widget.c xterm.h frame.h dispextern.h widgetprv.h \
8f393ef9 1086 $(srcdir)/../lwlib/lwlib.h $(config_h)
656828cf 1087window.o: window.c indent.h commands.h frame.h window.h buffer.h termchar.h \
5b2f4dca
KH
1088 termhooks.h disptab.h keyboard.h dispextern.h msdos.h composite.h \
1089 $(config_h)
2d3fa435 1090xdisp.o: xdisp.c macros.h commands.h indent.h buffer.h dispextern.h coding.h \
c26949c3 1091 termchar.h frame.h window.h disptab.h termhooks.h charset.h $(config_h) \
e651b9a2 1092 msdos.h composite.h fontset.h
656828cf 1093xfaces.o: xfaces.c dispextern.h frame.h xterm.h buffer.h blockinput.h \
bbcf05c1 1094 window.h charset.h msdos.h dosfns.h composite.h atimer.h systime.h $(config_h)
00edcd1d 1095xfns.o: xfns.c buffer.h frame.h window.h keyboard.h xterm.h dispextern.h \
bbcf05c1
DL
1096 $(srcdir)/../lwlib/lwlib.h blockinput.h atimer.h systime.h epaths.h \
1097 charset.h $(config_h)
690b03fe 1098xmenu.o: xmenu.c xterm.h termhooks.h window.h dispextern.h frame.h keyboard.h \
bbcf05c1
DL
1099 $(srcdir)/../lwlib/lwlib.h blockinput.h atimer.h systime.h msdos.h \
1100 $(config_h)
656828cf 1101xterm.o: xterm.c xterm.h termhooks.h termopts.h termchar.h window.h \
bbcf05c1 1102 dispextern.h frame.h disptab.h blockinput.h atimer.h systime.h syssignal.h \
5b2f4dca 1103 keyboard.h gnu.h sink.h sinkmask.h charset.h ccl.h fontset.h composite.h \
e931344e 1104 coding.h $(config_h)
713c0574 1105xselect.o: xselect.c dispextern.h frame.h xterm.h blockinput.h charset.h \
bbcf05c1 1106 coding.h ccl.h buffer.h atimer.h systime.h $(config_h)
affb9299 1107xrdb.o: xrdb.c $(config_h) epaths.h
656828cf 1108hftctl.o: hftctl.c $(config_h)
d21bd3fb 1109sound.o: sound.c dispextern.h $(config_h)
8476c2f8 1110atimer.o: atimer.c atimer.h systime.h $(config_h)
ae3bed12
BF
1111
1112/* The files of Lisp proper */
1113
65b6ac4f 1114alloc.o: alloc.c frame.h window.h buffer.h puresize.h syssignal.h keyboard.h \
bbcf05c1 1115 blockinput.h atimer.h systime.h charset.h dispextern.h $(config_h) $(INTERVAL_SRC)
94c02a5e 1116bytecode.o: bytecode.c buffer.h syntax.h charset.h $(config_h)
713c0574 1117data.o: data.c buffer.h puresize.h charset.h syssignal.h keyboard.h $(config_h)
bbcf05c1
DL
1118eval.o: eval.c commands.h keyboard.h blockinput.h atimer.h systime.h \
1119 $(config_h)
656828cf 1120floatfns.o: floatfns.c $(config_h)
b195b25d 1121fns.o: fns.c commands.h $(config_h) frame.h buffer.h charset.h keyboard.h \
00edcd1d 1122 frame.h window.h dispextern.h $(INTERVAL_SRC)
713c0574 1123print.o: print.c process.h frame.h window.h buffer.h keyboard.h charset.h\
5b2f4dca 1124 $(config_h) dispextern.h msdos.h composite.h
affb9299 1125lread.o: lread.c commands.h keyboard.h buffer.h epaths.h charset.h $(config_h) \
c26949c3 1126 termhooks.h msdos.h
ae3bed12
BF
1127
1128/* Text properties support */
00edcd1d
GM
1129textprop.o: textprop.c buffer.h window.h dispextern.h $(INTERVAL_SRC) \
1130 $(config_h)
33fef74e
DL
1131intervals.o: intervals.c buffer.h $(INTERVAL_SRC) keyboard.h puresize.h $(config_h)
1132composite.o: composite.c buffer.h charset.h $(INTERVAL_SRC) $(config_h)
ae3bed12
BF
1133
1134/* System-specific programs to be made.
33fef74e 1135 OTHER_FILES and OBJECTS_MACHINE
ae3bed12
BF
1136 select which of these should be compiled. */
1137
00edcd1d 1138sunfns.o: sunfns.c buffer.h window.h dispextern.h $(config_h)
ae3bed12
BF
1139
1140${libsrc}emacstool: ${libsrc}emacstool.c
1141 cd ${libsrc}; ${MAKE} ${MFLAGS} emacstool
bfb7b570 1142mostlyclean:
3320cc50 1143 rm -f temacs prefix-args core *.core \#* *.o libXMenu11.a liblw.a
bfb7b570
JB
1144 rm -f ../etc/DOC
1145clean: mostlyclean
3320cc50 1146 rm -f emacs-* emacs bootstrap-emacs
ae3bed12
BF
1147/**/# This is used in making a distribution.
1148/**/# Do not use it on development directories!
bfb7b570 1149distclean: clean
affb9299 1150 rm -f epaths.h config.h Makefile Makefile.c config.stamp stamp-oldxmenu ../etc/DOC-*
40d4f149
RS
1151maintainer-clean: distclean
1152 @echo "This command is intended for maintainers to use;"
1153 @echo "it deletes files that may require special tools to rebuild."
bfb7b570 1154 rm -f TAGS
c3d80a47
ER
1155versionclean:
1156 -rm -f emacs emacs-* ../etc/DOC*
9e012fc3 1157extraclean: distclean
22e5421f 1158 -rm -f *~ \#* m/?*~ s/?*~
9e012fc3 1159
ae3bed12
BF
1160/* The rule for the [sm] files has to be written a little funny to
1161 avoid looking like a C comment to CPP. */
4322e608 1162SOURCES = *.[ch] [sm]/?* COPYING Makefile.in \
affb9299 1163 config.in epaths.in README COPYING ChangeLog vms.pp-trans
a6af8696
ER
1164unlock:
1165 chmod u+w $(SOURCES)
1166
1167relock:
1168 chmod -w $(SOURCES)
affb9299 1169 chmod +w epaths.h
dd6e8a8d 1170
becf3db3
RS
1171/* Arrange to make a tags table TAGS-LISP for ../lisp,
1172 plus TAGS for the C files, which includes ../lisp/TAGS by reference. */
04e209dc
GM
1173ctagsfiles1 = [xyzXYZ]*.[hc]
1174ctagsfiles2 = [a-wA-W]*.[hc]
74e89fc9 1175TAGS: $(srcdir)/$(ctagsfiles)
847115ad 1176 ../lib-src/etags --include=TAGS-LISP --include=${lwlibdir}/TAGS \
6f940ba1 1177 --regex='/[ ]*DEFVAR_[A-Z_ (]+"\([^"]+\)"/' \
04e209dc 1178 $(srcdir)/$(ctagsfiles1) $(srcdir)/$(ctagsfiles2)
becf3db3
RS
1179frc:
1180TAGS-LISP: frc
67ed07c3 1181 $(MAKE) -f ${lispsource}Makefile TAGS-LISP ETAGS=../lib-src/etags
becf3db3 1182tags: TAGS TAGS-LISP
ac21ec40 1183.PHONY: tags
2d2e4a9f
GM
1184
1185
1186/* Bootstrapping. */
1187
1188bootstrap: bootstrap-emacs
1189
1190/* Build a temacs with a sufficiently large PURESIZE to load the
1191 Lisp files from loadup.el in source form. */
1192
1193bootstrap-temacs:
264f4c4b 1194 LC_ALL=C $(MAKE) $(MFLAGS) temacs ALL_CFLAGS="$(ALL_CFLAGS) -DPURESIZE=5000000 -I../src"
2d2e4a9f
GM
1195
1196/* Dump an Emacs executable named bootstrap-emacs containing the
1197 files from loadup.el in source form. */
1198
1199bootstrap-emacs: bootstrap-temacs
1200#ifdef CANNOT_DUMP
1201 ln temacs bootstrap-emacs
1202#else
1203#ifdef HAVE_SHM
1204 ./temacs -nl -batch -l loadup bootstrap
1205#else /* ! defined (HAVE_SHM) */
1206 ./temacs --batch --load loadup bootstrap
1207#endif /* ! defined (HAVE_SHM) */
1208#endif /* ! defined (CANNOT_DUMP) */
8170b125 1209 mv -f emacs bootstrap-emacs
2d2e4a9f
GM
1210 rm -f temacs
1211