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