Don't do seddery on config.status after AC_OUTPUT.
[bpt/emacs.git] / src / Makefile.in
CommitLineData
ae3bed12
BF
1/* Makefile for GNU Emacs.
2 Copyright (C) 1985, 1987, 1988, 1993 Free Software Foundation, Inc.
ec558adc 3
ae3bed12
BF
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
18the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20/* BSD doesn't have it as a default. */
4ddcbb51 21MAKE = make
4ddcbb51 22
ae3bed12
BF
23/* Here are the things that we expect ../configure to edit. */
24srcdir=@srcdir@
25VPATH=@srcdir@
26CC=@CC@
27CPP=@CPP@
28CFLAGS=@CFLAGS@
29C_SWITCH_SYSTEM=
30LN_S=@LN_S@
31
32/* On Xenix and the IBM RS6000, double-dot gets screwed up. */
33dot = .
34lispdir = ${srcdir}/$(dot)$(dot)/lisp/
35libsrc = $(dot)$(dot)/lib-src/
36etc = $(dot)$(dot)/etc/
37shortnamesdir = $(dot)$(dot)/shortnames/
38cppdir = $(dot)$(dot)/cpp/
39oldXMenudir = $(dot)$(dot)/oldXMenu/
40config_h = config.h
41
42/* just to be sure the sh is used */
43SHELL=/bin/sh
44
45#define NO_SHORTNAMES
46#define THIS_IS_YMAKEFILE
47#define NOT_C_CODE
48#include "config.h"
49
50/* Use HAVE_X11 as an alias for X11 in this file
51 to avoid problems with X11 as a subdirectory name
52 in -I and other such options which pass through this file. */
53
54#ifdef X11
55#define HAVE_X11
56#undef X11
57#endif
58
59/* On some machines #define register is done in config;
60 don't let it interfere with this file. */
61#undef register
62
63/* On some systems we may not be able to use the system make command. */
64#ifdef MAKE_COMMAND
65MAKE = MAKE_COMMAND
66#else
67MAKE=make
68#endif
69
70#ifdef C_COMPILER
71CC = C_COMPILER
72#endif
73
74/* Some machines don't find the standard C libraries in the usual place. */
75#ifndef ORDINARY_LINK
76#ifndef LIB_STANDARD
77#define LIB_STANDARD -lc
78#endif
79#else
80#ifndef LIB_STANDARD
81#define LIB_STANDARD
82#endif
83#endif
84
85/* Unless inhibited or changed, use -lg to link for debugging. */
86#ifndef LIBS_DEBUG
87#define LIBS_DEBUG -lg
88#endif
89
90/* Some s/*.h files define this to request special libraries. */
91#ifndef LIBS_SYSTEM
92#define LIBS_SYSTEM
93#endif
94
95/* Some m/*.h files define this to request special libraries. */
96#ifndef LIBS_MACHINE
97#define LIBS_MACHINE
98#endif
99
100#ifndef LIB_MATH
101# ifdef LISP_FLOAT_TYPE
102# define LIB_MATH -lm
103# else /* ! defined (LISP_FLOAT_TYPE) */
104# define LIB_MATH
105# endif /* ! defined (LISP_FLOAT_TYPE) */
106#endif /* LIB_MATH */
107
108/* Some s/*.h files define this to request special switches in ld. */
109#ifndef LD_SWITCH_SYSTEM
110#if !defined (__GNUC__) && (defined(COFF_ENCAPSULATE) || (defined (BSD) && !defined (COFF)))
111#define LD_SWITCH_SYSTEM -X
112#else /* ! defined(COFF_ENCAPSULATE) || (defined (BSD) && !defined (COFF)) */
113#define LD_SWITCH_SYSTEM
114#endif /* ! defined(COFF_ENCAPSULATE) || (defined (BSD) && !defined (COFF)) */
115#endif /* LD_SWITCH_SYSTEM */
116
117/* Some m/*.h files define this to request special switches in ld. */
118#ifndef LD_SWITCH_MACHINE
119#define LD_SWITCH_MACHINE
120#endif
121
122/* Some m/*.h files define this to request special switches in cc. */
123#ifndef C_SWITCH_MACHINE
124#define C_SWITCH_MACHINE
125#endif
126
127/* Some s/*.h files define this to request special switches in cc. */
128#ifndef C_SWITCH_SYSTEM
129#define C_SWITCH_SYSTEM
130#endif
131
132/* These macros are for switches specifically related to X Windows. */
133#ifndef C_SWITCH_X_MACHINE
134#define C_SWITCH_X_MACHINE
135#endif
136
137#ifndef C_SWITCH_X_SYSTEM
138#define C_SWITCH_X_SYSTEM
139#endif
140
141#ifndef C_SWITCH_X_SITE
142#define C_SWITCH_X_SITE
143#endif
144
145#ifndef LD_SWITCH_X_SITE
146#define LD_SWITCH_X_SITE
147#endif
148
149/* These can be passed in from config.h to define special load and
150 compile switches needed by individual sites */
151#ifndef LD_SWITCH_SITE
152#define LD_SWITCH_SITE
153#endif
154
155#ifndef C_SWITCH_SITE
156#define C_SWITCH_SITE
157#endif
158
159#ifndef ORDINARY_LINK
9e012fc3 160
ae3bed12
BF
161#ifndef CRT0_COMPILE
162#define CRT0_COMPILE $(CC) -c $(ALL_CFLAGS) C_SWITCH_ASM
163#endif
164
165#ifndef START_FILES
166#ifdef NO_REMAP
167#ifdef COFF_ENCAPSULATE
168#define START_FILES pre-crt0.o /usr/local/lib/gcc-crt0.o
169#else /* ! defined (COFF_ENCAPSULATE) */
170#define START_FILES pre-crt0.o /lib/crt0.o
171#endif /* ! defined (COFF_ENCAPSULATE) */
172#else /* ! defined (NO_REMAP) */
173#define START_FILES crt0.o
174#endif /* ! defined (NO_REMAP) */
175#endif /* START_FILES */
176STARTFILES = START_FILES
177
178#else /* ORDINARY_LINK */
179
180/* config.h might want to force START_FILES anyway */
181#ifdef START_FILES
182STARTFILES = START_FILES
183#endif /* START_FILES */
184
185#endif /* not ORDINARY_LINK */
186
187
188/* cc switches needed to make `asm' keyword work.
189 Nothing special needed on most machines. */
190#ifndef C_SWITCH_ASM
191#define C_SWITCH_ASM
192#endif
193
194/* Figure out whether the system cpp can handle long names.
195 Do it by testing it right now.
196 If it loses, arrange to use the GNU cpp. */
197
198#define LONGNAMEBBBFOOX
199#ifdef LONGNAMEBBBARFOOX
200/* Installed cpp fails to distinguish those names! */
201/* Arrange to compile the GNU cpp later on */
202#define NEED_CPP
203/* Cause cc to invoke the cpp that comes with Emacs,
204 which will be in a file named localcpp. */
205MYCPPFLAG= -Blocal
206/* LOCALCPP is the local one or nothing.
207 CPP is the local one or the standardone. */
208LOCALCPP= localcpp
209#endif /* ! defined (LONGNAMEBBBARFOOX) */
210
211#ifdef SHORTNAMES
212SHORT= shortnames
213#endif
214
215/* DO NOT use -R. There is a special hack described in lastfile.c
216 which is used instead. Some initialized data areas are modified
217 at initial startup, then labeled as part of the text area when
218 Emacs is dumped for the first time, and never changed again. */
219
220/* If you want to debug, you can add C_DEBUG_SWITCH to this list.
221 If you want to optimize, you can add C_OPTIMIZE_SWITCH to the list. */
222
223/* -Demacs is needed to make some files produce the correct version
224 for use in Emacs.
225
226 -DHAVE_CONFIG_H is needed for some other files to take advantage of
227 the information in `config.h'. */
d70fd7d6 228CFLAGS=-g
ae3bed12
BF
229/* C_SWITCH_X_SITE must come before C_SWITCH_X_MACHINE and C_SWITCH_X_SYSTEM
230 since it may have -I options that should override those two. */
4b431fb7 231ALL_CFLAGS=-Demacs -DHAVE_CONFIG_H $(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
232.c.o:
233 $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $<
234
235#ifndef LIBX10_MACHINE
236#define LIBX10_MACHINE
237#endif
238
239#ifndef LIBX11_MACHINE
240#define LIBX11_MACHINE
241#endif
242
243#ifndef LIBX10_SYSTEM
244#define LIBX10_SYSTEM
245#endif
246
247#ifndef LIBX11_SYSTEM
248#define LIBX11_SYSTEM
249#endif
250
251#ifndef LIB_X11_LIB
252#define LIB_X11_LIB -lX11
253#endif
254
255#ifdef HAVE_X_WINDOWS
256#ifdef HAVE_X_MENU
257
258/* Include xmenu.o in the list of X object files. */
259XOBJ= xterm.o xfns.o xfaces.o xmenu.o xselect.o xrdb.o
260
261/* The X Menu stuff is present in the X10 distribution, but missing
262 from X11. If we have X10, just use the installed library;
263 otherwise, use our own copy. */
264#ifdef HAVE_X11
265OLDXMENU= libXMenu11.a
266LIBXMENU= $(OLDXMENU)
267#else /* ! defined (HAVE_X11) */
268LIBXMENU= -lXMenu
269#endif /* ! defined (HAVE_X11) */
270
271#else /* ! defined (HAVE_X_MENU) */
272
273/* Otherwise, omit xmenu.o from the list of X object files, and
274 don't worry about the menu library at all. */
275XOBJ= xterm.o xfns.o xfaces.o xselect.o xrdb.o
276LIBXMENU=
277#endif /* ! defined (HAVE_X_MENU) */
278
279#ifdef HAVE_X11
280LIBX= $(LIBXMENU) LD_SWITCH_X_SITE LIB_X11_LIB LIBX11_MACHINE LIBX11_SYSTEM
281#else /* ! defined (HAVE_X11) */
282LIBX= $(LIBXMENU) LD_SWITCH_X_SITE -lX10 LIBX10_MACHINE LIBX10_SYSTEM
283#endif /* ! defined (HAVE_X11) */
284#endif /* ! defined (HAVE_X_WINDOWS) */
285
286#ifndef ORDINARY_LINK
287/* Fix linking if compiled with GCC. */
288#ifdef __GNUC__
289
290#if __GNUC__ > 1
291
292/* Versions of GCC >= 2.0 put their library, libgcc.a, in obscure
293 places that are difficult to figure out at make time. Fortunately,
294 these same versions allow you to pass arbitrary flags on to the
295 linker, so there's no reason not to use it as a linker.
296
297 Well, it's not quite perfect. The `-nostdlib' keeps GCC from
298 searching for libraries in its internal directories, so we have to
299 ask GCC explicitly where to find libgcc.a. */
9e012fc3 300
ae3bed12
BF
301#ifndef LINKER
302#define LINKER $(CC) -nostdlib
303#endif
0c22fbca 304
ae3bed12
BF
305#ifndef LIB_GCC
306/* Ask GCC where to find libgcc.a. */
307#define LIB_GCC `$(CC) -print-libgcc-file-name`
308#endif /* LIB_GCC */
c8ff0e1b 309
ae3bed12 310GNULIB_VAR = LIB_GCC
5627d72e 311
ae3bed12
BF
312/* GCC passes any argument prefixed with -Xlinker directly to the
313 linker. See prefix-args.c for an explanation of why we don't do
314 this with the shell's `for' construct.
315 Note that some people don't have '.' in their paths, so we must
316 use ./prefix-args. */
317#define YMF_PASS_LDFLAGS(flags) `./prefix-args -Xlinker flags`
9e012fc3 318
ae3bed12 319#else /* __GNUC__ < 2 */
c8ff0e1b 320
ae3bed12
BF
321#ifndef LIB_GCC
322#define LIB_GCC /usr/local/lib/gcc-gnulib
323#endif /* LIB_GCC */
324GNULIB_VAR = `if [ -f LIB_GCC ] ; then echo LIB_GCC; else echo; fi`
325#endif /* __GNUC__ < 2 */
326#else /* ! defined (__GNUC__) */
327GNULIB_VAR =
c8ff0e1b 328
ae3bed12
BF
329#endif /* ! defined (__GNUC__) */
330#endif /* not ORDINARY_LINK */
331
332/* Specify address for ld to start loading at,
333 if requested by configuration. */
334#ifdef LD_TEXT_START_ADDR
335STARTFLAGS = -T LD_TEXT_START_ADDR -e __start
336#endif
337
338#ifdef ORDINARY_LINK
339LD = $(CC)
340#else
341#ifdef COFF_ENCAPSULATE
342LD=$(CC) -nostdlib
343#else /* not ORDINARY_LINK */
344#ifdef LINKER
345LD=LINKER
346#else /* ! defined (LINKER) */
347LD=ld
348#endif /* ! defined (LINKER) */
349#endif /* ! defined (COFF_ENCAPSULATE) */
350#endif /* not ORDINARY_LINK */
351
352LDFLAGS = LD_SWITCH_SYSTEM LD_SWITCH_MACHINE LD_SWITCH_SITE
353
354/* A macro which other sections of ymakefile can redefine to munge the
355 flags before they're passed to LD. This is helpful if you have
356 redefined LD to something odd, like "gcc". */
357#ifndef YMF_PASS_LDFLAGS
358#define YMF_PASS_LDFLAGS(flags) flags
359#endif
360
361/* Allow config.h to specify a replacement file for unexec.c. */
362#ifndef UNEXEC
363#define UNEXEC unexec.o
364#endif
365#ifndef UNEXEC_SRC
366#define UNEXEC_SRC unexec.c
367#endif
368
369#ifdef USE_TEXT_PROPERTIES
370#define INTERVAL_SRC intervals.h
371#define INTERVAL_OBJ intervals.o textprop.o
372#else
373#define INTERVAL_SRC
374#define INTERVAL_OBJ
375#endif
376
377#ifdef HAVE_GETLOADAVG
378#define GETLOADAVG_OBJ
379#else
380#define GETLOADAVG_OBJ getloadavg.o
381#endif
382
383/* lastfile must follow all files
384 whose initialized data areas should be dumped as pure by dump-emacs. */
385obj= dispnew.o frame.o scroll.o xdisp.o window.o \
386 term.o cm.o $(XOBJ) \
387 emacs.o keyboard.o macros.o keymap.o sysdep.o \
388 buffer.o filelock.o insdel.o marker.o INTERVAL_OBJ \
389 minibuf.o fileio.o dired.o filemode.o \
390 cmds.o casetab.o casefiddle.o indent.o search.o regex.o undo.o \
391 alloc.o data.o doc.o editfns.o callint.o \
392 eval.o floatfns.o fns.o print.o lread.o \
393 abbrev.o syntax.o UNEXEC mocklisp.o bytecode.o \
394 process.o callproc.o \
395 doprnt.o GETLOADAVG_OBJ
396
397#ifdef TERMINFO
398/* Used to be -ltermcap here. If your machine needs that,
399 define LIBS_TERMCAP in the m/*.h file. */
400#ifndef LIBS_TERMCAP
401#define LIBS_TERMCAP -lcurses
402#endif /* LIBS_TERMCAP */
403termcapobj = terminfo.o
404#else /* ! defined (TERMINFO) */
405#ifndef LIBS_TERMCAP
406#define LIBS_TERMCAP
407termcapobj = termcap.o tparam.o
408#else /* LIBS_TERMCAP */
409termcapobj = tparam.o
410#endif /* LIBS_TERMCAP */
411#endif /* ! defined (TERMINFO) */
412
413
414#ifndef SYSTEM_MALLOC
415
416#ifdef GNU_MALLOC /* New GNU malloc */
417#ifdef REL_ALLOC
418mallocobj = gmalloc.o ralloc.o vm-limit.o
419#else /* ! defined (REL_ALLOC) */
420mallocobj = gmalloc.o vm-limit.o
421#endif /* ! defined (REL_ALLOC) */
422#else /* Old GNU malloc */
423mallocobj = malloc.o
424#endif /* Old GNU malloc */
425
426#endif /* SYSTEM_MALLOC */
427
428
429#ifndef HAVE_ALLOCA
430allocaobj = alloca.o
431#else
432allocaobj =
433#endif
434
435
436/* define otherobj as list of object files that make-docfile
437 should not be told about. */
438otherobj= $(termcapobj) lastfile.o $(mallocobj) $(allocaobj)
439
440#ifdef LISP_FLOAT_TYPE
441#define FLOAT_SUPPORT ${lispdir}float-sup.elc
442#else
443#define FLOAT_SUPPORT
444#endif
445
446#ifdef MULTI_FRAME
447#define FRAME_SUPPORT ${lispdir}frame.elc ${lispdir}mouse.elc ${lispdir}select.elc ${lispdir}scroll-bar.elc
448#else
449#define FRAME_SUPPORT
450#endif
451
452#ifdef VMS
453#define VMS_SUPPORT ${lispdir}vmsproc.elc ${lispdir}vms-patch
454#else
455#define VMS_SUPPORT
456#endif
457
458/* List of Lisp files loaded into the dumped Emacs. It's arranged
459 like this because it's easier to generate it semi-mechanically from
460 loadup.el this way.
461
462 Note that this list should not include lisp files which might not
463 be present, like site-load.el and site-init.el; this makefile
464 expects them all to be either present or buildable.
465
466 It should not include version.el. That file is often changed by
467 the build process itself, but most of the files which want to
468 depend on lisp.h don't care about those changes. */
469lisp= \
470 ${lispdir}abbrev.elc \
471 ${lispdir}buff-menu.elc \
472 ${lispdir}byte-run.elc \
473 ${lispdir}c-mode.elc \
474 ${lispdir}files.elc \
475 ${lispdir}fill.elc \
476 FLOAT_SUPPORT \
477 FRAME_SUPPORT \
478 ${lispdir}help.elc \
479 ${lispdir}indent.elc \
480 ${lispdir}isearch.elc \
481 ${lispdir}lisp-mode.elc \
482 ${lispdir}lisp.elc \
483 ${lispdir}loaddefs.el \
484 ${lispdir}map-ynp.elc \
485 ${lispdir}page.elc \
486 ${lispdir}paragraphs.elc \
487 ${lispdir}paths.el \
488 ${lispdir}register.elc \
489 ${lispdir}replace.elc \
490 ${lispdir}simple.elc \
491 ${lispdir}startup.elc \
492 ${lispdir}subr.elc \
493 ${lispdir}text-mode.elc \
494 ${lispdir}vc-hooks.elc \
495 VMS_SUPPORT \
496 ${lispdir}window.elc
497
498/* Construct full set of libraries to be linked.
499 Note that SunOS needs -lm to come before -lc; otherwise, you get
500 duplicated symbols. */
501LIBES = $(LIBX) LIBS_SYSTEM LIBS_MACHINE LIBS_TERMCAP \
502 LIBS_DEBUG $(GNULIB_VAR) LIB_MATH LIB_STANDARD
503
504/* Enable recompilation of certain other files depending on system type. */
505
506#ifndef OTHER_FILES
507#define OTHER_FILES
508#endif
509
510/* Enable inclusion of object files in temacs depending on system type. */
511#ifndef OBJECTS_SYSTEM
512#define OBJECTS_SYSTEM
513#endif
514
515#ifndef OBJECTS_MACHINE
516#define OBJECTS_MACHINE
517#endif
518
519all: emacs OTHER_FILES
520
521emacs: temacs ${etc}DOC ${lisp}
522#ifdef CANNOT_DUMP
523 ln temacs emacs
524#else
525#ifdef HAVE_SHM
526 -if [ -w ${srcdir}/../lisp ]; then \
527 w=`pwd`; cd ${srcdir}; $${w}/temacs -nl -batch -l ../lisp/inc-vers; \
528 else true; fi
529 ./temacs -nl -batch -l loadup dump
530#else /* ! defined (HAVE_SHM) */
531 -if [ -w ${srcdir}/../lisp ]; then \
532 w=`pwd`; cd ${srcdir}; $${w}/temacs -batch -l ../lisp/inc-vers; \
533 else true; fi
534 ./temacs -batch -l loadup dump
535#endif /* ! defined (HAVE_SHM) */
536#endif /* ! defined (CANNOT_DUMP) */
537
538${etc}DOC: ${libsrc}make-docfile ${obj} ${lisp} OBJECTS_SYSTEM OBJECTS_MACHINE
539 rm -f ${etc}DOC
540 ${libsrc}make-docfile -d ${srcdir} ${obj} OBJECTS_SYSTEM OBJECTS_MACHINE ${lisp} \
541 ${lispdir}version.el > ${etc}DOC
542
543${libsrc}make-docfile:
544 cd ${libsrc}; ${MAKE} ${MFLAGS} make-docfile ../arch-lib
545
546/* Some systems define this to cause parallel Make-ing. */
547#ifndef MAKE_PARALLEL
548#define MAKE_PARALLEL
549#endif
550
551temacs: MAKE_PARALLEL $(LOCALCPP) $(SHORT) $(STARTFILES) $(OLDXMENU) ${obj} ${otherobj} OBJECTS_SYSTEM OBJECTS_MACHINE prefix-args
552 $(LD) YMF_PASS_LDFLAGS (${STARTFLAGS} ${LDFLAGS}) \
553 -o temacs ${STARTFILES} ${obj} ${otherobj} \
554 OBJECTS_SYSTEM OBJECTS_MACHINE ${LIBES}
555
556prefix-args: prefix-args.c $(config_h)
557 $(CC) $(ALL_CFLAGS) ${srcdir}/prefix-args.c -o prefix-args
558
559/* These are needed for C compilation, on the systems that need them */
560#ifdef NEED_CPP
561CPP = ./localcpp
562localcpp:
563 cd ${cppdir}; ${MAKE} ${MFLAGS} EMACS=-DEMACS
564 ln ${cppdir}cpp localcpp /* Name where ALL_CFLAGS will refer to it */
565/* cc appears to be cretinous and require all of these to exist
566 if -B is specified -- we can't use one local pass and let the
567 others be the standard ones. What a loser.
568 We can't even use ln, since they are probably
569 on different disks. */
570 cp /lib/ccom localccom
571 -cp /lib/optim localoptim
572 -cp /lib/c2 localc2
573 cp /bin/as localas
574#else /* ! defined (NEED_CPP) */
575CPP = $(CC) -E
576#endif /* ! defined (NEED_CPP) */
577
578#ifdef SHORTNAMES
579shortnames:
580 cd ${shortnamesdir}; ${MAKE} ${MFLAGS}
581#endif
582
583/* Don't lose if this was not defined. */
584#ifndef OLDXMENU_OPTIONS
585#define OLDXMENU_OPTIONS
586#endif
587
588#ifdef HAVE_X_WINDOWS
589#ifdef HAVE_X_MENU
590#ifdef HAVE_X11
591$(OLDXMENU): really-oldXMenu
592 -rm -f $(OLDXMENU) /* We might have a link to an old version. */
593 ${LN_S} ${oldXMenudir}libXMenu11.a $(OLDXMENU)
594
595/* Encode the values of these two macros in Make variables,
596 so we can use $(...) to substitute their values within "...". */
597C_SWITCH_MACHINE_1 = C_SWITCH_MACHINE
598C_SWITCH_SYSTEM_1 = C_SWITCH_SYSTEM
599C_SWITCH_SITE_1 = C_SWITCH_SITE
600C_SWITCH_X_SITE_1 = C_SWITCH_X_SITE
601C_SWITCH_X_MACHINE_1 = C_SWITCH_X_MACHINE
602C_SWITCH_X_SYSTEM_1 = C_SWITCH_X_SYSTEM
603really-oldXMenu:
604 cd ${oldXMenudir}; ${MAKE} ${MFLAGS} OLDXMENU_OPTIONS \
605 CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}' \
606 "C_SWITCH_X_SITE=$(C_SWITCH_X_SITE_1)" \
607 "C_SWITCH_X_MACHINE=$(C_SWITCH_X_MACHINE_1)" \
608 "C_SWITCH_X_SYSTEM=$(C_SWITCH_X_SYSTEM_1)" \
609 "C_SWITCH_SITE=$(C_SWITCH_SITE_1)" \
610 "C_SWITCH_MACHINE=$(C_SWITCH_MACHINE_1)" \
611 "C_SWITCH_SYSTEM=$(C_SWITCH_SYSTEM_1)"
612 @true /* make -t should not create really-oldXMenu. */
613#endif /* ! defined (HAVE_X11) */
614#endif /* ! defined (HAVE_X_MENU) */
615#endif /* ! defined (HAVE_X_WINDOWS) */
616
617paths.h: paths.h.in
618 @echo "The file paths.h needs to be set up from paths.h.in."
619 @echo "Consult the file \`INSTALL' for instructions for building Emacs."
620 exit 1
621
622config.h: config.h.in
623 @echo "The file config.h needs to be set up from config.h.in."
624 @echo "Consult the file \`INSTALL' for instructions for building Emacs."
625 exit 1
626
627/* Some machines have alloca built-in.
628 They should define HAVE_ALLOCA, or may just let alloca.s
629 be used but generate no code.
630 Some have it written in assembler in alloca.s.
631 Some use the C version in alloca.c (these define C_ALLOCA in config.h).
632 */
633
634#ifdef C_ALLOCA
635/* We could put something in alloca.c to #define free and malloc
636 whenever emacs was #defined, but that's not appropriate for all
637 users of alloca in Emacs. Check out ../lib-src/getopt.c. */
638alloca.o : alloca.c
639 $(CC) -c $(CPPFLAGS) -Dfree=xfree -Dmalloc=xmalloc \
640 $(ALL_CFLAGS) ${srcdir}/alloca.c
641#else
642#ifndef HAVE_ALLOCA
643alloca.o : alloca.s config.h
644/* $(CPP) is cc -E, which may get confused by filenames
645 that do not end in .c. So copy file to a safe name. */
646 cp ${srcdir}/alloca.s allocatem.c
647/* Remove any ^L, blank lines, and preprocessor comments,
648 since some assemblers barf on them. Use a different basename for the
649 output file, since some stupid compilers (Green Hill's) use that
650 name for the intermediate assembler file. */
651 $(CPP) $(CPPFLAGS) $(ALL_CFLAGS) allocatem.c | \
652 sed -e 's/\f//' -e 's/^#.*//' | \
653 sed -n -e '/^..*$$/p' > allocax.s
654 -rm -f alloca.o
655/* Xenix, in particular, needs to run assembler via cc. */
656 $(CC) -c allocax.s
657 mv allocax.o alloca.o
658 rm allocax.s allocatem.c
659#endif /* HAVE_ALLOCA */
660#endif /* ! defined (C_ALLOCA) */
661
662/* Nearly all the following files depend on lisp.h,
663 but it is not included as a dependency because
664 it is so often changed in ways that do not require any recompilation
665 and so rarely changed in ways that do require any. */
666
667abbrev.o : abbrev.c buffer.h commands.h $(config_h)
668buffer.o : buffer.c syntax.h buffer.h commands.h window.h \
669 INTERVAL_SRC blockinput.h $(config_h)
670callint.o : callint.c window.h commands.h buffer.h mocklisp.h \
671 keyboard.h $(config_h)
672callproc.o : callproc.c paths.h buffer.h commands.h $(config_h) process.h
673casefiddle.o : casefiddle.c syntax.h commands.h buffer.h $(config_h)
674casetab.o : casetab.c buffer.h $(config_h)
675cm.o : cm.c cm.h termhooks.h $(config_h)
676cmds.o : cmds.c syntax.h buffer.h commands.h $(config_h)
677pre-crt0.o : pre-crt0.c
678crt0.o : crt0.c $(config_h)
679 CRT0_COMPILE ${srcdir}/crt0.c
680dired.o : dired.c commands.h buffer.h $(config_h) regex.h
681dispnew.o : dispnew.c commands.h frame.h window.h buffer.h dispextern.h \
682 termchar.h termopts.h termhooks.h cm.h disptab.h systty.h systime.h $(config_h)
683doc.o : doc.c $(config_h) paths.h buffer.h keyboard.h
684doprnt.o : doprnt.c
685editfns.o : editfns.c window.h buffer.h systime.h INTERVAL_SRC $(config_h)
686emacs.o : emacs.c commands.h systty.h syssignal.h process.h INTERVAL_SRC $(config_h)
687fileio.o : fileio.c window.h buffer.h systime.h INTERVAL_SRC $(config_h)
688filelock.o : filelock.c buffer.h paths.h $(config_h)
689filemode.o : filemode.c $(config_h)
690getloadavg.o : getloadavg.c $(config_h)
691indent.o : indent.c frame.h window.h indent.h buffer.h $(config_h) termchar.h \
692 termopts.h disptab.h
693insdel.o : insdel.c window.h buffer.h INTERVAL_SRC blockinput.h $(config_h)
694keyboard.o : keyboard.c termchar.h termhooks.h termopts.h buffer.h \
695 commands.h frame.h window.h macros.h disptab.h keyboard.h syssignal.h \
696 systty.h systime.h dispextern.h intervals.h blockinput.h $(config_h)
697keymap.o : keymap.c buffer.h commands.h keyboard.h termhooks.h blockinput.h \
698 $(config_h)
699lastfile.o : lastfile.c $(config_h)
700macros.o : macros.c window.h buffer.h commands.h macros.h $(config_h)
701malloc.o : malloc.c $(config_h)
702gmalloc.o : gmalloc.c $(config_h)
703ralloc.o : ralloc.c $(config_h)
704vm-limit.o : vm-limit.c mem-limits.h $(config_h)
705marker.o : marker.c buffer.h $(config_h)
706minibuf.o : minibuf.c syntax.h dispextern.h frame.h window.h \
707 buffer.h commands.h $(config_h)
708mocklisp.o : mocklisp.c buffer.h $(config_h)
709process.o : process.c process.h buffer.h window.h termhooks.h termopts.h \
710 commands.h syssignal.h systime.h systty.h syswait.h frame.h $(config_h)
711regex.o : regex.c syntax.h buffer.h $(config_h) regex.h
712frame.o : frame.c xterm.h window.h frame.h termhooks.h commands.h keyboard.h \
713 buffer.h $(config_h)
714scroll.o : scroll.c termchar.h $(config_h) dispextern.h frame.h
715search.o : search.c regex.h commands.h buffer.h syntax.h blockinput.h $(config_h)
716syntax.o : syntax.c syntax.h buffer.h commands.h $(config_h)
717sysdep.o : sysdep.c $(config_h) dispextern.h termhooks.h termchar.h termopts.h \
718 frame.h syssignal.h systty.h systime.h syswait.h blockinput.h window.h
719term.o : term.c termchar.h termhooks.h termopts.h $(config_h) cm.h frame.h \
720 disptab.h
721termcap.o : termcap.c $(config_h)
722terminfo.o : terminfo.c $(config_h)
723tparam.o : tparam.c $(config_h)
724undo.o : undo.c buffer.h commands.h $(config_h)
725UNEXEC : UNEXEC_SRC $(config_h)
726window.o : window.c indent.h commands.h frame.h window.h buffer.h termchar.h \
727 termhooks.h disptab.h keyboard.h $(config_h)
728xdisp.o : xdisp.c macros.h commands.h indent.h buffer.h dispextern.h \
729 termchar.h frame.h window.h disptab.h termhooks.h $(config_h)
730xfaces.o : xfaces.c dispextern.h frame.h xterm.h buffer.h blockinput.h \
731 window.h $(config_h)
732xfns.o : xfns.c buffer.h frame.h window.h keyboard.h xterm.h \
733 blockinput.h $(config_h)
734xmenu.o : xmenu.c xterm.h window.h frame.h keyboard.h blockinput.h $(config_h)
735xterm.o : xterm.c xterm.h termhooks.h termopts.h termchar.h window.h \
736 dispextern.h frame.h disptab.h blockinput.h systime.h \
737 gnu.h sink.h sinkmask.h $(config_h)
738xselect.o : xselect.c dispextern.h frame.h xterm.h blockinput.h $(config_h)
739xrdb.o : xrdb.c $(config_h)
740
741/* The files of Lisp proper */
742
743alloc.o : alloc.c frame.h window.h buffer.h puresize.h syssignal.h
744alloc.o : blockinput.h $(config_h) INTERVAL_SRC
745bytecode.o : bytecode.c buffer.h $(config_h)
746data.o : data.c buffer.h puresize.h syssignal.h $(config_h)
747eval.o : eval.c commands.h keyboard.h blockinput.h $(config_h)
748floatfns.o : floatfns.c $(config_h)
749fns.o : fns.c commands.h $(config_h) frame.h buffer.h keyboard.h INTERVAL_SRC
750print.o : print.c process.h frame.h window.h buffer.h $(config_h)
751lread.o : lread.c commands.h keyboard.h buffer.h paths.h $(config_h) \
752 termhooks.h
753
754/* Text properties support */
755textprop.o : textprop.c buffer.h intervals.h $(config_h)
756intervals.o : intervals.c buffer.h intervals.h $(config_h)
757
758/* System-specific programs to be made.
759 OTHER_FILES, OBJECTS_SYSTEM and OBJECTS_MACHINE
760 select which of these should be compiled. */
761
762sunfns.o : sunfns.c buffer.h $(config_h)
763
764${libsrc}emacstool: ${libsrc}emacstool.c
765 cd ${libsrc}; ${MAKE} ${MFLAGS} emacstool
bfb7b570 766mostlyclean:
9d11b9a1 767 rm -f temacs prefix-args xmakefile* core \#* *.o libXMenu11.a
bfb7b570
JB
768 rm -f ../etc/DOC
769clean: mostlyclean
21ed4461 770 rm -f emacs-* emacs
ae3bed12
BF
771/**/# This is used in making a distribution.
772/**/# Do not use it on development directories!
bfb7b570 773distclean: clean
9d11b9a1 774 rm -f paths.h config.h ../etc/DOC-*
bfb7b570
JB
775realclean: distclean
776 rm -f TAGS
c3d80a47
ER
777versionclean:
778 -rm -f emacs emacs-* ../etc/DOC*
9e012fc3
JB
779extraclean: distclean
780 -rm -f *~ \#* m/*~ s/*~
781
ae3bed12
BF
782/* The rule for the [sm] files has to be written a little funny to
783 avoid looking like a C comment to CPP. */
784SOURCES = *.[ch] [sm]/?* COPYING ymakefile \
a6af8696
ER
785 config.h.in README COPYING ChangeLog vms.pp-trans
786unlock:
787 chmod u+w $(SOURCES)
788
789relock:
790 chmod -w $(SOURCES)
791 chmod +w paths.h
5f1a4d41 792tagsfiles = [a-z]*.h [a-z]*.c ../lisp/[a-z]*.el ../lisp/term/[a-z]*.el
ac21ec40
RM
793TAGS: $(tagsfiles)
794 etags $(tagsfiles)
795tags: TAGS
796.PHONY: tags