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