]> code.delx.au - gnu-emacs/blob - src/Makefile.in
(HAVE_X11R6): Definition deleted (previous change undone).
[gnu-emacs] / src / Makefile.in
1 # Makefile for GNU Emacs.
2 # Copyright (C) 1985, 87, 88, 93, 94, 95 Free Software Foundation, Inc.
3
4 # This file is part of GNU Emacs.
5
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.
10
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.
15
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. */
19
20 # Here are the things that we expect ../configure to edit.
21 srcdir=@srcdir@
22 VPATH=@srcdir@
23 CC=@CC@
24 CPP=@CPP@
25 CFLAGS=@CFLAGS@
26 LN_S=@LN_S@
27 # Substitute an assignment for the MAKE variable, because
28 # BSD doesn't have it as a default.
29 @SET_MAKE@
30
31 # On Xenix and the IBM RS6000, double-dot gets screwed up.
32 dot = .
33 dotdot = ${dot}${dot}
34 lispsource = ${srcdir}/$(dot)$(dot)/lisp/
35 libsrc = $(dot)$(dot)/lib-src/
36 etc = $(dot)$(dot)/etc/
37 shortnamesdir = $(dot)$(dot)/shortnames/
38 cppdir = $(dot)$(dot)/cpp/
39 oldXMenudir = $(dot)$(dot)/oldXMenu/
40 lwlibdir = $(dot)$(dot)/lwlib/
41
42 # Configuration files for .o files to depend on.
43 M_FILE = ${srcdir}/@machfile@
44 S_FILE = ${srcdir}/@opsysfile@
45 config_h = config.h $(M_FILE) $(S_FILE)
46
47 # ========================== start of cpp stuff ======================= */
48 /* From here on, comments must be done in C syntax. */
49
50 CPPFLAGS=
51 LDFLAGS=
52 C_SWITCH_SYSTEM=
53
54 /* just to be sure the sh is used */
55 SHELL=/bin/sh
56
57 #define THIS_IS_MAKEFILE
58 #define NO_SHORTNAMES
59 #define NOT_C_CODE
60 #include "config.h"
61
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
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
83 MAKE = MAKE_COMMAND
84 #endif
85
86 #ifdef C_COMPILER
87 CC = C_COMPILER
88 #endif
89
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
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
173 #ifndef LD_SWITCH_X_DEFAULT
174 #define LD_SWITCH_X_DEFAULT
175 #endif
176
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
188
189 #ifndef CRT0_COMPILE
190 #define CRT0_COMPILE $(CC) -c $(ALL_CFLAGS) C_SWITCH_ASM
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) */
201 #define START_FILES ecrt0.o
202 #endif /* ! defined (NO_REMAP) */
203 #endif /* START_FILES */
204 STARTFILES = START_FILES
205
206 #else /* ORDINARY_LINK */
207
208 /* config.h might want to force START_FILES anyway */
209 #ifdef START_FILES
210 STARTFILES = 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. */
233 MYCPPFLAG= -Blocal
234 /* LOCALCPP is the local one or nothing.
235 CPP is the local one or the standardone. */
236 LOCALCPP= localcpp
237 #endif /* ! defined (LONGNAMEBBBARFOOX) */
238
239 #ifdef SHORTNAMES
240 SHORT= shortnames
241 #endif
242
243 #ifdef USE_X_TOOLKIT
244 #define USE_@X_TOOLKIT_TYPE@
245 TOOLKIT_DEFINES = -DUSE_@X_TOOLKIT_TYPE@
246 #else
247 TOOLKIT_DEFINES =
248 #endif
249
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
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'. */
260
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. */
263 ALL_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}
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
288 #ifdef HAVE_X_MENU
289
290 /* Include xmenu.o in the list of X object files. */
291 XOBJ= 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
297 #ifdef USE_X_TOOLKIT
298 OLDXMENU=${lwlibdir}liblw.a
299 LIBXMENU= $(OLDXMENU)
300 #else /* not USE_X_TOOLKIT */
301 OLDXMENU= ${oldXMenudir}libXMenu11.a
302 LIBXMENU= $(OLDXMENU)
303 #endif /* not USE_X_TOOLKIT */
304 #else /* not HAVE_X11 */
305 LIBXMENU= -lXMenu
306 #endif /* not HAVE_X11 */
307
308 #else /* not HAVE_X_MENU */
309
310 /* Otherwise, omit xmenu.o from the list of X object files, and
311 don't worry about the menu library at all. */
312 XOBJ= xterm.o xfns.o xfaces.o xselect.o xrdb.o
313 LIBXMENU=
314 #endif /* not HAVE_X_MENU */
315
316 #ifdef USE_X_TOOLKIT
317 #define @X_TOOLKIT_TYPE@
318 #if defined (LUCID) || defined (ATHENA)
319 LIBW= -lXaw
320 #endif
321 #ifdef MOTIF
322 #ifdef LIB_MOTIF
323 LIBW= LIB_MOTIF
324 #else
325 LIBW= -lXm
326 #endif
327 #endif
328 #ifdef OPEN_LOOK
329 LIBW= -lXol
330 #endif
331
332 #ifdef HAVE_X11XTR6
333 #ifdef NEED_LIBW
334 LIBXTR6 = -lSM -lICE -lw
335 #else
336 LIBXTR6 = -lSM -lICE
337 #endif
338 #endif
339
340 #ifndef LIBXMU
341 #define LIBXMU -lXmu
342 #endif
343
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__.) */
348 LIBXT= STATIC_OPTION $(LIBW) LIBXMU -lXt $(LIBXTR6) -lXext STATIC_OPTION
349 #else /* not LIBXT_STATIC */
350 LIBXT= $(LIBW) LIBXMU -lXt $(LIBXTR6) -lXext
351 #endif /* not LIBXT_STATIC */
352
353 #else /* not USE_X_TOOLKIT */
354 LIBXT=
355 #endif /* not USE_X_TOOLKIT */
356
357 #ifdef HAVE_X11
358 /* LD_SWITCH_X_DEFAULT comes after everything else that specifies
359 options for where to find X libraries, but before those libraries. */
360 X11_LDFLAGS = LD_SWITCH_X_SITE LD_SWITCH_X_DEFAULT
361 LIBX= $(LIBXMENU) $(X11_LDFLAGS) $(LIBXT) LIB_X11_LIB LIBX11_MACHINE LIBX11_SYSTEM
362 #else /* not HAVE_X11 */
363 LIBX= $(LIBXMENU) LD_SWITCH_X_SITE -lX10 LIBX10_MACHINE LIBX10_SYSTEM
364 #endif /* not HAVE_X11 */
365 #endif /* not HAVE_X_WINDOWS */
366
367 #ifndef ORDINARY_LINK
368 /* Fix linking if compiled with GCC. */
369 #ifdef __GNUC__
370
371 #if __GNUC__ > 1
372
373 #ifdef LINKER
374 #define LINKER_WAS_SPECIFIED
375 #endif
376
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. */
385
386 #ifndef LINKER
387 #define LINKER $(CC) -nostdlib
388 #endif
389
390 #ifndef LIB_GCC
391 /* Ask GCC where to find libgcc.a. */
392 #define LIB_GCC `$(CC) -print-libgcc-file-name`
393 #endif /* not LIB_GCC */
394
395 GNULIB_VAR = LIB_GCC
396
397 #ifndef LINKER_WAS_SPECIFIED
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`
404 #else
405 #define YMF_PASS_LDFLAGS(flags) flags
406 #endif
407
408 #else /* __GNUC__ < 2 */
409
410 #ifndef LIB_GCC
411 #define LIB_GCC /usr/local/lib/gcc-gnulib
412 #endif /* not LIB_GCC */
413 GNULIB_VAR = `if [ -f LIB_GCC ] ; then echo LIB_GCC; else echo; fi`
414 #endif /* __GNUC__ < 2 */
415 #else /* not __GNUC__ */
416 GNULIB_VAR =
417
418 #endif /* not __GNUC__ */
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
424 STARTFLAGS = -T LD_TEXT_START_ADDR -e __start
425 #endif
426
427 #ifdef ORDINARY_LINK
428 LD = $(CC)
429 #else
430 #ifdef COFF_ENCAPSULATE
431 LD=$(CC) -nostdlib
432 #else /* not ORDINARY_LINK */
433 #ifdef LINKER
434 LD=LINKER
435 #else /* not LINKER */
436 LD=ld
437 #endif /* not LINKER */
438 #endif /* not COFF_ENCAPSULATE */
439 #endif /* not ORDINARY_LINK */
440
441 ALL_LDFLAGS = LD_SWITCH_SYSTEM LD_SWITCH_MACHINE LD_SWITCH_SITE $(LDFLAGS)
442
443 /* A macro which other sections of Makefile can redefine to munge the
444 flags before they're passed to LD. This is helpful if you have
445 redefined LD to something odd, like "gcc".
446 (The YMF prefix is a holdover from the old name "ymakefile".)
447 */
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
474 #ifdef HAVE_MKTIME
475 #define MKTIME_OBJ
476 #else
477 #define MKTIME_OBJ mktime.o
478 #endif
479
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
491 /* lastfile must follow all files
492 whose initialized data areas should be dumped as pure by dump-emacs. */
493 obj= dispnew.o frame.o scroll.o xdisp.o window.o \
494 cm.o term.o $(XOBJ) \
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 \
503 region-cache.o \
504 doprnt.o strftime.o MKTIME_OBJ GETLOADAVG_OBJ MSDOS_OBJ
505
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. */
509 SOME_MACHINE_OBJECTS = sunfns.o dosfns.o msdos.o intervals.o textprop.o \
510 xterm.o xfns.o xfaces.o xmenu.o xselect.o xrdb.o
511
512
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 */
519 termcapobj = terminfo.o
520 #else /* ! defined (TERMINFO) */
521 #ifndef LIBS_TERMCAP
522 #define LIBS_TERMCAP
523 termcapobj = termcap.o tparam.o
524 #else /* LIBS_TERMCAP */
525 termcapobj = 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
534 mallocobj = gmalloc.o ralloc.o vm-limit.o
535 #else /* ! defined (REL_ALLOC) */
536 mallocobj = gmalloc.o vm-limit.o
537 #endif /* ! defined (REL_ALLOC) */
538 #else /* Old GNU malloc */
539 mallocobj = malloc.o
540 #endif /* Old GNU malloc */
541
542 #endif /* SYSTEM_MALLOC */
543
544
545 #ifndef HAVE_ALLOCA
546 allocaobj = alloca.o
547 #else
548 allocaobj =
549 #endif
550
551 #ifdef USE_X_TOOLKIT
552 widgetobj= widget.o
553 #else /* not USE_X_TOOLKIT */
554 widgetobj=
555 #endif /* not USE_X_TOOLKIT */
556
557
558 /* define otherobj as list of object files that make-docfile
559 should not be told about. */
560 otherobj= $(termcapobj) lastfile.o $(mallocobj) $(allocaobj) $(widgetobj)
561
562 #ifdef HAVE_FACES
563 #define FACE_SUPPORT ${lispsource}faces.elc ${lispsource}facemenu.elc
564 #else
565 #define FACE_SUPPORT
566 #endif
567
568 #ifdef LISP_FLOAT_TYPE
569 #define FLOAT_SUPPORT ${lispsource}float-sup.elc
570 #else
571 #define FLOAT_SUPPORT
572 #endif
573
574 #ifdef MULTI_FRAME
575 #define FRAME_SUPPORT ${lispsource}frame.elc
576 #else
577 #define FRAME_SUPPORT
578 #endif
579
580 #ifdef HAVE_MOUSE
581 #define MOUSE_SUPPORT ${lispsource}menu-bar.elc ${lispsource}mouse.elc \
582 ${lispsource}select.elc ${lispsource}scroll-bar.elc
583 #else
584 #define MOUSE_SUPPORT
585 #endif
586
587 #ifdef HAVE_X_WINDOWS
588 #define X_WINDOWS_SUPPORT
589 #else
590 #define X_WINDOWS_SUPPORT
591 #endif
592
593 #ifdef VMS
594 #define VMS_SUPPORT ${lispsource}vmsproc.elc ${lispsource}vms-patch.elc
595 #else
596 #define VMS_SUPPORT
597 #endif
598
599 #ifdef MSDOS
600 #define MSDOS_SUPPORT ${lispsource}ls-lisp.elc ${lispsource}disp-tab.elc ${lispsource}dos-fns.elc
601 #else
602 #define MSDOS_SUPPORT
603 #endif
604
605 #ifdef WINDOWSNT
606 #define WINNT_SUPPORT ${lispsource}ls-lisp.elc ${lispsource}winnt.elc
607 #else
608 #define WINNT_SUPPORT
609 #endif
610
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
617 expects them all to be either present or buildable.
618
619 Always update shortlisp as well as this variable. */
620
621 lisp= \
622 ${lispsource}abbrev.elc \
623 ${lispsource}buff-menu.elc \
624 ${lispsource}byte-run.elc \
625 ${lispsource}files.elc \
626 ${lispsource}fill.elc \
627 ${lispsource}format.elc \
628 FACE_SUPPORT \
629 MOUSE_SUPPORT \
630 FLOAT_SUPPORT \
631 FRAME_SUPPORT \
632 X_WINDOWS_SUPPORT \
633 ${lispsource}help.elc \
634 ${lispsource}indent.elc \
635 ${lispsource}isearch.elc \
636 ${lispsource}lisp-mode.elc \
637 ${lispsource}lisp.elc \
638 ${lispsource}loadup.el \
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 \
651 ${lispsource}ediff-hook.elc \
652 VMS_SUPPORT \
653 MSDOS_SUPPORT \
654 WINNT_SUPPORT \
655 ${lispsource}window.elc \
656 ${lispsource}version.el
657
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. */
662 shortlisp= \
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
691 /* Lisp files that may or may not be used.
692 We must unconditionally put them in the DOC file.
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. */
696 SOME_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
703
704 /* Construct full set of libraries to be linked.
705 Note that SunOS needs -lm to come before -lc; otherwise, you get
706 duplicated symbols. If the standard libraries were compiled
707 with GCC, we might need gnulib again after them. */
708 LIBES = $(LIBX) LIBS_SYSTEM LIBS_MACHINE LIBS_TERMCAP \
709 LIBS_DEBUG $(GNULIB_VAR) LIB_MATH LIB_STANDARD $(GNULIB_VAR)
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
726 all: emacs OTHER_FILES
727
728 emacs: temacs ${etc}DOC ${lisp}
729 #ifdef CANNOT_DUMP
730 rm -f emacs
731 ln temacs emacs
732 #else
733 #ifdef HAVE_SHM
734 ./temacs -nl -batch -l loadup dump
735 #else /* ! defined (HAVE_SHM) */
736 ./temacs -batch -l loadup dump
737 #endif /* ! defined (HAVE_SHM) */
738 #endif /* ! defined (CANNOT_DUMP) */
739
740 /* We run make-docfile twice because the command line may get too long
741 on some systems. */
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
746 in the contents of the DOC file.
747 Likewise for ${SOME_MACHINE_LISP}. */
748 ${etc}DOC: ${libsrc}make-docfile ${obj} ${lisp}
749 -rm -f ${etc}DOC
750 ${libsrc}make-docfile -d ${srcdir} ${SOME_MACHINE_OBJECTS} ${obj} > ${etc}DOC
751 cd
752 ${libsrc}make-docfile -a ${etc}DOC -d ${srcdir} ${SOME_MACHINE_LISP} ${shortlisp}
753
754 ${libsrc}make-docfile:
755 cd ${libsrc}; ${MAKE} ${MFLAGS} make-docfile
756
757 /* Some systems define this to cause parallel Make-ing. */
758 #ifndef MAKE_PARALLEL
759 #define MAKE_PARALLEL
760 #endif
761
762 temacs: MAKE_PARALLEL $(LOCALCPP) $(SHORT) $(STARTFILES) $(OLDXMENU) ${obj} ${otherobj} OBJECTS_SYSTEM OBJECTS_MACHINE prefix-args
763 $(LD) YMF_PASS_LDFLAGS (${STARTFLAGS} ${ALL_LDFLAGS}) \
764 -o temacs ${STARTFILES} ${obj} ${otherobj} \
765 OBJECTS_SYSTEM OBJECTS_MACHINE ${LIBES}
766
767 /* We don't use ALL_LDFLAGS because LD_SWITCH_SYSTEM and LD_SWITCH_MACHINE
768 often contain options that have to do with using Emacs's crt0,
769 which are only good with temacs. */
770 prefix-args: prefix-args.c $(config_h)
771 $(CC) $(ALL_CFLAGS) $(LDFLAGS) ${srcdir}/prefix-args.c -o prefix-args
772
773 /* These are needed for C compilation, on the systems that need them */
774 #ifdef NEED_CPP
775 CPP = ./localcpp
776 localcpp:
777 cd ${cppdir}; ${MAKE} ${MFLAGS} EMACS=-DEMACS
778 ln ${cppdir}cpp localcpp /* Name where ALL_CFLAGS will refer to it */
779 /* cc appears to be cretinous and require all of these to exist
780 if -B is specified -- we can't use one local pass and let the
781 others be the standard ones. What a loser.
782 We can't even use ln, since they are probably
783 on different disks. */
784 cp /lib/ccom localccom
785 -cp /lib/optim localoptim
786 -cp /lib/c2 localc2
787 cp /bin/as localas
788 #else /* ! defined (NEED_CPP) */
789 CPP = $(CC) -E
790 #endif /* ! defined (NEED_CPP) */
791
792 #ifdef SHORTNAMES
793 shortnames:
794 cd ${shortnamesdir}; ${MAKE} ${MFLAGS}
795 #endif
796
797 /* Don't lose if this was not defined. */
798 #ifndef OLDXMENU_OPTIONS
799 #define OLDXMENU_OPTIONS
800 #endif
801
802 /* Don't lose if this was not defined. */
803 #ifndef LWLIB_OPTIONS
804 #define LWLIB_OPTIONS
805 #endif
806
807 #ifdef HAVE_X_WINDOWS
808 #ifdef HAVE_X11
809 #ifdef USE_X_TOOLKIT
810 $(OLDXMENU): really-lwlib
811
812 /* Encode the values of these two macros in Make variables,
813 so we can use $(...) to substitute their values within "...". */
814 C_SWITCH_MACHINE_1 = C_SWITCH_MACHINE
815 C_SWITCH_SYSTEM_1 = C_SWITCH_SYSTEM
816 C_SWITCH_SITE_1 = C_SWITCH_SITE
817 C_SWITCH_X_SITE_1 = C_SWITCH_X_SITE
818 C_SWITCH_X_MACHINE_1 = C_SWITCH_X_MACHINE
819 C_SWITCH_X_SYSTEM_1 = C_SWITCH_X_SYSTEM
820 really-lwlib:
821 cd ${lwlibdir}; ${MAKE} ${MFLAGS} LWLIB_OPTIONS \
822 CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}' \
823 "C_SWITCH_X_SITE=$(C_SWITCH_X_SITE_1)" \
824 "C_SWITCH_X_MACHINE=$(C_SWITCH_X_MACHINE_1)" \
825 "C_SWITCH_X_SYSTEM=$(C_SWITCH_X_SYSTEM_1)" \
826 "C_SWITCH_SITE=$(C_SWITCH_SITE_1)" \
827 "C_SWITCH_MACHINE=$(C_SWITCH_MACHINE_1)" \
828 "C_SWITCH_SYSTEM=$(C_SWITCH_SYSTEM_1)"
829 @true /* make -t should not create really-lwlib. */
830 .PHONY: really-lwlib
831 #else /* not USE_X_TOOLKIT */
832 #ifdef HAVE_X_MENU
833 $(OLDXMENU): really-oldXMenu
834
835 /* Encode the values of these two macros in Make variables,
836 so we can use $(...) to substitute their values within "...". */
837 C_SWITCH_MACHINE_1 = C_SWITCH_MACHINE
838 C_SWITCH_SYSTEM_1 = C_SWITCH_SYSTEM
839 C_SWITCH_SITE_1 = C_SWITCH_SITE
840 C_SWITCH_X_SITE_1 = C_SWITCH_X_SITE
841 C_SWITCH_X_MACHINE_1 = C_SWITCH_X_MACHINE
842 C_SWITCH_X_SYSTEM_1 = C_SWITCH_X_SYSTEM
843 really-oldXMenu:
844 cd ${oldXMenudir}; ${MAKE} ${MFLAGS} OLDXMENU_OPTIONS \
845 CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}' \
846 "C_SWITCH_X_SITE=$(C_SWITCH_X_SITE_1)" \
847 "C_SWITCH_X_MACHINE=$(C_SWITCH_X_MACHINE_1)" \
848 "C_SWITCH_X_SYSTEM=$(C_SWITCH_X_SYSTEM_1)" \
849 "C_SWITCH_SITE=$(C_SWITCH_SITE_1)" \
850 "C_SWITCH_MACHINE=$(C_SWITCH_MACHINE_1)" \
851 "C_SWITCH_SYSTEM=$(C_SWITCH_SYSTEM_1)"
852 @true /* make -t should not create really-oldXMenu. */
853 .PHONY: really-oldXMenu
854 #endif /* HAVE_X_MENU */
855 #endif /* not USE_X_TOOLKIT */
856 #endif /* HAVE_X11 */
857 #endif /* HAVE_X_WINDOWS */
858
859 paths.h: paths.in
860 @echo "The file paths.h needs to be set up from paths.in."
861 @echo "Consult the file \`INSTALL' for instructions for building Emacs."
862 exit 1
863
864 config.h: config.in
865 @echo "The file config.h needs to be set up from config.in."
866 @echo "Consult the file \`INSTALL' for instructions for building Emacs."
867 exit 1
868
869 /* Some machines have alloca built-in.
870 They should define HAVE_ALLOCA, or may just let alloca.s
871 be used but generate no code.
872 Some have it written in assembler in alloca.s.
873 Some use the C version in alloca.c (these define C_ALLOCA in config.h).
874 */
875
876 #ifdef C_ALLOCA
877 /* We could put something in alloca.c to #define free and malloc
878 whenever emacs was #defined, but that's not appropriate for all
879 users of alloca in Emacs. Check out ../lib-src/getopt.c. */
880 alloca.o : alloca.c
881 $(CC) -c $(CPPFLAGS) -Dfree=xfree -Dmalloc=xmalloc \
882 $(ALL_CFLAGS) ${srcdir}/alloca.c
883 #else
884 #ifndef HAVE_ALLOCA
885 alloca.o : alloca.s $(config_h)
886 /* $(CPP) is cc -E, which may get confused by filenames
887 that do not end in .c. So copy file to a safe name. */
888 -rm -f allocatem.c
889 cp ${srcdir}/alloca.s allocatem.c
890 /* Remove any ^L, blank lines, and preprocessor comments,
891 since some assemblers barf on them. Use a different basename for the
892 output file, since some stupid compilers (Green Hill's) use that
893 name for the intermediate assembler file. */
894 $(CPP) $(CPPFLAGS) $(ALL_CFLAGS) allocatem.c | \
895 sed -e 's/\f//' -e 's/^#.*//' | \
896 sed -n -e '/^..*$$/p' > allocax.s
897 -rm -f alloca.o
898 /* Xenix, in particular, needs to run assembler via cc. */
899 $(CC) -c allocax.s
900 mv allocax.o alloca.o
901 -rm -f allocax.s allocatem.c
902 #endif /* HAVE_ALLOCA */
903 #endif /* ! defined (C_ALLOCA) */
904
905 /* Nearly all the following files depend on lisp.h,
906 but it is not included as a dependency because
907 it is so often changed in ways that do not require any recompilation
908 and so rarely changed in ways that do require any. */
909
910 abbrev.o: abbrev.c buffer.h commands.h $(config_h)
911 buffer.o: buffer.c buffer.h region-cache.h commands.h window.h \
912 INTERVAL_SRC blockinput.h $(config_h)
913 callint.o: callint.c window.h commands.h buffer.h mocklisp.h \
914 keyboard.h $(config_h)
915 callproc.o: callproc.c paths.h buffer.h commands.h $(config_h) \
916 process.h systty.h syssignal.h
917 casefiddle.o: casefiddle.c syntax.h commands.h buffer.h $(config_h)
918 casetab.o: casetab.c buffer.h $(config_h)
919 cm.o: cm.c cm.h termhooks.h $(config_h)
920 cmds.o: cmds.c syntax.h buffer.h commands.h window.h $(config_h)
921 pre-crt0.o: pre-crt0.c
922 ecrt0.o: ecrt0.c $(config_h)
923 CRT0_COMPILE ${srcdir}/ecrt0.c
924 dired.o: dired.c commands.h buffer.h $(config_h) regex.h
925 dispnew.o: dispnew.c commands.h frame.h window.h buffer.h dispextern.h \
926 termchar.h termopts.h termhooks.h cm.h disptab.h systty.h systime.h \
927 xterm.h $(config_h)
928 doc.o: doc.c $(config_h) paths.h buffer.h keyboard.h
929 doprnt.o: doprnt.c $(config_h)
930 dosfns.o: buffer.h termchar.h termhooks.h frame.h msdos.h dosfns.h $(config_h)
931 editfns.o: editfns.c window.h buffer.h systime.h INTERVAL_SRC $(config_h)
932 emacs.o: emacs.c commands.h systty.h syssignal.h process.h INTERVAL_SRC $(config_h)
933 fileio.o: fileio.c window.h buffer.h systime.h INTERVAL_SRC $(config_h)
934 filelock.o: filelock.c buffer.h paths.h $(config_h)
935 filemode.o: filemode.c $(config_h)
936 getloadavg.o: getloadavg.c $(config_h)
937 indent.o: indent.c frame.h window.h indent.h buffer.h $(config_h) termchar.h \
938 termopts.h disptab.h region-cache.h
939 insdel.o: insdel.c window.h buffer.h INTERVAL_SRC blockinput.h $(config_h)
940 keyboard.o: keyboard.c termchar.h termhooks.h termopts.h buffer.h \
941 commands.h frame.h window.h macros.h disptab.h keyboard.h syssignal.h \
942 systty.h systime.h dispextern.h intervals.h blockinput.h xterm.h $(config_h)
943 keymap.o: keymap.c buffer.h commands.h keyboard.h termhooks.h blockinput.h \
944 puresize.h $(config_h)
945 lastfile.o: lastfile.c $(config_h)
946 macros.o: macros.c window.h buffer.h commands.h macros.h keyboard.h $(config_h)
947 malloc.o: malloc.c $(config_h)
948 msdos.o: msdos.c msdos.h dosfns.h systime.h termhooks.h dispextern.h \
949 termopts.h frame.h window.h $(config_h)
950 mktime.o: mktime.c $(config_h)
951 gmalloc.o: gmalloc.c $(config_h)
952 ralloc.o: ralloc.c $(config_h)
953 vm-limit.o: vm-limit.c mem-limits.h $(config_h)
954 marker.o: marker.c buffer.h $(config_h)
955 minibuf.o: minibuf.c syntax.h dispextern.h frame.h window.h \
956 buffer.h commands.h $(config_h)
957 mocklisp.o: mocklisp.c buffer.h $(config_h)
958 process.o: process.c process.h buffer.h window.h termhooks.h termopts.h \
959 commands.h syssignal.h systime.h systty.h syswait.h frame.h $(config_h)
960 regex.o: regex.c syntax.h buffer.h $(config_h) regex.h
961 region-cache.o: region-cache.c buffer.h region-cache.h
962 frame.o: frame.c xterm.h window.h frame.h termhooks.h commands.h keyboard.h \
963 buffer.h $(config_h)
964 scroll.o: scroll.c termchar.h dispextern.h frame.h $(config_h)
965 search.o: search.c regex.h commands.h buffer.h region-cache.h syntax.h \
966 blockinput.h $(config_h)
967 strftime.o: strftime.c $(config_h)
968 $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) -Dstrftime=emacs_strftime $<
969 syntax.o: syntax.c syntax.h buffer.h commands.h $(config_h)
970 sysdep.o: sysdep.c $(config_h) dispextern.h termhooks.h termchar.h termopts.h \
971 frame.h syssignal.h systty.h systime.h syswait.h blockinput.h window.h
972 term.o: term.c termchar.h termhooks.h termopts.h $(config_h) cm.h frame.h \
973 disptab.h keyboard.h
974 termcap.o: termcap.c $(config_h)
975 terminfo.o: terminfo.c $(config_h)
976 tparam.o: tparam.c $(config_h)
977 undo.o: undo.c buffer.h commands.h $(config_h)
978 /* This hack is to discard any space that cpp might put at the beginning
979 of UNEXEC when substituting it in. */
980 UNEXEC_ALIAS=UNEXEC
981 $(UNEXEC_ALIAS): UNEXEC_SRC $(config_h)
982 widget.o: widget.c xterm.h frame.h dispextern.h widgetprv.h $(config_h)
983 window.o: window.c indent.h commands.h frame.h window.h buffer.h termchar.h \
984 termhooks.h disptab.h keyboard.h $(config_h)
985 xdisp.o: xdisp.c macros.h commands.h indent.h buffer.h dispextern.h \
986 termchar.h frame.h window.h disptab.h termhooks.h $(config_h)
987 xfaces.o: xfaces.c dispextern.h frame.h xterm.h buffer.h blockinput.h \
988 window.h $(config_h)
989 xfns.o: xfns.c buffer.h frame.h window.h keyboard.h xterm.h \
990 blockinput.h paths.h $(config_h)
991 xmenu.o: xmenu.c xterm.h window.h dispextern.h frame.h keyboard.h \
992 blockinput.h puresize.h msdos.h $(config_h)
993 xterm.o: xterm.c xterm.h termhooks.h termopts.h termchar.h window.h \
994 dispextern.h frame.h disptab.h blockinput.h systime.h syssignal.h \
995 keyboard.h gnu.h sink.h sinkmask.h $(config_h)
996 xselect.o: xselect.c dispextern.h frame.h xterm.h blockinput.h $(config_h)
997 xrdb.o: xrdb.c $(config_h)
998 hftctl.o: hftctl.c $(config_h)
999
1000 /* The files of Lisp proper */
1001
1002 alloc.o: alloc.c frame.h window.h buffer.h puresize.h syssignal.h keyboard.h \
1003 blockinput.h $(config_h) INTERVAL_SRC
1004 bytecode.o: bytecode.c buffer.h syntax.h $(config_h)
1005 data.o: data.c buffer.h puresize.h syssignal.h keyboard.h $(config_h)
1006 eval.o: eval.c commands.h keyboard.h blockinput.h $(config_h)
1007 floatfns.o: floatfns.c $(config_h)
1008 fns.o: fns.c commands.h $(config_h) frame.h buffer.h keyboard.h INTERVAL_SRC
1009 print.o: print.c process.h frame.h window.h buffer.h keyboard.h $(config_h)
1010 lread.o: lread.c commands.h keyboard.h buffer.h paths.h $(config_h) \
1011 termhooks.h
1012
1013 /* Text properties support */
1014 textprop.o: textprop.c buffer.h intervals.h $(config_h)
1015 intervals.o: intervals.c buffer.h intervals.h keyboard.h puresize.h $(config_h)
1016
1017 /* System-specific programs to be made.
1018 OTHER_FILES, OBJECTS_SYSTEM and OBJECTS_MACHINE
1019 select which of these should be compiled. */
1020
1021 sunfns.o: sunfns.c buffer.h $(config_h)
1022
1023 ${libsrc}emacstool: ${libsrc}emacstool.c
1024 cd ${libsrc}; ${MAKE} ${MFLAGS} emacstool
1025 mostlyclean:
1026 rm -f temacs prefix-args core \#* *.o libXMenu11.a liblw.a
1027 rm -f ../etc/DOC
1028 clean: mostlyclean
1029 rm -f emacs-* emacs
1030 /**/# This is used in making a distribution.
1031 /**/# Do not use it on development directories!
1032 distclean: clean
1033 rm -f paths.h config.h Makefile Makefile.c ../etc/DOC-*
1034 maintainer-clean: distclean
1035 @echo "This command is intended for maintainers to use;"
1036 @echo "it deletes files that may require special tools to rebuild."
1037 rm -f TAGS
1038 versionclean:
1039 -rm -f emacs emacs-* ../etc/DOC*
1040 extraclean: distclean
1041 -rm -f *~ \#* m/?*~ s/?*~
1042
1043 /* The rule for the [sm] files has to be written a little funny to
1044 avoid looking like a C comment to CPP. */
1045 SOURCES = *.[ch] [sm]/?* COPYING Makefile.in \
1046 config.in paths.in README COPYING ChangeLog vms.pp-trans
1047 unlock:
1048 chmod u+w $(SOURCES)
1049
1050 relock:
1051 chmod -w $(SOURCES)
1052 chmod +w paths.h
1053
1054 /* Arrange to make a tags table in ../lisp, and another in this dir
1055 which includes ../lisp/TAGS by reference. */
1056 ctagsfiles = [a-zA-Z]*.[hc]
1057 lisptagsfiles = ../lisp/[a-zA-Z]*.el
1058 TAGS: $(ctagsfiles)
1059 export DIR; DIR=`pwd`; cd ${srcdir}; \
1060 $$DIR/../lib-src/etags --include=../lisp/TAGS \
1061 --regex='/[ ]*DEFVAR_[A-Z_ (]+"\([^"]+\)"/' $(ctagsfiles)
1062 ${lispsource}TAGS: ${lispsource}$(lisptagsfiles)
1063 cd ${lispsource}; $(MAKE) TAGS
1064 tags: TAGS ${lispsource}TAGS
1065 .PHONY: tags