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