(Qforeground_color, Qbackground_color): Declare.
[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/devanagari.elc \
680 ${lispsource}language/english.elc \
681 ${lispsource}language/ethiopic.elc \
682 ${lispsource}language/european.elc \
683 ${lispsource}language/greek.elc \
684 ${lispsource}language/hebrew.elc \
685 ${lispsource}language/indian.elc \
686 ${lispsource}language/japanese.elc \
687 ${lispsource}language/korean.elc \
688 ${lispsource}language/lao.elc \
689 ${lispsource}language/thai.elc \
690 ${lispsource}language/tibetan.elc \
691 ${lispsource}language/vietnamese.elc \
692 ${lispsource}language/misc-lang.elc \
693 ${lispsource}paths.el \
694 ${lispsource}register.elc \
695 ${lispsource}replace.elc \
696 ${lispsource}simple.elc \
697 ${lispsource}startup.elc \
698 ${lispsource}subr.elc \
699 ${lispsource}textmodes/fill.elc \
700 ${lispsource}textmodes/page.elc \
701 ${lispsource}textmodes/paragraphs.elc \
702 ${lispsource}textmodes/text-mode.elc \
703 ${lispsource}vc-hooks.elc \
704 ${lispsource}ediff-hook.elc \
705 VMS_SUPPORT \
706 MSDOS_SUPPORT \
707 WINNT_SUPPORT \
708 ${lispsource}widget.elc \
709 ${lispsource}window.elc \
710 ${lispsource}version.el
711
712 /* These are relative file names for the Lisp files
713 that are loaded unconditionally. This is used in make-docfile.
714 It need not contain the files that are loaded conditionally
715 because SOME_MACHINE_LISP has those. */
716 shortlisp= \
717 ../lisp/abbrev.elc \
718 ../lisp/buff-menu.elc \
719 ../lisp/byte-run.elc \
720 ../lisp/cus-start.el \
721 ../lisp/custom.elc \
722 ../lisp/emacs-lisp/lisp-mode.elc \
723 ../lisp/emacs-lisp/lisp.elc \
724 ../lisp/faces.elc \
725 ../lisp/files.elc \
726 ../lisp/format.elc \
727 ../lisp/help.elc \
728 ../lisp/indent.elc \
729 ../lisp/isearch.elc \
730 ../lisp/loadup.el \
731 ../lisp/loaddefs.el \
732 ../lisp/bindings.el \
733 ../lisp/map-ynp.elc \
734 ../lisp/international/mule.elc \
735 ../lisp/international/mule-conf.el \
736 ../lisp/international/mule-cmds.elc \
737 ../lisp/international/characters.elc \
738 ../lisp/case-table.elc \
739 ../lisp/language/chinese.elc \
740 ../lisp/language/cyrillic.elc \
741 ../lisp/language/devanagari.elc \
742 ../lisp/language/english.elc \
743 ../lisp/language/ethiopic.elc \
744 ../lisp/language/european.elc \
745 ../lisp/language/greek.elc \
746 ../lisp/language/hebrew.elc \
747 ../lisp/language/indian.elc \
748 ../lisp/language/japanese.elc \
749 ../lisp/language/korean.elc \
750 ../lisp/language/lao.elc \
751 ../lisp/language/thai.elc \
752 ../lisp/language/tibetan.elc \
753 ../lisp/language/vietnamese.elc \
754 ../lisp/language/misc-lang.elc \
755 ../lisp/paths.el \
756 ../lisp/register.elc \
757 ../lisp/replace.elc \
758 ../lisp/simple.elc \
759 ../lisp/startup.elc \
760 ../lisp/subr.elc \
761 ../lisp/textmodes/fill.elc \
762 ../lisp/textmodes/page.elc \
763 ../lisp/textmodes/paragraphs.elc \
764 ../lisp/textmodes/text-mode.elc \
765 ../lisp/vc-hooks.elc \
766 ../lisp/ediff-hook.elc \
767 ../lisp/widget.elc \
768 ../lisp/window.elc \
769 ../lisp/version.el
770
771 /* Lisp files that may or may not be used.
772 We must unconditionally put them in the DOC file.
773 We use ../lisp/ to start the file names
774 to reduce the size of the argument list for make-docfile
775 for the sake of systems which can't handle large ones. */
776 SOME_MACHINE_LISP = ${dotdot}/lisp/facemenu.elc \
777 ${dotdot}/lisp/float-sup.elc ${dotdot}/lisp/frame.elc \
778 ${dotdot}/lisp/menu-bar.elc ${dotdot}/lisp/mouse.elc \
779 ${dotdot}/lisp/select.elc ${dotdot}/lisp/scroll-bar.elc \
780 ${dotdot}/lisp/vmsproc.elc ${dotdot}/lisp/vms-patch.elc \
781 ${dotdot}/lisp/ls-lisp.elc ${dotdot}/lisp/dos-fns.elc \
782 ${dotdot}/lisp/w32-fns.elc ${dotdot}/lisp/dos-w32.elc
783
784 /* Construct full set of libraries to be linked.
785 Note that SunOS needs -lm to come before -lc; otherwise, you get
786 duplicated symbols. If the standard libraries were compiled
787 with GCC, we might need gnulib again after them. */
788 LIBES = $(LOADLIBES) $(LDLIBS) $(LIBX) LIBS_SYSTEM LIBS_MACHINE LIBS_TERMCAP \
789 LIBS_DEBUG $(GNULIB_VAR) LIB_MATH LIB_STANDARD $(GNULIB_VAR)
790
791 /* Enable recompilation of certain other files depending on system type. */
792
793 #ifndef OTHER_FILES
794 #define OTHER_FILES
795 #endif
796
797 /* Enable inclusion of object files in temacs depending on system type. */
798 #ifndef OBJECTS_SYSTEM
799 #define OBJECTS_SYSTEM
800 #endif
801
802 #ifndef OBJECTS_MACHINE
803 #define OBJECTS_MACHINE
804 #endif
805
806 all: emacs OTHER_FILES
807
808 emacs: temacs ${etc}DOC ${lisp}
809 #ifdef CANNOT_DUMP
810 rm -f emacs
811 ln temacs emacs
812 #else
813 #ifdef HAVE_SHM
814 ./temacs -nl -batch -l loadup dump
815 #else /* ! defined (HAVE_SHM) */
816 ./temacs -batch -l loadup dump
817 #endif /* ! defined (HAVE_SHM) */
818 #endif /* ! defined (CANNOT_DUMP) */
819 -./emacs -q -batch -f list-load-path-shadows
820
821 /* We run make-docfile twice because the command line may get too long
822 on some systems. */
823 /* ${SOME_MACHINE_OBJECTS} comes before ${obj} because some files may
824 or may not be included in ${obj}, but they are always included in
825 ${SOME_MACHINE_OBJECTS}. Since a file is processed when it is mentioned
826 for the first time, this prevents any variation between configurations
827 in the contents of the DOC file.
828 Likewise for ${SOME_MACHINE_LISP}. */
829 ${etc}DOC: ${libsrc}make-docfile ${obj} ${lisp}
830 -rm -f ${etc}DOC
831 ${libsrc}make-docfile -d ${srcdir} ${SOME_MACHINE_OBJECTS} ${obj} > ${etc}DOC
832 ${libsrc}make-docfile -a ${etc}DOC -d ${srcdir} ${SOME_MACHINE_LISP} ${shortlisp}
833
834 ${libsrc}make-docfile:
835 cd ${libsrc}; ${MAKE} ${MFLAGS} make-docfile
836
837 /* Some systems define this to cause parallel Make-ing. */
838 #ifndef MAKE_PARALLEL
839 #define MAKE_PARALLEL
840 #endif
841
842 temacs: MAKE_PARALLEL $(LOCALCPP) $(SHORT) $(STARTFILES) stamp-oldxmenu ${obj} ${otherobj} OBJECTS_SYSTEM OBJECTS_MACHINE prefix-args
843 $(LD) YMF_PASS_LDFLAGS (${STARTFLAGS} ${ALL_LDFLAGS}) \
844 -o temacs ${STARTFILES} ${obj} ${otherobj} \
845 OBJECTS_SYSTEM OBJECTS_MACHINE ${LIBES}
846
847 /* We don't use ALL_LDFLAGS because LD_SWITCH_SYSTEM and LD_SWITCH_MACHINE
848 often contain options that have to do with using Emacs's crt0,
849 which are only good with temacs. */
850 prefix-args: prefix-args.c $(config_h)
851 $(CC) $(ALL_CFLAGS) $(LDFLAGS) ${srcdir}/prefix-args.c -o prefix-args
852
853 /* These are needed for C compilation, on the systems that need them */
854 #ifdef NEED_CPP
855 CPP = ./localcpp
856 localcpp:
857 cd ${cppdir}; ${MAKE} ${MFLAGS} EMACS=-DEMACS
858 ln ${cppdir}cpp localcpp /* Name where ALL_CFLAGS will refer to it */
859 /* cc appears to be cretinous and require all of these to exist
860 if -B is specified -- we can't use one local pass and let the
861 others be the standard ones. What a loser.
862 We can't even use ln, since they are probably
863 on different disks. */
864 cp /lib/ccom localccom
865 -cp /lib/optim localoptim
866 -cp /lib/c2 localc2
867 cp /bin/as localas
868 #else /* ! defined (NEED_CPP) */
869 CPP = $(CC) -E
870 #endif /* ! defined (NEED_CPP) */
871
872 #ifdef SHORTNAMES
873 shortnames:
874 cd ${shortnamesdir}; ${MAKE} ${MFLAGS}
875 #endif
876
877 /* Don't lose if this was not defined. */
878 #ifndef OLDXMENU_OPTIONS
879 #define OLDXMENU_OPTIONS
880 #endif
881
882 /* Don't lose if this was not defined. */
883 #ifndef LWLIB_OPTIONS
884 #define LWLIB_OPTIONS
885 #endif
886
887 #if defined (HAVE_X_WINDOWS) && defined (HAVE_X11) && defined (HAVE_MENUS)
888
889 /* We use stamp-xmenu with these two deps
890 to both ensure that lwlib gets remade based on its dependencies
891 in its own makefile,
892 and remake temacs if lwlib gets changed by this. */
893 stamp-oldxmenu: ${OLDXMENU} ../src/$(OLDXMENU)
894 touch stamp-oldxmenu
895 /* Supply an ordering for parallel make. */
896 ../src/$(OLDXMENU): ${OLDXMENU}
897
898 #ifdef USE_X_TOOLKIT
899 $(OLDXMENU): really-lwlib
900
901 /* Encode the values of these two macros in Make variables,
902 so we can use $(...) to substitute their values within "...". */
903 C_SWITCH_MACHINE_1 = C_SWITCH_MACHINE
904 C_SWITCH_SYSTEM_1 = C_SWITCH_SYSTEM
905 C_SWITCH_SITE_1 = C_SWITCH_SITE
906 C_SWITCH_X_SITE_1 = C_SWITCH_X_SITE
907 C_SWITCH_X_MACHINE_1 = C_SWITCH_X_MACHINE
908 C_SWITCH_X_SYSTEM_1 = C_SWITCH_X_SYSTEM
909 really-lwlib:
910 cd ${lwlibdir}; ${MAKE} ${MFLAGS} LWLIB_OPTIONS \
911 CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}' \
912 "C_SWITCH_X_SITE=$(C_SWITCH_X_SITE_1)" \
913 "C_SWITCH_X_MACHINE=$(C_SWITCH_X_MACHINE_1)" \
914 "C_SWITCH_X_SYSTEM=$(C_SWITCH_X_SYSTEM_1)" \
915 "C_SWITCH_SITE=$(C_SWITCH_SITE_1)" \
916 "C_SWITCH_MACHINE=$(C_SWITCH_MACHINE_1)" \
917 "C_SWITCH_SYSTEM=$(C_SWITCH_SYSTEM_1)"
918 @true /* make -t should not create really-lwlib. */
919 .PHONY: really-lwlib
920 #else /* not USE_X_TOOLKIT */
921 $(OLDXMENU): really-oldXMenu
922
923 /* Encode the values of these two macros in Make variables,
924 so we can use $(...) to substitute their values within "...". */
925 C_SWITCH_MACHINE_1 = C_SWITCH_MACHINE
926 C_SWITCH_SYSTEM_1 = C_SWITCH_SYSTEM
927 C_SWITCH_SITE_1 = C_SWITCH_SITE
928 C_SWITCH_X_SITE_1 = C_SWITCH_X_SITE
929 C_SWITCH_X_MACHINE_1 = C_SWITCH_X_MACHINE
930 C_SWITCH_X_SYSTEM_1 = C_SWITCH_X_SYSTEM
931 really-oldXMenu:
932 cd ${oldXMenudir}; ${MAKE} ${MFLAGS} OLDXMENU_OPTIONS \
933 CC='${CC}' CFLAGS='${CFLAGS}' MAKE='${MAKE}' \
934 "C_SWITCH_X_SITE=$(C_SWITCH_X_SITE_1)" \
935 "C_SWITCH_X_MACHINE=$(C_SWITCH_X_MACHINE_1)" \
936 "C_SWITCH_X_SYSTEM=$(C_SWITCH_X_SYSTEM_1)" \
937 "C_SWITCH_SITE=$(C_SWITCH_SITE_1)" \
938 "C_SWITCH_MACHINE=$(C_SWITCH_MACHINE_1)" \
939 "C_SWITCH_SYSTEM=$(C_SWITCH_SYSTEM_1)"
940 @true /* make -t should not create really-oldXMenu. */
941 .PHONY: really-oldXMenu
942 #endif /* not USE_X_TOOLKIT */
943 #else /* not (HAVE_X_WINDOWS && HAVE_X11 && HAVE_MENUS) */
944
945 /* We don't really need this, but satisfy the dependency. */
946 stamp-oldxmenu:
947 touch stamp-oldxmenu
948 #endif /* not (HAVE_X_WINDOWS && HAVE_X11 && HAVE_MENUS) */
949
950 ../config.status:: paths.in
951 @echo "The file paths.h needs to be set up from paths.in."
952 @echo "Please run the `configure' script again."
953 exit 1
954
955 ../config.status:: config.in
956 @echo "The file config.h needs to be set up from config.in."
957 @echo "Please run the `configure' script again."
958 exit 1
959
960 /* Some machines have alloca built-in.
961 They should define HAVE_ALLOCA, or may just let alloca.s
962 be used but generate no code.
963 Some have it written in assembler in alloca.s.
964 Some use the C version in alloca.c (these define C_ALLOCA in config.h).
965 */
966
967 #ifdef C_ALLOCA
968 /* We could put something in alloca.c to #define free and malloc
969 whenever emacs was #defined, but that's not appropriate for all
970 users of alloca in Emacs. Check out ../lib-src/getopt.c. */
971 alloca.o : alloca.c
972 $(CC) -c $(CPPFLAGS) -Dfree=xfree -Dmalloc=xmalloc \
973 $(ALL_CFLAGS) ${srcdir}/alloca.c
974 #else
975 #ifndef HAVE_ALLOCA
976 alloca.o : alloca.s $(config_h)
977 /* $(CPP) is cc -E, which may get confused by filenames
978 that do not end in .c. So copy file to a safe name. */
979 -rm -f allocatem.c
980 cp ${srcdir}/alloca.s allocatem.c
981 /* Remove any ^L, blank lines, and preprocessor comments,
982 since some assemblers barf on them. Use a different basename for the
983 output file, since some stupid compilers (Green Hill's) use that
984 name for the intermediate assembler file. */
985 $(CPP) $(CPPFLAGS) $(ALL_CFLAGS) allocatem.c | \
986 sed -e 's/\f//' -e 's/^#.*//' | \
987 sed -n -e '/^..*$$/p' > allocax.s
988 -rm -f alloca.o
989 /* Xenix, in particular, needs to run assembler via cc. */
990 $(CC) -c allocax.s
991 mv allocax.o alloca.o
992 -rm -f allocax.s allocatem.c
993 #endif /* HAVE_ALLOCA */
994 #endif /* ! defined (C_ALLOCA) */
995
996 /* Nearly all the following files depend on lisp.h,
997 but it is not included as a dependency because
998 it is so often changed in ways that do not require any recompilation
999 and so rarely changed in ways that do require any. */
1000
1001 abbrev.o: abbrev.c buffer.h window.h commands.h $(config_h)
1002 buffer.o: buffer.c buffer.h region-cache.h commands.h window.h \
1003 INTERVAL_SRC blockinput.h charset.h $(config_h)
1004 callint.o: callint.c window.h commands.h buffer.h mocklisp.h \
1005 keyboard.h $(config_h)
1006 callproc.o: callproc.c paths.h buffer.h commands.h $(config_h) \
1007 process.h systty.h syssignal.h charset.h coding.h
1008 casefiddle.o: casefiddle.c syntax.h commands.h buffer.h $(config_h)
1009 casetab.o: casetab.c buffer.h $(config_h)
1010 category.o: category.c category.h buffer.h charset.h $(config_h)
1011 ccl.o: ccl.c ccl.h charset.h coding.h $(config_h)
1012 charset.o: charset.c charset.h buffer.h coding.h disptab.h $(config_h)
1013 coding.o: coding.c coding.h buffer.h charset.h $(config_h)
1014 cm.o: cm.c cm.h termhooks.h $(config_h)
1015 cmds.o: cmds.c syntax.h buffer.h charset.h commands.h window.h $(config_h)
1016 pre-crt0.o: pre-crt0.c
1017 ecrt0.o: ecrt0.c $(config_h)
1018 CRT0_COMPILE ${srcdir}/ecrt0.c
1019 dired.o: dired.c commands.h buffer.h $(config_h) charset.h coding.h regex.h
1020 dispnew.o: dispnew.c commands.h frame.h window.h buffer.h dispextern.h \
1021 termchar.h termopts.h termhooks.h cm.h disptab.h systty.h systime.h \
1022 xterm.h blockinput.h charset.h $(config_h)
1023 doc.o: doc.c $(config_h) paths.h buffer.h keyboard.h
1024 doprnt.o: doprnt.c charset.h $(config_h)
1025 dosfns.o: buffer.h termchar.h termhooks.h frame.h msdos.h dosfns.h $(config_h)
1026 editfns.o: editfns.c window.h buffer.h systime.h INTERVAL_SRC charset.h \
1027 $(config_h)
1028 emacs.o: emacs.c commands.h systty.h syssignal.h blockinput.h process.h \
1029 INTERVAL_SRC $(config_h)
1030 fileio.o: fileio.c window.h buffer.h systime.h INTERVAL_SRC charset.h \
1031 coding.h $(config_h)
1032 filelock.o: filelock.c buffer.h paths.h $(config_h)
1033 filemode.o: filemode.c $(config_h)
1034 frame.o: frame.c xterm.h window.h frame.h termhooks.h commands.h keyboard.h \
1035 buffer.h charset.h fontset.h $(config_h)
1036 fontset.o: fontset.h fontset.c ccl.h charset.h frame.h $(config_h)
1037 getloadavg.o: getloadavg.c $(config_h)
1038 indent.o: indent.c frame.h window.h indent.h buffer.h $(config_h) termchar.h \
1039 termopts.h disptab.h region-cache.h charset.h
1040 insdel.o: insdel.c window.h buffer.h INTERVAL_SRC blockinput.h charset.h\
1041 $(config_h)
1042 keyboard.o: keyboard.c termchar.h termhooks.h termopts.h buffer.h charset.h \
1043 commands.h frame.h window.h macros.h disptab.h keyboard.h syssignal.h \
1044 systty.h systime.h dispextern.h syntax.h intervals.h blockinput.h \
1045 xterm.h puresize.h $(config_h)
1046 keymap.o: keymap.c buffer.h commands.h keyboard.h termhooks.h blockinput.h \
1047 puresize.h charset.h $(config_h)
1048 lastfile.o: lastfile.c $(config_h)
1049 macros.o: macros.c window.h buffer.h commands.h macros.h keyboard.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 \
1056 buffer.h commands.h charset.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 \
1060 termopts.h frame.h window.h $(config_h)
1061 process.o: process.c process.h buffer.h window.h termhooks.h termopts.h \
1062 commands.h syssignal.h systime.h systty.h syswait.h frame.h \
1063 blockinput.h charset.h coding.h $(config_h)
1064 regex.o: regex.c syntax.h buffer.h $(config_h) regex.h category.h charset.h
1065 region-cache.o: region-cache.c buffer.h region-cache.h
1066 scroll.o: scroll.c termchar.h dispextern.h frame.h $(config_h)
1067 search.o: search.c regex.h commands.h buffer.h region-cache.h syntax.h \
1068 blockinput.h category.h charset.h $(config_h)
1069 strftime.o: strftime.c $(config_h)
1070 syntax.o: syntax.c syntax.h buffer.h commands.h category.h charset.h \
1071 $(config_h)
1072 sysdep.o: sysdep.c $(config_h) dispextern.h termhooks.h termchar.h termopts.h \
1073 frame.h syssignal.h systty.h systime.h syswait.h blockinput.h window.h
1074 term.o: term.c termchar.h termhooks.h termopts.h $(config_h) cm.h frame.h \
1075 disptab.h keyboard.h charset.h coding.h
1076 termcap.o: termcap.c $(config_h)
1077 terminfo.o: terminfo.c $(config_h)
1078 tparam.o: tparam.c $(config_h)
1079 undo.o: undo.c buffer.h commands.h $(config_h)
1080 /* This hack is to discard any space that cpp might put at the beginning
1081 of UNEXEC when substituting it in. */
1082 UNEXEC_ALIAS=UNEXEC
1083 $(UNEXEC_ALIAS): UNEXEC_SRC $(config_h)
1084 w16select.o: w16select.c lisp.h dispextern.h frame.h blockinput.h
1085 widget.o: widget.c xterm.h frame.h dispextern.h widgetprv.h \
1086 ../lwlib/lwlib.h $(config_h)
1087 window.o: window.c indent.h commands.h frame.h window.h buffer.h termchar.h \
1088 termhooks.h disptab.h keyboard.h $(config_h)
1089 xdisp.o: xdisp.c macros.h commands.h indent.h buffer.h dispextern.h coding.h \
1090 termchar.h frame.h window.h disptab.h termhooks.h charset.h $(config_h)
1091 xfaces.o: xfaces.c dispextern.h frame.h xterm.h buffer.h blockinput.h \
1092 window.h charset.h $(config_h)
1093 xfns.o: xfns.c buffer.h frame.h window.h keyboard.h xterm.h\
1094 ../lwlib/lwlib.h blockinput.h paths.h charset.h $(config_h)
1095 xmenu.o: xmenu.c xterm.h termhooks.h window.h dispextern.h frame.h keyboard.h \
1096 ../lwlib/lwlib.h blockinput.h msdos.h $(config_h)
1097 xterm.o: xterm.c xterm.h termhooks.h termopts.h termchar.h window.h \
1098 dispextern.h frame.h disptab.h blockinput.h systime.h syssignal.h \
1099 keyboard.h gnu.h sink.h sinkmask.h charset.h ccl.h fontset.h $(config_h)
1100 xselect.o: xselect.c dispextern.h frame.h xterm.h blockinput.h charset.h \
1101 coding.h buffer.h $(config_h)
1102 xrdb.o: xrdb.c $(config_h) paths.h
1103 hftctl.o: hftctl.c $(config_h)
1104
1105 /* The files of Lisp proper */
1106
1107 alloc.o: alloc.c frame.h window.h buffer.h puresize.h syssignal.h keyboard.h \
1108 blockinput.h charset.h $(config_h) INTERVAL_SRC
1109 bytecode.o: bytecode.c buffer.h syntax.h $(config_h)
1110 data.o: data.c buffer.h puresize.h charset.h syssignal.h keyboard.h $(config_h)
1111 eval.o: eval.c commands.h keyboard.h blockinput.h $(config_h)
1112 floatfns.o: floatfns.c $(config_h)
1113 fns.o: fns.c commands.h $(config_h) frame.h buffer.h keyboard.h \
1114 frame.h window.h INTERVAL_SRC
1115 print.o: print.c process.h frame.h window.h buffer.h keyboard.h charset.h\
1116 $(config_h)
1117 lread.o: lread.c commands.h keyboard.h buffer.h paths.h charset.h $(config_h) \
1118 termhooks.h
1119
1120 /* Text properties support */
1121 textprop.o: textprop.c buffer.h window.h intervals.h $(config_h)
1122 intervals.o: intervals.c buffer.h intervals.h keyboard.h puresize.h $(config_h)
1123
1124 /* System-specific programs to be made.
1125 OTHER_FILES, OBJECTS_SYSTEM and OBJECTS_MACHINE
1126 select which of these should be compiled. */
1127
1128 sunfns.o: sunfns.c buffer.h window.h $(config_h)
1129
1130 ${libsrc}emacstool: ${libsrc}emacstool.c
1131 cd ${libsrc}; ${MAKE} ${MFLAGS} emacstool
1132 mostlyclean:
1133 rm -f temacs prefix-args core \#* *.o libXMenu11.a liblw.a
1134 rm -f ../etc/DOC
1135 clean: mostlyclean
1136 rm -f emacs-* emacs
1137 /**/# This is used in making a distribution.
1138 /**/# Do not use it on development directories!
1139 distclean: clean
1140 rm -f paths.h config.h Makefile Makefile.c ../etc/DOC-*
1141 maintainer-clean: distclean
1142 @echo "This command is intended for maintainers to use;"
1143 @echo "it deletes files that may require special tools to rebuild."
1144 rm -f TAGS
1145 versionclean:
1146 -rm -f emacs emacs-* ../etc/DOC*
1147 extraclean: distclean
1148 -rm -f *~ \#* m/?*~ s/?*~
1149
1150 /* The rule for the [sm] files has to be written a little funny to
1151 avoid looking like a C comment to CPP. */
1152 SOURCES = *.[ch] [sm]/?* COPYING Makefile.in \
1153 config.in paths.in README COPYING ChangeLog vms.pp-trans
1154 unlock:
1155 chmod u+w $(SOURCES)
1156
1157 relock:
1158 chmod -w $(SOURCES)
1159 chmod +w paths.h
1160
1161 /* Arrange to make a tags table in ../lisp, and another in this dir
1162 which includes ../lisp/TAGS by reference. */
1163 ctagsfiles = [a-zA-Z]*.[hc]
1164 lisptagsfiles = ../lisp/[a-zA-Z]*.el
1165 TAGS: $(srcdir)/$(ctagsfiles)
1166 export DIR; DIR=`pwd`; cd ${srcdir}; \
1167 $$DIR/../lib-src/etags --include=../lisp/TAGS \
1168 --regex='/[ ]*DEFVAR_[A-Z_ (]+"\([^"]+\)"/' $(ctagsfiles)
1169 ${lispsource}TAGS: ${lispsource}$(lisptagsfiles)
1170 export DIR; DIR=`pwd`; cd ${lispsource}; \
1171 $(MAKE) TAGS ETAGS=$$DIR/../lib-src/etags
1172 tags: TAGS ${lispsource}TAGS
1173 .PHONY: tags