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