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