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