Comment fixes.
[bpt/emacs.git] / 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 standard one. */
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_MENUS
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_MENUS */
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_MENUS */
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 DYNAMIC_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 ${libsrc}make-docfile -a ${etc}DOC -d ${srcdir} ${SOME_MACHINE_LISP} ${shortlisp}
752
753 ${libsrc}make-docfile:
754 cd ${libsrc}; ${MAKE} ${MFLAGS} make-docfile
755
756 /* Some systems define this to cause parallel Make-ing. */
757 #ifndef MAKE_PARALLEL
758 #define MAKE_PARALLEL
759 #endif
760
761 temacs: MAKE_PARALLEL $(LOCALCPP) $(SHORT) $(STARTFILES) $(OLDXMENU) ${obj} ${otherobj} OBJECTS_SYSTEM OBJECTS_MACHINE prefix-args
762 $(LD) YMF_PASS_LDFLAGS (${STARTFLAGS} ${ALL_LDFLAGS}) \
763 -o temacs ${STARTFILES} ${obj} ${otherobj} \
764 OBJECTS_SYSTEM OBJECTS_MACHINE ${LIBES}
765
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. */
769 prefix-args: prefix-args.c $(config_h)
770 $(CC) $(ALL_CFLAGS) $(LDFLAGS) ${srcdir}/prefix-args.c -o prefix-args
771
772 /* These are needed for C compilation, on the systems that need them */
773 #ifdef NEED_CPP
774 CPP = ./localcpp
775 localcpp:
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) */
788 CPP = $(CC) -E
789 #endif /* ! defined (NEED_CPP) */
790
791 #ifdef SHORTNAMES
792 shortnames:
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
801 /* Don't lose if this was not defined. */
802 #ifndef LWLIB_OPTIONS
803 #define LWLIB_OPTIONS
804 #endif
805
806 #ifdef HAVE_X_WINDOWS
807 #ifdef HAVE_X11
808 #ifdef USE_X_TOOLKIT
809 $(OLDXMENU): really-lwlib
810
811 /* Encode the values of these two macros in Make variables,
812 so we can use $(...) to substitute their values within "...". */
813 C_SWITCH_MACHINE_1 = C_SWITCH_MACHINE
814 C_SWITCH_SYSTEM_1 = C_SWITCH_SYSTEM
815 C_SWITCH_SITE_1 = C_SWITCH_SITE
816 C_SWITCH_X_SITE_1 = C_SWITCH_X_SITE
817 C_SWITCH_X_MACHINE_1 = C_SWITCH_X_MACHINE
818 C_SWITCH_X_SYSTEM_1 = C_SWITCH_X_SYSTEM
819 really-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. */
829 .PHONY: really-lwlib
830 #else /* not USE_X_TOOLKIT */
831 #ifdef HAVE_MENUS
832 $(OLDXMENU): really-oldXMenu
833
834 /* Encode the values of these two macros in Make variables,
835 so we can use $(...) to substitute their values within "...". */
836 C_SWITCH_MACHINE_1 = C_SWITCH_MACHINE
837 C_SWITCH_SYSTEM_1 = C_SWITCH_SYSTEM
838 C_SWITCH_SITE_1 = C_SWITCH_SITE
839 C_SWITCH_X_SITE_1 = C_SWITCH_X_SITE
840 C_SWITCH_X_MACHINE_1 = C_SWITCH_X_MACHINE
841 C_SWITCH_X_SYSTEM_1 = C_SWITCH_X_SYSTEM
842 really-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. */
852 .PHONY: really-oldXMenu
853 #endif /* HAVE_MENUS */
854 #endif /* not USE_X_TOOLKIT */
855 #endif /* HAVE_X11 */
856 #endif /* HAVE_X_WINDOWS */
857
858 paths.h: paths.in
859 @echo "The file paths.h needs to be set up from paths.in."
860 @echo "Consult the file \`INSTALL' for instructions for building Emacs."
861 exit 1
862
863 config.h: config.in
864 @echo "The file config.h needs to be set up from config.in."
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. */
879 alloca.o : alloca.c
880 $(CC) -c $(CPPFLAGS) -Dfree=xfree -Dmalloc=xmalloc \
881 $(ALL_CFLAGS) ${srcdir}/alloca.c
882 #else
883 #ifndef HAVE_ALLOCA
884 alloca.o : alloca.s $(config_h)
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. */
887 -rm -f allocatem.c
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
900 -rm -f allocax.s allocatem.c
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
909 abbrev.o: abbrev.c buffer.h commands.h $(config_h)
910 buffer.o: buffer.c buffer.h region-cache.h commands.h window.h \
911 INTERVAL_SRC blockinput.h $(config_h)
912 callint.o: callint.c window.h commands.h buffer.h mocklisp.h \
913 keyboard.h $(config_h)
914 callproc.o: callproc.c paths.h buffer.h commands.h $(config_h) \
915 process.h systty.h syssignal.h
916 casefiddle.o: casefiddle.c syntax.h commands.h buffer.h $(config_h)
917 casetab.o: casetab.c buffer.h $(config_h)
918 cm.o: cm.c cm.h termhooks.h $(config_h)
919 cmds.o: cmds.c syntax.h buffer.h commands.h window.h $(config_h)
920 pre-crt0.o: pre-crt0.c
921 ecrt0.o: ecrt0.c $(config_h)
922 CRT0_COMPILE ${srcdir}/ecrt0.c
923 dired.o: dired.c commands.h buffer.h $(config_h) regex.h
924 dispnew.o: dispnew.c commands.h frame.h window.h buffer.h dispextern.h \
925 termchar.h termopts.h termhooks.h cm.h disptab.h systty.h systime.h \
926 xterm.h $(config_h)
927 doc.o: doc.c $(config_h) paths.h buffer.h keyboard.h
928 doprnt.o: doprnt.c $(config_h)
929 dosfns.o: buffer.h termchar.h termhooks.h frame.h msdos.h dosfns.h $(config_h)
930 editfns.o: editfns.c window.h buffer.h systime.h INTERVAL_SRC $(config_h)
931 emacs.o: emacs.c commands.h systty.h syssignal.h process.h INTERVAL_SRC $(config_h)
932 fileio.o: fileio.c window.h buffer.h systime.h INTERVAL_SRC $(config_h)
933 filelock.o: filelock.c buffer.h paths.h $(config_h)
934 filemode.o: filemode.c $(config_h)
935 getloadavg.o: getloadavg.c $(config_h)
936 indent.o: indent.c frame.h window.h indent.h buffer.h $(config_h) termchar.h \
937 termopts.h disptab.h region-cache.h
938 insdel.o: insdel.c window.h buffer.h INTERVAL_SRC blockinput.h $(config_h)
939 keyboard.o: keyboard.c termchar.h termhooks.h termopts.h buffer.h \
940 commands.h frame.h window.h macros.h disptab.h keyboard.h syssignal.h \
941 systty.h systime.h dispextern.h intervals.h blockinput.h xterm.h $(config_h)
942 keymap.o: keymap.c buffer.h commands.h keyboard.h termhooks.h blockinput.h \
943 puresize.h $(config_h)
944 lastfile.o: lastfile.c $(config_h)
945 macros.o: macros.c window.h buffer.h commands.h macros.h keyboard.h $(config_h)
946 malloc.o: malloc.c $(config_h)
947 msdos.o: msdos.c msdos.h dosfns.h systime.h termhooks.h dispextern.h \
948 termopts.h frame.h window.h $(config_h)
949 mktime.o: mktime.c $(config_h)
950 gmalloc.o: gmalloc.c $(config_h)
951 ralloc.o: ralloc.c $(config_h)
952 vm-limit.o: vm-limit.c mem-limits.h $(config_h)
953 marker.o: marker.c buffer.h $(config_h)
954 minibuf.o: minibuf.c syntax.h dispextern.h frame.h window.h \
955 buffer.h commands.h $(config_h)
956 mocklisp.o: mocklisp.c buffer.h $(config_h)
957 process.o: process.c process.h buffer.h window.h termhooks.h termopts.h \
958 commands.h syssignal.h systime.h systty.h syswait.h frame.h $(config_h)
959 regex.o: regex.c syntax.h buffer.h $(config_h) regex.h
960 region-cache.o: region-cache.c buffer.h region-cache.h
961 frame.o: frame.c xterm.h window.h frame.h termhooks.h commands.h keyboard.h \
962 buffer.h $(config_h)
963 scroll.o: scroll.c termchar.h dispextern.h frame.h $(config_h)
964 search.o: search.c regex.h commands.h buffer.h region-cache.h syntax.h \
965 blockinput.h $(config_h)
966 strftime.o: strftime.c $(config_h)
967 $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) -Dstrftime=emacs_strftime $<
968 syntax.o: syntax.c syntax.h buffer.h commands.h $(config_h)
969 sysdep.o: sysdep.c $(config_h) dispextern.h termhooks.h termchar.h termopts.h \
970 frame.h syssignal.h systty.h systime.h syswait.h blockinput.h window.h
971 term.o: term.c termchar.h termhooks.h termopts.h $(config_h) cm.h frame.h \
972 disptab.h keyboard.h
973 termcap.o: termcap.c $(config_h)
974 terminfo.o: terminfo.c $(config_h)
975 tparam.o: tparam.c $(config_h)
976 undo.o: undo.c buffer.h commands.h $(config_h)
977 /* This hack is to discard any space that cpp might put at the beginning
978 of UNEXEC when substituting it in. */
979 UNEXEC_ALIAS=UNEXEC
980 $(UNEXEC_ALIAS): UNEXEC_SRC $(config_h)
981 widget.o: widget.c xterm.h frame.h dispextern.h widgetprv.h $(config_h)
982 window.o: window.c indent.h commands.h frame.h window.h buffer.h termchar.h \
983 termhooks.h disptab.h keyboard.h $(config_h)
984 xdisp.o: xdisp.c macros.h commands.h indent.h buffer.h dispextern.h \
985 termchar.h frame.h window.h disptab.h termhooks.h $(config_h)
986 xfaces.o: xfaces.c dispextern.h frame.h xterm.h buffer.h blockinput.h \
987 window.h $(config_h)
988 xfns.o: xfns.c buffer.h frame.h window.h keyboard.h xterm.h \
989 blockinput.h paths.h $(config_h)
990 xmenu.o: xmenu.c xterm.h window.h dispextern.h frame.h keyboard.h \
991 blockinput.h puresize.h msdos.h $(config_h)
992 xterm.o: xterm.c xterm.h termhooks.h termopts.h termchar.h window.h \
993 dispextern.h frame.h disptab.h blockinput.h systime.h syssignal.h \
994 keyboard.h gnu.h sink.h sinkmask.h $(config_h)
995 xselect.o: xselect.c dispextern.h frame.h xterm.h blockinput.h $(config_h)
996 xrdb.o: xrdb.c $(config_h)
997 hftctl.o: hftctl.c $(config_h)
998
999 /* The files of Lisp proper */
1000
1001 alloc.o: alloc.c frame.h window.h buffer.h puresize.h syssignal.h keyboard.h \
1002 blockinput.h $(config_h) INTERVAL_SRC
1003 bytecode.o: bytecode.c buffer.h syntax.h $(config_h)
1004 data.o: data.c buffer.h puresize.h syssignal.h keyboard.h $(config_h)
1005 eval.o: eval.c commands.h keyboard.h blockinput.h $(config_h)
1006 floatfns.o: floatfns.c $(config_h)
1007 fns.o: fns.c commands.h $(config_h) frame.h buffer.h keyboard.h INTERVAL_SRC
1008 print.o: print.c process.h frame.h window.h buffer.h keyboard.h $(config_h)
1009 lread.o: lread.c commands.h keyboard.h buffer.h paths.h $(config_h) \
1010 termhooks.h
1011
1012 /* Text properties support */
1013 textprop.o: textprop.c buffer.h intervals.h $(config_h)
1014 intervals.o: intervals.c buffer.h intervals.h keyboard.h puresize.h $(config_h)
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
1020 sunfns.o: sunfns.c buffer.h $(config_h)
1021
1022 ${libsrc}emacstool: ${libsrc}emacstool.c
1023 cd ${libsrc}; ${MAKE} ${MFLAGS} emacstool
1024 mostlyclean:
1025 rm -f temacs prefix-args core \#* *.o libXMenu11.a liblw.a
1026 rm -f ../etc/DOC
1027 clean: mostlyclean
1028 rm -f emacs-* emacs
1029 /**/# This is used in making a distribution.
1030 /**/# Do not use it on development directories!
1031 distclean: clean
1032 rm -f paths.h config.h Makefile Makefile.c ../etc/DOC-*
1033 maintainer-clean: distclean
1034 @echo "This command is intended for maintainers to use;"
1035 @echo "it deletes files that may require special tools to rebuild."
1036 rm -f TAGS
1037 versionclean:
1038 -rm -f emacs emacs-* ../etc/DOC*
1039 extraclean: distclean
1040 -rm -f *~ \#* m/?*~ s/?*~
1041
1042 /* The rule for the [sm] files has to be written a little funny to
1043 avoid looking like a C comment to CPP. */
1044 SOURCES = *.[ch] [sm]/?* COPYING Makefile.in \
1045 config.in paths.in README COPYING ChangeLog vms.pp-trans
1046 unlock:
1047 chmod u+w $(SOURCES)
1048
1049 relock:
1050 chmod -w $(SOURCES)
1051 chmod +w paths.h
1052
1053 /* Arrange to make a tags table in ../lisp, and another in this dir
1054 which includes ../lisp/TAGS by reference. */
1055 ctagsfiles = [a-zA-Z]*.[hc]
1056 lisptagsfiles = ../lisp/[a-zA-Z]*.el
1057 TAGS: $(ctagsfiles)
1058 export DIR; DIR=`pwd`; cd ${srcdir}; \
1059 $$DIR/../lib-src/etags --include=../lisp/TAGS \
1060 --regex='/[ ]*DEFVAR_[A-Z_ (]+"\([^"]+\)"/' $(ctagsfiles)
1061 ${lispsource}TAGS: ${lispsource}$(lisptagsfiles)
1062 cd ${lispsource}; $(MAKE) TAGS
1063 tags: TAGS ${lispsource}TAGS
1064 .PHONY: tags