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