]> code.delx.au - gnu-emacs/blob - src/Makefile.in
*** empty log message ***
[gnu-emacs] / src / Makefile.in
1 # Makefile for GNU Emacs.
2 # Copyright (C) 1985, 87, 88, 93, 94, 95, 99, 2000 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, Inc., 59 Temple Place - Suite 330,
19 # Boston, MA 02111-1307, USA.
20
21
22 # Note that this file is edited by msdos/sed1v2.inp for MSDOS. That
23 # script may need modifying in sync with changes made here. Try to
24 # avoid shell-ism because the DOS build has to use the DOS shell.
25
26 # Don't try to replace the ccp processing using autoconf facilities,
27 # says rms.
28
29 # Here are the things that we expect ../configure to edit.
30 # We use $(srcdir) explicitly in dependencies so as not to depend on VPATH.
31 srcdir=@srcdir@
32 VPATH=@srcdir@
33 CC=@CC@
34 CPP=@CPP@
35 CFLAGS=@CFLAGS@
36 CPPFLAGS=@CPPFLAGS@
37 LDFLAGS=@LDFLAGS@
38 LN_S=@LN_S@
39 # Substitute an assignment for the MAKE variable, because
40 # BSD doesn't have it as a default.
41 @SET_MAKE@
42 # Don't use LIBS. configure puts stuff in it that either shouldn't be
43 # linked with Emacs or is duplicated by the cpp stuff below.
44 # LIBS = @LIBS@
45 LIBOBJS = @LIBOBJS@
46
47 # On Xenix and the IBM RS6000, double-dot gets screwed up.
48 dot = .
49 dotdot = ${dot}${dot}
50 lispsource = ${srcdir}/$(dot)$(dot)/lisp/
51 libsrc = $(dot)$(dot)/lib-src/
52 etc = $(dot)$(dot)/etc/
53 oldXMenudir = $(dot)$(dot)/oldXMenu/
54 lwlibdir = $(dot)$(dot)/lwlib/
55
56 # Configuration files for .o files to depend on.
57 M_FILE = ${srcdir}/@machfile@
58 S_FILE = ${srcdir}/@opsysfile@
59 config_h = config.h $(M_FILE) $(S_FILE)
60
61 # ========================== start of cpp stuff =======================
62 /* From here on, comments must be done in C syntax. */
63
64 C_SWITCH_SYSTEM=
65
66 /* just to be sure the sh is used */
67 SHELL=/bin/sh
68
69 #define THIS_IS_MAKEFILE
70 #define NO_SHORTNAMES
71 #define NOT_C_CODE
72 #include "config.h"
73
74 /* We won't really call alloca;
75 don't let the file name alloca.c get messed up. */
76 #ifdef alloca
77 #undef alloca
78 #endif
79
80 /* Don't let the file name mktime.c get messed up. */
81 #ifdef mktime
82 #undef mktime
83 #endif
84
85 /* Use HAVE_X11 as an alias for X11 in this file
86 to avoid problems with X11 as a subdirectory name
87 in -I and other such options which pass through this file. */
88
89 #ifdef X11
90 #define HAVE_X11
91 #undef X11
92 #endif
93
94 /* On some machines #define register is done in config;
95 don't let it interfere with this file. */
96 #undef register
97
98 /* On some systems we may not be able to use the system make command. */
99 #ifdef MAKE_COMMAND
100 MAKE = MAKE_COMMAND
101 #endif
102
103 #ifdef C_COMPILER
104 CC = C_COMPILER
105 #endif
106
107 /* GNU libc requires ORDINARY_LINK so that its own crt0 is used.
108 Linux is an exception because it uses a funny variant of GNU libc. */
109 #ifdef __GNU_LIBRARY__
110 #ifndef LINUX
111 #define ORDINARY_LINK
112 #endif
113 #endif
114
115 /* Some machines don't find the standard C libraries in the usual place. */
116 #ifndef ORDINARY_LINK
117 #ifndef LIB_STANDARD
118 #define LIB_STANDARD -lc
119 #endif
120 #else
121 #ifndef LIB_STANDARD
122 #define LIB_STANDARD
123 #endif
124 #endif
125
126 /* Unless inhibited or changed, use -lg to link for debugging. */
127 #ifndef LIBS_DEBUG
128 #define LIBS_DEBUG -lg
129 #endif
130
131 /* Some s/SYSTEM.h files define this to request special libraries. */
132 #ifndef LIBS_SYSTEM
133 #define LIBS_SYSTEM
134 #endif
135
136 /* Some m/MACHINE.h files define this to request special libraries. */
137 #ifndef LIBS_MACHINE
138 #define LIBS_MACHINE
139 #endif
140
141 #ifndef LIB_MATH
142 # define LIB_MATH -lm
143 #endif /* LIB_MATH */
144
145 /* Some s/SYSTEM.h files define this to request special switches in ld. */
146 #ifndef LD_SWITCH_SYSTEM
147 #if !defined (__GNUC__) && (defined(COFF_ENCAPSULATE) || (defined (BSD_SYSTEM) && !defined (COFF)))
148 #define LD_SWITCH_SYSTEM -X
149 #else /* ! defined(COFF_ENCAPSULATE) || (defined (BSD_SYSTEM) && !defined (COFF)) */
150 #define LD_SWITCH_SYSTEM
151 #endif /* ! defined(COFF_ENCAPSULATE) || (defined (BSD_SYSTEM) && !defined (COFF)) */
152 #endif /* LD_SWITCH_SYSTEM */
153
154 /* This holds special options for linking temacs
155 that should be used for linking anything else. */
156 #ifndef LD_SWITCH_SYSTEM_TEMACS
157 #define LD_SWITCH_SYSTEM_TEMACS
158 #endif
159
160 /* Some m/MACHINE.h files define this to request special switches in ld. */
161 #ifndef LD_SWITCH_MACHINE
162 #define LD_SWITCH_MACHINE
163 #endif
164
165 /* This holds special options for linking temacs
166 that should be used for linking anything else. */
167 #ifndef LD_SWITCH_MACHINE_TEMACS
168 #define LD_SWITCH_MACHINE_TEMACS
169 #endif
170
171 /* Some m/MACHINE.h files define this to request special switches in cc. */
172 #ifndef C_SWITCH_MACHINE
173 #define C_SWITCH_MACHINE
174 #endif
175
176 /* Some s/SYSTEM.h files define this to request special switches in cc. */
177 #ifndef C_SWITCH_SYSTEM
178 #define C_SWITCH_SYSTEM
179 #endif
180
181 /* These macros are for switches specifically related to X Windows. */
182 #ifndef C_SWITCH_X_MACHINE
183 #define C_SWITCH_X_MACHINE
184 #endif
185
186 #ifndef C_SWITCH_X_SYSTEM
187 #define C_SWITCH_X_SYSTEM
188 #endif
189
190 #ifndef C_SWITCH_X_SITE
191 #define C_SWITCH_X_SITE
192 #endif
193
194 #ifndef LD_SWITCH_X_SITE
195 #define LD_SWITCH_X_SITE
196 #endif
197
198 #ifndef LD_SWITCH_X_DEFAULT
199 #define LD_SWITCH_X_DEFAULT
200 #endif
201
202 /* These can be passed in from config.h to define special load and
203 compile switches needed by individual sites */
204 #ifndef LD_SWITCH_SITE
205 #define LD_SWITCH_SITE
206 #endif
207
208 #ifndef C_SWITCH_SITE
209 #define C_SWITCH_SITE
210 #endif
211
212 #ifndef ORDINARY_LINK
213
214 #ifndef CRT0_COMPILE
215 #define CRT0_COMPILE $(CC) -c $(ALL_CFLAGS) C_SWITCH_ASM
216 #endif
217
218 #ifndef START_FILES
219 #ifdef NO_REMAP
220 #ifdef COFF_ENCAPSULATE
221 #define START_FILES pre-crt0.o /usr/local/lib/gcc-crt0.o
222 #else /* ! defined (COFF_ENCAPSULATE) */
223 #define START_FILES pre-crt0.o /lib/crt0.o
224 #endif /* ! defined (COFF_ENCAPSULATE) */
225 #else /* ! defined (NO_REMAP) */
226 #define START_FILES ecrt0.o
227 #endif /* ! defined (NO_REMAP) */
228 #endif /* START_FILES */
229 STARTFILES = START_FILES
230
231 #else /* ORDINARY_LINK */
232
233 /* config.h might want to force START_FILES anyway */
234 #ifdef START_FILES
235 STARTFILES = START_FILES
236 #endif /* START_FILES */
237
238 #endif /* not ORDINARY_LINK */
239
240
241 /* cc switches needed to make `asm' keyword work.
242 Nothing special needed on most machines. */
243 #ifndef C_SWITCH_ASM
244 #define C_SWITCH_ASM
245 #endif
246
247 #ifdef USE_X_TOOLKIT
248 #define USE_@X_TOOLKIT_TYPE@
249 TOOLKIT_DEFINES = -DUSE_@X_TOOLKIT_TYPE@
250 #else
251 TOOLKIT_DEFINES =
252 #endif
253
254 /* DO NOT use -R. There is a special hack described in lastfile.c
255 which is used instead. Some initialized data areas are modified
256 at initial startup, then labeled as part of the text area when
257 Emacs is dumped for the first time, and never changed again. */
258
259 /* -Demacs is needed to make some files produce the correct version
260 for use in Emacs.
261
262 -DHAVE_CONFIG_H is needed for some other files to take advantage of
263 the information in `config.h'. */
264
265 /* C_SWITCH_X_SITE must come before C_SWITCH_X_MACHINE and C_SWITCH_X_SYSTEM
266 since it may have -I options that should override those two. */
267 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}
268 .c.o:
269 $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $<
270
271 #ifndef LIBX10_MACHINE
272 #define LIBX10_MACHINE
273 #endif
274
275 #ifndef LIBX11_MACHINE
276 #define LIBX11_MACHINE
277 #endif
278
279 #ifndef LIBX10_SYSTEM
280 #define LIBX10_SYSTEM
281 #endif
282
283 #ifndef LIBX11_SYSTEM
284 #define LIBX11_SYSTEM
285 #endif
286
287 #ifndef LIB_X11_LIB
288 #define LIB_X11_LIB -lX11
289 #endif
290
291 #ifdef HAVE_X_WINDOWS
292 #ifdef HAVE_MENUS
293
294 /* Include xmenu.o in the list of X object files. */
295 XOBJ= xterm.o xfns.o xselect.o xrdb.o fontset.o
296
297 /* The X Menu stuff is present in the X10 distribution, but missing
298 from X11. If we have X10, just use the installed library;
299 otherwise, use our own copy. */
300 #ifdef HAVE_X11
301 #ifdef USE_X_TOOLKIT
302 OLDXMENU=${lwlibdir}liblw.a
303 LIBXMENU= $(OLDXMENU)
304 #else /* not USE_X_TOOLKIT */
305 OLDXMENU= ${oldXMenudir}libXMenu11.a
306 LIBXMENU= $(OLDXMENU)
307 #endif /* not USE_X_TOOLKIT */
308 #else /* not HAVE_X11 */
309 LIBXMENU= -lXMenu
310 #endif /* not HAVE_X11 */
311
312 #else /* not HAVE_MENUS */
313
314 /* Otherwise, omit xmenu.o from the list of X object files, and
315 don't worry about the menu library at all. */
316 XOBJ= xterm.o xfns.o xselect.o xrdb.o fontset.o
317 LIBXMENU=
318 #endif /* not HAVE_MENUS */
319
320 #ifdef USE_X_TOOLKIT
321 #define @X_TOOLKIT_TYPE@
322 #if defined (LUCID) || defined (ATHENA)
323 #if HAVE_XAW3D
324 LIBW= -lXaw3d
325 #else
326 LIBW= -lXaw
327 #endif
328 #endif
329 #ifdef MOTIF
330 #if defined (HAVE_MOTIF_2_1) && defined (HAVE_LIBXP)
331 #define LIB_MOTIF_EXTRA -lXp
332 #else
333 #define LIB_MOTIF_EXTRA
334 #endif
335 #ifdef LIB_MOTIF
336 LIBW= LIB_MOTIF LIB_MOTIF_EXTRA
337 #else
338 LIBW= -lXm LIB_MOTIF_EXTRA
339 #endif
340 #endif
341 #ifdef OPEN_LOOK
342 LIBW= -lXol
343 #endif
344
345 #ifdef HAVE_X11XTR6
346 #ifdef NEED_LIBW
347 LIBXTR6 = -lSM -lICE -lw
348 #else
349 LIBXTR6 = -lSM -lICE
350 #endif
351 #endif
352
353 #ifndef LIBXMU
354 #define LIBXMU -lXmu
355 #endif
356
357 #ifdef LIBXT_STATIC
358 /* We assume the config files have defined STATIC_OPTION
359 since that might depend on the operating system.
360 (Don't forget you need different definitions with and without __GNUC__.) */
361 LIBXT= STATIC_OPTION $(LIBW) LIBXMU -lXt $(LIBXTR6) -lXext DYNAMIC_OPTION
362 #else /* not LIBXT_STATIC */
363 LIBXT= $(LIBW) LIBXMU -lXt $(LIBXTR6) -lXext
364 #endif /* not LIBXT_STATIC */
365
366 #else /* not USE_X_TOOLKIT */
367 LIBXT=
368 #endif /* not USE_X_TOOLKIT */
369
370 #if HAVE_XPM
371 #ifndef LIBXPM
372 #define LIBXPM -lXpm
373 #endif /* not defined LIBXPM */
374 #else /* not HAVE_XPM */
375 #define LIBXPM
376 #endif /* not HAVE_XPM */
377
378 #if HAVE_JPEG
379 #ifndef LIBJPEG
380 #define LIBJPEG -ljpeg
381 #endif /* not defined LIBJPEG */
382 #else /* not HAVE_JPEG */
383 #define LIBJPEG
384 #endif /* not HAVE_JPEG */
385
386 #if HAVE_PNG
387 #ifndef LIBPNG
388 #define LIBPNG -lpng -lz -lm
389 #endif /* not defined LIBPNG */
390 #else /* not HAVE_PNG */
391 #define LIBPNG
392 #endif /* not HAVE_PNG */
393
394 #if HAVE_TIFF
395 #ifndef LIBTIFF
396 #define LIBTIFF -ltiff
397 #endif /* not defined LIBTIFF */
398 #else /* not HAVE_TIFF */
399 #define LIBTIFF
400 #endif /* not HAVE_TIFF */
401
402 #if HAVE_GIF
403 #ifndef LIBGIF
404 #define LIBGIF -lungif
405 #endif /* not defined LIBGIF */
406 #else /* not HAVE_GIF */
407 #define LIBGIF
408 #endif /* not HAVE_GIF */
409
410 #ifdef HAVE_X11
411 /* LD_SWITCH_X_DEFAULT comes after everything else that specifies
412 options for where to find X libraries, but before those libraries. */
413 X11_LDFLAGS = LD_SWITCH_X_SITE LD_SWITCH_X_DEFAULT
414 LIBX= $(LIBXMENU) $(X11_LDFLAGS) $(LIBXT) LIB_X11_LIB LIBX11_MACHINE LIBX11_SYSTEM LIBXPM LIBTIFF LIBJPEG LIBPNG LIBGIF
415 #else /* not HAVE_X11 */
416 LIBX= $(LIBXMENU) LD_SWITCH_X_SITE -lX10 LIBX10_MACHINE LIBX10_SYSTEM
417 #endif /* not HAVE_X11 */
418 #endif /* not HAVE_X_WINDOWS */
419
420 LIBSOUND= @LIBSOUND@
421
422 #ifndef ORDINARY_LINK
423 /* Fix linking if compiled with GCC. */
424 #ifdef __GNUC__
425
426 #if __GNUC__ > 1
427
428 #ifdef LINKER
429 #define LINKER_WAS_SPECIFIED
430 #endif
431
432 /* Versions of GCC >= 2.0 put their library, libgcc.a, in obscure
433 places that are difficult to figure out at make time. Fortunately,
434 these same versions allow you to pass arbitrary flags on to the
435 linker, so there's no reason not to use it as a linker.
436
437 Well, it's not quite perfect. The `-nostdlib' keeps GCC from
438 searching for libraries in its internal directories, so we have to
439 ask GCC explicitly where to find libgcc.a. */
440
441 #ifndef LINKER
442 #define LINKER $(CC) -nostdlib
443 #endif
444
445 #ifndef LIB_GCC
446 /* Ask GCC where to find libgcc.a. */
447 #define LIB_GCC `$(CC) -print-libgcc-file-name`
448 #endif /* not LIB_GCC */
449
450 GNULIB_VAR = LIB_GCC
451
452 #ifndef LINKER_WAS_SPECIFIED
453 /* GCC passes any argument prefixed with -Xlinker directly to the
454 linker. See prefix-args.c for an explanation of why we don't do
455 this with the shell's `for' construct.
456 Note that some people don't have '.' in their paths, so we must
457 use ./prefix-args. */
458 #define YMF_PASS_LDFLAGS(flags) `./prefix-args -Xlinker flags`
459 #else
460 #define YMF_PASS_LDFLAGS(flags) flags
461 #endif
462
463 #else /* __GNUC__ < 2 */
464
465 #ifndef LIB_GCC
466 #define LIB_GCC /usr/local/lib/gcc-gnulib
467 #endif /* not LIB_GCC */
468 GNULIB_VAR = `if [ -f LIB_GCC ] ; then echo LIB_GCC; else echo; fi`
469 #endif /* __GNUC__ < 2 */
470 #else /* not __GNUC__ */
471 GNULIB_VAR =
472
473 #endif /* not __GNUC__ */
474 #endif /* not ORDINARY_LINK */
475
476 /* Specify address for ld to start loading at,
477 if requested by configuration. */
478 #ifdef LD_TEXT_START_ADDR
479 STARTFLAGS = -T LD_TEXT_START_ADDR -e __start
480 #endif
481
482 #ifdef ORDINARY_LINK
483 LD = $(CC)
484 #else
485 #ifdef COFF_ENCAPSULATE
486 LD=$(CC) -nostdlib
487 #else /* not ORDINARY_LINK */
488 #ifdef LINKER
489 LD=LINKER
490 #else /* not LINKER */
491 LD=ld
492 #endif /* not LINKER */
493 #endif /* not COFF_ENCAPSULATE */
494 #endif /* not ORDINARY_LINK */
495
496 ALL_LDFLAGS = LD_SWITCH_SYSTEM LD_SWITCH_SYSTEM_TEMACS LD_SWITCH_MACHINE \
497 LD_SWITCH_MACHINE_TEMACS LD_SWITCH_SITE $(LDFLAGS)
498
499 /* A macro which other sections of Makefile can redefine to munge the
500 flags before they're passed to LD. This is helpful if you have
501 redefined LD to something odd, like "gcc".
502 (The YMF prefix is a holdover from the old name "ymakefile".)
503 */
504 #ifndef YMF_PASS_LDFLAGS
505 #define YMF_PASS_LDFLAGS(flags) flags
506 #endif
507
508 /* Allow config.h to specify a replacement file for unexec.c. */
509 #ifndef UNEXEC
510 #define UNEXEC unexec.o
511 #endif
512 #ifndef UNEXEC_SRC
513 #define UNEXEC_SRC unexec.c
514 #endif
515
516 INTERVAL_SRC = intervals.h composite.h
517
518 GETLOADAVG_LIBS = @GETLOADAVG_LIBS@
519
520 #ifdef MSDOS
521 #ifdef HAVE_X_WINDOWS
522 MSDOS_OBJ = dosfns.o msdos.o
523 #else
524 MSDOS_OBJ = dosfns.o msdos.o w16select.o
525 #endif
526 #endif
527
528
529 /* lastfile must follow all files
530 whose initialized data areas should be dumped as pure by dump-emacs. */
531 obj= dispnew.o frame.o scroll.o xdisp.o xmenu.o window.o \
532 charset.o coding.o category.o ccl.o\
533 cm.o term.o xfaces.o $(XOBJ) \
534 emacs.o keyboard.o macros.o keymap.o sysdep.o \
535 buffer.o filelock.o insdel.o marker.o \
536 minibuf.o fileio.o dired.o filemode.o \
537 cmds.o casetab.o casefiddle.o indent.o search.o regex.o undo.o \
538 alloc.o data.o doc.o editfns.o callint.o \
539 eval.o floatfns.o fns.o print.o lread.o \
540 abbrev.o syntax.o UNEXEC mocklisp.o bytecode.o \
541 process.o callproc.o \
542 region-cache.o sound.o atimer.o \
543 doprnt.o strftime.o intervals.o textprop.o composite.o \
544 $(MSDOS_OBJ)
545
546 /* Object files used on some machine or other.
547 These go in the DOC file on all machines
548 in case they are needed there. */
549 SOME_MACHINE_OBJECTS = sunfns.o dosfns.o msdos.o \
550 xterm.o xfns.o xmenu.o xselect.o xrdb.o
551
552
553 #ifdef TERMINFO
554 /* Used to be -ltermcap here. If your machine needs that,
555 define LIBS_TERMCAP in the m/MACHINE.h file. */
556 #ifndef LIBS_TERMCAP
557 #define LIBS_TERMCAP -lcurses
558 #endif /* LIBS_TERMCAP */
559 termcapobj = terminfo.o
560 #else /* ! defined (TERMINFO) */
561 #ifndef LIBS_TERMCAP
562 #define LIBS_TERMCAP
563 termcapobj = termcap.o tparam.o
564 #else /* LIBS_TERMCAP */
565 termcapobj = tparam.o
566 #endif /* LIBS_TERMCAP */
567 #endif /* ! defined (TERMINFO) */
568
569
570 #ifndef SYSTEM_MALLOC
571
572 #ifdef DOUG_LEA_MALLOC
573 #ifdef REL_ALLOC
574 mallocobj = ralloc.o vm-limit.o
575 #else /* ! defined (REL_ALLOC) */
576 mallocobj = vm-limit.o
577 #endif /* ! defined (REL_ALLOC) */
578 #else /* ! defined (DOUG_LEA_MALLOC) */
579 #ifdef REL_ALLOC
580 mallocobj = gmalloc.o ralloc.o vm-limit.o
581 #else /* ! defined (REL_ALLOC) */
582 mallocobj = gmalloc.o vm-limit.o
583 #endif /* ! defined (REL_ALLOC) */
584 #endif /* ! defined (DOUG_LEA_MALLOC) */
585
586 #else /* ! SYSTEM_MALLOC */
587
588 #ifdef REL_ALLOC_MMAP
589 mallocobj = ralloc.o vm-limit.o
590 #endif
591
592 #endif /* SYSTEM_MALLOC */
593
594
595 #ifndef HAVE_ALLOCA
596 allocaobj = alloca.o
597 #else
598 allocaobj =
599 #endif
600
601 #ifdef USE_X_TOOLKIT
602 widgetobj= widget.o
603 #else /* not USE_X_TOOLKIT */
604 widgetobj=
605 #endif /* not USE_X_TOOLKIT */
606
607
608 /* define otherobj as list of object files that make-docfile
609 should not be told about. */
610 otherobj= $(termcapobj) lastfile.o $(mallocobj) $(allocaobj) $(widgetobj) $(LIBOBJS)
611
612 #ifdef HAVE_MOUSE
613 #define MOUSE_SUPPORT ${lispsource}mouse.elc \
614 ${lispsource}select.elc ${lispsource}scroll-bar.elc
615 #else
616 #define MOUSE_SUPPORT
617 #endif
618
619 #ifdef VMS
620 #define VMS_SUPPORT ${lispsource}vmsproc.elc ${lispsource}vms-patch.elc
621 #else
622 #define VMS_SUPPORT
623 #endif
624
625 #ifdef MSDOS
626 #define MSDOS_SUPPORT ${lispsource}ls-lisp.elc ${lispsource}disp-table.elc \
627 ${lispsource}dos-fns.elc ${lispsource}dos-w32.elc ${lispsource}dos-vars.elc \
628 ${lispsource}international/ccl.elc ${lispsource}international/codepage.elc
629
630 #else
631 #define MSDOS_SUPPORT
632 #endif
633
634 #ifdef WINDOWSNT
635 #define WINNT_SUPPORT ${lispsource}ls-lisp.elc ${lispsource}w32-fns.elc \
636 ${lispsource}dos-w32.elc
637 #else
638 #define WINNT_SUPPORT
639 #endif
640
641 /* List of Lisp files loaded into the dumped Emacs. It's arranged
642 like this because it's easier to generate it semi-mechanically from
643 loadup.el this way.
644
645 Note that this list should not include lisp files which might not
646 be present, like site-load.el and site-init.el; this makefile
647 expects them all to be either present or buildable.
648
649 Files which are loaded unconditionally should be in shortlisp as well.
650 Files included conditionally here should be included (unconditionally)
651 in SOME_MACHINE_LISP. */
652
653 lisp= \
654 ${lispsource}abbrev.elc \
655 ${lispsource}buff-menu.elc \
656 ${lispsource}byte-run.elc \
657 ${lispsource}cus-start.el \
658 ${lispsource}custom.elc \
659 ${lispsource}emacs-lisp/lisp-mode.elc \
660 ${lispsource}emacs-lisp/lisp.elc \
661 ${lispsource}env.elc \
662 ${lispsource}faces.elc \
663 ${lispsource}files.elc \
664 ${lispsource}format.elc \
665 ${lispsource}facemenu.elc \
666 MOUSE_SUPPORT \
667 ${lispsource}float-sup.elc \
668 ${lispsource}frame.elc\
669 ${lispsource}help.elc \
670 ${lispsource}indent.elc \
671 ${lispsource}isearch.elc \
672 ${lispsource}loadup.el \
673 ${lispsource}loaddefs.el \
674 ${lispsource}bindings.el \
675 ${lispsource}map-ynp.elc \
676 ${lispsource}menu-bar.elc \
677 ${lispsource}international/mule.elc \
678 ${lispsource}international/mule-conf.el \
679 ${lispsource}international/mule-cmds.elc \
680 ${lispsource}international/characters.elc \
681 ${lispsource}case-table.elc \
682 ${lispsource}language/chinese.elc \
683 ${lispsource}language/cyrillic.elc \
684 ${lispsource}language/indian.elc \
685 ${lispsource}language/devanagari.elc \
686 ${lispsource}language/english.elc \
687 ${lispsource}language/ethiopic.elc \
688 ${lispsource}language/european.elc \
689 ${lispsource}language/czech.elc \
690 ${lispsource}language/slovak.elc \
691 ${lispsource}language/romanian.elc \
692 ${lispsource}language/greek.elc \
693 ${lispsource}language/hebrew.elc \
694 ${lispsource}language/japanese.elc \
695 ${lispsource}language/korean.elc \
696 ${lispsource}language/lao.elc \
697 ${lispsource}language/thai.elc \
698 ${lispsource}language/tibetan.elc \
699 ${lispsource}language/vietnamese.elc \
700 ${lispsource}language/misc-lang.elc \
701 ${lispsource}paths.el \
702 ${lispsource}register.elc \
703 ${lispsource}replace.elc \
704 ${lispsource}simple.elc \
705 ${lispsource}startup.elc \
706 ${lispsource}subr.elc \
707 ${lispsource}term/tty-colors.elc \
708 ${lispsource}textmodes/fill.elc \
709 ${lispsource}textmodes/page.elc \
710 ${lispsource}textmodes/paragraphs.elc \
711 ${lispsource}textmodes/text-mode.elc \
712 ${lispsource}vc-hooks.elc \
713 ${lispsource}ediff-hook.elc \
714 VMS_SUPPORT \
715 MSDOS_SUPPORT \
716 WINNT_SUPPORT \
717 ${lispsource}widget.elc \
718 ${lispsource}window.elc \
719 ${lispsource}version.el
720
721 /* These are relative file names for the Lisp files
722 that are loaded unconditionally. This is used in make-docfile.
723 It need not contain the files that are loaded conditionally
724 because SOME_MACHINE_LISP has those. */
725 shortlisp= \
726 ../lisp/abbrev.elc \
727 ../lisp/buff-menu.elc \
728 ../lisp/byte-run.elc \
729 ../lisp/cus-start.el \
730 ../lisp/custom.elc \
731 ../lisp/emacs-lisp/lisp-mode.elc \
732 ../lisp/emacs-lisp/lisp.elc \
733 ../lisp/facemenu.elc \
734 ../lisp/faces.elc \
735 ../lisp/files.elc \
736 ../lisp/float-sup.elc \
737 ../lisp/format.elc \
738 ../lisp/frame.elc \
739 ../lisp/help.elc \
740 ../lisp/indent.elc \
741 ../lisp/isearch.elc \
742 ../lisp/loadup.el \
743 ../lisp/loaddefs.el \
744 ../lisp/bindings.el \
745 ../lisp/map-ynp.elc \
746 ../lisp/international/mule.elc \
747 ../lisp/international/mule-conf.el \
748 ../lisp/international/mule-cmds.elc \
749 ../lisp/international/characters.elc \
750 ../lisp/case-table.elc \
751 ../lisp/language/chinese.elc \
752 ../lisp/language/cyrillic.elc \
753 ../lisp/language/indian.elc \
754 ../lisp/language/devanagari.elc \
755 ../lisp/language/english.elc \
756 ../lisp/language/ethiopic.elc \
757 ../lisp/language/european.elc \
758 ../lisp/language/czech.elc \
759 ../lisp/language/slovak.elc \
760 ../lisp/language/romanian.elc \
761 ../lisp/language/greek.elc \
762 ../lisp/language/hebrew.elc \
763 ../lisp/language/japanese.elc \
764 ../lisp/language/korean.elc \
765 ../lisp/language/lao.elc \
766 ../lisp/language/thai.elc \
767 ../lisp/language/tibetan.elc \
768 ../lisp/language/vietnamese.elc \
769 ../lisp/language/misc-lang.elc \
770 ../lisp/paths.el \
771 ../lisp/register.elc \
772 ../lisp/replace.elc \
773 ../lisp/simple.elc \
774 ../lisp/startup.elc \
775 ../lisp/subr.elc \
776 ../lisp/term/tty-colors.elc \
777 ../lisp/textmodes/fill.elc \
778 ../lisp/textmodes/page.elc \
779 ../lisp/textmodes/paragraphs.elc \
780 ../lisp/textmodes/text-mode.elc \
781 ../lisp/vc-hooks.elc \
782 ../lisp/ediff-hook.elc \
783 ../lisp/widget.elc \
784 ../lisp/window.elc \
785 ../lisp/version.el
786
787 /* Lisp files that may or may not be used.
788 We must unconditionally put them in the DOC file.
789 We use ../lisp/ to start the file names
790 to reduce the size of the argument list for make-docfile
791 for the sake of systems which can't handle large ones. */
792 SOME_MACHINE_LISP = ${dotdot}/lisp/menu-bar.elc ${dotdot}/lisp/mouse.elc \
793 ${dotdot}/lisp/select.elc ${dotdot}/lisp/scroll-bar.elc \
794 ${dotdot}/lisp/vmsproc.elc ${dotdot}/lisp/vms-patch.elc \
795 ${dotdot}/lisp/ls-lisp.elc ${dotdot}/lisp/dos-fns.elc \
796 ${dotdot}/lisp/w32-fns.elc ${dotdot}/lisp/dos-w32.elc \
797 ${dotdot}/lisp/disp-table.elc ${dotdot}/lisp/dos-vars.elc \
798 ${dotdot}/lisp/international/ccl.elc \
799 ${dotdot}/lisp/international/codepage.elc
800
801 /* Construct full set of libraries to be linked.
802 Note that SunOS needs -lm to come before -lc; otherwise, you get
803 duplicated symbols. If the standard libraries were compiled
804 with GCC, we might need gnulib again after them. */
805 LIBES = $(LOADLIBES) $(LIBS) $(LIBX) $(LIBSOUND) \
806 LIBS_SYSTEM LIBS_MACHINE LIBS_TERMCAP \
807 LIBS_DEBUG $(GETLOADAVG_LIBS) $(GNULIB_VAR) LIB_MATH LIB_STANDARD \
808 $(GNULIB_VAR)
809
810 /* Enable recompilation of certain other files depending on system type. */
811
812 #ifndef OTHER_FILES
813 #define OTHER_FILES
814 #endif
815
816 #ifndef OBJECTS_MACHINE
817 #define OBJECTS_MACHINE
818 #endif
819
820 all: emacs OTHER_FILES
821
822 emacs: temacs ${etc}DOC ${lisp}
823 #ifdef CANNOT_DUMP
824 rm -f emacs
825 ln temacs emacs
826 #else
827 #ifdef HAVE_SHM
828 LC_ALL=C ./temacs -nl -batch -l loadup dump
829 #else /* ! defined (HAVE_SHM) */
830 LC_ALL=C ./temacs -batch -l loadup dump
831 #endif /* ! defined (HAVE_SHM) */
832 #endif /* ! defined (CANNOT_DUMP) */
833 -./emacs -q -batch -f list-load-path-shadows
834
835 /* We run make-docfile twice because the command line may get too long
836 on some systems. */
837 /* ${SOME_MACHINE_OBJECTS} comes before ${obj} because some files may
838 or may not be included in ${obj}, but they are always included in
839 ${SOME_MACHINE_OBJECTS}. Since a file is processed when it is mentioned
840 for the first time, this prevents any variation between configurations
841 in the contents of the DOC file.
842 Likewise for ${SOME_MACHINE_LISP}. */
843 ${etc}DOC: ${libsrc}make-docfile ${obj} ${lisp}
844 -rm -f ${etc}DOC
845 ${libsrc}make-docfile -d ${srcdir} ${SOME_MACHINE_OBJECTS} ${obj} > ${etc}DOC
846 ${libsrc}make-docfile -a ${etc}DOC -d ${srcdir} ${SOME_MACHINE_LISP} ${shortlisp}
847
848 ${libsrc}make-docfile:
849 cd ${libsrc}; ${MAKE} ${MFLAGS} make-docfile
850
851 /* Some systems define this to cause parallel Make-ing. */
852 #ifndef MAKE_PARALLEL
853 #define MAKE_PARALLEL
854 #endif
855
856 temacs: MAKE_PARALLEL $(LOCALCPP) $(STARTFILES) stamp-oldxmenu ${obj} ${otherobj} OBJECTS_MACHINE prefix-args
857 $(LD) YMF_PASS_LDFLAGS (${STARTFLAGS} ${ALL_LDFLAGS}) \
858 -o temacs ${STARTFILES} ${obj} ${otherobj} \
859 OBJECTS_MACHINE ${LIBES}
860
861 /* We don't use ALL_LDFLAGS because LD_SWITCH_SYSTEM and LD_SWITCH_MACHINE
862 often contain options that have to do with using Emacs's crt0,
863 which are only good with temacs. */
864 prefix-args: prefix-args.c $(config_h)
865 $(CC) $(ALL_CFLAGS) $(LDFLAGS) ${srcdir}/prefix-args.c -o prefix-args
866
867 /* Don't lose if this was not defined. */
868 #ifndef OLDXMENU_OPTIONS
869 #define OLDXMENU_OPTIONS
870 #endif
871
872 /* Don't lose if this was not defined. */
873 #ifndef LWLIB_OPTIONS
874 #define LWLIB_OPTIONS
875 #endif
876
877 #if defined (HAVE_X_WINDOWS) && defined (HAVE_X11) && defined (HAVE_MENUS)
878
879 /* We use stamp-xmenu with these two deps
880 to both ensure that lwlib gets remade based on its dependencies
881 in its own makefile,
882 and remake temacs if lwlib gets changed by this. */
883 stamp-oldxmenu: ${OLDXMENU} ../src/$(OLDXMENU)
884 touch stamp-oldxmenu
885 /* Supply an ordering for parallel make. */
886 ../src/$(OLDXMENU): ${OLDXMENU}
887
888 #ifdef USE_X_TOOLKIT
889 $(OLDXMENU): really-lwlib
890
891 /* Encode the values of these two macros in Make variables,
892 so we can use $(...) to substitute their values within "...". */
893 C_SWITCH_MACHINE_1 = C_SWITCH_MACHINE
894 C_SWITCH_SYSTEM_1 = C_SWITCH_SYSTEM
895 C_SWITCH_SITE_1 = C_SWITCH_SITE
896 C_SWITCH_X_SITE_1 = C_SWITCH_X_SITE
897 C_SWITCH_X_MACHINE_1 = C_SWITCH_X_MACHINE
898 C_SWITCH_X_SYSTEM_1 = C_SWITCH_X_SYSTEM
899 really-lwlib:
900 cd ${lwlibdir}; ${MAKE} ${MFLAGS} LWLIB_OPTIONS \
901 CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}' \
902 "C_SWITCH_X_SITE=$(C_SWITCH_X_SITE_1)" \
903 "C_SWITCH_X_MACHINE=$(C_SWITCH_X_MACHINE_1)" \
904 "C_SWITCH_X_SYSTEM=$(C_SWITCH_X_SYSTEM_1)" \
905 "C_SWITCH_SITE=$(C_SWITCH_SITE_1)" \
906 "C_SWITCH_MACHINE=$(C_SWITCH_MACHINE_1)" \
907 "C_SWITCH_SYSTEM=$(C_SWITCH_SYSTEM_1)"
908 @true /* make -t should not create really-lwlib. */
909 .PHONY: really-lwlib
910 #else /* not USE_X_TOOLKIT */
911 $(OLDXMENU): really-oldXMenu
912
913 /* Encode the values of these two macros in Make variables,
914 so we can use $(...) to substitute their values within "...". */
915 C_SWITCH_MACHINE_1 = C_SWITCH_MACHINE
916 C_SWITCH_SYSTEM_1 = C_SWITCH_SYSTEM
917 C_SWITCH_SITE_1 = C_SWITCH_SITE
918 C_SWITCH_X_SITE_1 = C_SWITCH_X_SITE
919 C_SWITCH_X_MACHINE_1 = C_SWITCH_X_MACHINE
920 C_SWITCH_X_SYSTEM_1 = C_SWITCH_X_SYSTEM
921 really-oldXMenu:
922 cd ${oldXMenudir}; ${MAKE} ${MFLAGS} OLDXMENU_OPTIONS \
923 CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}' \
924 "C_SWITCH_X_SITE=$(C_SWITCH_X_SITE_1)" \
925 "C_SWITCH_X_MACHINE=$(C_SWITCH_X_MACHINE_1)" \
926 "C_SWITCH_X_SYSTEM=$(C_SWITCH_X_SYSTEM_1)" \
927 "C_SWITCH_SITE=$(C_SWITCH_SITE_1)" \
928 "C_SWITCH_MACHINE=$(C_SWITCH_MACHINE_1)" \
929 "C_SWITCH_SYSTEM=$(C_SWITCH_SYSTEM_1)"
930 @true /* make -t should not create really-oldXMenu. */
931 .PHONY: really-oldXMenu
932 #endif /* not USE_X_TOOLKIT */
933 #else /* not (HAVE_X_WINDOWS && HAVE_X11 && HAVE_MENUS) */
934
935 /* We don't really need this, but satisfy the dependency. */
936 stamp-oldxmenu:
937 touch stamp-oldxmenu
938 #endif /* not (HAVE_X_WINDOWS && HAVE_X11 && HAVE_MENUS) */
939
940 ../config.status:: epaths.in
941 @echo "The file epaths.h needs to be set up from epaths.in."
942 @echo "Please run the `configure' script again."
943 exit 1
944
945 ../config.status:: config.in
946 @echo "The file config.h needs to be set up from config.in."
947 @echo "Please run the `configure' script again."
948 exit 1
949
950 /* Some machines have alloca built-in.
951 They should define HAVE_ALLOCA, or may just let alloca.s
952 be used but generate no code.
953 Some have it written in assembler in alloca.s.
954 Some use the C version in alloca.c (these define C_ALLOCA in config.h).
955 */
956
957 #ifdef C_ALLOCA
958 /* We could put something in alloca.c to #define free and malloc
959 whenever emacs was #defined, but that's not appropriate for all
960 users of alloca in Emacs. Check out ../lib-src/getopt.c. */
961 alloca.o : alloca.c
962 $(CC) -c $(CPPFLAGS) -DEMACS_FREE=xfree \
963 $(ALL_CFLAGS) ${srcdir}/alloca.c
964 #else
965 #ifndef HAVE_ALLOCA
966 alloca.o : alloca.s $(config_h)
967 /* $(CPP) is cc -E, which may get confused by filenames
968 that do not end in .c. So copy file to a safe name. */
969 -rm -f allocatem.c
970 cp ${srcdir}/alloca.s allocatem.c
971 /* Remove any ^L, blank lines, and preprocessor comments,
972 since some assemblers barf on them. Use a different basename for the
973 output file, since some stupid compilers (Green Hill's) use that
974 name for the intermediate assembler file. */
975 $(CPP) $(CPPFLAGS) $(ALL_CFLAGS) allocatem.c | \
976 sed -e 's/\f//' -e 's/^#.*//' | \
977 sed -n -e '/^..*$$/p' > allocax.s
978 -rm -f alloca.o
979 /* Xenix, in particular, needs to run assembler via cc. */
980 $(CC) -c allocax.s
981 mv allocax.o alloca.o
982 -rm -f allocax.s allocatem.c
983 #endif /* HAVE_ALLOCA */
984 #endif /* ! defined (C_ALLOCA) */
985
986 /* Nearly all the following files depend on lisp.h,
987 but it is not included as a dependency because
988 it is so often changed in ways that do not require any recompilation
989 and so rarely changed in ways that do require any. */
990
991 abbrev.o: abbrev.c buffer.h window.h dispextern.h commands.h charset.h \
992 $(config_h)
993 buffer.o: buffer.c buffer.h region-cache.h commands.h window.h \
994 dispextern.h $(INTERVAL_SRC) blockinput.h atimer.h systime.h charset.h \
995 $(config_h)
996 callint.o: callint.c window.h commands.h buffer.h mocklisp.h \
997 keyboard.h dispextern.h $(config_h)
998 callproc.o: callproc.c epaths.h buffer.h commands.h $(config_h) \
999 process.h systty.h syssignal.h charset.h coding.h ccl.h msdos.h \
1000 composite.h
1001 casefiddle.o: casefiddle.c syntax.h commands.h buffer.h composite.h $(config_h)
1002 casetab.o: casetab.c buffer.h $(config_h)
1003 category.o: category.c category.h buffer.h charset.h $(config_h)
1004 ccl.o: ccl.c ccl.h charset.h coding.h $(config_h)
1005 charset.o: charset.c charset.h buffer.h coding.h composite.h disptab.h \
1006 $(config_h)
1007 coding.o: coding.c coding.h ccl.h buffer.h charset.h $(config_h)
1008 cm.o: cm.c cm.h termhooks.h $(config_h)
1009 cmds.o: cmds.c syntax.h buffer.h charset.h commands.h window.h $(config_h) \
1010 msdos.h dispextern.h
1011 pre-crt0.o: pre-crt0.c
1012 ecrt0.o: ecrt0.c $(config_h)
1013 CRT0_COMPILE ${srcdir}/ecrt0.c
1014 dired.o: dired.c commands.h buffer.h $(config_h) charset.h coding.h regex.h \
1015 systime.h
1016 dispnew.o: dispnew.c commands.h frame.h window.h buffer.h dispextern.h \
1017 termchar.h termopts.h termhooks.h cm.h disptab.h systty.h systime.h \
1018 xterm.h blockinput.h atimer.h charset.h msdos.h composite.h keyboard.h \
1019 $(config_h)
1020 doc.o: doc.c $(config_h) epaths.h buffer.h keyboard.h charset.h
1021 doprnt.o: doprnt.c charset.h $(config_h)
1022 dosfns.o: buffer.h termchar.h termhooks.h frame.h msdos.h dosfns.h $(config_h)
1023 editfns.o: editfns.c window.h buffer.h systime.h $(INTERVAL_SRC) charset.h \
1024 coding.h dispextern.h $(config_h)
1025 emacs.o: emacs.c commands.h systty.h syssignal.h blockinput.h process.h \
1026 termhooks.h buffer.h atimer.h systime.h $(INTERVAL_SRC) $(config_h)
1027 fileio.o: fileio.c window.h buffer.h systime.h $(INTERVAL_SRC) charset.h \
1028 coding.h ccl.h msdos.h dispextern.h $(config_h)
1029 filelock.o: filelock.c buffer.h systime.h epaths.h $(config_h)
1030 filemode.o: filemode.c $(config_h)
1031 frame.o: frame.c xterm.h window.h frame.h termhooks.h commands.h keyboard.h \
1032 buffer.h charset.h fontset.h msdos.h dosfns.h dispextern.h $(config_h)
1033 fontset.o: dispextern.h fontset.h fontset.c ccl.h charset.h frame.h \
1034 keyboard.h $(config_h)
1035 getloadavg.o: getloadavg.c $(config_h)
1036 indent.o: indent.c frame.h window.h indent.h buffer.h $(config_h) termchar.h \
1037 termopts.h disptab.h region-cache.h charset.h composite.h dispextern.h \
1038 keyboard.h
1039 insdel.o: insdel.c window.h buffer.h $(INTERVAL_SRC) blockinput.h charset.h\
1040 dispextern.h atimer.h systime.h $(config_h)
1041 keyboard.o: keyboard.c termchar.h termhooks.h termopts.h buffer.h charset.h \
1042 commands.h frame.h window.h macros.h disptab.h keyboard.h syssignal.h \
1043 systty.h systime.h dispextern.h syntax.h $(INTERVAL_SRC) blockinput.h \
1044 atimer.h xterm.h puresize.h msdos.h $(config_h)
1045 keymap.o: keymap.c buffer.h commands.h keyboard.h termhooks.h blockinput.h \
1046 atimer.h systime.h puresize.h charset.h intervals.h $(config_h)
1047 lastfile.o: lastfile.c $(config_h)
1048 macros.o: macros.c window.h buffer.h commands.h macros.h keyboard.h \
1049 dispextern.h $(config_h)
1050 malloc.o: malloc.c $(config_h)
1051 gmalloc.o: gmalloc.c $(config_h)
1052 ralloc.o: ralloc.c $(config_h)
1053 vm-limit.o: vm-limit.c mem-limits.h $(config_h)
1054 marker.o: marker.c buffer.h charset.h $(config_h)
1055 minibuf.o: minibuf.c syntax.h dispextern.h frame.h window.h keyboard.h \
1056 buffer.h commands.h charset.h msdos.h $(config_h)
1057 mktime.o: mktime.c $(config_h)
1058 mocklisp.o: mocklisp.c buffer.h $(config_h)
1059 msdos.o: msdos.c msdos.h dosfns.h systime.h termhooks.h dispextern.h frame.h \
1060 termopts.h termchar.h charset.h coding.h ccl.h disptab.h window.h \
1061 keyboard.h $(config_h)
1062 process.o: process.c process.h buffer.h window.h termhooks.h termopts.h \
1063 commands.h syssignal.h systime.h systty.h syswait.h frame.h dispextern.h \
1064 blockinput.h atimer.h charset.h coding.h ccl.h msdos.h composite.h \
1065 keyboard.h $(config_h)
1066 regex.o: regex.c syntax.h buffer.h $(config_h) regex.h category.h charset.h
1067 region-cache.o: region-cache.c buffer.h region-cache.h
1068 scroll.o: scroll.c termchar.h dispextern.h frame.h msdos.h keyboard.h \
1069 $(config_h)
1070 search.o: search.c regex.h commands.h buffer.h region-cache.h syntax.h \
1071 blockinput.h atimer.h systime.h category.h charset.h composite.h $(config_h)
1072 strftime.o: strftime.c $(config_h)
1073 syntax.o: syntax.c syntax.h buffer.h commands.h category.h charset.h \
1074 composite.h $(config_h)
1075 sysdep.o: sysdep.c $(config_h) dispextern.h termhooks.h termchar.h termopts.h \
1076 frame.h syssignal.h systty.h systime.h syswait.h blockinput.h atimer.h \
1077 window.h msdos.h dosfns.h keyboard.h
1078 term.o: term.c termchar.h termhooks.h termopts.h $(config_h) cm.h frame.h \
1079 disptab.h keyboard.h charset.h coding.h ccl.h msdos.h
1080 termcap.o: termcap.c $(config_h)
1081 terminfo.o: terminfo.c $(config_h)
1082 tparam.o: tparam.c $(config_h)
1083 undo.o: undo.c buffer.h commands.h $(config_h)
1084 /* This hack is to discard any space that cpp might put at the beginning
1085 of UNEXEC when substituting it in. */
1086 UNEXEC_ALIAS=UNEXEC
1087 $(UNEXEC_ALIAS): UNEXEC_SRC $(config_h)
1088 w16select.o: w16select.c dispextern.h frame.h blockinput.h atimer.h systime.h \
1089 msdos.h $(config_h)
1090 widget.o: widget.c xterm.h frame.h dispextern.h widgetprv.h \
1091 $(srcdir)/../lwlib/lwlib.h $(config_h)
1092 window.o: window.c indent.h commands.h frame.h window.h buffer.h termchar.h \
1093 termhooks.h disptab.h keyboard.h dispextern.h msdos.h composite.h \
1094 $(config_h)
1095 xdisp.o: xdisp.c macros.h commands.h indent.h buffer.h dispextern.h coding.h \
1096 termchar.h frame.h window.h disptab.h termhooks.h charset.h $(config_h) \
1097 msdos.h composite.h fontset.h
1098 xfaces.o: xfaces.c dispextern.h frame.h xterm.h buffer.h blockinput.h \
1099 window.h charset.h msdos.h dosfns.h composite.h atimer.h systime.h $(config_h)
1100 xfns.o: xfns.c buffer.h frame.h window.h keyboard.h xterm.h dispextern.h \
1101 $(srcdir)/../lwlib/lwlib.h blockinput.h atimer.h systime.h epaths.h \
1102 charset.h $(config_h)
1103 xmenu.o: xmenu.c xterm.h termhooks.h window.h dispextern.h frame.h keyboard.h \
1104 $(srcdir)/../lwlib/lwlib.h blockinput.h atimer.h systime.h msdos.h \
1105 $(config_h)
1106 xterm.o: xterm.c xterm.h termhooks.h termopts.h termchar.h window.h \
1107 dispextern.h frame.h disptab.h blockinput.h atimer.h systime.h syssignal.h \
1108 keyboard.h gnu.h sink.h sinkmask.h charset.h ccl.h fontset.h composite.h \
1109 coding.h $(config_h)
1110 xselect.o: xselect.c dispextern.h frame.h xterm.h blockinput.h charset.h \
1111 coding.h ccl.h buffer.h atimer.h systime.h $(config_h)
1112 xrdb.o: xrdb.c $(config_h) epaths.h
1113 hftctl.o: hftctl.c $(config_h)
1114 sound.o: sound.c dispextern.h $(config_h)
1115 atimer.o: atimer.c atimer.h systime.h $(config_h)
1116
1117 /* The files of Lisp proper */
1118
1119 alloc.o: alloc.c frame.h window.h buffer.h puresize.h syssignal.h keyboard.h \
1120 blockinput.h atimer.h systime.h charset.h dispextern.h $(config_h) $(INTERVAL_SRC)
1121 bytecode.o: bytecode.c buffer.h syntax.h charset.h $(config_h)
1122 data.o: data.c buffer.h puresize.h charset.h syssignal.h keyboard.h $(config_h)
1123 eval.o: eval.c commands.h keyboard.h blockinput.h atimer.h systime.h \
1124 $(config_h)
1125 floatfns.o: floatfns.c $(config_h)
1126 fns.o: fns.c commands.h $(config_h) frame.h buffer.h charset.h keyboard.h \
1127 frame.h window.h dispextern.h $(INTERVAL_SRC)
1128 print.o: print.c process.h frame.h window.h buffer.h keyboard.h charset.h\
1129 $(config_h) dispextern.h msdos.h composite.h
1130 lread.o: lread.c commands.h keyboard.h buffer.h epaths.h charset.h $(config_h) \
1131 termhooks.h msdos.h
1132
1133 /* Text properties support */
1134 textprop.o: textprop.c buffer.h window.h dispextern.h $(INTERVAL_SRC) \
1135 $(config_h)
1136 intervals.o: intervals.c buffer.h $(INTERVAL_SRC) keyboard.h puresize.h $(config_h)
1137 composite.o: composite.c buffer.h charset.h $(INTERVAL_SRC) $(config_h)
1138
1139 /* System-specific programs to be made.
1140 OTHER_FILES and OBJECTS_MACHINE
1141 select which of these should be compiled. */
1142
1143 sunfns.o: sunfns.c buffer.h window.h dispextern.h $(config_h)
1144
1145 ${libsrc}emacstool: ${libsrc}emacstool.c
1146 cd ${libsrc}; ${MAKE} ${MFLAGS} emacstool
1147 mostlyclean:
1148 rm -f temacs prefix-args core *.core \#* *.o libXMenu11.a liblw.a
1149 rm -f ../etc/DOC
1150 clean: mostlyclean
1151 rm -f emacs-* emacs bootstrap-emacs
1152 /**/# This is used in making a distribution.
1153 /**/# Do not use it on development directories!
1154 distclean: clean
1155 rm -f epaths.h config.h Makefile Makefile.c config.stamp stamp-oldxmenu ../etc/DOC-*
1156 maintainer-clean: distclean
1157 @echo "This command is intended for maintainers to use;"
1158 @echo "it deletes files that may require special tools to rebuild."
1159 rm -f TAGS
1160 versionclean:
1161 -rm -f emacs emacs-* ../etc/DOC*
1162 extraclean: distclean
1163 -rm -f *~ \#* m/?*~ s/?*~
1164
1165 /* The rule for the [sm] files has to be written a little funny to
1166 avoid looking like a C comment to CPP. */
1167 SOURCES = *.[ch] [sm]/?* COPYING Makefile.in \
1168 config.in epaths.in README COPYING ChangeLog vms.pp-trans
1169 unlock:
1170 chmod u+w $(SOURCES)
1171
1172 relock:
1173 chmod -w $(SOURCES)
1174 chmod +w epaths.h
1175
1176 /* Arrange to make a tags table TAGS-LISP for ../lisp,
1177 plus TAGS for the C files, which includes ../lisp/TAGS by reference. */
1178 ctagsfiles1 = [xyzXYZ]*.[hc]
1179 ctagsfiles2 = [a-wA-W]*.[hc]
1180 TAGS: $(srcdir)/$(ctagsfiles)
1181 ../lib-src/etags --include=TAGS-LISP --include=${lwlibdir}/TAGS \
1182 --regex='/[ ]*DEFVAR_[A-Z_ (]+"\([^"]+\)"/' \
1183 $(srcdir)/$(ctagsfiles1) $(srcdir)/$(ctagsfiles2)
1184 frc:
1185 TAGS-LISP: frc
1186 $(MAKE) -f ${lispsource}Makefile TAGS-LISP ETAGS=../lib-src/etags
1187 tags: TAGS TAGS-LISP
1188 .PHONY: tags
1189
1190
1191 /* Bootstrapping. */
1192
1193 bootstrap: bootstrap-emacs
1194
1195 /* Build a temacs with a sufficiently large PURESIZE to load the
1196 Lisp files from loadup.el in source form. */
1197
1198 bootstrap-temacs:
1199 LC_ALL=C $(MAKE) $(MFLAGS) temacs ALL_CFLAGS="$(ALL_CFLAGS) -DPURESIZE=5000000 -I../src"
1200
1201 /* Dump an Emacs executable named bootstrap-emacs containing the
1202 files from loadup.el in source form. */
1203
1204 bootstrap-emacs: bootstrap-temacs
1205 #ifdef CANNOT_DUMP
1206 ln temacs bootstrap-emacs
1207 #else
1208 #ifdef HAVE_SHM
1209 ./temacs -nl -batch -l loadup bootstrap
1210 #else /* ! defined (HAVE_SHM) */
1211 ./temacs --batch --load loadup bootstrap
1212 #endif /* ! defined (HAVE_SHM) */
1213 #endif /* ! defined (CANNOT_DUMP) */
1214 mv -f emacs bootstrap-emacs
1215 rm -f temacs
1216