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