(lisp): Add loadup.el.
[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 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 NOT_C_CODE
58 #include "config.h"
59
60 /* We won't really call alloca;
61 don't let the file name alloca.c get messed up. */
62 #ifdef alloca
63 #undef alloca
64 #endif
65
66 /* Use HAVE_X11 as an alias for X11 in this file
67 to avoid problems with X11 as a subdirectory name
68 in -I and other such options which pass through this file. */
69
70 #ifdef X11
71 #define HAVE_X11
72 #undef X11
73 #endif
74
75 /* On some machines #define register is done in config;
76 don't let it interfere with this file. */
77 #undef register
78
79 /* On some systems we may not be able to use the system make command. */
80 #ifdef MAKE_COMMAND
81 MAKE = MAKE_COMMAND
82 #endif
83
84 #ifdef C_COMPILER
85 CC = C_COMPILER
86 #endif
87
88 /* GNU libc requires ORDINARY_LINK so that its own crt0 is used.
89 Linux is an exception because it uses a funny variant of GNU libc. */
90 #ifdef __GNU_LIBRARY__
91 #ifndef LINUX
92 #define ORDINARY_LINK
93 #endif
94 #endif
95
96 /* Some machines don't find the standard C libraries in the usual place. */
97 #ifndef ORDINARY_LINK
98 #ifndef LIB_STANDARD
99 #define LIB_STANDARD -lc
100 #endif
101 #else
102 #ifndef LIB_STANDARD
103 #define LIB_STANDARD
104 #endif
105 #endif
106
107 /* Unless inhibited or changed, use -lg to link for debugging. */
108 #ifndef LIBS_DEBUG
109 #define LIBS_DEBUG -lg
110 #endif
111
112 /* Some s/*.h files define this to request special libraries. */
113 #ifndef LIBS_SYSTEM
114 #define LIBS_SYSTEM
115 #endif
116
117 /* Some m/*.h files define this to request special libraries. */
118 #ifndef LIBS_MACHINE
119 #define LIBS_MACHINE
120 #endif
121
122 #ifndef LIB_MATH
123 # ifdef LISP_FLOAT_TYPE
124 # define LIB_MATH -lm
125 # else /* ! defined (LISP_FLOAT_TYPE) */
126 # define LIB_MATH
127 # endif /* ! defined (LISP_FLOAT_TYPE) */
128 #endif /* LIB_MATH */
129
130 /* Some s/*.h files define this to request special switches in ld. */
131 #ifndef LD_SWITCH_SYSTEM
132 #if !defined (__GNUC__) && (defined(COFF_ENCAPSULATE) || (defined (BSD) && !defined (COFF)))
133 #define LD_SWITCH_SYSTEM -X
134 #else /* ! defined(COFF_ENCAPSULATE) || (defined (BSD) && !defined (COFF)) */
135 #define LD_SWITCH_SYSTEM
136 #endif /* ! defined(COFF_ENCAPSULATE) || (defined (BSD) && !defined (COFF)) */
137 #endif /* LD_SWITCH_SYSTEM */
138
139 /* Some m/*.h files define this to request special switches in ld. */
140 #ifndef LD_SWITCH_MACHINE
141 #define LD_SWITCH_MACHINE
142 #endif
143
144 /* Some m/*.h files define this to request special switches in cc. */
145 #ifndef C_SWITCH_MACHINE
146 #define C_SWITCH_MACHINE
147 #endif
148
149 /* Some s/*.h files define this to request special switches in cc. */
150 #ifndef C_SWITCH_SYSTEM
151 #define C_SWITCH_SYSTEM
152 #endif
153
154 /* These macros are for switches specifically related to X Windows. */
155 #ifndef C_SWITCH_X_MACHINE
156 #define C_SWITCH_X_MACHINE
157 #endif
158
159 #ifndef C_SWITCH_X_SYSTEM
160 #define C_SWITCH_X_SYSTEM
161 #endif
162
163 #ifndef C_SWITCH_X_SITE
164 #define C_SWITCH_X_SITE
165 #endif
166
167 #ifndef LD_SWITCH_X_SITE
168 #define LD_SWITCH_X_SITE
169 #endif
170
171 #ifndef LD_SWITCH_X_DEFAULT
172 #define LD_SWITCH_X_DEFAULT
173 #endif
174
175 /* These can be passed in from config.h to define special load and
176 compile switches needed by individual sites */
177 #ifndef LD_SWITCH_SITE
178 #define LD_SWITCH_SITE
179 #endif
180
181 #ifndef C_SWITCH_SITE
182 #define C_SWITCH_SITE
183 #endif
184
185 #ifndef ORDINARY_LINK
186
187 #ifndef CRT0_COMPILE
188 #define CRT0_COMPILE $(CC) -c $(ALL_CFLAGS) C_SWITCH_ASM
189 #endif
190
191 #ifndef START_FILES
192 #ifdef NO_REMAP
193 #ifdef COFF_ENCAPSULATE
194 #define START_FILES pre-crt0.o /usr/local/lib/gcc-crt0.o
195 #else /* ! defined (COFF_ENCAPSULATE) */
196 #define START_FILES pre-crt0.o /lib/crt0.o
197 #endif /* ! defined (COFF_ENCAPSULATE) */
198 #else /* ! defined (NO_REMAP) */
199 #define START_FILES ecrt0.o
200 #endif /* ! defined (NO_REMAP) */
201 #endif /* START_FILES */
202 STARTFILES = START_FILES
203
204 #else /* ORDINARY_LINK */
205
206 /* config.h might want to force START_FILES anyway */
207 #ifdef START_FILES
208 STARTFILES = START_FILES
209 #endif /* START_FILES */
210
211 #endif /* not ORDINARY_LINK */
212
213
214 /* cc switches needed to make `asm' keyword work.
215 Nothing special needed on most machines. */
216 #ifndef C_SWITCH_ASM
217 #define C_SWITCH_ASM
218 #endif
219
220 /* Figure out whether the system cpp can handle long names.
221 Do it by testing it right now.
222 If it loses, arrange to use the GNU cpp. */
223
224 #define LONGNAMEBBBFOOX
225 #ifdef LONGNAMEBBBARFOOX
226 /* Installed cpp fails to distinguish those names! */
227 /* Arrange to compile the GNU cpp later on */
228 #define NEED_CPP
229 /* Cause cc to invoke the cpp that comes with Emacs,
230 which will be in a file named localcpp. */
231 MYCPPFLAG= -Blocal
232 /* LOCALCPP is the local one or nothing.
233 CPP is the local one or the standardone. */
234 LOCALCPP= localcpp
235 #endif /* ! defined (LONGNAMEBBBARFOOX) */
236
237 #ifdef SHORTNAMES
238 SHORT= shortnames
239 #endif
240
241 #ifdef USE_X_TOOLKIT
242 #define USE_@X_TOOLKIT_TYPE@
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}loadup.el \
627 ${lispsource}loaddefs.el \
628 ${lispsource}map-ynp.elc \
629 ${lispsource}page.elc \
630 ${lispsource}paragraphs.elc \
631 ${lispsource}paths.el \
632 ${lispsource}register.elc \
633 ${lispsource}replace.elc \
634 ${lispsource}simple.elc \
635 ${lispsource}startup.elc \
636 ${lispsource}subr.elc \
637 ${lispsource}text-mode.elc \
638 ${lispsource}vc-hooks.elc \
639 ${lispsource}ediff-hook.elc \
640 VMS_SUPPORT \
641 MSDOS_SUPPORT \
642 WINNT_SUPPORT \
643 ${lispsource}window.elc \
644 ${lispsource}version.el
645
646 /* Lisp files that may or may not be used.
647 We must unconditionally put them in the DOC file. */
648 SOME_MACHINE_LISP = ${lispsource}faces.elc ${lispsource}facemenu.elc \
649 ${lispsource}float-sup.elc ${lispsource}frame.elc \
650 ${lispsource}menu-bar.elc ${lispsource}mouse.elc \
651 ${lispsource}select.elc ${lispsource}scroll-bar.elc \
652 ${lispsource}vmsproc.elc ${lispsource}vms-patch.elc \
653 ${lispsource}ls-lisp.elc ${lispsource}dos-fns.elc \
654 ${lispsource}winnt.elc
655
656 /* Construct full set of libraries to be linked.
657 Note that SunOS needs -lm to come before -lc; otherwise, you get
658 duplicated symbols. If the standard libraries were compiled
659 with GCC, we might need gnulib again after them. */
660 LIBES = $(LIBX) LIBS_SYSTEM LIBS_MACHINE LIBS_TERMCAP \
661 LIBS_DEBUG $(GNULIB_VAR) LIB_MATH LIB_STANDARD $(GNULIB_VAR)
662
663 /* Enable recompilation of certain other files depending on system type. */
664
665 #ifndef OTHER_FILES
666 #define OTHER_FILES
667 #endif
668
669 /* Enable inclusion of object files in temacs depending on system type. */
670 #ifndef OBJECTS_SYSTEM
671 #define OBJECTS_SYSTEM
672 #endif
673
674 #ifndef OBJECTS_MACHINE
675 #define OBJECTS_MACHINE
676 #endif
677
678 all: emacs OTHER_FILES
679
680 emacs: temacs ${etc}DOC ${lisp}
681 #ifdef CANNOT_DUMP
682 rm -f emacs
683 ln temacs emacs
684 #else
685 #ifdef HAVE_SHM
686 ./temacs -nl -batch -l loadup dump
687 #else /* ! defined (HAVE_SHM) */
688 ./temacs -batch -l loadup dump
689 #endif /* ! defined (HAVE_SHM) */
690 #endif /* ! defined (CANNOT_DUMP) */
691
692 /* We run make-docfile twice because the command line may get too long
693 on some systems. */
694 /* ${SOME_MACHINE_OBJECTS} comes before ${obj} because some files may
695 or may not be included in ${obj}, but they are always included in
696 ${SOME_MACHINE_OBJECTS}. Since a file is processed when it is mentioned
697 for the first time, this prevents any variation between configurations
698 in the contents of the DOC file.
699 Likewise for ${SOME_MACHINE_LISP}. */
700 ${etc}DOC: ${libsrc}make-docfile ${obj} ${lisp}
701 -rm -f ${etc}DOC
702 ${libsrc}make-docfile -d ${srcdir} ${SOME_MACHINE_OBJECTS} ${obj} > ${etc}DOC
703 ${libsrc}make-docfile -a ${etc}DOC -d ${srcdir} ${SOME_MACHINE_LISP} ${lisp}
704
705 ${libsrc}make-docfile:
706 cd ${libsrc}; ${MAKE} ${MFLAGS} make-docfile
707
708 /* Some systems define this to cause parallel Make-ing. */
709 #ifndef MAKE_PARALLEL
710 #define MAKE_PARALLEL
711 #endif
712
713 temacs: MAKE_PARALLEL $(LOCALCPP) $(SHORT) $(STARTFILES) $(OLDXMENU) ${obj} ${otherobj} OBJECTS_SYSTEM OBJECTS_MACHINE prefix-args
714 $(LD) YMF_PASS_LDFLAGS (${STARTFLAGS} ${ALL_LDFLAGS}) \
715 -o temacs ${STARTFILES} ${obj} ${otherobj} \
716 OBJECTS_SYSTEM OBJECTS_MACHINE ${LIBES}
717
718 /* We don't use ALL_LDFLAGS because LD_SWITCH_SYSTEM and LD_SWITCH_MACHINE
719 often contain options that have to do with using Emacs's crt0,
720 which are only good with temacs. */
721 prefix-args: prefix-args.c $(config_h)
722 $(CC) $(ALL_CFLAGS) $(LDFLAGS) ${srcdir}/prefix-args.c -o prefix-args
723
724 /* These are needed for C compilation, on the systems that need them */
725 #ifdef NEED_CPP
726 CPP = ./localcpp
727 localcpp:
728 cd ${cppdir}; ${MAKE} ${MFLAGS} EMACS=-DEMACS
729 ln ${cppdir}cpp localcpp /* Name where ALL_CFLAGS will refer to it */
730 /* cc appears to be cretinous and require all of these to exist
731 if -B is specified -- we can't use one local pass and let the
732 others be the standard ones. What a loser.
733 We can't even use ln, since they are probably
734 on different disks. */
735 cp /lib/ccom localccom
736 -cp /lib/optim localoptim
737 -cp /lib/c2 localc2
738 cp /bin/as localas
739 #else /* ! defined (NEED_CPP) */
740 CPP = $(CC) -E
741 #endif /* ! defined (NEED_CPP) */
742
743 #ifdef SHORTNAMES
744 shortnames:
745 cd ${shortnamesdir}; ${MAKE} ${MFLAGS}
746 #endif
747
748 /* Don't lose if this was not defined. */
749 #ifndef OLDXMENU_OPTIONS
750 #define OLDXMENU_OPTIONS
751 #endif
752
753 /* Don't lose if this was not defined. */
754 #ifndef LWLIB_OPTIONS
755 #define LWLIB_OPTIONS
756 #endif
757
758 #ifdef HAVE_X_WINDOWS
759 #ifdef HAVE_X11
760 #ifdef USE_X_TOOLKIT
761 $(OLDXMENU): really-lwlib
762
763 /* Encode the values of these two macros in Make variables,
764 so we can use $(...) to substitute their values within "...". */
765 C_SWITCH_MACHINE_1 = C_SWITCH_MACHINE
766 C_SWITCH_SYSTEM_1 = C_SWITCH_SYSTEM
767 C_SWITCH_SITE_1 = C_SWITCH_SITE
768 C_SWITCH_X_SITE_1 = C_SWITCH_X_SITE
769 C_SWITCH_X_MACHINE_1 = C_SWITCH_X_MACHINE
770 C_SWITCH_X_SYSTEM_1 = C_SWITCH_X_SYSTEM
771 really-lwlib:
772 cd ${lwlibdir}; ${MAKE} ${MFLAGS} LWLIB_OPTIONS \
773 CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}' \
774 "C_SWITCH_X_SITE=$(C_SWITCH_X_SITE_1)" \
775 "C_SWITCH_X_MACHINE=$(C_SWITCH_X_MACHINE_1)" \
776 "C_SWITCH_X_SYSTEM=$(C_SWITCH_X_SYSTEM_1)" \
777 "C_SWITCH_SITE=$(C_SWITCH_SITE_1)" \
778 "C_SWITCH_MACHINE=$(C_SWITCH_MACHINE_1)" \
779 "C_SWITCH_SYSTEM=$(C_SWITCH_SYSTEM_1)"
780 @true /* make -t should not create really-lwlib. */
781 .PHONY: really-lwlib
782 #else /* not USE_X_TOOLKIT */
783 #ifdef HAVE_X_MENU
784 $(OLDXMENU): really-oldXMenu
785
786 /* Encode the values of these two macros in Make variables,
787 so we can use $(...) to substitute their values within "...". */
788 C_SWITCH_MACHINE_1 = C_SWITCH_MACHINE
789 C_SWITCH_SYSTEM_1 = C_SWITCH_SYSTEM
790 C_SWITCH_SITE_1 = C_SWITCH_SITE
791 C_SWITCH_X_SITE_1 = C_SWITCH_X_SITE
792 C_SWITCH_X_MACHINE_1 = C_SWITCH_X_MACHINE
793 C_SWITCH_X_SYSTEM_1 = C_SWITCH_X_SYSTEM
794 really-oldXMenu:
795 cd ${oldXMenudir}; ${MAKE} ${MFLAGS} OLDXMENU_OPTIONS \
796 CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}' \
797 "C_SWITCH_X_SITE=$(C_SWITCH_X_SITE_1)" \
798 "C_SWITCH_X_MACHINE=$(C_SWITCH_X_MACHINE_1)" \
799 "C_SWITCH_X_SYSTEM=$(C_SWITCH_X_SYSTEM_1)" \
800 "C_SWITCH_SITE=$(C_SWITCH_SITE_1)" \
801 "C_SWITCH_MACHINE=$(C_SWITCH_MACHINE_1)" \
802 "C_SWITCH_SYSTEM=$(C_SWITCH_SYSTEM_1)"
803 @true /* make -t should not create really-oldXMenu. */
804 .PHONY: really-oldXMenu
805 #endif /* HAVE_X_MENU */
806 #endif /* not USE_X_TOOLKIT */
807 #endif /* HAVE_X11 */
808 #endif /* HAVE_X_WINDOWS */
809
810 paths.h: paths.in
811 @echo "The file paths.h needs to be set up from paths.in."
812 @echo "Consult the file \`INSTALL' for instructions for building Emacs."
813 exit 1
814
815 config.h: config.in
816 @echo "The file config.h needs to be set up from config.in."
817 @echo "Consult the file \`INSTALL' for instructions for building Emacs."
818 exit 1
819
820 /* Some machines have alloca built-in.
821 They should define HAVE_ALLOCA, or may just let alloca.s
822 be used but generate no code.
823 Some have it written in assembler in alloca.s.
824 Some use the C version in alloca.c (these define C_ALLOCA in config.h).
825 */
826
827 #ifdef C_ALLOCA
828 /* We could put something in alloca.c to #define free and malloc
829 whenever emacs was #defined, but that's not appropriate for all
830 users of alloca in Emacs. Check out ../lib-src/getopt.c. */
831 alloca.o : alloca.c
832 $(CC) -c $(CPPFLAGS) -Dfree=xfree -Dmalloc=xmalloc \
833 $(ALL_CFLAGS) ${srcdir}/alloca.c
834 #else
835 #ifndef HAVE_ALLOCA
836 alloca.o : alloca.s $(config_h)
837 /* $(CPP) is cc -E, which may get confused by filenames
838 that do not end in .c. So copy file to a safe name. */
839 -rm -f allocatem.c
840 cp ${srcdir}/alloca.s allocatem.c
841 /* Remove any ^L, blank lines, and preprocessor comments,
842 since some assemblers barf on them. Use a different basename for the
843 output file, since some stupid compilers (Green Hill's) use that
844 name for the intermediate assembler file. */
845 $(CPP) $(CPPFLAGS) $(ALL_CFLAGS) allocatem.c | \
846 sed -e 's/\f//' -e 's/^#.*//' | \
847 sed -n -e '/^..*$$/p' > allocax.s
848 -rm -f alloca.o
849 /* Xenix, in particular, needs to run assembler via cc. */
850 $(CC) -c allocax.s
851 mv allocax.o alloca.o
852 -rm -f allocax.s allocatem.c
853 #endif /* HAVE_ALLOCA */
854 #endif /* ! defined (C_ALLOCA) */
855
856 /* Nearly all the following files depend on lisp.h,
857 but it is not included as a dependency because
858 it is so often changed in ways that do not require any recompilation
859 and so rarely changed in ways that do require any. */
860
861 abbrev.o: abbrev.c buffer.h commands.h $(config_h)
862 buffer.o: buffer.c buffer.h region-cache.h commands.h window.h \
863 INTERVAL_SRC blockinput.h $(config_h)
864 callint.o: callint.c window.h commands.h buffer.h mocklisp.h \
865 keyboard.h $(config_h)
866 callproc.o: callproc.c paths.h buffer.h commands.h $(config_h) \
867 process.h systty.h syssignal.h
868 casefiddle.o: casefiddle.c syntax.h commands.h buffer.h $(config_h)
869 casetab.o: casetab.c buffer.h $(config_h)
870 cm.o: cm.c cm.h termhooks.h $(config_h)
871 cmds.o: cmds.c syntax.h buffer.h commands.h window.h $(config_h)
872 pre-crt0.o: pre-crt0.c
873 ecrt0.o: ecrt0.c $(config_h)
874 CRT0_COMPILE ${srcdir}/ecrt0.c
875 dired.o: dired.c commands.h buffer.h $(config_h) regex.h
876 dispnew.o: dispnew.c commands.h frame.h window.h buffer.h dispextern.h \
877 termchar.h termopts.h termhooks.h cm.h disptab.h systty.h systime.h \
878 xterm.h $(config_h)
879 doc.o: doc.c $(config_h) paths.h buffer.h keyboard.h
880 doprnt.o: doprnt.c $(config_h)
881 dosfns.o: buffer.h termchar.h termhooks.h frame.h msdos.h dosfns.h $(config_h)
882 editfns.o: editfns.c window.h buffer.h systime.h INTERVAL_SRC $(config_h)
883 emacs.o: emacs.c commands.h systty.h syssignal.h process.h INTERVAL_SRC $(config_h)
884 fileio.o: fileio.c window.h buffer.h systime.h INTERVAL_SRC $(config_h)
885 filelock.o: filelock.c buffer.h paths.h $(config_h)
886 filemode.o: filemode.c $(config_h)
887 getloadavg.o: getloadavg.c $(config_h)
888 indent.o: indent.c frame.h window.h indent.h buffer.h $(config_h) termchar.h \
889 termopts.h disptab.h region-cache.h
890 insdel.o: insdel.c window.h buffer.h INTERVAL_SRC blockinput.h $(config_h)
891 keyboard.o: keyboard.c termchar.h termhooks.h termopts.h buffer.h \
892 commands.h frame.h window.h macros.h disptab.h keyboard.h syssignal.h \
893 systty.h systime.h dispextern.h intervals.h blockinput.h xterm.h $(config_h)
894 keymap.o: keymap.c buffer.h commands.h keyboard.h termhooks.h blockinput.h \
895 $(config_h)
896 lastfile.o: lastfile.c $(config_h)
897 macros.o: macros.c window.h buffer.h commands.h macros.h keyboard.h $(config_h)
898 malloc.o: malloc.c $(config_h)
899 msdos.o: msdos.c msdos.h dosfns.h systime.h termhooks.h dispextern.h \
900 termopts.h frame.h window.h $(config_h)
901 mktime.o: mktime.c $(config_h)
902 gmalloc.o: gmalloc.c $(config_h)
903 ralloc.o: ralloc.c $(config_h)
904 vm-limit.o: vm-limit.c mem-limits.h $(config_h)
905 marker.o: marker.c buffer.h $(config_h)
906 minibuf.o: minibuf.c syntax.h dispextern.h frame.h window.h \
907 buffer.h commands.h $(config_h)
908 mocklisp.o: mocklisp.c buffer.h $(config_h)
909 process.o: process.c process.h buffer.h window.h termhooks.h termopts.h \
910 commands.h syssignal.h systime.h systty.h syswait.h frame.h $(config_h)
911 regex.o: regex.c syntax.h buffer.h $(config_h) regex.h
912 region-cache.o: region-cache.c buffer.h region-cache.h
913 frame.o: frame.c xterm.h window.h frame.h termhooks.h commands.h keyboard.h \
914 buffer.h $(config_h)
915 scroll.o: scroll.c termchar.h dispextern.h frame.h $(config_h)
916 search.o: search.c regex.h commands.h buffer.h region-cache.h syntax.h \
917 blockinput.h $(config_h)
918 strftime.o: strftime.c $(config_h)
919 $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) -Dstrftime=emacs_strftime $<
920 syntax.o: syntax.c syntax.h buffer.h commands.h $(config_h)
921 sysdep.o: sysdep.c $(config_h) dispextern.h termhooks.h termchar.h termopts.h \
922 frame.h syssignal.h systty.h systime.h syswait.h blockinput.h window.h
923 term.o: term.c termchar.h termhooks.h termopts.h $(config_h) cm.h frame.h \
924 disptab.h keyboard.h
925 termcap.o: termcap.c $(config_h)
926 terminfo.o: terminfo.c $(config_h)
927 tparam.o: tparam.c $(config_h)
928 undo.o: undo.c buffer.h commands.h $(config_h)
929 /* This hack is to discard any space that cpp might put at the beginning
930 of UNEXEC when substituting it in. */
931 UNEXEC_ALIAS=UNEXEC
932 $(UNEXEC_ALIAS): UNEXEC_SRC $(config_h)
933 widget.o: widget.c xterm.h frame.h dispextern.h widgetprv.h $(config_h)
934 window.o: window.c indent.h commands.h frame.h window.h buffer.h termchar.h \
935 termhooks.h disptab.h keyboard.h $(config_h)
936 xdisp.o: xdisp.c macros.h commands.h indent.h buffer.h dispextern.h \
937 termchar.h frame.h window.h disptab.h termhooks.h $(config_h)
938 xfaces.o: xfaces.c dispextern.h frame.h xterm.h buffer.h blockinput.h \
939 window.h $(config_h)
940 xfns.o: xfns.c buffer.h frame.h window.h keyboard.h xterm.h \
941 blockinput.h paths.h $(config_h)
942 xmenu.o: xmenu.c xterm.h window.h dispextern.h frame.h keyboard.h \
943 blockinput.h puresize.h msdos.h $(config_h)
944 xterm.o: xterm.c xterm.h termhooks.h termopts.h termchar.h window.h \
945 dispextern.h frame.h disptab.h blockinput.h systime.h syssignal.h \
946 keyboard.h gnu.h sink.h sinkmask.h $(config_h)
947 xselect.o: xselect.c dispextern.h frame.h xterm.h blockinput.h $(config_h)
948 xrdb.o: xrdb.c $(config_h)
949 hftctl.o: hftctl.c $(config_h)
950
951 /* The files of Lisp proper */
952
953 alloc.o: alloc.c frame.h window.h buffer.h puresize.h syssignal.h keyboard.h \
954 blockinput.h $(config_h) INTERVAL_SRC
955 bytecode.o: bytecode.c buffer.h syntax.h $(config_h)
956 data.o: data.c buffer.h puresize.h syssignal.h keyboard.h $(config_h)
957 eval.o: eval.c commands.h keyboard.h blockinput.h $(config_h)
958 floatfns.o: floatfns.c $(config_h)
959 fns.o: fns.c commands.h $(config_h) frame.h buffer.h keyboard.h INTERVAL_SRC
960 print.o: print.c process.h frame.h window.h buffer.h keyboard.h $(config_h)
961 lread.o: lread.c commands.h keyboard.h buffer.h paths.h $(config_h) \
962 termhooks.h
963
964 /* Text properties support */
965 textprop.o: textprop.c buffer.h intervals.h $(config_h)
966 intervals.o: intervals.c buffer.h intervals.h keyboard.h puresize.h $(config_h)
967
968 /* System-specific programs to be made.
969 OTHER_FILES, OBJECTS_SYSTEM and OBJECTS_MACHINE
970 select which of these should be compiled. */
971
972 sunfns.o: sunfns.c buffer.h $(config_h)
973
974 ${libsrc}emacstool: ${libsrc}emacstool.c
975 cd ${libsrc}; ${MAKE} ${MFLAGS} emacstool
976 mostlyclean:
977 rm -f temacs prefix-args core \#* *.o libXMenu11.a liblw.a
978 rm -f ../etc/DOC
979 clean: mostlyclean
980 rm -f emacs-* emacs
981 /**/# This is used in making a distribution.
982 /**/# Do not use it on development directories!
983 distclean: clean
984 rm -f paths.h config.h Makefile Makefile.c ../etc/DOC-*
985 maintainer-clean: distclean
986 @echo "This command is intended for maintainers to use;"
987 @echo "it deletes files that may require special tools to rebuild."
988 rm -f TAGS
989 versionclean:
990 -rm -f emacs emacs-* ../etc/DOC*
991 extraclean: distclean
992 -rm -f *~ \#* m/?*~ s/?*~
993
994 /* The rule for the [sm] files has to be written a little funny to
995 avoid looking like a C comment to CPP. */
996 SOURCES = *.[ch] [sm]/?* COPYING Makefile.in \
997 config.in paths.in README COPYING ChangeLog vms.pp-trans
998 unlock:
999 chmod u+w $(SOURCES)
1000
1001 relock:
1002 chmod -w $(SOURCES)
1003 chmod +w paths.h
1004
1005 /* Arrange to make a tags table in ../lisp, and another in this dir
1006 which includes ../lisp/TAGS by reference. */
1007 ctagsfiles = [a-zA-Z]*.[hc]
1008 lisptagsfiles = ../lisp/[a-zA-Z]*.el
1009 TAGS: $(ctagsfiles)
1010 export DIR; DIR=`pwd`; cd ${srcdir}; \
1011 $$DIR/../lib-src/etags --include=../lisp/TAGS \
1012 --regex='/[ ]*DEFVAR_[A-Z_ (]+"\([^"]+\)"/' $(ctagsfiles)
1013 ${lispsource}TAGS: ${lispsource}$(lisptagsfiles)
1014 cd ${lispsource}; $(MAKE) TAGS
1015 tags: TAGS ${lispsource}TAGS
1016 .PHONY: tags