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