0
|
1 /* Makefile for src subdirectory in XEmacs.
|
|
2 Copyright (C) 1985, 1987, 1988, 1993, 1994 Free Software Foundation, Inc.
|
|
3 Copyright (C) 1994, 1995 Board of Trustees, University of Illinois
|
|
4
|
|
5 This file is part of XEmacs.
|
|
6
|
|
7 XEmacs is free software; you can redistribute it and/or modify it
|
|
8 under the terms of the GNU General Public License as published by the
|
|
9 Free Software Foundation; either version 2, or (at your option) any
|
|
10 later version.
|
|
11
|
|
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
15 for more details.
|
|
16
|
|
17 You should have received a copy of the GNU General Public License
|
|
18 along with XEmacs; see the file COPYING. If not, write to
|
|
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
20 Boston, MA 02111-1307, USA. */
|
|
21
|
|
22 /* Synched up with: Not synched with FSF. */
|
|
23
|
|
24 @SET_MAKE@
|
|
25
|
18
|
26 /* Some people use these in paths they define. We do not want their paths
|
0
|
27 getting changed on them. */
|
|
28 #undef sparc
|
|
29 #undef sun
|
|
30 #undef unix
|
|
31 #undef sgi
|
|
32 #undef NeXT
|
74
|
33 #undef i386
|
0
|
34
|
70
|
35 /* For performance and consistency, no built-in rules */
|
|
36 .SUFFIXES:
|
|
37 .SUFFIXES: .c .o .i .h
|
0
|
38 dot = .
|
|
39 /* On Xenix and the IBM RS6000, double-dot gets screwed up. */
|
|
40 lispdir = ${srcdir}/$(dot)$(dot)/lisp/
|
|
41 libsrc = $(dot)$(dot)/lib-src/
|
|
42 etcdir = $(dot)$(dot)/etc/
|
|
43
|
|
44 /* Here are the things that we expect ../configure to edit. */
|
|
45 srcdir=@srcdir@
|
|
46 CC=@CC@
|
|
47 CPP=@CPP@
|
|
48 CFLAGS=@CFLAGS@
|
149
|
49 CPPFLAGS=@CPPFLAGS@
|
|
50 LDFLAGS=@LDFLAGS@
|
|
51
|
|
52 c_switch_general=@c_switch_general@
|
|
53 c_switch_window_system=@c_switch_window_system@
|
|
54 c_switch_all=@c_switch_all@
|
|
55 ld_switch_general=@ld_switch_general@
|
|
56 ld_switch_window_system=@ld_switch_window_system@
|
|
57 ld_switch_all=@ld_switch_all@
|
|
58 ld_libs_general=@ld_libs_general@
|
|
59 ld_libs_window_system=@ld_libs_window_system@
|
|
60 ld_libs_all=@ld_libs_all@
|
|
61
|
|
62 extra_objs=@extra_objs@
|
0
|
63 LN_S=@LN_S@
|
|
64
|
|
65 /* just to be sure the sh is used */
|
|
66 SHELL=/bin/sh
|
|
67
|
|
68 #define NO_SHORTNAMES
|
|
69 #define NOT_C_CODE
|
|
70 #include "config.h"
|
|
71
|
|
72 /* With the traditional VPATH setting, it is not possible to
|
|
73 simultaneously compile in-place and in another directory. The
|
|
74 mistaken definition is that *all* dependencies are searched for in
|
|
75 the VPATH directory, rather than just the dependencies that are not
|
|
76 themselves targets. Thus, if there is an up-to-date .o file in the
|
|
77 in-place location, it will not get recompiled in the not-in-place
|
|
78 location.
|
|
79
|
18
|
80 The GNU Make "vpath" directive continues this tradition, but at
|
0
|
81 least lets you restrict the classes of files that it applies to.
|
|
82 This allows us to kludge around the problem. */
|
|
83 #ifdef USE_GNU_MAKE
|
|
84 vpath %.c @srcdir@
|
|
85 vpath %.h @srcdir@
|
|
86 /* now list files that should NOT be searched in the srcdir.
|
70
|
87 This includes any .c or .h built from something else
|
0
|
88 (e.g. a .in file). */
|
|
89 vpath config.h
|
|
90 vpath paths.h
|
|
91 vpath Emacs.ad.h
|
108
|
92 vpath puresize_adjust.h
|
0
|
93 #else
|
|
94 VPATH=@srcdir@
|
|
95 #endif
|
|
96
|
|
97 /* On some machines #define register is done in config;
|
18
|
98 do not let it interfere with this file. */
|
0
|
99 #undef register
|
|
100
|
|
101 /* On some systems we may not be able to use the system make command. */
|
|
102 #ifdef MAKE_COMMAND
|
|
103 MAKE = MAKE_COMMAND
|
|
104 #endif
|
|
105
|
70
|
106 /* Some machines do not have the standard C libraries in the usual place. */
|
0
|
107 #ifndef ORDINARY_LINK
|
|
108 #ifndef LIB_STANDARD
|
|
109 #define LIB_STANDARD -lc
|
|
110 #endif
|
|
111 #else
|
|
112 #ifndef LIB_STANDARD
|
|
113 #define LIB_STANDARD
|
|
114 #endif
|
|
115 #endif
|
|
116
|
|
117 /* Unless inhibited or changed, use -lg to link for debugging. */
|
|
118 #ifndef LIBS_DEBUG
|
|
119 #define LIBS_DEBUG -lg
|
|
120 #endif
|
|
121
|
|
122 #ifndef LD_SWITCH_CALL_SHARED
|
|
123 #define LD_SWITCH_CALL_SHARED
|
|
124 #endif /* define a call_shared switch */
|
|
125
|
|
126 #ifndef LD_SWITCH_SHARED
|
|
127 #define LD_SWITCH_SHARED -c
|
|
128 #endif /* define a shared switch */
|
|
129
|
|
130 #ifndef ORDINARY_LINK
|
|
131
|
|
132 #ifndef CRT0_COMPILE
|
149
|
133 #define CRT0_COMPILE $(CC) -c $(cflags) C_SWITCH_ASM
|
0
|
134 #endif
|
|
135
|
|
136 #ifndef START_FILES
|
|
137 #ifdef NO_REMAP
|
|
138 #ifdef COFF_ENCAPSULATE
|
|
139 #define START_FILES pre-crt0.o /usr/local/lib/gcc-crt0.o
|
|
140 #else /* ! defined (COFF_ENCAPSULATE) */
|
|
141 #define START_FILES pre-crt0.o /lib/crt0.o
|
|
142 #endif /* ! defined (COFF_ENCAPSULATE) */
|
|
143 #else /* ! defined (NO_REMAP) */
|
|
144 #define START_FILES ecrt0.o
|
|
145 #endif /* ! defined (NO_REMAP) */
|
|
146 #endif /* START_FILES */
|
|
147 STARTFILES = START_FILES
|
|
148
|
|
149 #else /* ORDINARY_LINK */
|
|
150
|
|
151 /* config.h might want to force START_FILES anyway */
|
|
152 #ifdef START_FILES
|
|
153 STARTFILES = START_FILES
|
|
154 #else
|
|
155 STARTFILES =
|
|
156 #endif /* START_FILES */
|
|
157
|
|
158 #endif /* not ORDINARY_LINK */
|
|
159
|
|
160 /* Unless inhibited or changed, use -g to compile for debugging. */
|
|
161 #ifndef C_DEBUG_SWITCH
|
|
162 #define C_DEBUG_SWITCH -g
|
|
163 #endif
|
|
164
|
|
165 /* If user wants to optimize, this is how. */
|
|
166 #ifndef C_OPTIMIZE_SWITCH
|
|
167 #define C_OPTIMIZE_SWITCH -O
|
|
168 #endif
|
|
169
|
70
|
170 /* cc switches needed to make the "asm" keyword work.
|
0
|
171 Nothing special needed on most machines. */
|
|
172 #ifndef C_SWITCH_ASM
|
|
173 #define C_SWITCH_ASM
|
|
174 #endif
|
|
175
|
2
|
176 PURIFY_PROG=purify
|
70
|
177 PURIFY_FLAGS=-chain-length=16 -ignore-signals=SIGPOLL -log-file=puremacs.log \
|
|
178 -messages=batch -show-directory=yes -windows=yes \
|
|
179 -cache-dir=. -always-use-cache-dir=yes
|
2
|
180 PURECOV_PROG=purecov
|
|
181 #ifdef QUANTIFY
|
149
|
182 quantify_prog = quantify
|
|
183 quantify_flags = -windows=no -record-data=no
|
|
184 quantify_includes = -I/local/include
|
|
185 quantify_libs = /local/lib/quantify_stubs.a
|
|
186 #endif /* QUANTIFY */
|
0
|
187
|
|
188 #ifdef SHORTNAMES
|
|
189 SHORT= shortnames
|
|
190 #endif
|
|
191
|
|
192 #ifdef HAVE_NATIVE_SOUND
|
149
|
193 sound_cflags=@sound_cflags@
|
0
|
194 #endif
|
|
195
|
149
|
196 LWLIB_SRCDIR = ${srcdir}/$(dot)$(dot)/lwlib
|
70
|
197
|
149
|
198 #ifdef HAVE_X_WINDOWS
|
|
199 LWLIB_BUILDDIR = $(dot)$(dot)/lwlib
|
0
|
200
|
149
|
201 LWLIB_LDFLAGS = -L$(LWLIB_BUILDDIR)
|
|
202 LWLIB_LIBS = -llw
|
|
203 LWLIB_CPPFLAGS = -I$(LWLIB_SRCDIR)
|
|
204 LWLIB_DEPS = $(LWLIB_BUILDDIR)/liblw.a
|
0
|
205
|
149
|
206 x_objs = balloon_help.o balloon-x.o console-x.o device-x.o event-Xt.o frame-x.o \
|
|
207 glyphs-x.o objects-x.o redisplay-x.o xgccache.o xselect.o
|
70
|
208
|
149
|
209 #ifdef AIX4
|
|
210 LIBI18N = -li18n
|
|
211 #endif /* AIX4 */
|
70
|
212
|
149
|
213 X11_libs= $(LIBX11_LIBS) $(libx11_intl) $(LIBI18N)
|
|
214 #endif /* HAVE_X_WINDOWS */
|
0
|
215
|
|
216 /* -Demacs is needed to make some files produce the correct version
|
149
|
217 for use in Emacs. */
|
0
|
218
|
149
|
219 src_cppflags=-Demacs -I${srcdir} $(LWLIB_CPPFLAGS) $(CPPFLAGS)
|
|
220 cppflags = -I. $(c_switch_all) $(src_cppflags)
|
0
|
221
|
149
|
222 cflags= $(CFLAGS) $(cppflags)
|
0
|
223
|
149
|
224 ldflags = $(ld_switch_all) -L. $(no_gnu_linker) $(LWLIB_LDFLAGS)
|
0
|
225
|
|
226 .c.o:
|
149
|
227 $(CC) -c $(cflags) $<
|
0
|
228
|
70
|
229 /* Create preprocessor output (debugging purposes only) */
|
|
230 .c.i:
|
149
|
231 $(CC) -P $(cppflags) $<
|
0
|
232
|
|
233 #ifndef ORDINARY_LINK
|
|
234 /* Fix linking if compiled with GCC. */
|
|
235 #ifdef __GNUC__
|
|
236
|
|
237 #if __GNUC__ > 1
|
|
238
|
|
239 /* Versions of GCC >= 2.0 put their library, libgcc.a, in obscure
|
|
240 places that are difficult to figure out at make time. Fortunately,
|
|
241 these same versions allow you to pass arbitrary flags on to the
|
18
|
242 linker, so there is no reason not to use it as a linker.
|
0
|
243
|
70
|
244 Well, it is not quite perfect. The "-nostdlib" option keeps GCC
|
|
245 from searching for libraries in its internal directories, so we
|
|
246 have to ask GCC explicitly where to find libgcc.a. */
|
0
|
247
|
|
248 #ifndef LINKER
|
|
249 #define LINKER $(CC) -nostdlib
|
|
250 /* GCC passes any argument prefixed with -Xlinker directly to the
|
18
|
251 linker. See prefix-args.c for an explanation of why we do not do
|
|
252 this with the shell "for" construct.
|
|
253 Note that some people do not have "." in their paths, so we must
|
0
|
254 use ./prefix-args. */
|
|
255 #define YMF_PASS_LDFLAGS(flags) `./prefix-args -Xlinker flags`
|
|
256 #endif /* LINKER */
|
|
257
|
|
258 #ifndef LIB_GCC
|
|
259 /* Ask GCC where to find libgcc.a. */
|
|
260 #define LIB_GCC `$(CC) -print-libgcc-file-name`
|
|
261 #endif /* LIB_GCC */
|
|
262
|
|
263 GNULIB_VAR = LIB_GCC
|
|
264
|
|
265 #else /* __GNUC__ < 2 */
|
|
266
|
|
267 #ifndef LIB_GCC
|
|
268 #define LIB_GCC /usr/local/lib/gcc-gnulib
|
|
269 #endif /* LIB_GCC */
|
|
270 GNULIB_VAR = `if [ -f LIB_GCC ] ; then echo LIB_GCC; else echo; fi`
|
|
271 #endif /* __GNUC__ < 2 */
|
|
272 #else /* ! defined (__GNUC__) */
|
|
273 GNULIB_VAR =
|
|
274
|
|
275 #endif /* ! defined (__GNUC__) */
|
|
276 #else
|
|
277 GNULIB_VAR =
|
|
278 #endif /* not ORDINARY_LINK */
|
|
279
|
149
|
280 /* A macro which other sections of the makefile can redefine to munge the
|
|
281 flags before they are passed to LD. This is helpful if you have
|
|
282 redefined LD to something odd, like "gcc". */
|
|
283 #ifndef YMF_PASS_LDFLAGS
|
|
284 #define YMF_PASS_LDFLAGS(flags) flags
|
|
285 #endif
|
|
286
|
0
|
287 /* Specify address for ld to start loading at,
|
|
288 if requested by configuration. */
|
|
289 #ifdef LD_TEXT_START_ADDR
|
|
290 STARTFLAGS = -T LD_TEXT_START_ADDR -e __start
|
|
291 #else
|
|
292 STARTFLAGS =
|
|
293 #endif
|
|
294
|
|
295 #ifdef ORDINARY_LINK
|
|
296 LD = $(CC) $(CFLAGS)
|
|
297 #else
|
|
298 #ifdef COFF_ENCAPSULATE
|
|
299 LD=$(CC) -nostdlib
|
|
300 #else /* not ORDINARY_LINK */
|
|
301 #ifdef LINKER
|
|
302 LD=LINKER
|
|
303 #else /* ! defined (LINKER) */
|
|
304 LD=ld
|
|
305 #endif /* ! defined (LINKER) */
|
|
306 #endif /* ! defined (COFF_ENCAPSULATE) */
|
|
307 #endif /* not ORDINARY_LINK */
|
|
308
|
|
309 /* Allow config.h to specify a replacement file for unexec.c. */
|
|
310 #ifndef UNEXEC
|
|
311 #define UNEXEC unexec.o
|
|
312 #endif
|
|
313 #ifndef UNEXEC_SRC
|
|
314 #define UNEXEC_SRC unexec.c
|
|
315 #endif
|
|
316
|
|
317 #ifdef ENERGIZE
|
|
318 # ifdef EMACS_BTL
|
149
|
319 BTL_dir=$(srcdir)/../btl
|
|
320 BTL_objs = cadillac-btl.o cadillac-btl-process.o cadillac-btl-asm.o cadillac-btl-emacs.o
|
|
321 # endif /* EMACS_BTL */
|
0
|
322 # if defined(FREE_CHECKING) || defined(DEBUG_INPUT_BLOCKING) || defined(DEBUG_GCPRO)
|
149
|
323 freecheck_objs = free-hook.o
|
|
324 # endif /* FREE */
|
|
325 energize_objs = energize.o $(freecheck_objs)
|
|
326 #endif /* ENERGIZE */
|
0
|
327
|
|
328 #ifdef MOCKLISP_SUPPORT
|
149
|
329 mocklisp_objs = mocklisp.o
|
0
|
330 #endif
|
|
331
|
|
332 #ifdef HAVE_TTY
|
149
|
333 tty_objs = console-tty.o device-tty.o event-tty.o frame-tty.o \
|
0
|
334 objects-tty.o redisplay-tty.o cm.o
|
|
335 #endif
|
|
336
|
|
337 #ifdef HAVE_UNIXOID_EVENT_LOOP
|
149
|
338 event_unixoid_objs = event-unixoid.o
|
0
|
339 #endif
|
|
340
|
|
341 /* lastfile must follow all files whose initialized data areas should
|
149
|
342 be dumped as pure by dump-emacs. */
|
0
|
343
|
|
344 /* NOTE: The last line cannot be all macros, because make will barf
|
|
345 if they all come out null. */
|
|
346
|
149
|
347 objs = abbrev.o alloc.o blocktype.o buffer.o bytecode.o \
|
|
348 callint.o callproc.o casefiddle.o casetab.o chartab.o \
|
|
349 cmdloop.o cmds.o console.o console-stream.o data.o \
|
|
350 device.o dired.o \
|
|
351 doc.o doprnt.o dynarr.o editfns.o elhash.o emacs.o \
|
|
352 $(energize_objs) eval.o events.o $(extra_objs) \
|
|
353 event-stream.o $(event_unixoid_objs) extents.o faces.o \
|
|
354 fileio.o filelock.o filemode.o floatfns.o fns.o font-lock.o \
|
|
355 frame.o general.o getloadavg.o glyphs.o \
|
|
356 $(gui_objs) hash.o indent.o inline.o insdel.o intl.o \
|
|
357 keymap.o $(RTC_patch_objs) lread.o lstream.o macros.o \
|
|
358 marker.o md5.o minibuf.o $(mocklisp_objs) \
|
0
|
359 objects.o opaque.o \
|
149
|
360 print.o process.o profile.o pure.o rangetab.o \
|
|
361 redisplay.o redisplay-output.o regex.o \
|
|
362 search.o signal.o sound.o \
|
|
363 specifier.o strftime.o symbols.o syntax.o \
|
|
364 sysdep.o $(tty_objs) undo.o \
|
|
365 UNEXEC $(x_objs) window.o
|
0
|
366
|
149
|
367 /* The following is being done in configure.in now - mrb */
|
|
368 #undef LIBS_TERMCAP
|
|
369 #define LIBS_TERMCAP
|
|
370 #if 0
|
0
|
371 #ifdef HAVE_TTY
|
|
372 # ifdef HAVE_NCURSES
|
|
373 /* If your machine needs -ltermcap, define LIBS_TERMCAP to include
|
|
374 -lncurses -ltermcap in your s or m file (conditionalized on
|
|
375 HAVE_NCURSES). */
|
|
376 # ifndef LIBS_TERMCAP
|
|
377 # define LIBS_TERMCAP -lncurses
|
|
378 # endif /* LIBS_TERMCAP */
|
|
379 termcapobjs = terminfo.o
|
|
380 # elif defined (TERMINFO)
|
|
381 /* Used to be -ltermcap here. If your machine needs that,
|
|
382 define LIBS_TERMCAP in the m/<machine>.h file. */
|
|
383 # ifndef LIBS_TERMCAP
|
|
384 # define LIBS_TERMCAP -lcurses
|
|
385 # endif /* LIBS_TERMCAP */
|
|
386 termcapobjs = terminfo.o
|
|
387 # else /* ! defined (TERMINFO) */
|
|
388 # ifndef LIBS_TERMCAP
|
|
389 # define LIBS_TERMCAP
|
|
390 termcapobjs = termcap.o tparam.o
|
|
391 # else /* LIBS_TERMCAP */
|
|
392 termcapobjs = tparam.o
|
|
393 # endif /* LIBS_TERMCAP */
|
|
394 # endif /* ! defined (TERMINFO) */
|
|
395 #else /* !HAVE_TTY */
|
|
396 # undef LIBS_TERMCAP
|
|
397 # define LIBS_TERMCAP
|
|
398 #endif /* !HAVE_TTY */
|
149
|
399 #endif /* 0 */
|
0
|
400
|
|
401 #ifdef REL_ALLOC
|
149
|
402 rallocdocsrc = ralloc.c
|
0
|
403 rallocobjs = ralloc.o
|
|
404 #endif
|
|
405
|
|
406 #ifndef SYSTEM_MALLOC
|
|
407 # ifdef GNU_MALLOC /* New GNU malloc */
|
|
408 # ifdef ERROR_CHECK_MALLOC
|
|
409 mallocobjs = gmalloc.o free-hook.o vm-limit.o
|
|
410 mallocdocsrc = free-hook.c
|
149
|
411 # else /* New GNU malloc, sans error checking */
|
0
|
412 mallocobjs = gmalloc.o vm-limit.o
|
|
413 mallocdocsrc =
|
149
|
414 # endif /* ERROR_CHECK_MALLOC */
|
0
|
415 # else /* Old GNU malloc */
|
|
416 mallocobjs = malloc.o
|
|
417 mallocdocsrc =
|
|
418 # endif /* Old GNU malloc */
|
149
|
419 #else /* SYSTEM_MALLOC */
|
0
|
420 mallocobjs =
|
|
421 mallocdocsrc =
|
|
422 #endif /* SYSTEM_MALLOC */
|
|
423
|
|
424 #ifdef HAVE_X_WINDOWS
|
|
425
|
|
426 # ifdef EXTERNAL_WIDGET
|
149
|
427 external_widget_objs = ExternalShell.o extw-Xt-nonshared.o extw-Xlib-nonshared.o
|
0
|
428
|
|
429 /* Now we try to figure out how to link a shared library.
|
70
|
430 If we cannot figure it out, leave EXTW_LINK undefined and a shared
|
0
|
431 library will not be created. */
|
|
432
|
|
433 # ifdef USE_GCC
|
|
434 # ifdef USG5
|
|
435 # define EXTW_LINK(objs, output) $(CC) -shared objs -Xlinker -z -Xlinker text -o output
|
70
|
436 /* I cannot figure out how to do shared a.out libraries, so just punt. */
|
0
|
437 # elif !defined (LINUX) || defined (__ELF__)
|
|
438 # define EXTW_LINK(objs, output) $(CC) -shared objs -o output
|
|
439 # endif
|
|
440 # elif defined (USG5)
|
|
441 # if defined (IRIX)
|
|
442 # define EXTW_LINK(objs, output) $(LD) -shared -g -check_registry ${TOOLROOT}/usr/lib/so_locations objs -o output
|
|
443 # else /* not IRIX */
|
|
444 # define EXTW_LINK(objs, output) $(CC) -G objs -z text -o output
|
|
445 # endif /* not IRIX */
|
|
446 # else /* not USG5 */
|
|
447 # if defined (DEC_ALPHA) && defined (OSF1)
|
149
|
448 # define EXTW_LINK(objs, output) $(LD) $(ldflags) LD_SWITCH_SHARED -d objs -o output $(LIBES)
|
0
|
449 # else /* !(DEC_ALPHA && OSF1) */
|
|
450 # define EXTW_LINK(objs, output) $(LD) -dc objs -assert pure-text -o output
|
|
451 # endif /* !(DEC_ALPHA && OSF1) */
|
|
452 # endif /* not USG5 */
|
|
453
|
|
454 # ifdef LWLIB_USES_MOTIF
|
|
455 # ifdef EXTW_LINK
|
|
456 # define MOTIF_OTHER_FILES libextcli_Xm.a libextcli_Xm.so.1
|
|
457 # else
|
|
458 # define MOTIF_OTHER_FILES libextcli_Xm.a
|
|
459 # endif
|
|
460 # else
|
|
461 # define MOTIF_OTHER_FILES
|
|
462 #endif
|
|
463
|
|
464 # ifdef EXTW_LINK
|
|
465 # define OTHER_FILES MOTIF_OTHER_FILES \
|
|
466 libextcli_Xt.a libextcli_Xt.so.1 \
|
|
467 libextcli_Xlib.a libextcli_Xlib.so.1
|
|
468 # else
|
|
469 # define OTHER_FILES MOTIF_OTHER_FILES \
|
|
470 libextcli_Xt.a libextcli_Xlib.a
|
|
471 # endif
|
149
|
472 # endif /* EXTERNAL_WIDGET */
|
0
|
473
|
149
|
474 X11_objs = EmacsFrame.o EmacsShell.o TopLevelEmacsShell.o TransientEmacsShell.o EmacsManager.o $(external_widget_objs)
|
|
475 #endif /* HAVE_X_WINDOWS */
|
0
|
476
|
|
477 /* define otherobjs as list of object files that make-docfile
|
|
478 should not be told about. */
|
149
|
479 otherobjs = $(termcapobjs) $(BTL_objs) lastfile.o $(mallocobjs) $(rallocobjs) $(X11_objs)
|
0
|
480
|
|
481 #ifdef LISP_FLOAT_TYPE
|
|
482 #define FLOAT_LISP ${lispdir}prim/float-sup.elc
|
|
483 #else
|
|
484 #define FLOAT_LISP
|
|
485 #endif
|
|
486
|
|
487 #ifdef HAVE_X_WINDOWS
|
70
|
488 /* lisp files preloaded if compiled with support for X Windows */
|
0
|
489 # ifdef HAVE_TOOLBARS
|
|
490 # define X11_TOOLBAR_LISP ${lispdir}x11/x-toolbar.elc
|
|
491 # else
|
|
492 # define X11_TOOLBAR_LISP
|
|
493 # endif
|
|
494 # ifdef HAVE_MENUBARS
|
|
495 # define X11_MENUBAR_LISP ${lispdir}x11/x-menubar.elc
|
|
496 # else
|
|
497 # define X11_MENUBAR_LISP
|
|
498 # endif
|
|
499 # ifdef HAVE_SCROLLBARS
|
|
500 # define X11_SCROLLBAR_LISP ${lispdir}x11/x-scrollbar.elc
|
|
501 # else
|
|
502 # define X11_SCROLLBAR_LISP
|
|
503 # endif
|
|
504 #define X11_LISP X11_MENUBAR_LISP \
|
70
|
505 ${lispdir}x11/x-faces.elc \
|
|
506 ${lispdir}x11/x-iso8859-1.elc ${lispdir}x11/x-mouse.elc \
|
|
507 ${lispdir}x11/x-select.elc X11_SCROLLBAR_LISP \
|
|
508 X11_TOOLBAR_LISP ${lispdir}x11/x-misc.elc \
|
|
509 ${lispdir}x11/x-init.elc
|
0
|
510 #else
|
|
511 #define X11_LISP
|
|
512 #endif
|
|
513
|
|
514 #ifdef HAVE_TTY
|
120
|
515 /* lisp files preloaded if compiled with support for tty */
|
0
|
516 #define TTY_LISP ${lispdir}term/tty-init.elc
|
|
517 #else
|
|
518 #define TTY_LISP
|
|
519 #endif
|
|
520
|
70
|
521 #ifdef MULE
|
|
522 #ifdef HAVE_X_WINDOWS
|
|
523 # define MULE_X11_LISP ${lispdir}mule/mule-x-init.elc
|
|
524 #else
|
|
525 # define MULE_X11_LISP
|
|
526 #endif
|
|
527 #define MULE_LISP \
|
|
528 ${lispdir}mule/mule-load.elc ${lispdir}mule/mule-coding.elc \
|
|
529 ${lispdir}mule/mule-charset.elc ${lispdir}mule/mule-files.elc \
|
|
530 ${lispdir}mule/mule-category.elc ${lispdir}mule/mule-misc.elc \
|
|
531 ${lispdir}mule/mule-ccl.elc ${lispdir}mule/mule-init.elc \
|
110
|
532 ${lispdir}mule/kinsoku.elc \
|
70
|
533 MULE_X11_LISP \
|
|
534 ${lispdir}mule/arabic-hooks.elc \
|
|
535 ${lispdir}mule/chinese-hooks.elc \
|
|
536 ${lispdir}mule/cyrillic-hooks.elc \
|
|
537 ${lispdir}mule/ethiopic-hooks.elc \
|
|
538 ${lispdir}mule/european-hooks.elc \
|
|
539 ${lispdir}mule/greek-hooks.elc \
|
|
540 ${lispdir}mule/hebrew-hooks.elc \
|
|
541 ${lispdir}mule/ipa-hooks.elc \
|
|
542 ${lispdir}mule/japanese-hooks.elc \
|
|
543 ${lispdir}mule/korean-hooks.elc \
|
|
544 ${lispdir}mule/thai-hooks.elc \
|
|
545 ${lispdir}mule/vietnamese-hooks-1.elc \
|
|
546 ${lispdir}mule/vietnamese-hooks-2.elc
|
|
547
|
|
548 #define NOMULE_LISP
|
|
549 #else
|
|
550 #define MULE_LISP
|
|
551 #define NOMULE_LISP ${lispdir}prim/files-nomule.elc
|
|
552 #endif
|
|
553
|
0
|
554 #ifdef ENERGIZE
|
70
|
555 /* Lisp files preloaded if compiled with support for Energize */
|
|
556 #define ENERGIZE_LISP \
|
|
557 ${lispdir}comint/gdb.elc \
|
|
558 ${lispdir}comint/comint.elc ${lispdir}comint/shell.elc \
|
|
559 ${lispdir}utils/ring.elc ${lispdir}packages/compile.elc \
|
|
560 ${lispdir}modes/view-less.elc ${lispdir}emulators/evi.elc \
|
|
561 ${lispdir}packages/font-lock.elc ${lispdir}packages/fast-lock.elc \
|
|
562 ${lispdir}dired/dired.elc ${lispdir}dired/dired-x.elc \
|
|
563 ${lispdir}dired/dired-lucid.elc ${lispdir}prim/userlock.elc \
|
|
564 ${lispdir}energize/energize-init.elc \
|
|
565 ${lispdir}energize/energize-mode.elc \
|
|
566 ${lispdir}energize/energize-windows.elc \
|
|
567 ${lispdir}energize/energize-menus.elc \
|
|
568 ${lispdir}energize/energize-shell.elc \
|
|
569 ${lispdir}energize/energize-visit-use.elc \
|
|
570 ${lispdir}energize/energize-vi.elc \
|
|
571 ${lispdir}energize/energize-font-lock.elc \
|
|
572 ${lispdir}energize/energize-advice.elc
|
0
|
573 #else
|
|
574 #define ENERGIZE_LISP
|
|
575 #endif
|
|
576
|
|
577 #ifdef SUNPRO
|
70
|
578 /* Lisp files preloaded if compiled with support for SunPro products */
|
|
579 #define SUNPRO_LISP \
|
|
580 ${lispdir}packages/sccs.elc \
|
|
581 ${lispdir}sunpro/sunpro-init.elc \
|
|
582 ${lispdir}sunpro/sunpro-menubar.elc \
|
|
583 ${lispdir}sunpro/sunpro-keys.elc \
|
|
584 ${lispdir}eos/sun-eos-init.elc \
|
|
585 ${lispdir}eos/sun-eos-load.elc \
|
|
586 ${lispdir}eos/sun-eos-common.elc \
|
|
587 ${lispdir}eos/sun-eos-editor.elc \
|
|
588 ${lispdir}eos/sun-eos-browser.elc \
|
|
589 ${lispdir}eos/sun-eos-debugger.elc \
|
|
590 ${lispdir}eos/sun-eos-debugger-extra.elc \
|
|
591 ${lispdir}eos/sun-eos-toolbar.elc \
|
|
592 ${lispdir}eos/sun-eos-menubar.elc \
|
80
|
593 ${lispdir}comint/comint.elc \
|
|
594 ${lispdir}utils/ring.elc \
|
|
595 ${lispdir}utils/annotations.elc \
|
|
596 ${lispdir}modes/cc-mode.elc \
|
|
597 ${lispdir}modes/imenu.elc \
|
98
|
598 ${lispdir}utils/reporter.elc
|
0
|
599 #else
|
80
|
600 #define SUNPRO_LISP
|
0
|
601 #endif
|
|
602
|
|
603 #ifdef TOOLTALK
|
70
|
604 /* Lisp files preloaded if compiled with support for Tooltalk */
|
|
605 #define TOOLTALK_LISP \
|
80
|
606 ${lispdir}tooltalk/tooltalk-load.elc \
|
70
|
607 ${lispdir}tooltalk/tooltalk-macros.elc \
|
|
608 ${lispdir}tooltalk/tooltalk-util.elc \
|
|
609 ${lispdir}tooltalk/tooltalk-init.elc
|
0
|
610 #else
|
|
611 #define TOOLTALK_LISP
|
|
612 #endif
|
|
613
|
|
614 #ifdef LISP_COMMAND_LOOP
|
|
615 #define CMDLOOP_LISP ${lispdir}prim/cmdloop1.elc
|
|
616 #else
|
|
617 #define CMDLOOP_LISP
|
|
618 #endif
|
|
619
|
|
620 #ifdef HAVE_TOOLBARS
|
|
621 #define TOOLBAR_LISP ${lispdir}prim/toolbar.elc
|
|
622 #else
|
|
623 #define TOOLBAR_LISP
|
|
624 #endif
|
|
625 #ifdef HAVE_MENUBARS
|
|
626 #define MENUBAR_LISP ${lispdir}prim/menubar.elc
|
|
627 #else
|
|
628 #define MENUBAR_LISP
|
|
629 #endif
|
|
630 #ifdef HAVE_SCROLLBARS
|
|
631 #define SCROLLBAR_LISP ${lispdir}prim/scrollbar.elc
|
|
632 #else
|
|
633 #define SCROLLBAR_LISP
|
|
634 #endif
|
|
635 #ifdef HAVE_DIALOGS
|
|
636 #define DIALOG_LISP ${lispdir}prim/dialog.elc
|
|
637 #else
|
|
638 #define DIALOG_LISP
|
|
639 #endif
|
|
640 #ifdef HAVE_WINDOW_SYSTEM
|
70
|
641 #define MOUSE_LISP \
|
|
642 ${lispdir}prim/gui.elc \
|
|
643 ${lispdir}prim/mouse.elc \
|
|
644 ${lispdir}prim/mode-motion.elc
|
0
|
645 #else
|
|
646 #define MOUSE_LISP
|
|
647 #endif
|
|
648
|
|
649 /* List of Lisp files loaded into the dumped Emacs.
|
|
650 Every file that is loaded from loadup.el must be enumerated
|
70
|
651 here, or the functions will have no docstrings.
|
2
|
652 This is dumb - this list should be generated automatically.
|
70
|
653 [Note: "version.el" is included in the doc separately, but is not listed
|
18
|
654 here because we do not want things to appear to be out-of-date just
|
0
|
655 because the version number has been incremented. -- D.N.G. 8/28/93]
|
|
656 */
|
140
|
657 lisp= ${lispdir}paths.el ${lispdir}prim/featurep.elc \
|
78
|
658 ${lispdir}prim/loaddefs.elc ${lispdir}prim/auto-autoloads.elc \
|
0
|
659 ${lispdir}prim/loadup.el ${lispdir}prim/subr.elc \
|
|
660 ${lispdir}prim/cmdloop.elc CMDLOOP_LISP \
|
|
661 ${lispdir}utils/text-props.elc MOUSE_LISP \
|
|
662 ${lispdir}prim/keymap.elc ${lispdir}prim/syntax.elc \
|
|
663 ${lispdir}prim/minibuf.elc ${lispdir}prim/faces.elc \
|
|
664 ${lispdir}prim/objects.elc ${lispdir}prim/process.elc \
|
|
665 ${lispdir}prim/keydefs.elc ${lispdir}prim/device.elc \
|
|
666 ${lispdir}prim/obsolete.elc ${lispdir}prim/glyphs.elc \
|
|
667 ${lispdir}prim/extents.elc ${lispdir}prim/backquote.elc \
|
|
668 ${lispdir}prim/events.elc ${lispdir}prim/console.elc \
|
|
669 ${lispdir}utils/map-ynp.elc ${lispdir}prim/modeline.elc \
|
|
670 ${lispdir}prim/profile.elc ${lispdir}modes/list-mode.elc \
|
|
671 ${lispdir}utils/derived.elc ${lispdir}cl/cl.elc \
|
|
672 ${lispdir}cl/cl-defs.elc ${lispdir}prim/undo-stack.elc \
|
|
673 ${lispdir}prim/simple.elc ${lispdir}prim/help.elc \
|
|
674 ${lispdir}prim/files.elc ${lispdir}utils/lib-complete.elc \
|
|
675 ${lispdir}prim/indent.elc ${lispdir}prim/frame.elc \
|
|
676 TOOLBAR_LISP ${lispdir}prim/format.elc \
|
|
677 ${lispdir}prim/window.elc ${lispdir}prim/startup.elc \
|
|
678 ${lispdir}prim/lisp.elc ${lispdir}prim/page.elc \
|
|
679 ${lispdir}prim/register.elc ${lispdir}iso/iso8859-1.elc \
|
|
680 ${lispdir}prim/paragraphs.elc ${lispdir}modes/lisp-mode.elc \
|
|
681 ${lispdir}modes/text-mode.elc ${lispdir}prim/fill.elc \
|
|
682 ${lispdir}prim/isearch-mode.elc ${lispdir}prim/misc.elc \
|
74
|
683 ${lispdir}packages/vc-hooks.elc \
|
0
|
684 ${lispdir}prim/replace.elc ${lispdir}prim/specifier.elc \
|
|
685 ${lispdir}modes/auto-show.elc SUNPRO_LISP TTY_LISP \
|
120
|
686 ${lispdir}bytecomp/bytecomp-runtime.elc FLOAT_LISP \
|
100
|
687 ${lispdir}prim/itimer.elc ${lispdir}prim/itimer-autosave.elc \
|
|
688 ${lispdir}ediff/ediff-hook.elc \
|
124
|
689 ${lispdir}custom/widget.elc ${lispdir}custom/custom.elc \
|
|
690 ${lispdir}prim/custom-load.elc ${lispdir}prim/cus-start.elc \
|
0
|
691 ${lispdir}packages/fontl-hooks.elc SCROLLBAR_LISP \
|
|
692 ${lispdir}prim/buffer.elc MENUBAR_LISP \
|
70
|
693 ${lispdir}packages/buff-menu.elc DIALOG_LISP MULE_LISP NOMULE_LISP \
|
120
|
694 ${lispdir}modes/abbrev.elc X11_LISP ENERGIZE_LISP TOOLTALK_LISP
|
0
|
695
|
18
|
696 /* Other Lisp files that are not dumped out but where it is convenient
|
70
|
697 (or required?) for them to be byte-compiled early, before xemacs is
|
|
698 dumped out. Avoid listing them in ${lisp} because then the
|
|
699 doc-snarfing routines get confused. */
|
0
|
700 otherlisp= ${lispdir}bytecomp/bytecomp.elc \
|
|
701 ${lispdir}bytecomp/byte-optimize.elc \
|
|
702 ${lispdir}utils/advice.elc
|
|
703
|
149
|
704 LIBES = $(LWLIB_LIBS) $(energize_libs) $(quantify_libs) \
|
|
705 LIBS_DEBUG $(GNULIB_VAR) LIB_STANDARD \
|
|
706 $(GNULIB_VAR) $(ld_libs_all)
|
0
|
707
|
|
708 /* Enable recompilation of certain other files depending on system type. */
|
|
709
|
|
710 #ifndef OTHER_FILES
|
|
711 #define OTHER_FILES
|
|
712 #endif
|
|
713
|
|
714 /* Enable inclusion of object files in temacs depending on system type. */
|
|
715 #ifndef OBJECTS_SYSTEM
|
|
716 #define OBJECTS_SYSTEM
|
|
717 #endif
|
|
718
|
|
719 #ifndef OBJECTS_MACHINE
|
|
720 #define OBJECTS_MACHINE
|
|
721 #endif
|
|
722
|
|
723 all: xemacs OTHER_FILES
|
|
724
|
|
725 #ifdef I18N3
|
149
|
726 mo_dir = ${etcdir}
|
|
727 mo_file = ${mo_dir}emacs.mo
|
0
|
728 #endif
|
|
729
|
|
730 LOADPATH = EMACSLOADPATH="${lispdir}prim"
|
|
731 DUMPENV = $(LOADPATH)
|
|
732
|
149
|
733 release: temacs ${lisp} ${libsrc}DOC $(mo_file) OTHER_FILES
|
0
|
734 #ifdef CANNOT_DUMP
|
|
735 ln temacs xemacs
|
|
736 #else
|
|
737 #ifdef HAVE_SHM
|
|
738 -if [ -w ${srcdir}/../lisp ]; then \
|
80
|
739 w=`pwd`; cd ${srcdir} && $${w}/temacs -nl -batch -l inc-vers; \
|
0
|
740 else true; fi
|
104
|
741 @touch SATISFIED
|
|
742 -$(DUMPENV) ./temacs -nl -batch -l loadup.el dump
|
112
|
743 @if [ ! -f SATISFIED ]; then \
|
104
|
744 $(MAKE) release; \
|
|
745 fi
|
112
|
746 @/bin/rm -f SATISFIED
|
0
|
747 #else /* ! defined (HAVE_SHM) */
|
|
748 -if [ -w ${srcdir}/../lisp ]; then \
|
80
|
749 w=`pwd`; cd ${srcdir} && $${w}/temacs -batch -l inc-vers; \
|
0
|
750 else true; fi
|
104
|
751 @touch SATISFIED
|
|
752 -$(DUMPENV) ./temacs -batch -l loadup.el dump
|
112
|
753 @if [ ! -f SATISFIED ]; then \
|
104
|
754 $(MAKE) release; \
|
|
755 fi
|
112
|
756 @/bin/rm -f SATISFIED
|
0
|
757 #endif /* ! defined (HAVE_SHM) */
|
|
758 touch release
|
|
759 #endif /* ! defined (CANNOT_DUMP) */
|
|
760
|
149
|
761 xemacs: temacs ${libsrc}DOC ${lisp} $(mo_file) OTHER_FILES
|
104
|
762 @touch SATISFIED
|
|
763 -$(DUMPENV) ./temacs -batch -l loadup.el dump
|
112
|
764 @if [ ! -f SATISFIED ]; then \
|
104
|
765 $(MAKE) xemacs; \
|
|
766 fi
|
112
|
767 @/bin/rm -f SATISFIED
|
0
|
768
|
149
|
769 xemacs-no-site-file: temacs ${libsrc}DOC ${lisp} $(mo_file) OTHER_FILES
|
104
|
770 @touch SATISFIED
|
|
771 -$(DUMPENV) ./temacs -batch -l loadup.el dump no-site-file
|
149
|
772 @test ! -f SATISFIED && $(MAKE) xemacs-no-site-file
|
112
|
773 @/bin/rm -f SATISFIED
|
0
|
774
|
|
775 obj_src = $(objs:.o=.c)
|
|
776
|
70
|
777 #ifdef DYNODUMP
|
149
|
778 dynodump_builddir = $(dot)$(dot)/dynodump
|
|
779 dynodump_deps = $(dynodump_builddir)/dynodump.so
|
|
780 $(dynodump_builddir)/dynodump.so: force
|
|
781 cd ${dynodump_builddir} && ${MAKE} ${MFLAGS}
|
|
782 #endif /* DYNODUMP */
|
0
|
783
|
|
784 #ifdef NO_DOC_FILE
|
|
785 ${libsrc}DOC: ${libsrc}make-docfile
|
|
786 #else
|
149
|
787 ${libsrc}DOC: ${libsrc}make-docfile ${obj_src} ${lisp}
|
0
|
788 #endif
|
|
789 rm -f ${libsrc}DOC
|
114
|
790 ${libsrc}make-docfile -d ${srcdir} -i ${libsrc}../site-packages \
|
149
|
791 ${obj_src} ${mallocdocsrc} ${rallocdocsrc} ${lispdir}version.el \
|
0
|
792 ${lisp} > ${libsrc}DOC
|
|
793
|
|
794 dump_elcs: dump-elcs
|
|
795
|
|
796 dump-elcs: temacs
|
112
|
797 @touch SATISFIED
|
|
798 -$(LOADPATH) ./temacs -batch -l ../prim/update-elc.el $(lisp) $(otherlisp)
|
|
799 @if [ ! -f SATISFIED ]; then \
|
|
800 $(MAKE) dump-elcs; \
|
|
801 fi
|
|
802 @/bin/rm -f SATISFIED
|
0
|
803
|
80
|
804 all-elc all-elcs:
|
|
805 cd .. && $(MAKE) all-elc $(MFLAGS)
|
|
806
|
70
|
807 #ifdef I18N3
|
|
808
|
|
809 # if defined(SPARC) && !defined(USG)
|
|
810 xgettext= /usr/openwin/bin/xgettext
|
|
811 xgettext_args= -o emacs -m_X messages
|
|
812 msgfmt= /usr/openwin/bin/msgfmt
|
|
813 # else
|
|
814 xgettext= xgettext
|
|
815 xgettext_args= -s -d emacs -M_X messages
|
|
816 msgfmt= msgfmt
|
|
817 #endif
|
|
818
|
149
|
819 ${mo_dir}emacs.po: ${libsrc}make-msgfile ${libsrc}make-po ${objs} ${lisp}
|
|
820 ${libsrc}make-msgfile -o ${libsrc}messages ${objs} ${lisp} ${otherlisp}
|
80
|
821 cd ${libsrc} && ${xgettext} ${xgettext_args}
|
149
|
822 rm -f ${mo_dir}emacs.po
|
|
823 cd ${libsrc} && ${libsrc}make-po -a ${mo_dir}emacs.po DOC
|
70
|
824
|
149
|
825 ${mo_dir}emacs.mo: ${mo_dir}emacs.po
|
|
826 cd ${mo_dir} && ${msgfmt} -o emacs.mo emacs.po
|
70
|
827
|
|
828 ${libsrc}make-msgfile:
|
80
|
829 cd ${libsrc} && ${MAKE} ${MFLAGS} make-msgfile
|
70
|
830
|
|
831 ${libsrc}make-po:
|
80
|
832 cd ${libsrc} && ${MAKE} ${MFLAGS} make-po
|
70
|
833
|
|
834 #endif /* I18N3 */
|
|
835
|
0
|
836 ${libsrc}make-docfile:
|
80
|
837 cd ${libsrc} && ${MAKE} ${MFLAGS} make-docfile
|
0
|
838
|
|
839 /* Lint Section */
|
|
840 LINT.c=$(LINT) $(LINTFLAGS) $(LINTINCLUDES)
|
|
841 LINTFILES= $(objs:.o=.ln)
|
149
|
842 LINTINCLUDES = $(cppflags)
|
2
|
843 /* LINTFLAGS= -fd -m -p -s -u -v -x */
|
|
844 LINTFLAGS= -fd -m -s -u -v -x
|
0
|
845 lint: $(LINTFILES)
|
|
846 $(LINT.c) $(LINTFILES)
|
|
847 /* end of Lint Section */
|
|
848
|
|
849 force:
|
149
|
850 $(LWLIB_BUILDDIR)/liblw.a: force
|
|
851 cd ${LWLIB_BUILDDIR} && ${MAKE} ${MFLAGS}
|
0
|
852
|
|
853 /* Some systems define this to cause parallel Make-ing. */
|
|
854 #ifndef MAKE_PARALLEL
|
|
855 #define MAKE_PARALLEL
|
|
856 #endif
|
|
857
|
149
|
858 temacs_deps = \
|
|
859 MAKE_PARALLEL $(LOCALCPP) $(SHORT) $(STARTFILES) \
|
|
860 ${objs} ${otherobjs} OBJECTS_SYSTEM OBJECTS_MACHINE \
|
|
861 $(LWLIB_DEPS) $(dynodump_deps) prefix-args
|
0
|
862
|
149
|
863 temacs_link_args = \
|
|
864 YMF_PASS_LDFLAGS(${STARTFLAGS} ${ldflags} LD_SWITCH_CALL_SHARED) \
|
|
865 -o $@ ${STARTFILES} ${objs} ${otherobjs} \
|
|
866 OBJECTS_SYSTEM OBJECTS_MACHINE ${LIBES}
|
0
|
867
|
149
|
868 temacs_deps: $(temacs_deps)
|
0
|
869
|
149
|
870 temacs: $(temacs_deps)
|
|
871 $(LD) $(temacs_link_args)
|
0
|
872
|
149
|
873 cemacs: $(temacs_deps)
|
|
874 $(LD) $(temacs_link_args)
|
0
|
875
|
78
|
876 rtc_patch.o:
|
|
877 rtc_patch_area -o $@
|
|
878
|
149
|
879 rtcmacs: $(temacs_deps) rtc_patch.o
|
|
880 rm -f temacs; $(MAKE) $(MAKE_FLAGS) temacs RTC_patch_objs=rtc_patch.o
|
78
|
881 mv temacs rtcmacs
|
|
882
|
|
883 rtcrun: rtcmacs
|
|
884 dbx -q -C -c \
|
|
885 'dbxenv rtc_error_log_file_name /dev/fd/1; \
|
|
886 dbxenv suppress_startup_message 5.0; \
|
|
887 ignore POLL; \
|
|
888 check -access; \
|
|
889 suppress rui; \
|
|
890 runargs -batch -l loadup.el run-temacs -q; \
|
|
891 run' rtcmacs
|
|
892
|
149
|
893 puremacs: $(temacs_deps)
|
|
894 $(PURIFY_PROG) $(PURIFY_FLAGS) $(LD) $(temacs_link_args)
|
0
|
895
|
149
|
896 quantmacs: $(temacs_deps)
|
|
897 $(quantify_prog) $(quantify_flags) $(LD) $(temacs_link_args)
|
0
|
898
|
149
|
899 covmacs: $(temacs_deps)
|
|
900 $(PURECOV_PROG) $(LD) $(temacs_link_args)
|
0
|
901
|
|
902 TopLevelEmacsShell.o : ${srcdir}/EmacsShell-sub.c
|
149
|
903 $(CC) -c $(cflags) -DDEFINE_TOP_LEVEL_EMACS_SHELL ${srcdir}/EmacsShell-sub.c
|
0
|
904 mv EmacsShell-sub.o TopLevelEmacsShell.o
|
|
905
|
|
906 TransientEmacsShell.o : ${srcdir}/EmacsShell-sub.c TopLevelEmacsShell.o
|
149
|
907 $(CC) -c $(cflags) -DDEFINE_TRANSIENT_EMACS_SHELL ${srcdir}/EmacsShell-sub.c
|
0
|
908 mv EmacsShell-sub.o TransientEmacsShell.o
|
|
909
|
149
|
910 /* Position-independent code for shared library creation */
|
|
911 #if USE_GCC
|
|
912 pic_arg = -fpic
|
|
913 #elif defined (IRIX)
|
|
914 pic_arg = -KPIC
|
|
915 # else
|
|
916 pic_arg = -K pic
|
|
917 #endif
|
|
918
|
0
|
919 #ifdef EXTERNAL_WIDGET
|
|
920
|
|
921 # define EXTERNAL_CLIENT_MOTIF_OBJS_SHARED ExternalClient-Xm-shared.o extw-Xt-shared.o extw-Xlib-shared.o
|
|
922 # define EXTERNAL_CLIENT_XT_OBJS_SHARED ExternalClient-Xt-shared.o extw-Xt-shared.o extw-Xlib-shared.o
|
|
923 # define EXTERNAL_CLIENT_XLIB_OBJS_SHARED ExternalClient-Xlib-shared.o extw-Xlib-shared.o
|
|
924 # define EXTERNAL_CLIENT_MOTIF_OBJS_NONSHARED ExternalClient-Xm-nonshared.o extw-Xt-nonshared.o extw-Xlib-nonshared.o
|
|
925 # define EXTERNAL_CLIENT_XT_OBJS_NONSHARED ExternalClient-Xt-nonshared.o extw-Xt-nonshared.o extw-Xlib-nonshared.o
|
|
926 # define EXTERNAL_CLIENT_XLIB_OBJS_NONSHARED ExternalClient-Xlib-nonshared.o extw-Xlib-nonshared.o
|
|
927
|
|
928 /* Add dependencies so things work right with a parallel make */
|
|
929 ExternalClient-Xm-shared.o: ${srcdir}/ExternalClient.c ExternalClient-Xt-shared.o ExternalClient-Xm-nonshared.o
|
149
|
930 $(CC) -c $(pic_arg) $(cflags) -DEXTW_USES_MOTIF ${srcdir}/ExternalClient.c
|
0
|
931 mv ExternalClient.o ExternalClient-Xm-shared.o
|
|
932
|
|
933 ExternalClient-Xt-shared.o: ${srcdir}/ExternalClient.c ExternalClient-Xt-nonshared.o
|
149
|
934 $(CC) -c $(pic_arg) $(cflags) ${srcdir}/ExternalClient.c
|
0
|
935 mv ExternalClient.o ExternalClient-Xt-shared.o
|
|
936
|
|
937 ExternalClient-Xlib-shared.o: ${srcdir}/ExternalClient-Xlib.c ExternalClient-Xlib-nonshared.o
|
149
|
938 $(CC) -c $(pic_arg) $(cflags) ${srcdir}/ExternalClient-Xlib.c
|
0
|
939 mv ExternalClient-Xlib.o ExternalClient-Xlib-shared.o
|
|
940
|
|
941 ExternalClient-Xm-nonshared.o: ${srcdir}/ExternalClient.c ExternalClient-Xt-nonshared.o
|
149
|
942 $(CC) -c $(cflags) -DEXTW_USES_MOTIF ${srcdir}/ExternalClient.c
|
0
|
943 mv ExternalClient.o ExternalClient-Xm-nonshared.o
|
|
944
|
|
945 ExternalClient-Xt-nonshared.o: ${srcdir}/ExternalClient.c
|
149
|
946 $(CC) -c $(cflags) ${srcdir}/ExternalClient.c
|
0
|
947 mv ExternalClient.o ExternalClient-Xt-nonshared.o
|
|
948
|
|
949 ExternalClient-Xlib-nonshared.o: ${srcdir}/ExternalClient-Xlib.c
|
149
|
950 $(CC) -c $(cflags) ${srcdir}/ExternalClient-Xlib.c
|
0
|
951 mv ExternalClient-Xlib.o ExternalClient-Xlib-nonshared.o
|
|
952
|
|
953 /* We compile the common files twice (once with PIC and once without)
|
|
954 because on some systems, compiling with PIC but not linking into
|
|
955 a shared library messes things up. */
|
|
956 extw-Xt-shared.o: ${srcdir}/extw-Xt.c extw-Xt-nonshared.o
|
149
|
957 $(CC) -c $(pic_arg) $(cflags) ${srcdir}/extw-Xt.c
|
0
|
958 mv extw-Xt.o extw-Xt-shared.o
|
|
959
|
|
960 extw-Xlib-shared.o: ${srcdir}/extw-Xlib.c extw-Xlib-nonshared.o
|
149
|
961 $(CC) -c $(pic_arg) $(cflags) ${srcdir}/extw-Xlib.c
|
0
|
962 mv extw-Xlib.o extw-Xlib-shared.o
|
|
963
|
|
964 extw-Xt-nonshared.o: ${srcdir}/extw-Xt.c
|
149
|
965 $(CC) -c $(cflags) ${srcdir}/extw-Xt.c
|
0
|
966 mv extw-Xt.o extw-Xt-nonshared.o
|
|
967
|
|
968 extw-Xlib-nonshared.o: ${srcdir}/extw-Xlib.c
|
149
|
969 $(CC) -c $(cflags) ${srcdir}/extw-Xlib.c
|
0
|
970 mv extw-Xlib.o extw-Xlib-nonshared.o
|
|
971
|
|
972 libextcli_Xm.a: EXTERNAL_CLIENT_MOTIF_OBJS_NONSHARED
|
|
973 ar r libextcli_Xm.a EXTERNAL_CLIENT_MOTIF_OBJS_NONSHARED
|
|
974
|
|
975 libextcli_Xt.a: EXTERNAL_CLIENT_XT_OBJS_NONSHARED
|
|
976 ar r libextcli_Xt.a EXTERNAL_CLIENT_XT_OBJS_NONSHARED
|
|
977
|
|
978 libextcli_Xlib.a: EXTERNAL_CLIENT_XLIB_OBJS_NONSHARED
|
|
979 ar r libextcli_Xlib.a EXTERNAL_CLIENT_XLIB_OBJS_NONSHARED
|
|
980
|
|
981 #ifdef EXTW_LINK
|
|
982
|
|
983 libextcli_Xm.so.1: EXTERNAL_CLIENT_MOTIF_OBJS_SHARED
|
|
984 EXTW_LINK(EXTERNAL_CLIENT_MOTIF_OBJS_SHARED, libextcli_Xm.so.1)
|
|
985
|
|
986 libextcli_Xt.so.1: EXTERNAL_CLIENT_XT_OBJS_SHARED
|
|
987 EXTW_LINK(EXTERNAL_CLIENT_XT_OBJS_SHARED, libextcli_Xt.so.1)
|
|
988
|
|
989 libextcli_Xlib.so.1: EXTERNAL_CLIENT_XLIB_OBJS_SHARED
|
|
990 EXTW_LINK(EXTERNAL_CLIENT_XLIB_OBJS_SHARED, libextcli_Xlib.so.1)
|
|
991
|
149
|
992 #endif /* EXTW_LINK */
|
0
|
993
|
|
994 #endif /* EXTERNAL_WIDGET */
|
|
995
|
|
996 prefix-args: ${srcdir}/prefix-args.c config.h
|
149
|
997 $(CC) $(cflags) ${srcdir}/prefix-args.c -o prefix-args
|
0
|
998
|
|
999 /* These are needed for C compilation, on the systems that need them */
|
|
1000 #ifdef NEED_CPP
|
|
1001 CPP = ./localcpp
|
|
1002 localcpp:
|
80
|
1003 cd ${cppdir} && ${MAKE} ${MFLAGS} EMACS=-DEMACS
|
149
|
1004 ln ${cppdir}cpp localcpp /* Name where cflags will refer to it */
|
0
|
1005 /* cc appears to be cretinous and require all of these to exist
|
70
|
1006 if -B is specified -- we cannot use one local pass and let the
|
0
|
1007 others be the standard ones. What a loser.
|
70
|
1008 We cannot even use ln, since they are probably
|
0
|
1009 on different disks. */
|
|
1010 cp /lib/ccom localccom
|
|
1011 -cp /lib/optim localoptim
|
|
1012 -cp /lib/c2 localc2
|
|
1013 cp /bin/as localas
|
|
1014 #else /* ! defined (NEED_CPP) */
|
|
1015 CPP = $(CC) -E
|
|
1016 #endif /* ! defined (NEED_CPP) */
|
|
1017
|
|
1018 #ifdef SHORTNAMES
|
|
1019 shortnames:
|
80
|
1020 cd ${shortnamesdir} && ${MAKE} ${MFLAGS}
|
0
|
1021 #endif
|
|
1022
|
|
1023 config.h: ${srcdir}/config.h.in
|
|
1024 @echo "The file config.h needs to be set up from config.h.in."
|
|
1025 @echo "Consult the file \`INSTALL' for instructions for building Emacs."
|
|
1026 exit 1
|
|
1027
|
104
|
1028 puresize_adjust.h: ${srcdir}/puresize.h
|
|
1029 @echo "The file puresize_adjust still needs to be generated."
|
|
1030 @echo "Please run 'make' from the top-level."
|
|
1031 exit 1
|
|
1032
|
0
|
1033 paths.h: ${srcdir}/paths.h.in
|
|
1034 @echo "The file paths.h needs to be set up from paths.h.in."
|
|
1035 @echo "Consult the file \`INSTALL' for instructions for building Emacs."
|
|
1036 exit 1
|
|
1037
|
|
1038 Emacs.ad.h: ${srcdir}/${etcdir}Emacs.ad
|
|
1039 @echo "The file Emacs.ad.h needs to be set up from ${srcdir}/${etcdir}Emacs.ad"
|
|
1040 @echo "Consult the file \`INSTALL' for instructions for building Emacs."
|
|
1041 exit 1
|
|
1042
|
120
|
1043 /* Cover your eyes, please */
|
122
|
1044 xemacs-version.h: ../lisp/version.el
|
|
1045 @echo "#define main_1 xemacs_`grep emacs-version ../lisp/version.el | sed -e 's/.*\"\(.*\)\.\(.*\)\"/\1_\2/' -e 1q`_`grep -i xemacs.*lucid.*beta ../lisp/version.el | sed -e 's/.*\(beta[0-9]*\).*/\1/' -e 1q`" > xemacs-version.h
|
120
|
1046
|
|
1047
|
0
|
1048 /* Some machines have alloca built-in.
|
|
1049 They should define HAVE_ALLOCA, or may just let alloca.s
|
|
1050 be used but generate no code.
|
|
1051 Some have it written in assembler in alloca.s.
|
|
1052 Some use the C version in alloca.c (these define C_ALLOCA in config.h).
|
|
1053 */
|
|
1054
|
|
1055 #ifdef C_ALLOCA
|
|
1056 /* We could put something in alloca.c to #define free and malloc
|
|
1057 whenever emacs was #defined, but that's not appropriate for all
|
|
1058 users of alloca in Emacs. Check out ../lib-src/getopt.c. */
|
|
1059 alloca.o : ${srcdir}/alloca.c
|
149
|
1060 $(CC) -c -Dfree=xfree -Dmalloc=xmalloc $(cflags) $<
|
0
|
1061 #else
|
|
1062 #ifndef HAVE_ALLOCA
|
|
1063 alloca.o : ${srcdir}/alloca.s config.h
|
|
1064 /* $(CPP) is cc -E, which may get confused by filenames
|
|
1065 that do not end in .c. So copy file to a safe name. */
|
|
1066 cp ${srcdir}/alloca.s allocatem.c
|
|
1067 /* Remove any ^L, blank lines, and preprocessor comments,
|
|
1068 since some assemblers barf on them. Use a different basename for the
|
18
|
1069 output file, since some stupid compilers (Green Hill) use that
|
0
|
1070 name for the intermediate assembler file. */
|
149
|
1071 $(CPP) $(cppflags) allocatem.c | \
|
0
|
1072 sed -e 's///' -e 's/^#.*//' | \
|
|
1073 sed -n -e '/^..*$$/p' > allocax.s
|
|
1074 -rm -f alloca.o
|
|
1075 /* Xenix, in particular, needs to run assembler via cc. */
|
|
1076 $(CC) -c allocax.s
|
|
1077 mv allocax.o alloca.o
|
|
1078 rm -f allocax.s allocatem.c
|
|
1079 #endif /* HAVE_ALLOCA */
|
|
1080 #endif /* ! defined (C_ALLOCA) */
|
|
1081
|
|
1082 #ifdef EMACS_BTL
|
149
|
1083 BTL_includes = -I$(BTL_dir)
|
|
1084 BTL_compile = -DEMACS_BTL -D`lucid-arch` -I. $(BTL_includes) $(BTL_dir)/$(@:.o=.c)
|
0
|
1085
|
|
1086 cadillac-btl.o cadillac-btl-process.o cadillac-btl-emacs.o:
|
149
|
1087 $(CC) $(CFLAGS) -c $(BTL_compile)
|
0
|
1088 cadillac-btl-asm.o:
|
149
|
1089 $(CC) $(CFLAGS) -c $(BTL_compile)
|
0
|
1090 #endif /* EMACS_BTL */
|
|
1091
|
|
1092 #ifdef ENERGIZE
|
|
1093 energize.o: ${srcdir}/energize.c
|
149
|
1094 $(CC) -c $(cppflags) $(cflags) $(BTL_includes) $<
|
0
|
1095 #endif /* ENERGIZE */
|
|
1096
|
|
1097 #ifdef HAVE_NATIVE_SOUND
|
|
1098 sunplay.o: ${srcdir}/sunplay.c
|
149
|
1099 $(CC) -c $(sound_cflags) $(cflags) $<
|
0
|
1100 hpplay.o: ${srcdir}/hpplay.c
|
149
|
1101 $(CC) -c -Demacs $(sound_cflags) $(cflags) $<
|
0
|
1102 #endif /* HAVE_NATIVE_SOUND */
|
|
1103
|
|
1104 /* System-specific programs to be made.
|
|
1105 OTHER_FILES, OBJECTS_SYSTEM and OBJECTS_MACHINE
|
|
1106 select which of these should be compiled. */
|
|
1107
|
|
1108 mostlyclean:
|
|
1109 rm -f temacs puremacs quantmacs prefix-args xmakefile* core depend.* \#* *.o
|
|
1110 rm -f ${libsrc}DOC
|
|
1111 clean: mostlyclean
|
|
1112 rm -f xemacs libextcli*
|
|
1113 /**/# This is used in making a distribution.
|
|
1114 /**/# Do not use it on development directories!
|
|
1115 distclean: clean versionclean
|
120
|
1116 rm -f config.h paths.h puresize_adjust.h Emacs.ad.h Makefile Makefile.in .pure version.h
|
0
|
1117 realclean: distclean
|
|
1118 rm -f TAGS
|
|
1119 versionclean:
|
70
|
1120 -rm -f xemacs ${libsrc}DOC
|
0
|
1121 extraclean: realclean
|
|
1122 -rm -f *~ \#* m/?*~ s/?*~
|
|
1123
|
|
1124 /* The rule for the [sm] files has to be written a little funny to
|
|
1125 avoid looking like a C comment to CPP. */
|
|
1126 SOURCES = *.[chm] *.pswm [sm]/?* COPYING paths.h.in Makefile.in.in \
|
120
|
1127 config.h.in README COPYING ChangeLog
|
0
|
1128 unlock:
|
|
1129 chmod u+w $(SOURCES)
|
|
1130
|
|
1131 relock:
|
|
1132 chmod -w $(SOURCES)
|
|
1133
|
|
1134 #ifdef __GNUC__
|
|
1135
|
|
1136 /*** Dependency processing using GCC ***/
|
|
1137
|
|
1138 .c.dep:
|
149
|
1139 $(CC) -MM $(cflags) $< > $*.dep
|
0
|
1140
|
|
1141 .SUFFIXES: .dep
|
|
1142
|
|
1143 obj_dep = $(objs:.o=.dep)
|
|
1144
|
|
1145 gnu-depend: $(obj_dep)
|
|
1146 /* #### Needs a bit of work: it doesn't see the object files that
|
18
|
1147 we are not compiling */
|
0
|
1148 cat $(obj_dep) | sh ${libsrc}process-gnu-depends.sh > depend.out
|
|
1149
|
|
1150 #endif /* GCC */
|
|
1151
|
|
1152 /*** Dependency processing using makedepend ***/
|
|
1153
|
|
1154 depend:
|
|
1155 : > depend.tmp
|
70
|
1156 makedepend -f depend.tmp -Dsubprocesses -DMOCKLISP_SUPPORT \
|
149
|
1157 -DHAVE_X_WINDOWS -DMULE -- $(cppflags) $(cflags) \
|
70
|
1158 -- *.c
|
0
|
1159 sh ${libsrc}process-depends.sh < depend.tmp > depend.out
|
70
|
1160 egrep '^mule|[^a-zA-Z]mule' depend.out > /tmp/depend1.$$
|
|
1161 grep -v '^mule' depend.out | grep -v '[^a-zA-Z]mule' > /tmp/depend2.$$
|
|
1162 echo '#ifdef MULE' > depend.out
|
|
1163 cat /tmp/depend1.$$ >> depend.out
|
|
1164 /* The things you have to do to pay homage to the lexer God ...
|
|
1165 truly frightening. */
|
|
1166 echo '#endif /''* MULE *''/' >> depend.out
|
|
1167 echo '' >> depend.out
|
|
1168 cat /tmp/depend2.$$ >> depend.out
|
|
1169 rm -f /tmp/depend1.$$ /tmp/depend2.$$
|
0
|
1170
|
|
1171 /* Manually-generated dependencies (makedepend misbehaves on these) */
|
|
1172
|
|
1173 /* (actually makedepend does OK on these but we want to conditionalize
|
|
1174 them) */
|
|
1175 #ifdef EXTERNAL_WIDGET
|
|
1176 ExternalClient-Xlib.o: extw-Xlib.h
|
|
1177 ExternalClient-Xm.o: config.h
|
|
1178 ExternalClient-Xm.o: xintrinsicp.h
|
|
1179 ExternalClient-Xm.o: ExternalClient.h
|
|
1180 ExternalClient-Xm.o: ExternalClientP.h
|
|
1181 ExternalClient-Xm.o: extw-Xlib.h
|
|
1182 ExternalClient-Xm.o: extw-Xt.h
|
|
1183 ExternalClient-Xt.o: config.h
|
|
1184 ExternalClient-Xt.o: xintrinsicp.h
|
|
1185 ExternalClient-Xt.o: ExternalClient.h
|
|
1186 ExternalClient-Xt.o: ExternalClientP.h
|
|
1187 ExternalClient-Xt.o: extw-Xlib.h
|
|
1188 ExternalClient-Xt.o: extw-Xt.h
|
|
1189 ExternalShell.o: ExternalShell.h
|
|
1190 ExternalShell.o: ExternalShellP.h
|
|
1191 ExternalShell.o: config.h
|
|
1192 ExternalShell.o: extw-Xlib.h
|
|
1193 ExternalShell.o: extw-Xt.h
|
|
1194 ExternalShell.o: xintrinsic.h
|
|
1195 ExternalShell.o: xintrinsicp.h
|
|
1196 extw-Xlib-shared.o: config.h
|
|
1197 extw-Xlib-shared.o: extw-Xlib.h
|
|
1198 extw-Xt-shared.o: config.h
|
|
1199 extw-Xt-shared.o: extw-Xlib.h
|
|
1200 extw-Xt-shared.o: extw-Xt.h
|
|
1201 extw-Xlib-nonshared.o: config.h
|
|
1202 extw-Xlib-nonshared.o: extw-Xlib.h
|
|
1203 extw-Xt-nonshared.o: config.h
|
|
1204 extw-Xt-nonshared.o: extw-Xlib.h
|
|
1205 extw-Xt-nonshared.o: extw-Xt.h
|
149
|
1206 #endif /* EXTERNAL_WIDGET */
|
0
|
1207
|
|
1208 #ifdef EMACS_BTL
|
149
|
1209 cadillac-btl.o: $(BTL_dir)/cadillac-btl.c
|
|
1210 cadillac-btl.o: $(BTL_dir)/cadillac-btl.h
|
|
1211 cadillac-btl.o: $(BTL_dir)/cadillac-btl-extern.h
|
|
1212 cadillac-btl-asm.o: $(BTL_dir)/cadillac-btl-asm.c
|
|
1213 cadillac-btl-asm.o: $(BTL_dir)/cadillac-btl.h
|
|
1214 cadillac-btl-asm.o: $(BTL_dir)/cadillac-btl-extern.h
|
|
1215 cadillac-btl-emacs.o: $(BTL_dir)/cadillac-btl-extern.h
|
|
1216 cadillac-btl-process.o: $(BTL_dir)/cadillac-btl-process.c
|
|
1217 cadillac-btl-process.o: $(BTL_dir)/cadillac-btl.h
|
|
1218 cadillac-btl-process.o: $(BTL_dir)/cadillac-btl-extern.h
|
0
|
1219 #endif /* EMACS_BTL */
|
|
1220
|
|
1221 /* (makedepend definitely misbehaves on these) */
|
|
1222 sgiplay.o: config.h
|
|
1223 sgiplay.o: libst.h
|
|
1224 unexconvex.o: getpagesize.h
|
|
1225 unexec.o: getpagesize.h
|
|
1226 unexaix.o: config.h
|
|
1227 unexalpha.o: config.h
|
|
1228 unexapollo.o: config.h
|
|
1229 unexconvex.o: config.h
|
|
1230 unexec.o: config.h
|
|
1231 unexelf.o: config.h
|
|
1232 unexenix.o: config.h
|
|
1233 unexfreebsd.o: config.h
|
|
1234 unexhp9k3.o: config.h
|
|
1235 unexhp9k800.o: config.h
|
|
1236 unexmips.o: config.h
|
|
1237 unexsunos4.o: config.h
|
|
1238
|
|
1239 /* Dependencies generated by 'make depend' */
|
|
1240
|
70
|
1241 #ifdef MULE
|
|
1242 EmacsFrame.o: mule-charset.h
|
|
1243 abbrev.o: mule-charset.h
|
|
1244 alloc.o: mule-charset.h
|
|
1245 buffer.o: mule-charset.h
|
|
1246 bytecode.o: mule-charset.h
|
|
1247 callint.o: mule-charset.h
|
|
1248 callproc.o: mule-charset.h
|
|
1249 callproc.o: mule-coding.h
|
|
1250 casefiddle.o: mule-charset.h
|
|
1251 casetab.o: mule-charset.h
|
|
1252 chartab.o: mule-charset.h
|
|
1253 cmdloop.o: mule-charset.h
|
|
1254 cmds.o: mule-charset.h
|
|
1255 console-tty.o: mule-charset.h
|
|
1256 console-tty.o: mule-coding.h
|
|
1257 console.o: mule-charset.h
|
|
1258 data.o: mule-charset.h
|
|
1259 device-tty.o: mule-charset.h
|
|
1260 device-x.o: mule-charset.h
|
|
1261 device.o: mule-charset.h
|
|
1262 dialog-x.o: mule-charset.h
|
|
1263 dired.o: mule-charset.h
|
|
1264 doc.o: mule-charset.h
|
|
1265 doprnt.o: mule-charset.h
|
|
1266 editfns.o: mule-charset.h
|
|
1267 emacs.o: mule-charset.h
|
|
1268 eval.o: mule-charset.h
|
|
1269 event-Xt.o: mule-charset.h
|
|
1270 event-stream.o: mule-charset.h
|
|
1271 event-stream.o: mule-coding.h
|
|
1272 events.o: mule-charset.h
|
|
1273 extents.o: mule-charset.h
|
|
1274 faces.o: mule-charset.h
|
|
1275 fileio.o: mule-charset.h
|
|
1276 fileio.o: mule-coding.h
|
|
1277 filelock.o: mule-charset.h
|
|
1278 fns.o: mule-charset.h
|
|
1279 font-lock.o: mule-charset.h
|
|
1280 frame-x.o: mule-charset.h
|
|
1281 frame.o: mule-charset.h
|
|
1282 glyphs-x.o: mule-charset.h
|
|
1283 glyphs.o: mule-charset.h
|
|
1284 gui-x.o: mule-charset.h
|
|
1285 indent.o: mule-charset.h
|
118
|
1286 inline.o: mule-charset.h
|
|
1287 inline.o: mule-coding.h
|
70
|
1288 input-method-xlib.o: mule-charset.h
|
|
1289 input-method-xlib.o: mule-coding.h
|
|
1290 insdel.o: mule-charset.h
|
|
1291 keymap.o: mule-charset.h
|
|
1292 lread.o: mule-charset.h
|
|
1293 lread.o: mule-coding.h
|
|
1294 lstream.o: mule-charset.h
|
|
1295 macros.o: mule-charset.h
|
|
1296 marker.o: mule-charset.h
|
|
1297 md5.o: mule-charset.h
|
|
1298 menubar-x.o: mule-charset.h
|
|
1299 minibuf.o: mule-charset.h
|
|
1300 mocklisp.o: mule-charset.h
|
149
|
1301 #ifdef HAVE_CANNA
|
70
|
1302 mule-canna.o: blocktype.h
|
|
1303 mule-canna.o: buffer.h
|
|
1304 mule-canna.o: bufslots.h
|
|
1305 mule-canna.o: config.h
|
|
1306 mule-canna.o: dynarr.h
|
|
1307 mule-canna.o: mule-charset.h
|
149
|
1308 #endif /* HAVE_CANNA */
|
70
|
1309 mule-ccl.o: blocktype.h
|
|
1310 mule-ccl.o: buffer.h
|
|
1311 mule-ccl.o: bufslots.h
|
|
1312 mule-ccl.o: config.h
|
|
1313 mule-ccl.o: dynarr.h
|
|
1314 mule-ccl.o: mule-charset.h
|
|
1315 mule-ccl.o: mule-coding.h
|
|
1316 mule-charset.o: blocktype.h
|
|
1317 mule-charset.o: buffer.h
|
|
1318 mule-charset.o: bufslots.h
|
|
1319 mule-charset.o: chartab.h
|
|
1320 mule-charset.o: config.h
|
|
1321 mule-charset.o: dynarr.h
|
|
1322 mule-charset.o: elhash.h
|
|
1323 mule-charset.o: lstream.h
|
|
1324 mule-charset.o: mule-charset.h
|
|
1325 mule-coding.o: blocktype.h
|
|
1326 mule-coding.o: buffer.h
|
|
1327 mule-coding.o: bufslots.h
|
|
1328 mule-coding.o: config.h
|
|
1329 mule-coding.o: dynarr.h
|
|
1330 mule-coding.o: elhash.h
|
|
1331 mule-coding.o: insdel.h
|
|
1332 mule-coding.o: lstream.h
|
|
1333 mule-coding.o: mule-charset.h
|
|
1334 mule-coding.o: mule-coding.h
|
149
|
1335 #if 0
|
70
|
1336 mule-mcpath.o: blocktype.h
|
|
1337 mule-mcpath.o: buffer.h
|
|
1338 mule-mcpath.o: bufslots.h
|
|
1339 mule-mcpath.o: config.h
|
|
1340 mule-mcpath.o: dynarr.h
|
|
1341 mule-mcpath.o: mule-charset.h
|
|
1342 mule-mcpath.o: sysfile.h
|
149
|
1343 #endif /* obsolete */
|
|
1344 #ifdef HAVE_WNN
|
70
|
1345 mule-wnnfns.o: blocktype.h
|
|
1346 mule-wnnfns.o: buffer.h
|
|
1347 mule-wnnfns.o: bufslots.h
|
|
1348 mule-wnnfns.o: config.h
|
|
1349 mule-wnnfns.o: dynarr.h
|
|
1350 mule-wnnfns.o: mule-charset.h
|
|
1351 mule-wnnfns.o: redisplay.h
|
|
1352 mule-wnnfns.o: scrollbar.h
|
|
1353 mule-wnnfns.o: window.h
|
149
|
1354 #endif /* HAVE_WNN */
|
70
|
1355 mule.o: blocktype.h
|
|
1356 mule.o: config.h
|
|
1357 mule.o: dynarr.h
|
|
1358 mule.o: regex.h
|
|
1359 objects-tty.o: mule-charset.h
|
|
1360 objects-x.o: mule-charset.h
|
|
1361 objects.o: mule-charset.h
|
|
1362 print.o: mule-charset.h
|
|
1363 process.o: mule-charset.h
|
|
1364 process.o: mule-coding.h
|
|
1365 redisplay-output.o: mule-charset.h
|
|
1366 redisplay-tty.o: mule-charset.h
|
|
1367 redisplay-x.o: mule-charset.h
|
|
1368 redisplay-x.o: mule-coding.h
|
|
1369 redisplay.o: mule-charset.h
|
|
1370 redisplay.o: mule-coding.h
|
|
1371 regex.o: mule-charset.h
|
|
1372 scrollbar.o: mule-charset.h
|
|
1373 search.o: mule-charset.h
|
|
1374 sound.o: mule-charset.h
|
|
1375 specifier.o: mule-charset.h
|
|
1376 symbols.o: mule-charset.h
|
|
1377 syntax.o: mule-charset.h
|
|
1378 sysdep.o: mule-charset.h
|
|
1379 toolbar-x.o: mule-charset.h
|
|
1380 toolbar.o: mule-charset.h
|
|
1381 tooltalk.o: mule-charset.h
|
|
1382 undo.o: mule-charset.h
|
|
1383 window.o: mule-charset.h
|
|
1384 xselect.o: mule-charset.h
|
|
1385 #endif /* MULE */
|
0
|
1386
|
149
|
1387 EmacsFrame.o: $(LWLIB_SRCDIR)/lwlib.h
|
0
|
1388 EmacsFrame.o: EmacsFrame.h
|
|
1389 EmacsFrame.o: EmacsFrameP.h
|
|
1390 EmacsFrame.o: EmacsManager.h
|
|
1391 EmacsFrame.o: blocktype.h
|
|
1392 EmacsFrame.o: buffer.h
|
|
1393 EmacsFrame.o: bufslots.h
|
|
1394 EmacsFrame.o: config.h
|
|
1395 EmacsFrame.o: conslots.h
|
|
1396 EmacsFrame.o: console-x.h
|
|
1397 EmacsFrame.o: console.h
|
|
1398 EmacsFrame.o: device.h
|
|
1399 EmacsFrame.o: dynarr.h
|
|
1400 EmacsFrame.o: faces.h
|
|
1401 EmacsFrame.o: frame.h
|
|
1402 EmacsFrame.o: frameslots.h
|
|
1403 EmacsFrame.o: glyphs-x.h
|
|
1404 EmacsFrame.o: glyphs.h
|
|
1405 EmacsFrame.o: objects-x.h
|
|
1406 EmacsFrame.o: objects.h
|
|
1407 EmacsFrame.o: redisplay.h
|
|
1408 EmacsFrame.o: scrollbar.h
|
|
1409 EmacsFrame.o: specifier.h
|
|
1410 EmacsFrame.o: toolbar.h
|
|
1411 EmacsFrame.o: window.h
|
|
1412 EmacsFrame.o: xintrinsic.h
|
|
1413 EmacsFrame.o: xintrinsicp.h
|
|
1414 EmacsFrame.o: xmprimitivep.h
|
|
1415 EmacsFrame.o: xmu.h
|
|
1416 EmacsManager.o: EmacsManager.h
|
|
1417 EmacsManager.o: EmacsManagerP.h
|
|
1418 EmacsManager.o: config.h
|
|
1419 EmacsManager.o: xintrinsicp.h
|
|
1420 EmacsManager.o: xmmanagerp.h
|
|
1421 EmacsShell-sub.o: EmacsShell.h
|
|
1422 EmacsShell-sub.o: EmacsShellP.h
|
|
1423 EmacsShell-sub.o: config.h
|
|
1424 EmacsShell-sub.o: xintrinsic.h
|
|
1425 EmacsShell-sub.o: xintrinsicp.h
|
|
1426 EmacsShell.o: EmacsShell.h
|
|
1427 EmacsShell.o: config.h
|
|
1428 EmacsShell.o: xintrinsicp.h
|
|
1429 abbrev.o: blocktype.h
|
|
1430 abbrev.o: buffer.h
|
|
1431 abbrev.o: bufslots.h
|
70
|
1432 abbrev.o: chartab.h
|
0
|
1433 abbrev.o: commands.h
|
|
1434 abbrev.o: config.h
|
|
1435 abbrev.o: dynarr.h
|
|
1436 abbrev.o: insdel.h
|
|
1437 abbrev.o: redisplay.h
|
|
1438 abbrev.o: scrollbar.h
|
|
1439 abbrev.o: syntax.h
|
|
1440 abbrev.o: window.h
|
|
1441 alloc.o: backtrace.h
|
|
1442 alloc.o: blocktype.h
|
|
1443 alloc.o: buffer.h
|
|
1444 alloc.o: bufslots.h
|
|
1445 alloc.o: bytecode.h
|
70
|
1446 alloc.o: chartab.h
|
0
|
1447 alloc.o: config.h
|
|
1448 alloc.o: conslots.h
|
|
1449 alloc.o: console.h
|
|
1450 alloc.o: device.h
|
|
1451 alloc.o: dynarr.h
|
|
1452 alloc.o: elhash.h
|
|
1453 alloc.o: events.h
|
|
1454 alloc.o: extents.h
|
|
1455 alloc.o: frame.h
|
|
1456 alloc.o: frameslots.h
|
|
1457 alloc.o: glyphs.h
|
104
|
1458 alloc.o: puresize.h puresize_adjust.h
|
0
|
1459 alloc.o: redisplay.h
|
|
1460 alloc.o: scrollbar.h
|
|
1461 alloc.o: specifier.h
|
|
1462 alloc.o: systime.h
|
|
1463 alloc.o: toolbar.h
|
|
1464 alloc.o: window.h
|
|
1465 alloca.o: config.h
|
|
1466 blocktype.o: blocktype.h
|
|
1467 blocktype.o: config.h
|
|
1468 blocktype.o: dynarr.h
|
|
1469 buffer.o: blocktype.h
|
|
1470 buffer.o: buffer.h
|
|
1471 buffer.o: bufslots.h
|
70
|
1472 buffer.o: chartab.h
|
0
|
1473 buffer.o: commands.h
|
|
1474 buffer.o: config.h
|
|
1475 buffer.o: conslots.h
|
|
1476 buffer.o: console.h
|
|
1477 buffer.o: device.h
|
|
1478 buffer.o: dynarr.h
|
|
1479 buffer.o: elhash.h
|
|
1480 buffer.o: extents.h
|
|
1481 buffer.o: faces.h
|
|
1482 buffer.o: frame.h
|
|
1483 buffer.o: frameslots.h
|
|
1484 buffer.o: insdel.h
|
|
1485 buffer.o: process.h
|
|
1486 buffer.o: redisplay.h
|
|
1487 buffer.o: scrollbar.h
|
|
1488 buffer.o: specifier.h
|
|
1489 buffer.o: syntax.h
|
|
1490 buffer.o: sysdep.h
|
|
1491 buffer.o: sysfile.h
|
|
1492 buffer.o: toolbar.h
|
|
1493 buffer.o: window.h
|
|
1494 bytecode.o: blocktype.h
|
|
1495 bytecode.o: buffer.h
|
|
1496 bytecode.o: bufslots.h
|
70
|
1497 bytecode.o: chartab.h
|
0
|
1498 bytecode.o: config.h
|
|
1499 bytecode.o: dynarr.h
|
|
1500 bytecode.o: syntax.h
|
|
1501 callint.o: blocktype.h
|
|
1502 callint.o: buffer.h
|
|
1503 callint.o: bufslots.h
|
|
1504 callint.o: bytecode.h
|
|
1505 callint.o: commands.h
|
|
1506 callint.o: config.h
|
|
1507 callint.o: dynarr.h
|
|
1508 callint.o: events.h
|
|
1509 callint.o: insdel.h
|
|
1510 callint.o: redisplay.h
|
|
1511 callint.o: scrollbar.h
|
|
1512 callint.o: systime.h
|
|
1513 callint.o: window.h
|
|
1514 callproc.o: blocktype.h
|
|
1515 callproc.o: buffer.h
|
|
1516 callproc.o: bufslots.h
|
|
1517 callproc.o: commands.h
|
|
1518 callproc.o: config.h
|
|
1519 callproc.o: dynarr.h
|
|
1520 callproc.o: insdel.h
|
|
1521 callproc.o: lstream.h
|
|
1522 callproc.o: paths.h
|
|
1523 callproc.o: process.h
|
|
1524 callproc.o: redisplay.h
|
|
1525 callproc.o: scrollbar.h
|
|
1526 callproc.o: sysdep.h
|
|
1527 callproc.o: sysfile.h
|
|
1528 callproc.o: sysproc.h
|
|
1529 callproc.o: systime.h
|
|
1530 callproc.o: systty.h
|
|
1531 callproc.o: window.h
|
|
1532 casefiddle.o: blocktype.h
|
|
1533 casefiddle.o: buffer.h
|
|
1534 casefiddle.o: bufslots.h
|
70
|
1535 casefiddle.o: chartab.h
|
0
|
1536 casefiddle.o: commands.h
|
|
1537 casefiddle.o: config.h
|
|
1538 casefiddle.o: dynarr.h
|
|
1539 casefiddle.o: insdel.h
|
|
1540 casefiddle.o: syntax.h
|
|
1541 casetab.o: blocktype.h
|
|
1542 casetab.o: buffer.h
|
|
1543 casetab.o: bufslots.h
|
|
1544 casetab.o: config.h
|
|
1545 casetab.o: dynarr.h
|
|
1546 casetab.o: opaque.h
|
70
|
1547 chartab.o: blocktype.h
|
|
1548 chartab.o: buffer.h
|
|
1549 chartab.o: bufslots.h
|
|
1550 chartab.o: chartab.h
|
|
1551 chartab.o: commands.h
|
|
1552 chartab.o: config.h
|
|
1553 chartab.o: dynarr.h
|
|
1554 chartab.o: syntax.h
|
0
|
1555 cm.o: blocktype.h
|
|
1556 cm.o: config.h
|
|
1557 cm.o: conslots.h
|
|
1558 cm.o: console-tty.h
|
|
1559 cm.o: console.h
|
|
1560 cm.o: device.h
|
|
1561 cm.o: dynarr.h
|
|
1562 cm.o: frame.h
|
|
1563 cm.o: frameslots.h
|
|
1564 cm.o: lstream.h
|
|
1565 cm.o: redisplay.h
|
|
1566 cm.o: scrollbar.h
|
|
1567 cm.o: specifier.h
|
|
1568 cm.o: systty.h
|
|
1569 cm.o: toolbar.h
|
|
1570 cmdloop.o: blocktype.h
|
|
1571 cmdloop.o: buffer.h
|
|
1572 cmdloop.o: bufslots.h
|
|
1573 cmdloop.o: commands.h
|
|
1574 cmdloop.o: config.h
|
|
1575 cmdloop.o: conslots.h
|
|
1576 cmdloop.o: console.h
|
|
1577 cmdloop.o: device.h
|
|
1578 cmdloop.o: dynarr.h
|
|
1579 cmdloop.o: events.h
|
|
1580 cmdloop.o: frame.h
|
|
1581 cmdloop.o: frameslots.h
|
|
1582 cmdloop.o: macros.h
|
|
1583 cmdloop.o: redisplay.h
|
|
1584 cmdloop.o: scrollbar.h
|
|
1585 cmdloop.o: specifier.h
|
|
1586 cmdloop.o: systime.h
|
|
1587 cmdloop.o: toolbar.h
|
|
1588 cmdloop.o: window.h
|
|
1589 cmds.o: blocktype.h
|
|
1590 cmds.o: buffer.h
|
|
1591 cmds.o: bufslots.h
|
70
|
1592 cmds.o: chartab.h
|
0
|
1593 cmds.o: commands.h
|
|
1594 cmds.o: config.h
|
|
1595 cmds.o: dynarr.h
|
|
1596 cmds.o: insdel.h
|
|
1597 cmds.o: syntax.h
|
|
1598 console-stream.o: blocktype.h
|
|
1599 console-stream.o: config.h
|
|
1600 console-stream.o: conslots.h
|
|
1601 console-stream.o: console-stream.h
|
|
1602 console-stream.o: console-tty.h
|
|
1603 console-stream.o: console.h
|
|
1604 console-stream.o: device.h
|
|
1605 console-stream.o: dynarr.h
|
|
1606 console-stream.o: events.h
|
|
1607 console-stream.o: frame.h
|
|
1608 console-stream.o: frameslots.h
|
|
1609 console-stream.o: redisplay.h
|
|
1610 console-stream.o: scrollbar.h
|
|
1611 console-stream.o: specifier.h
|
|
1612 console-stream.o: sysdep.h
|
|
1613 console-stream.o: systime.h
|
|
1614 console-stream.o: systty.h
|
|
1615 console-stream.o: toolbar.h
|
|
1616 console-stream.o: window.h
|
|
1617 console-tty.o: blocktype.h
|
|
1618 console-tty.o: buffer.h
|
|
1619 console-tty.o: bufslots.h
|
|
1620 console-tty.o: config.h
|
|
1621 console-tty.o: conslots.h
|
|
1622 console-tty.o: console-stream.h
|
|
1623 console-tty.o: console-tty.h
|
|
1624 console-tty.o: console.h
|
|
1625 console-tty.o: device.h
|
|
1626 console-tty.o: dynarr.h
|
|
1627 console-tty.o: events.h
|
|
1628 console-tty.o: faces.h
|
|
1629 console-tty.o: frame.h
|
|
1630 console-tty.o: frameslots.h
|
|
1631 console-tty.o: lstream.h
|
|
1632 console-tty.o: redisplay.h
|
|
1633 console-tty.o: scrollbar.h
|
|
1634 console-tty.o: specifier.h
|
|
1635 console-tty.o: sysdep.h
|
|
1636 console-tty.o: systime.h
|
|
1637 console-tty.o: systty.h
|
|
1638 console-tty.o: toolbar.h
|
|
1639 console-x.o: blocktype.h
|
|
1640 console-x.o: config.h
|
|
1641 console-x.o: conslots.h
|
|
1642 console-x.o: console-x.h
|
|
1643 console-x.o: console.h
|
|
1644 console-x.o: dynarr.h
|
|
1645 console-x.o: process.h
|
|
1646 console-x.o: redisplay.h
|
|
1647 console-x.o: xintrinsic.h
|
|
1648 console.o: blocktype.h
|
|
1649 console.o: buffer.h
|
|
1650 console.o: bufslots.h
|
|
1651 console.o: config.h
|
|
1652 console.o: conslots.h
|
|
1653 console.o: console-tty.h
|
|
1654 console.o: console.h
|
|
1655 console.o: device.h
|
|
1656 console.o: dynarr.h
|
|
1657 console.o: events.h
|
|
1658 console.o: frame.h
|
|
1659 console.o: frameslots.h
|
|
1660 console.o: redisplay.h
|
|
1661 console.o: scrollbar.h
|
|
1662 console.o: specifier.h
|
|
1663 console.o: sysdep.h
|
|
1664 console.o: systime.h
|
|
1665 console.o: systty.h
|
|
1666 console.o: toolbar.h
|
|
1667 console.o: window.h
|
|
1668 data.o: blocktype.h
|
|
1669 data.o: buffer.h
|
|
1670 data.o: bufslots.h
|
|
1671 data.o: bytecode.h
|
|
1672 data.o: config.h
|
|
1673 data.o: dynarr.h
|
|
1674 data.o: sysfloat.h
|
149
|
1675 #ifdef HAVE_DATABASE
|
0
|
1676 database.o: blocktype.h
|
|
1677 database.o: config.h
|
|
1678 database.o: database.h
|
|
1679 database.o: dynarr.h
|
149
|
1680 #endif /* HAVE_DATABASE */
|
0
|
1681 debug.o: blocktype.h
|
|
1682 debug.o: bytecode.h
|
|
1683 debug.o: config.h
|
|
1684 debug.o: debug.h
|
|
1685 debug.o: dynarr.h
|
|
1686 device-tty.o: blocktype.h
|
|
1687 device-tty.o: buffer.h
|
|
1688 device-tty.o: bufslots.h
|
|
1689 device-tty.o: config.h
|
|
1690 device-tty.o: conslots.h
|
|
1691 device-tty.o: console-stream.h
|
|
1692 device-tty.o: console-tty.h
|
|
1693 device-tty.o: console.h
|
|
1694 device-tty.o: device.h
|
|
1695 device-tty.o: dynarr.h
|
|
1696 device-tty.o: events.h
|
|
1697 device-tty.o: faces.h
|
|
1698 device-tty.o: frame.h
|
|
1699 device-tty.o: frameslots.h
|
|
1700 device-tty.o: lstream.h
|
|
1701 device-tty.o: redisplay.h
|
|
1702 device-tty.o: scrollbar.h
|
|
1703 device-tty.o: specifier.h
|
|
1704 device-tty.o: sysdep.h
|
|
1705 device-tty.o: systime.h
|
|
1706 device-tty.o: systty.h
|
|
1707 device-tty.o: toolbar.h
|
149
|
1708 device-x.o: $(LWLIB_SRCDIR)/lwlib.h
|
0
|
1709 device-x.o: blocktype.h
|
|
1710 device-x.o: buffer.h
|
|
1711 device-x.o: bufslots.h
|
|
1712 device-x.o: config.h
|
|
1713 device-x.o: conslots.h
|
|
1714 device-x.o: console-x.h
|
|
1715 device-x.o: console.h
|
|
1716 device-x.o: device.h
|
|
1717 device-x.o: dynarr.h
|
|
1718 device-x.o: events.h
|
|
1719 device-x.o: faces.h
|
|
1720 device-x.o: frame.h
|
|
1721 device-x.o: frameslots.h
|
|
1722 device-x.o: glyphs-x.h
|
|
1723 device-x.o: glyphs.h
|
|
1724 device-x.o: objects-x.h
|
|
1725 device-x.o: objects.h
|
|
1726 device-x.o: redisplay.h
|
|
1727 device-x.o: scrollbar.h
|
|
1728 device-x.o: specifier.h
|
|
1729 device-x.o: sysdep.h
|
|
1730 device-x.o: sysfile.h
|
|
1731 device-x.o: systime.h
|
|
1732 device-x.o: toolbar.h
|
|
1733 device-x.o: window.h
|
|
1734 device-x.o: xgccache.h
|
|
1735 device-x.o: xintrinsic.h
|
|
1736 device-x.o: xintrinsicp.h
|
|
1737 device-x.o: xmu.h
|
|
1738 device.o: blocktype.h
|
|
1739 device.o: buffer.h
|
|
1740 device.o: bufslots.h
|
|
1741 device.o: config.h
|
|
1742 device.o: conslots.h
|
|
1743 device.o: console.h
|
|
1744 device.o: device.h
|
|
1745 device.o: dynarr.h
|
|
1746 device.o: elhash.h
|
|
1747 device.o: events.h
|
|
1748 device.o: faces.h
|
|
1749 device.o: frame.h
|
|
1750 device.o: frameslots.h
|
|
1751 device.o: keymap.h
|
|
1752 device.o: redisplay.h
|
|
1753 device.o: scrollbar.h
|
|
1754 device.o: specifier.h
|
|
1755 device.o: sysdep.h
|
|
1756 device.o: systime.h
|
|
1757 device.o: toolbar.h
|
|
1758 device.o: window.h
|
|
1759 dgif_lib.o: config.h
|
|
1760 dgif_lib.o: gif_lib.h
|
149
|
1761 dialog-x.o: $(LWLIB_SRCDIR)/lwlib.h
|
0
|
1762 dialog-x.o: EmacsFrame.h
|
|
1763 dialog-x.o: EmacsManager.h
|
|
1764 dialog-x.o: EmacsShell.h
|
|
1765 dialog-x.o: blocktype.h
|
|
1766 dialog-x.o: buffer.h
|
|
1767 dialog-x.o: bufslots.h
|
|
1768 dialog-x.o: commands.h
|
|
1769 dialog-x.o: config.h
|
|
1770 dialog-x.o: conslots.h
|
|
1771 dialog-x.o: console-x.h
|
|
1772 dialog-x.o: console.h
|
|
1773 dialog-x.o: device.h
|
|
1774 dialog-x.o: dynarr.h
|
|
1775 dialog-x.o: events.h
|
|
1776 dialog-x.o: frame.h
|
|
1777 dialog-x.o: frameslots.h
|
|
1778 dialog-x.o: gui-x.h
|
|
1779 dialog-x.o: opaque.h
|
|
1780 dialog-x.o: redisplay.h
|
|
1781 dialog-x.o: scrollbar.h
|
|
1782 dialog-x.o: specifier.h
|
|
1783 dialog-x.o: systime.h
|
|
1784 dialog-x.o: toolbar.h
|
|
1785 dialog-x.o: window.h
|
|
1786 dialog-x.o: xintrinsic.h
|
|
1787 dialog.o: blocktype.h
|
|
1788 dialog.o: config.h
|
|
1789 dialog.o: dynarr.h
|
|
1790 dired.o: blocktype.h
|
|
1791 dired.o: buffer.h
|
|
1792 dired.o: bufslots.h
|
|
1793 dired.o: commands.h
|
|
1794 dired.o: config.h
|
|
1795 dired.o: dynarr.h
|
|
1796 dired.o: elhash.h
|
|
1797 dired.o: regex.h
|
|
1798 dired.o: sysdir.h
|
|
1799 dired.o: sysfile.h
|
|
1800 doc.o: blocktype.h
|
|
1801 doc.o: buffer.h
|
|
1802 doc.o: bufslots.h
|
|
1803 doc.o: bytecode.h
|
|
1804 doc.o: config.h
|
|
1805 doc.o: dynarr.h
|
|
1806 doc.o: insdel.h
|
|
1807 doc.o: keymap.h
|
|
1808 doc.o: sysfile.h
|
|
1809 doprnt.o: blocktype.h
|
|
1810 doprnt.o: buffer.h
|
|
1811 doprnt.o: bufslots.h
|
|
1812 doprnt.o: config.h
|
|
1813 doprnt.o: dynarr.h
|
|
1814 doprnt.o: lstream.h
|
|
1815 dynarr.o: blocktype.h
|
|
1816 dynarr.o: config.h
|
|
1817 dynarr.o: dynarr.h
|
|
1818 ecrt0.o: config.h
|
|
1819 editfns.o: blocktype.h
|
|
1820 editfns.o: buffer.h
|
|
1821 editfns.o: bufslots.h
|
|
1822 editfns.o: commands.h
|
|
1823 editfns.o: config.h
|
|
1824 editfns.o: conslots.h
|
|
1825 editfns.o: console.h
|
|
1826 editfns.o: device.h
|
|
1827 editfns.o: dynarr.h
|
|
1828 editfns.o: events.h
|
|
1829 editfns.o: extents.h
|
|
1830 editfns.o: frame.h
|
|
1831 editfns.o: frameslots.h
|
|
1832 editfns.o: insdel.h
|
|
1833 editfns.o: redisplay.h
|
|
1834 editfns.o: scrollbar.h
|
|
1835 editfns.o: specifier.h
|
|
1836 editfns.o: sysdep.h
|
|
1837 editfns.o: syspwd.h
|
|
1838 editfns.o: systime.h
|
|
1839 editfns.o: toolbar.h
|
|
1840 editfns.o: window.h
|
|
1841 elhash.o: blocktype.h
|
|
1842 elhash.o: bytecode.h
|
|
1843 elhash.o: config.h
|
|
1844 elhash.o: dynarr.h
|
|
1845 elhash.o: elhash.h
|
|
1846 elhash.o: hash.h
|
|
1847 emacs.o: backtrace.h
|
|
1848 emacs.o: blocktype.h
|
|
1849 emacs.o: buffer.h
|
|
1850 emacs.o: bufslots.h
|
|
1851 emacs.o: commands.h
|
|
1852 emacs.o: config.h
|
|
1853 emacs.o: conslots.h
|
|
1854 emacs.o: console.h
|
|
1855 emacs.o: dynarr.h
|
|
1856 emacs.o: process.h
|
|
1857 emacs.o: sysdep.h
|
|
1858 emacs.o: sysfile.h
|
|
1859 emacs.o: systime.h
|
|
1860 emacs.o: systty.h
|
120
|
1861 emacs.o: xemacs-version.h
|
0
|
1862 energize.o: config.h
|
|
1863 eval.o: backtrace.h
|
|
1864 eval.o: blocktype.h
|
|
1865 eval.o: buffer.h
|
|
1866 eval.o: bufslots.h
|
|
1867 eval.o: bytecode.h
|
|
1868 eval.o: commands.h
|
|
1869 eval.o: config.h
|
|
1870 eval.o: conslots.h
|
|
1871 eval.o: console.h
|
|
1872 eval.o: dynarr.h
|
|
1873 eval.o: opaque.h
|
149
|
1874 event-Xt.o: $(LWLIB_SRCDIR)/lwlib.h
|
0
|
1875 event-Xt.o: Emacs.ad.h
|
|
1876 event-Xt.o: EmacsFrame.h
|
|
1877 event-Xt.o: blocktype.h
|
|
1878 event-Xt.o: buffer.h
|
|
1879 event-Xt.o: bufslots.h
|
|
1880 event-Xt.o: commands.h
|
|
1881 event-Xt.o: config.h
|
|
1882 event-Xt.o: conslots.h
|
|
1883 event-Xt.o: console-tty.h
|
|
1884 event-Xt.o: console-x.h
|
|
1885 event-Xt.o: console.h
|
|
1886 event-Xt.o: device.h
|
|
1887 event-Xt.o: dynarr.h
|
|
1888 event-Xt.o: events.h
|
|
1889 event-Xt.o: frame.h
|
|
1890 event-Xt.o: frameslots.h
|
|
1891 event-Xt.o: objects-x.h
|
|
1892 event-Xt.o: objects.h
|
|
1893 event-Xt.o: paths.h
|
|
1894 event-Xt.o: process.h
|
|
1895 event-Xt.o: redisplay.h
|
|
1896 event-Xt.o: scrollbar.h
|
|
1897 event-Xt.o: specifier.h
|
|
1898 event-Xt.o: sysproc.h
|
|
1899 event-Xt.o: systime.h
|
|
1900 event-Xt.o: systty.h
|
|
1901 event-Xt.o: toolbar.h
|
|
1902 event-Xt.o: xintrinsic.h
|
|
1903 event-Xt.o: xintrinsicp.h
|
|
1904 event-stream.o: blocktype.h
|
|
1905 event-stream.o: buffer.h
|
|
1906 event-stream.o: bufslots.h
|
|
1907 event-stream.o: commands.h
|
|
1908 event-stream.o: config.h
|
|
1909 event-stream.o: conslots.h
|
|
1910 event-stream.o: console.h
|
|
1911 event-stream.o: device.h
|
|
1912 event-stream.o: dynarr.h
|
|
1913 event-stream.o: elhash.h
|
|
1914 event-stream.o: events.h
|
|
1915 event-stream.o: frame.h
|
|
1916 event-stream.o: frameslots.h
|
|
1917 event-stream.o: insdel.h
|
|
1918 event-stream.o: keymap.h
|
|
1919 event-stream.o: lstream.h
|
|
1920 event-stream.o: macros.h
|
|
1921 event-stream.o: opaque.h
|
|
1922 event-stream.o: process.h
|
|
1923 event-stream.o: redisplay.h
|
|
1924 event-stream.o: scrollbar.h
|
|
1925 event-stream.o: specifier.h
|
|
1926 event-stream.o: sysdep.h
|
|
1927 event-stream.o: systime.h
|
|
1928 event-stream.o: toolbar.h
|
|
1929 event-stream.o: window.h
|
|
1930 event-tty.o: blocktype.h
|
|
1931 event-tty.o: config.h
|
|
1932 event-tty.o: conslots.h
|
|
1933 event-tty.o: console-tty.h
|
|
1934 event-tty.o: console.h
|
|
1935 event-tty.o: device.h
|
|
1936 event-tty.o: dynarr.h
|
|
1937 event-tty.o: events.h
|
|
1938 event-tty.o: frame.h
|
|
1939 event-tty.o: frameslots.h
|
|
1940 event-tty.o: paths.h
|
|
1941 event-tty.o: process.h
|
|
1942 event-tty.o: scrollbar.h
|
|
1943 event-tty.o: specifier.h
|
|
1944 event-tty.o: sysproc.h
|
|
1945 event-tty.o: systime.h
|
|
1946 event-tty.o: systty.h
|
|
1947 event-tty.o: syswait.h
|
|
1948 event-tty.o: toolbar.h
|
|
1949 event-unixoid.o: blocktype.h
|
|
1950 event-unixoid.o: config.h
|
|
1951 event-unixoid.o: conslots.h
|
|
1952 event-unixoid.o: console-stream.h
|
|
1953 event-unixoid.o: console-tty.h
|
|
1954 event-unixoid.o: console.h
|
|
1955 event-unixoid.o: device.h
|
|
1956 event-unixoid.o: dynarr.h
|
|
1957 event-unixoid.o: events.h
|
|
1958 event-unixoid.o: paths.h
|
|
1959 event-unixoid.o: process.h
|
|
1960 event-unixoid.o: sysdep.h
|
|
1961 event-unixoid.o: sysproc.h
|
|
1962 event-unixoid.o: systime.h
|
|
1963 event-unixoid.o: systty.h
|
|
1964 events.o: blocktype.h
|
|
1965 events.o: buffer.h
|
|
1966 events.o: bufslots.h
|
|
1967 events.o: config.h
|
|
1968 events.o: conslots.h
|
|
1969 events.o: console-tty.h
|
|
1970 events.o: console-x.h
|
|
1971 events.o: console.h
|
|
1972 events.o: device.h
|
|
1973 events.o: dynarr.h
|
|
1974 events.o: events.h
|
|
1975 events.o: extents.h
|
|
1976 events.o: frame.h
|
|
1977 events.o: frameslots.h
|
|
1978 events.o: glyphs.h
|
|
1979 events.o: keymap.h
|
|
1980 events.o: redisplay.h
|
|
1981 events.o: scrollbar.h
|
|
1982 events.o: specifier.h
|
|
1983 events.o: systime.h
|
|
1984 events.o: systty.h
|
|
1985 events.o: toolbar.h
|
|
1986 events.o: window.h
|
|
1987 events.o: xintrinsic.h
|
|
1988 extents.o: blocktype.h
|
|
1989 extents.o: buffer.h
|
|
1990 extents.o: bufslots.h
|
|
1991 extents.o: config.h
|
|
1992 extents.o: conslots.h
|
|
1993 extents.o: console.h
|
|
1994 extents.o: debug.h
|
|
1995 extents.o: device.h
|
|
1996 extents.o: dynarr.h
|
|
1997 extents.o: elhash.h
|
|
1998 extents.o: extents.h
|
|
1999 extents.o: faces.h
|
|
2000 extents.o: frame.h
|
|
2001 extents.o: frameslots.h
|
|
2002 extents.o: glyphs.h
|
|
2003 extents.o: hash.h
|
|
2004 extents.o: insdel.h
|
|
2005 extents.o: opaque.h
|
|
2006 extents.o: process.h
|
|
2007 extents.o: redisplay.h
|
|
2008 extents.o: scrollbar.h
|
|
2009 extents.o: specifier.h
|
|
2010 extents.o: toolbar.h
|
|
2011 faces.o: EmacsFrame.h
|
|
2012 faces.o: blocktype.h
|
|
2013 faces.o: buffer.h
|
|
2014 faces.o: bufslots.h
|
|
2015 faces.o: config.h
|
|
2016 faces.o: conslots.h
|
|
2017 faces.o: console-x.h
|
|
2018 faces.o: console.h
|
|
2019 faces.o: device.h
|
|
2020 faces.o: dynarr.h
|
|
2021 faces.o: elhash.h
|
|
2022 faces.o: extents.h
|
|
2023 faces.o: faces.h
|
|
2024 faces.o: frame.h
|
|
2025 faces.o: frameslots.h
|
|
2026 faces.o: glyphs.h
|
|
2027 faces.o: hash.h
|
|
2028 faces.o: objects-x.h
|
|
2029 faces.o: objects.h
|
|
2030 faces.o: redisplay.h
|
|
2031 faces.o: scrollbar.h
|
|
2032 faces.o: specifier.h
|
|
2033 faces.o: toolbar.h
|
|
2034 faces.o: window.h
|
|
2035 faces.o: xintrinsic.h
|
|
2036 fileio.o: blocktype.h
|
|
2037 fileio.o: buffer.h
|
|
2038 fileio.o: bufslots.h
|
|
2039 fileio.o: config.h
|
|
2040 fileio.o: conslots.h
|
|
2041 fileio.o: console.h
|
|
2042 fileio.o: device.h
|
|
2043 fileio.o: dynarr.h
|
|
2044 fileio.o: events.h
|
|
2045 fileio.o: frame.h
|
|
2046 fileio.o: frameslots.h
|
|
2047 fileio.o: insdel.h
|
|
2048 fileio.o: lstream.h
|
|
2049 fileio.o: paths.h
|
|
2050 fileio.o: redisplay.h
|
|
2051 fileio.o: scrollbar.h
|
|
2052 fileio.o: specifier.h
|
|
2053 fileio.o: sysdep.h
|
|
2054 fileio.o: sysdir.h
|
|
2055 fileio.o: sysfile.h
|
|
2056 fileio.o: sysproc.h
|
|
2057 fileio.o: syspwd.h
|
|
2058 fileio.o: systime.h
|
|
2059 fileio.o: toolbar.h
|
|
2060 fileio.o: window.h
|
|
2061 filelock.o: blocktype.h
|
|
2062 filelock.o: buffer.h
|
|
2063 filelock.o: bufslots.h
|
|
2064 filelock.o: config.h
|
|
2065 filelock.o: dynarr.h
|
|
2066 filelock.o: paths.h
|
|
2067 filelock.o: sysdir.h
|
|
2068 filelock.o: sysfile.h
|
|
2069 filelock.o: syspwd.h
|
|
2070 filemode.o: blocktype.h
|
|
2071 filemode.o: config.h
|
|
2072 filemode.o: dynarr.h
|
|
2073 filemode.o: sysfile.h
|
|
2074 floatfns.o: blocktype.h
|
|
2075 floatfns.o: config.h
|
|
2076 floatfns.o: dynarr.h
|
|
2077 floatfns.o: sysfloat.h
|
|
2078 fns.o: blocktype.h
|
|
2079 fns.o: buffer.h
|
|
2080 fns.o: bufslots.h
|
|
2081 fns.o: bytecode.h
|
|
2082 fns.o: commands.h
|
|
2083 fns.o: config.h
|
|
2084 fns.o: conslots.h
|
|
2085 fns.o: console.h
|
|
2086 fns.o: device.h
|
|
2087 fns.o: dynarr.h
|
|
2088 fns.o: events.h
|
|
2089 fns.o: extents.h
|
|
2090 fns.o: frame.h
|
|
2091 fns.o: frameslots.h
|
|
2092 fns.o: scrollbar.h
|
|
2093 fns.o: specifier.h
|
|
2094 fns.o: systime.h
|
|
2095 fns.o: toolbar.h
|
|
2096 font-lock.o: blocktype.h
|
|
2097 font-lock.o: buffer.h
|
|
2098 font-lock.o: bufslots.h
|
70
|
2099 font-lock.o: chartab.h
|
0
|
2100 font-lock.o: config.h
|
|
2101 font-lock.o: dynarr.h
|
|
2102 font-lock.o: insdel.h
|
|
2103 font-lock.o: syntax.h
|
|
2104 frame-tty.o: blocktype.h
|
|
2105 frame-tty.o: config.h
|
|
2106 frame-tty.o: conslots.h
|
|
2107 frame-tty.o: console-tty.h
|
|
2108 frame-tty.o: console.h
|
|
2109 frame-tty.o: device.h
|
|
2110 frame-tty.o: dynarr.h
|
|
2111 frame-tty.o: frame.h
|
|
2112 frame-tty.o: frameslots.h
|
|
2113 frame-tty.o: scrollbar.h
|
|
2114 frame-tty.o: specifier.h
|
|
2115 frame-tty.o: systty.h
|
|
2116 frame-tty.o: toolbar.h
|
149
|
2117 frame-x.o: $(LWLIB_SRCDIR)/lwlib.h
|
0
|
2118 frame-x.o: EmacsFrame.h
|
|
2119 frame-x.o: EmacsFrameP.h
|
|
2120 frame-x.o: EmacsManager.h
|
|
2121 frame-x.o: EmacsShell.h
|
|
2122 frame-x.o: ExternalShell.h
|
|
2123 frame-x.o: blocktype.h
|
|
2124 frame-x.o: buffer.h
|
|
2125 frame-x.o: bufslots.h
|
|
2126 frame-x.o: config.h
|
|
2127 frame-x.o: conslots.h
|
|
2128 frame-x.o: console-x.h
|
|
2129 frame-x.o: console.h
|
|
2130 frame-x.o: device.h
|
|
2131 frame-x.o: dynarr.h
|
|
2132 frame-x.o: events.h
|
|
2133 frame-x.o: extents.h
|
|
2134 frame-x.o: faces.h
|
|
2135 frame-x.o: frame.h
|
|
2136 frame-x.o: frameslots.h
|
|
2137 frame-x.o: glyphs-x.h
|
|
2138 frame-x.o: glyphs.h
|
|
2139 frame-x.o: objects-x.h
|
|
2140 frame-x.o: objects.h
|
|
2141 frame-x.o: redisplay.h
|
|
2142 frame-x.o: scrollbar-x.h
|
|
2143 frame-x.o: scrollbar.h
|
|
2144 frame-x.o: specifier.h
|
|
2145 frame-x.o: systime.h
|
|
2146 frame-x.o: toolbar.h
|
|
2147 frame-x.o: window.h
|
|
2148 frame-x.o: xintrinsic.h
|
|
2149 frame-x.o: xintrinsicp.h
|
|
2150 frame-x.o: xmprimitivep.h
|
|
2151 frame-x.o: xmu.h
|
|
2152 frame.o: blocktype.h
|
|
2153 frame.o: buffer.h
|
|
2154 frame.o: bufslots.h
|
|
2155 frame.o: config.h
|
|
2156 frame.o: conslots.h
|
|
2157 frame.o: console.h
|
|
2158 frame.o: device.h
|
|
2159 frame.o: dynarr.h
|
|
2160 frame.o: events.h
|
|
2161 frame.o: extents.h
|
|
2162 frame.o: faces.h
|
|
2163 frame.o: frame.h
|
|
2164 frame.o: frameslots.h
|
|
2165 frame.o: glyphs.h
|
|
2166 frame.o: menubar.h
|
|
2167 frame.o: redisplay.h
|
|
2168 frame.o: scrollbar.h
|
|
2169 frame.o: specifier.h
|
|
2170 frame.o: sysdep.h
|
|
2171 frame.o: systime.h
|
|
2172 frame.o: toolbar.h
|
|
2173 frame.o: window.h
|
|
2174 free-hook.o: blocktype.h
|
|
2175 free-hook.o: config.h
|
|
2176 free-hook.o: dynarr.h
|
|
2177 free-hook.o: hash.h
|
|
2178 general.o: blocktype.h
|
|
2179 general.o: config.h
|
|
2180 general.o: dynarr.h
|
|
2181 getloadavg.o: blocktype.h
|
|
2182 getloadavg.o: config.h
|
|
2183 getloadavg.o: dynarr.h
|
|
2184 gif_err.o: config.h
|
|
2185 gif_err.o: gif_lib.h
|
|
2186 gifalloc.o: config.h
|
|
2187 gifalloc.o: gif_lib.h
|
149
|
2188 glyphs-x.o: $(LWLIB_SRCDIR)/lwlib.h
|
0
|
2189 glyphs-x.o: ${srcdir}/${etcdir}xemacs.xbm
|
|
2190 glyphs-x.o: bitmaps.h
|
|
2191 glyphs-x.o: blocktype.h
|
|
2192 glyphs-x.o: buffer.h
|
|
2193 glyphs-x.o: bufslots.h
|
|
2194 glyphs-x.o: config.h
|
|
2195 glyphs-x.o: conslots.h
|
|
2196 glyphs-x.o: console-x.h
|
|
2197 glyphs-x.o: console.h
|
|
2198 glyphs-x.o: device.h
|
|
2199 glyphs-x.o: dynarr.h
|
|
2200 glyphs-x.o: frame.h
|
|
2201 glyphs-x.o: frameslots.h
|
|
2202 glyphs-x.o: gif_lib.h
|
|
2203 glyphs-x.o: glyphs-x.h
|
|
2204 glyphs-x.o: glyphs.h
|
|
2205 glyphs-x.o: insdel.h
|
|
2206 glyphs-x.o: objects-x.h
|
|
2207 glyphs-x.o: objects.h
|
|
2208 glyphs-x.o: opaque.h
|
|
2209 glyphs-x.o: scrollbar.h
|
|
2210 glyphs-x.o: specifier.h
|
|
2211 glyphs-x.o: sysfile.h
|
|
2212 glyphs-x.o: toolbar.h
|
|
2213 glyphs-x.o: xintrinsic.h
|
|
2214 glyphs-x.o: xmu.h
|
|
2215 glyphs.o: blocktype.h
|
|
2216 glyphs.o: buffer.h
|
|
2217 glyphs.o: bufslots.h
|
|
2218 glyphs.o: config.h
|
|
2219 glyphs.o: conslots.h
|
|
2220 glyphs.o: console.h
|
|
2221 glyphs.o: device.h
|
|
2222 glyphs.o: dynarr.h
|
|
2223 glyphs.o: elhash.h
|
|
2224 glyphs.o: faces.h
|
|
2225 glyphs.o: frame.h
|
|
2226 glyphs.o: frameslots.h
|
|
2227 glyphs.o: glyphs.h
|
|
2228 glyphs.o: objects.h
|
|
2229 glyphs.o: redisplay.h
|
|
2230 glyphs.o: scrollbar.h
|
|
2231 glyphs.o: specifier.h
|
|
2232 glyphs.o: toolbar.h
|
|
2233 glyphs.o: window.h
|
|
2234 gmalloc.o: config.h
|
|
2235 gmalloc.o: getpagesize.h
|
149
|
2236 gui-x.o: $(LWLIB_SRCDIR)/lwlib.h
|
0
|
2237 gui-x.o: blocktype.h
|
|
2238 gui-x.o: buffer.h
|
|
2239 gui-x.o: bufslots.h
|
|
2240 gui-x.o: config.h
|
|
2241 gui-x.o: conslots.h
|
|
2242 gui-x.o: console-x.h
|
|
2243 gui-x.o: console.h
|
|
2244 gui-x.o: device.h
|
|
2245 gui-x.o: dynarr.h
|
|
2246 gui-x.o: frame.h
|
|
2247 gui-x.o: frameslots.h
|
|
2248 gui-x.o: gui-x.h
|
|
2249 gui-x.o: opaque.h
|
|
2250 gui-x.o: scrollbar.h
|
|
2251 gui-x.o: specifier.h
|
|
2252 gui-x.o: toolbar.h
|
|
2253 gui-x.o: xintrinsic.h
|
|
2254 gui.o: blocktype.h
|
|
2255 gui.o: config.h
|
|
2256 gui.o: dynarr.h
|
|
2257 hash.o: blocktype.h
|
|
2258 hash.o: config.h
|
|
2259 hash.o: dynarr.h
|
|
2260 hash.o: elhash.h
|
|
2261 hash.o: hash.h
|
|
2262 hftctl.o: blocktype.h
|
|
2263 hftctl.o: config.h
|
|
2264 hftctl.o: dynarr.h
|
|
2265 hpplay.o: blocktype.h
|
|
2266 hpplay.o: config.h
|
|
2267 hpplay.o: dynarr.h
|
|
2268 indent.o: blocktype.h
|
|
2269 indent.o: buffer.h
|
|
2270 indent.o: bufslots.h
|
|
2271 indent.o: config.h
|
|
2272 indent.o: conslots.h
|
|
2273 indent.o: console.h
|
|
2274 indent.o: device.h
|
|
2275 indent.o: dynarr.h
|
|
2276 indent.o: extents.h
|
|
2277 indent.o: faces.h
|
|
2278 indent.o: frame.h
|
|
2279 indent.o: frameslots.h
|
|
2280 indent.o: glyphs.h
|
|
2281 indent.o: insdel.h
|
|
2282 indent.o: redisplay.h
|
|
2283 indent.o: scrollbar.h
|
|
2284 indent.o: specifier.h
|
|
2285 indent.o: toolbar.h
|
|
2286 indent.o: window.h
|
149
|
2287 inline.o: $(LWLIB_SRCDIR)/lwlib.h
|
118
|
2288 inline.o: blocktype.h
|
|
2289 inline.o: buffer.h
|
|
2290 inline.o: bufslots.h
|
|
2291 inline.o: bytecode.h
|
|
2292 inline.o: chartab.h
|
|
2293 inline.o: config.h
|
|
2294 inline.o: conslots.h
|
|
2295 inline.o: console-x.h
|
|
2296 inline.o: console.h
|
|
2297 inline.o: device.h
|
|
2298 inline.o: dynarr.h
|
|
2299 inline.o: elhash.h
|
|
2300 inline.o: events.h
|
|
2301 inline.o: extents.h
|
|
2302 inline.o: faces.h
|
|
2303 inline.o: frame.h
|
|
2304 inline.o: frameslots.h
|
|
2305 inline.o: glyphs-x.h
|
|
2306 inline.o: glyphs.h
|
|
2307 inline.o: gui-x.h
|
|
2308 inline.o: keymap.h
|
|
2309 inline.o: lstream.h
|
|
2310 inline.o: objects.h
|
|
2311 inline.o: opaque.h
|
|
2312 inline.o: process.h
|
|
2313 inline.o: redisplay.h
|
|
2314 inline.o: scrollbar.h
|
|
2315 inline.o: specifier.h
|
|
2316 inline.o: syntax.h
|
|
2317 inline.o: systime.h
|
|
2318 inline.o: toolbar.h
|
|
2319 inline.o: window.h
|
|
2320 inline.o: xintrinsic.h
|
70
|
2321 input-method-xlib.o: EmacsFrame.h
|
|
2322 input-method-xlib.o: blocktype.h
|
|
2323 input-method-xlib.o: buffer.h
|
|
2324 input-method-xlib.o: bufslots.h
|
|
2325 input-method-xlib.o: config.h
|
|
2326 input-method-xlib.o: conslots.h
|
|
2327 input-method-xlib.o: console-x.h
|
|
2328 input-method-xlib.o: console.h
|
|
2329 input-method-xlib.o: device.h
|
|
2330 input-method-xlib.o: dynarr.h
|
|
2331 input-method-xlib.o: frame.h
|
|
2332 input-method-xlib.o: frameslots.h
|
|
2333 input-method-xlib.o: insdel.h
|
|
2334 input-method-xlib.o: lstream.h
|
|
2335 input-method-xlib.o: redisplay.h
|
|
2336 input-method-xlib.o: scrollbar.h
|
|
2337 input-method-xlib.o: specifier.h
|
|
2338 input-method-xlib.o: toolbar.h
|
|
2339 input-method-xlib.o: window.h
|
|
2340 input-method-xlib.o: xintrinsic.h
|
0
|
2341 insdel.o: blocktype.h
|
|
2342 insdel.o: buffer.h
|
|
2343 insdel.o: bufslots.h
|
|
2344 insdel.o: config.h
|
|
2345 insdel.o: conslots.h
|
|
2346 insdel.o: console.h
|
|
2347 insdel.o: device.h
|
|
2348 insdel.o: dynarr.h
|
|
2349 insdel.o: extents.h
|
|
2350 insdel.o: frame.h
|
|
2351 insdel.o: frameslots.h
|
|
2352 insdel.o: insdel.h
|
|
2353 insdel.o: lstream.h
|
|
2354 insdel.o: redisplay.h
|
|
2355 insdel.o: scrollbar.h
|
|
2356 insdel.o: specifier.h
|
|
2357 insdel.o: toolbar.h
|
|
2358 intl.o: blocktype.h
|
|
2359 intl.o: bytecode.h
|
|
2360 intl.o: config.h
|
|
2361 intl.o: conslots.h
|
|
2362 intl.o: console.h
|
|
2363 intl.o: device.h
|
|
2364 intl.o: dynarr.h
|
|
2365 keymap.o: blocktype.h
|
|
2366 keymap.o: buffer.h
|
|
2367 keymap.o: bufslots.h
|
|
2368 keymap.o: bytecode.h
|
|
2369 keymap.o: commands.h
|
|
2370 keymap.o: config.h
|
|
2371 keymap.o: conslots.h
|
|
2372 keymap.o: console.h
|
|
2373 keymap.o: device.h
|
|
2374 keymap.o: dynarr.h
|
|
2375 keymap.o: elhash.h
|
|
2376 keymap.o: events.h
|
|
2377 keymap.o: frame.h
|
|
2378 keymap.o: frameslots.h
|
|
2379 keymap.o: insdel.h
|
|
2380 keymap.o: keymap.h
|
|
2381 keymap.o: redisplay.h
|
|
2382 keymap.o: scrollbar.h
|
|
2383 keymap.o: specifier.h
|
|
2384 keymap.o: systime.h
|
|
2385 keymap.o: toolbar.h
|
|
2386 keymap.o: window.h
|
|
2387 libsst.o: blocktype.h
|
|
2388 libsst.o: config.h
|
|
2389 libsst.o: dynarr.h
|
|
2390 libsst.o: libsst.h
|
|
2391 linuxplay.o: blocktype.h
|
|
2392 linuxplay.o: config.h
|
|
2393 linuxplay.o: dynarr.h
|
|
2394 lread.o: blocktype.h
|
|
2395 lread.o: buffer.h
|
|
2396 lread.o: bufslots.h
|
|
2397 lread.o: bytecode.h
|
|
2398 lread.o: commands.h
|
|
2399 lread.o: config.h
|
|
2400 lread.o: dynarr.h
|
|
2401 lread.o: insdel.h
|
|
2402 lread.o: lstream.h
|
|
2403 lread.o: opaque.h
|
|
2404 lread.o: paths.h
|
|
2405 lread.o: sysfile.h
|
|
2406 lstream.o: blocktype.h
|
|
2407 lstream.o: buffer.h
|
|
2408 lstream.o: bufslots.h
|
|
2409 lstream.o: config.h
|
|
2410 lstream.o: dynarr.h
|
|
2411 lstream.o: insdel.h
|
|
2412 lstream.o: lstream.h
|
|
2413 lstream.o: sysfile.h
|
|
2414 macros.o: blocktype.h
|
|
2415 macros.o: buffer.h
|
|
2416 macros.o: bufslots.h
|
|
2417 macros.o: commands.h
|
|
2418 macros.o: config.h
|
|
2419 macros.o: conslots.h
|
|
2420 macros.o: console.h
|
|
2421 macros.o: device.h
|
|
2422 macros.o: dynarr.h
|
|
2423 macros.o: events.h
|
|
2424 macros.o: frame.h
|
|
2425 macros.o: frameslots.h
|
|
2426 macros.o: keymap.h
|
|
2427 macros.o: macros.h
|
|
2428 macros.o: redisplay.h
|
|
2429 macros.o: scrollbar.h
|
|
2430 macros.o: specifier.h
|
|
2431 macros.o: systime.h
|
|
2432 macros.o: toolbar.h
|
|
2433 macros.o: window.h
|
|
2434 malloc.o: config.h
|
|
2435 malloc.o: getpagesize.h
|
|
2436 marker.o: blocktype.h
|
|
2437 marker.o: buffer.h
|
|
2438 marker.o: bufslots.h
|
|
2439 marker.o: config.h
|
|
2440 marker.o: dynarr.h
|
|
2441 md5.o: blocktype.h
|
|
2442 md5.o: buffer.h
|
|
2443 md5.o: bufslots.h
|
|
2444 md5.o: config.h
|
|
2445 md5.o: dynarr.h
|
|
2446 md5.o: insdel.h
|
149
|
2447 menubar-x.o: $(LWLIB_SRCDIR)/lwlib.h
|
0
|
2448 menubar-x.o: EmacsFrame.h
|
|
2449 menubar-x.o: EmacsManager.h
|
|
2450 menubar-x.o: EmacsShell.h
|
|
2451 menubar-x.o: blocktype.h
|
|
2452 menubar-x.o: buffer.h
|
|
2453 menubar-x.o: bufslots.h
|
|
2454 menubar-x.o: commands.h
|
|
2455 menubar-x.o: config.h
|
|
2456 menubar-x.o: conslots.h
|
|
2457 menubar-x.o: console-x.h
|
|
2458 menubar-x.o: console.h
|
|
2459 menubar-x.o: device.h
|
|
2460 menubar-x.o: dynarr.h
|
|
2461 menubar-x.o: events.h
|
|
2462 menubar-x.o: frame.h
|
|
2463 menubar-x.o: frameslots.h
|
|
2464 menubar-x.o: gui-x.h
|
|
2465 menubar-x.o: opaque.h
|
|
2466 menubar-x.o: redisplay.h
|
|
2467 menubar-x.o: scrollbar.h
|
|
2468 menubar-x.o: specifier.h
|
|
2469 menubar-x.o: systime.h
|
|
2470 menubar-x.o: toolbar.h
|
|
2471 menubar-x.o: window.h
|
|
2472 menubar-x.o: xintrinsic.h
|
|
2473 menubar.o: blocktype.h
|
|
2474 menubar.o: config.h
|
|
2475 menubar.o: conslots.h
|
|
2476 menubar.o: console.h
|
|
2477 menubar.o: device.h
|
|
2478 menubar.o: dynarr.h
|
|
2479 menubar.o: frame.h
|
|
2480 menubar.o: frameslots.h
|
|
2481 menubar.o: menubar.h
|
|
2482 menubar.o: redisplay.h
|
|
2483 menubar.o: scrollbar.h
|
|
2484 menubar.o: specifier.h
|
|
2485 menubar.o: toolbar.h
|
|
2486 menubar.o: window.h
|
|
2487 minibuf.o: blocktype.h
|
|
2488 minibuf.o: buffer.h
|
|
2489 minibuf.o: bufslots.h
|
|
2490 minibuf.o: commands.h
|
|
2491 minibuf.o: config.h
|
|
2492 minibuf.o: conslots.h
|
|
2493 minibuf.o: console-stream.h
|
|
2494 minibuf.o: console.h
|
|
2495 minibuf.o: device.h
|
|
2496 minibuf.o: dynarr.h
|
|
2497 minibuf.o: events.h
|
|
2498 minibuf.o: frame.h
|
|
2499 minibuf.o: frameslots.h
|
|
2500 minibuf.o: insdel.h
|
|
2501 minibuf.o: redisplay.h
|
|
2502 minibuf.o: scrollbar.h
|
|
2503 minibuf.o: specifier.h
|
|
2504 minibuf.o: systime.h
|
|
2505 minibuf.o: toolbar.h
|
|
2506 minibuf.o: window.h
|
|
2507 mocklisp.o: blocktype.h
|
|
2508 mocklisp.o: buffer.h
|
|
2509 mocklisp.o: bufslots.h
|
|
2510 mocklisp.o: config.h
|
|
2511 mocklisp.o: dynarr.h
|
|
2512 msdos.o: config.h
|
|
2513 nas.o: blocktype.h
|
|
2514 nas.o: config.h
|
|
2515 nas.o: dynarr.h
|
|
2516 objects-tty.o: blocktype.h
|
|
2517 objects-tty.o: config.h
|
|
2518 objects-tty.o: conslots.h
|
|
2519 objects-tty.o: console-tty.h
|
|
2520 objects-tty.o: console.h
|
|
2521 objects-tty.o: device.h
|
|
2522 objects-tty.o: dynarr.h
|
|
2523 objects-tty.o: insdel.h
|
|
2524 objects-tty.o: objects-tty.h
|
|
2525 objects-tty.o: objects.h
|
|
2526 objects-tty.o: specifier.h
|
|
2527 objects-tty.o: systty.h
|
|
2528 objects-x.o: blocktype.h
|
|
2529 objects-x.o: buffer.h
|
|
2530 objects-x.o: bufslots.h
|
|
2531 objects-x.o: config.h
|
|
2532 objects-x.o: conslots.h
|
|
2533 objects-x.o: console-x.h
|
|
2534 objects-x.o: console.h
|
|
2535 objects-x.o: device.h
|
|
2536 objects-x.o: dynarr.h
|
|
2537 objects-x.o: insdel.h
|
|
2538 objects-x.o: objects-x.h
|
|
2539 objects-x.o: objects.h
|
|
2540 objects-x.o: specifier.h
|
|
2541 objects-x.o: xintrinsic.h
|
|
2542 objects.o: blocktype.h
|
|
2543 objects.o: buffer.h
|
|
2544 objects.o: bufslots.h
|
|
2545 objects.o: config.h
|
|
2546 objects.o: conslots.h
|
|
2547 objects.o: console.h
|
|
2548 objects.o: device.h
|
|
2549 objects.o: dynarr.h
|
|
2550 objects.o: elhash.h
|
|
2551 objects.o: faces.h
|
|
2552 objects.o: frame.h
|
|
2553 objects.o: frameslots.h
|
|
2554 objects.o: objects.h
|
|
2555 objects.o: redisplay.h
|
|
2556 objects.o: scrollbar.h
|
|
2557 objects.o: specifier.h
|
|
2558 objects.o: toolbar.h
|
|
2559 objects.o: window.h
|
|
2560 opaque.o: blocktype.h
|
|
2561 opaque.o: config.h
|
|
2562 opaque.o: dynarr.h
|
|
2563 opaque.o: opaque.h
|
|
2564 print.o: backtrace.h
|
|
2565 print.o: blocktype.h
|
|
2566 print.o: buffer.h
|
|
2567 print.o: bufslots.h
|
|
2568 print.o: bytecode.h
|
|
2569 print.o: config.h
|
|
2570 print.o: conslots.h
|
|
2571 print.o: console-stream.h
|
|
2572 print.o: console-tty.h
|
|
2573 print.o: console.h
|
|
2574 print.o: device.h
|
|
2575 print.o: dynarr.h
|
|
2576 print.o: extents.h
|
|
2577 print.o: frame.h
|
|
2578 print.o: frameslots.h
|
|
2579 print.o: insdel.h
|
|
2580 print.o: lstream.h
|
|
2581 print.o: scrollbar.h
|
|
2582 print.o: specifier.h
|
|
2583 print.o: systty.h
|
|
2584 print.o: toolbar.h
|
|
2585 process.o: blocktype.h
|
|
2586 process.o: buffer.h
|
|
2587 process.o: bufslots.h
|
|
2588 process.o: commands.h
|
|
2589 process.o: config.h
|
|
2590 process.o: conslots.h
|
|
2591 process.o: console.h
|
|
2592 process.o: device.h
|
|
2593 process.o: dynarr.h
|
|
2594 process.o: events.h
|
|
2595 process.o: frame.h
|
|
2596 process.o: frameslots.h
|
|
2597 process.o: insdel.h
|
|
2598 process.o: lstream.h
|
|
2599 process.o: opaque.h
|
|
2600 process.o: paths.h
|
|
2601 process.o: process.h
|
|
2602 process.o: redisplay.h
|
|
2603 process.o: scrollbar.h
|
|
2604 process.o: specifier.h
|
|
2605 process.o: sysdep.h
|
|
2606 process.o: sysfile.h
|
|
2607 process.o: sysproc.h
|
|
2608 process.o: systime.h
|
|
2609 process.o: systty.h
|
|
2610 process.o: syswait.h
|
|
2611 process.o: toolbar.h
|
|
2612 process.o: window.h
|
|
2613 profile.o: backtrace.h
|
|
2614 profile.o: blocktype.h
|
|
2615 profile.o: bytecode.h
|
|
2616 profile.o: config.h
|
|
2617 profile.o: dynarr.h
|
|
2618 profile.o: hash.h
|
|
2619 profile.o: systime.h
|
|
2620 pure.o: blocktype.h
|
|
2621 pure.o: config.h
|
|
2622 pure.o: dynarr.h
|
104
|
2623 pure.o: puresize.h puresize_adjust.h
|
0
|
2624 ralloc.o: blocktype.h
|
|
2625 ralloc.o: config.h
|
|
2626 ralloc.o: dynarr.h
|
|
2627 ralloc.o: getpagesize.h
|
|
2628 rangetab.o: blocktype.h
|
|
2629 rangetab.o: config.h
|
|
2630 rangetab.o: dynarr.h
|
|
2631 realpath.o: config.h
|
|
2632 redisplay-output.o: blocktype.h
|
|
2633 redisplay-output.o: buffer.h
|
|
2634 redisplay-output.o: bufslots.h
|
|
2635 redisplay-output.o: config.h
|
|
2636 redisplay-output.o: conslots.h
|
|
2637 redisplay-output.o: console.h
|
|
2638 redisplay-output.o: debug.h
|
|
2639 redisplay-output.o: device.h
|
|
2640 redisplay-output.o: dynarr.h
|
|
2641 redisplay-output.o: faces.h
|
|
2642 redisplay-output.o: frame.h
|
|
2643 redisplay-output.o: frameslots.h
|
|
2644 redisplay-output.o: glyphs.h
|
|
2645 redisplay-output.o: redisplay.h
|
|
2646 redisplay-output.o: scrollbar.h
|
|
2647 redisplay-output.o: specifier.h
|
|
2648 redisplay-output.o: sysdep.h
|
|
2649 redisplay-output.o: toolbar.h
|
|
2650 redisplay-output.o: window.h
|
|
2651 redisplay-tty.o: blocktype.h
|
|
2652 redisplay-tty.o: buffer.h
|
|
2653 redisplay-tty.o: bufslots.h
|
|
2654 redisplay-tty.o: config.h
|
|
2655 redisplay-tty.o: conslots.h
|
|
2656 redisplay-tty.o: console-tty.h
|
|
2657 redisplay-tty.o: console.h
|
|
2658 redisplay-tty.o: device.h
|
|
2659 redisplay-tty.o: dynarr.h
|
|
2660 redisplay-tty.o: events.h
|
|
2661 redisplay-tty.o: faces.h
|
|
2662 redisplay-tty.o: frame.h
|
|
2663 redisplay-tty.o: frameslots.h
|
|
2664 redisplay-tty.o: glyphs.h
|
|
2665 redisplay-tty.o: lstream.h
|
|
2666 redisplay-tty.o: objects-tty.h
|
|
2667 redisplay-tty.o: objects.h
|
|
2668 redisplay-tty.o: redisplay.h
|
|
2669 redisplay-tty.o: scrollbar.h
|
|
2670 redisplay-tty.o: specifier.h
|
|
2671 redisplay-tty.o: sysdep.h
|
|
2672 redisplay-tty.o: systime.h
|
|
2673 redisplay-tty.o: systty.h
|
|
2674 redisplay-tty.o: toolbar.h
|
|
2675 redisplay-tty.o: window.h
|
149
|
2676 redisplay-x.o: $(LWLIB_SRCDIR)/lwlib.h
|
0
|
2677 redisplay-x.o: EmacsFrame.h
|
|
2678 redisplay-x.o: EmacsFrameP.h
|
|
2679 redisplay-x.o: blocktype.h
|
|
2680 redisplay-x.o: buffer.h
|
|
2681 redisplay-x.o: bufslots.h
|
|
2682 redisplay-x.o: config.h
|
|
2683 redisplay-x.o: conslots.h
|
|
2684 redisplay-x.o: console-x.h
|
|
2685 redisplay-x.o: console.h
|
|
2686 redisplay-x.o: debug.h
|
|
2687 redisplay-x.o: device.h
|
|
2688 redisplay-x.o: dynarr.h
|
|
2689 redisplay-x.o: faces.h
|
|
2690 redisplay-x.o: frame.h
|
|
2691 redisplay-x.o: frameslots.h
|
|
2692 redisplay-x.o: glyphs-x.h
|
|
2693 redisplay-x.o: glyphs.h
|
|
2694 redisplay-x.o: objects-x.h
|
|
2695 redisplay-x.o: objects.h
|
|
2696 redisplay-x.o: paths.h
|
|
2697 redisplay-x.o: redisplay.h
|
|
2698 redisplay-x.o: scrollbar.h
|
|
2699 redisplay-x.o: specifier.h
|
|
2700 redisplay-x.o: sysdep.h
|
|
2701 redisplay-x.o: sysproc.h
|
|
2702 redisplay-x.o: systime.h
|
|
2703 redisplay-x.o: toolbar.h
|
|
2704 redisplay-x.o: window.h
|
|
2705 redisplay-x.o: xgccache.h
|
|
2706 redisplay-x.o: xintrinsic.h
|
|
2707 redisplay-x.o: xintrinsicp.h
|
|
2708 redisplay-x.o: xmprimitivep.h
|
|
2709 redisplay.o: blocktype.h
|
|
2710 redisplay.o: buffer.h
|
|
2711 redisplay.o: bufslots.h
|
|
2712 redisplay.o: commands.h
|
|
2713 redisplay.o: config.h
|
|
2714 redisplay.o: conslots.h
|
|
2715 redisplay.o: console.h
|
|
2716 redisplay.o: debug.h
|
|
2717 redisplay.o: device.h
|
|
2718 redisplay.o: dynarr.h
|
|
2719 redisplay.o: extents.h
|
|
2720 redisplay.o: faces.h
|
|
2721 redisplay.o: frame.h
|
|
2722 redisplay.o: frameslots.h
|
|
2723 redisplay.o: glyphs.h
|
|
2724 redisplay.o: insdel.h
|
|
2725 redisplay.o: menubar.h
|
|
2726 redisplay.o: objects.h
|
|
2727 redisplay.o: process.h
|
|
2728 redisplay.o: redisplay.h
|
|
2729 redisplay.o: scrollbar.h
|
|
2730 redisplay.o: specifier.h
|
|
2731 redisplay.o: toolbar.h
|
|
2732 redisplay.o: window.h
|
|
2733 regex.o: blocktype.h
|
|
2734 regex.o: buffer.h
|
|
2735 regex.o: bufslots.h
|
70
|
2736 regex.o: chartab.h
|
0
|
2737 regex.o: config.h
|
|
2738 regex.o: dynarr.h
|
|
2739 regex.o: regex.h
|
|
2740 regex.o: syntax.h
|
149
|
2741 scrollbar-x.o: $(LWLIB_SRCDIR)/lwlib.h
|
0
|
2742 scrollbar-x.o: EmacsFrame.h
|
|
2743 scrollbar-x.o: EmacsManager.h
|
|
2744 scrollbar-x.o: blocktype.h
|
|
2745 scrollbar-x.o: config.h
|
|
2746 scrollbar-x.o: conslots.h
|
|
2747 scrollbar-x.o: console-x.h
|
|
2748 scrollbar-x.o: console.h
|
|
2749 scrollbar-x.o: device.h
|
|
2750 scrollbar-x.o: dynarr.h
|
|
2751 scrollbar-x.o: frame.h
|
|
2752 scrollbar-x.o: frameslots.h
|
|
2753 scrollbar-x.o: glyphs-x.h
|
|
2754 scrollbar-x.o: glyphs.h
|
|
2755 scrollbar-x.o: gui-x.h
|
|
2756 scrollbar-x.o: redisplay.h
|
|
2757 scrollbar-x.o: scrollbar-x.h
|
|
2758 scrollbar-x.o: scrollbar.h
|
|
2759 scrollbar-x.o: specifier.h
|
|
2760 scrollbar-x.o: toolbar.h
|
|
2761 scrollbar-x.o: window.h
|
|
2762 scrollbar-x.o: xintrinsic.h
|
|
2763 scrollbar.o: blocktype.h
|
|
2764 scrollbar.o: buffer.h
|
|
2765 scrollbar.o: bufslots.h
|
|
2766 scrollbar.o: commands.h
|
|
2767 scrollbar.o: config.h
|
|
2768 scrollbar.o: conslots.h
|
|
2769 scrollbar.o: console.h
|
|
2770 scrollbar.o: device.h
|
|
2771 scrollbar.o: dynarr.h
|
|
2772 scrollbar.o: frame.h
|
|
2773 scrollbar.o: frameslots.h
|
|
2774 scrollbar.o: glyphs.h
|
|
2775 scrollbar.o: redisplay.h
|
|
2776 scrollbar.o: scrollbar.h
|
|
2777 scrollbar.o: specifier.h
|
|
2778 scrollbar.o: toolbar.h
|
|
2779 scrollbar.o: window.h
|
|
2780 search.o: blocktype.h
|
|
2781 search.o: buffer.h
|
|
2782 search.o: bufslots.h
|
70
|
2783 search.o: chartab.h
|
0
|
2784 search.o: commands.h
|
|
2785 search.o: config.h
|
|
2786 search.o: dynarr.h
|
|
2787 search.o: insdel.h
|
|
2788 search.o: opaque.h
|
|
2789 search.o: regex.h
|
|
2790 search.o: syntax.h
|
|
2791 signal.o: blocktype.h
|
|
2792 signal.o: config.h
|
|
2793 signal.o: conslots.h
|
|
2794 signal.o: console.h
|
|
2795 signal.o: device.h
|
|
2796 signal.o: dynarr.h
|
|
2797 signal.o: events.h
|
|
2798 signal.o: frame.h
|
|
2799 signal.o: frameslots.h
|
|
2800 signal.o: scrollbar.h
|
|
2801 signal.o: specifier.h
|
|
2802 signal.o: sysdep.h
|
|
2803 signal.o: systime.h
|
|
2804 signal.o: toolbar.h
|
|
2805 sound.o: blocktype.h
|
|
2806 sound.o: buffer.h
|
|
2807 sound.o: bufslots.h
|
|
2808 sound.o: commands.h
|
|
2809 sound.o: config.h
|
|
2810 sound.o: conslots.h
|
|
2811 sound.o: console-x.h
|
|
2812 sound.o: console.h
|
|
2813 sound.o: device.h
|
|
2814 sound.o: dynarr.h
|
|
2815 sound.o: redisplay.h
|
|
2816 sound.o: sysdep.h
|
|
2817 sound.o: xintrinsic.h
|
|
2818 specifier.o: blocktype.h
|
|
2819 specifier.o: buffer.h
|
|
2820 specifier.o: bufslots.h
|
|
2821 specifier.o: config.h
|
|
2822 specifier.o: conslots.h
|
|
2823 specifier.o: console.h
|
|
2824 specifier.o: device.h
|
|
2825 specifier.o: dynarr.h
|
|
2826 specifier.o: frame.h
|
|
2827 specifier.o: frameslots.h
|
|
2828 specifier.o: opaque.h
|
|
2829 specifier.o: redisplay.h
|
|
2830 specifier.o: scrollbar.h
|
|
2831 specifier.o: specifier.h
|
|
2832 specifier.o: toolbar.h
|
|
2833 specifier.o: window.h
|
|
2834 strftime.o: blocktype.h
|
|
2835 strftime.o: config.h
|
|
2836 strftime.o: dynarr.h
|
|
2837 sunOS-fix.o: config.h
|
|
2838 sunplay.o: blocktype.h
|
|
2839 sunplay.o: config.h
|
|
2840 sunplay.o: dynarr.h
|
|
2841 sunplay.o: sysdep.h
|
|
2842 sunpro.o: blocktype.h
|
|
2843 sunpro.o: config.h
|
|
2844 sunpro.o: dynarr.h
|
|
2845 symbols.o: blocktype.h
|
|
2846 symbols.o: buffer.h
|
|
2847 symbols.o: bufslots.h
|
|
2848 symbols.o: config.h
|
|
2849 symbols.o: conslots.h
|
|
2850 symbols.o: console.h
|
|
2851 symbols.o: dynarr.h
|
|
2852 syntax.o: blocktype.h
|
|
2853 syntax.o: buffer.h
|
|
2854 syntax.o: bufslots.h
|
70
|
2855 syntax.o: chartab.h
|
0
|
2856 syntax.o: commands.h
|
|
2857 syntax.o: config.h
|
|
2858 syntax.o: dynarr.h
|
|
2859 syntax.o: insdel.h
|
|
2860 syntax.o: syntax.h
|
|
2861 sysdep.o: blocktype.h
|
|
2862 sysdep.o: buffer.h
|
|
2863 sysdep.o: bufslots.h
|
|
2864 sysdep.o: config.h
|
|
2865 sysdep.o: conslots.h
|
|
2866 sysdep.o: console-stream.h
|
|
2867 sysdep.o: console-x.h
|
|
2868 sysdep.o: console.h
|
|
2869 sysdep.o: device.h
|
|
2870 sysdep.o: dynarr.h
|
|
2871 sysdep.o: events.h
|
|
2872 sysdep.o: frame.h
|
|
2873 sysdep.o: frameslots.h
|
|
2874 sysdep.o: process.h
|
|
2875 sysdep.o: redisplay.h
|
|
2876 sysdep.o: scrollbar.h
|
|
2877 sysdep.o: specifier.h
|
|
2878 sysdep.o: sysdep.h
|
|
2879 sysdep.o: sysdir.h
|
|
2880 sysdep.o: sysfile.h
|
|
2881 sysdep.o: systime.h
|
|
2882 sysdep.o: syswait.h
|
|
2883 sysdep.o: toolbar.h
|
|
2884 sysdep.o: window.h
|
|
2885 sysdep.o: xintrinsic.h
|
|
2886 termcap.o: blocktype.h
|
|
2887 termcap.o: config.h
|
|
2888 termcap.o: conslots.h
|
|
2889 termcap.o: console.h
|
|
2890 termcap.o: device.h
|
|
2891 termcap.o: dynarr.h
|
|
2892 terminfo.o: config.h
|
149
|
2893 toolbar-x.o: $(LWLIB_SRCDIR)/lwlib.h
|
0
|
2894 toolbar-x.o: EmacsFrame.h
|
|
2895 toolbar-x.o: EmacsFrameP.h
|
|
2896 toolbar-x.o: EmacsManager.h
|
|
2897 toolbar-x.o: blocktype.h
|
|
2898 toolbar-x.o: buffer.h
|
|
2899 toolbar-x.o: bufslots.h
|
|
2900 toolbar-x.o: config.h
|
|
2901 toolbar-x.o: conslots.h
|
|
2902 toolbar-x.o: console-x.h
|
|
2903 toolbar-x.o: console.h
|
|
2904 toolbar-x.o: device.h
|
|
2905 toolbar-x.o: dynarr.h
|
|
2906 toolbar-x.o: faces.h
|
|
2907 toolbar-x.o: frame.h
|
|
2908 toolbar-x.o: frameslots.h
|
|
2909 toolbar-x.o: glyphs-x.h
|
|
2910 toolbar-x.o: glyphs.h
|
|
2911 toolbar-x.o: objects-x.h
|
|
2912 toolbar-x.o: objects.h
|
|
2913 toolbar-x.o: redisplay.h
|
|
2914 toolbar-x.o: scrollbar.h
|
|
2915 toolbar-x.o: specifier.h
|
|
2916 toolbar-x.o: toolbar.h
|
|
2917 toolbar-x.o: window.h
|
|
2918 toolbar-x.o: xgccache.h
|
|
2919 toolbar-x.o: xintrinsic.h
|
|
2920 toolbar-x.o: xintrinsicp.h
|
|
2921 toolbar-x.o: xmprimitivep.h
|
|
2922 toolbar.o: blocktype.h
|
|
2923 toolbar.o: buffer.h
|
|
2924 toolbar.o: bufslots.h
|
|
2925 toolbar.o: config.h
|
|
2926 toolbar.o: conslots.h
|
|
2927 toolbar.o: console.h
|
|
2928 toolbar.o: device.h
|
|
2929 toolbar.o: dynarr.h
|
|
2930 toolbar.o: frame.h
|
|
2931 toolbar.o: frameslots.h
|
|
2932 toolbar.o: glyphs.h
|
|
2933 toolbar.o: redisplay.h
|
|
2934 toolbar.o: scrollbar.h
|
|
2935 toolbar.o: specifier.h
|
|
2936 toolbar.o: toolbar.h
|
|
2937 toolbar.o: window.h
|
|
2938 tooltalk.o: blocktype.h
|
|
2939 tooltalk.o: buffer.h
|
|
2940 tooltalk.o: bufslots.h
|
|
2941 tooltalk.o: config.h
|
|
2942 tooltalk.o: dynarr.h
|
|
2943 tooltalk.o: elhash.h
|
|
2944 tooltalk.o: process.h
|
|
2945 tooltalk.o: tooltalk.h
|
|
2946 tparam.o: config.h
|
|
2947 undo.o: blocktype.h
|
|
2948 undo.o: buffer.h
|
|
2949 undo.o: bufslots.h
|
|
2950 undo.o: config.h
|
|
2951 undo.o: dynarr.h
|
|
2952 undo.o: extents.h
|
|
2953 vm-limit.o: blocktype.h
|
|
2954 vm-limit.o: config.h
|
|
2955 vm-limit.o: dynarr.h
|
|
2956 vm-limit.o: mem-limits.h
|
|
2957 window.o: blocktype.h
|
|
2958 window.o: buffer.h
|
|
2959 window.o: bufslots.h
|
|
2960 window.o: commands.h
|
|
2961 window.o: config.h
|
|
2962 window.o: conslots.h
|
|
2963 window.o: console.h
|
|
2964 window.o: device.h
|
|
2965 window.o: dynarr.h
|
|
2966 window.o: faces.h
|
|
2967 window.o: frame.h
|
|
2968 window.o: frameslots.h
|
|
2969 window.o: glyphs.h
|
|
2970 window.o: objects.h
|
|
2971 window.o: redisplay.h
|
|
2972 window.o: scrollbar.h
|
|
2973 window.o: specifier.h
|
|
2974 window.o: toolbar.h
|
|
2975 window.o: window.h
|
|
2976 xgccache.o: blocktype.h
|
|
2977 xgccache.o: config.h
|
|
2978 xgccache.o: dynarr.h
|
|
2979 xgccache.o: hash.h
|
|
2980 xgccache.o: xgccache.h
|
|
2981 xmu.o: config.h
|
|
2982 xselect.o: blocktype.h
|
|
2983 xselect.o: buffer.h
|
|
2984 xselect.o: bufslots.h
|
|
2985 xselect.o: config.h
|
|
2986 xselect.o: conslots.h
|
|
2987 xselect.o: console-x.h
|
|
2988 xselect.o: console.h
|
|
2989 xselect.o: device.h
|
|
2990 xselect.o: dynarr.h
|
|
2991 xselect.o: frame.h
|
|
2992 xselect.o: frameslots.h
|
|
2993 xselect.o: objects-x.h
|
|
2994 xselect.o: objects.h
|
|
2995 xselect.o: opaque.h
|
|
2996 xselect.o: scrollbar.h
|
|
2997 xselect.o: specifier.h
|
|
2998 xselect.o: systime.h
|
|
2999 xselect.o: toolbar.h
|
|
3000 xselect.o: xintrinsic.h
|