163
|
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 ## Copyright (C) 1996, 1997 Sun Microsystems, Inc.
|
0
|
5
|
163
|
6 ## This file is part of XEmacs.
|
0
|
7
|
163
|
8 ## XEmacs is free software; you can redistribute it and/or modify it
|
|
9 ## under the terms of the GNU General Public License as published by the
|
|
10 ## Free Software Foundation; either version 2, or (at your option) any
|
|
11 ## later version.
|
0
|
12
|
163
|
13 ## XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
14 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
15 ## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
16 ## for more details.
|
0
|
17
|
163
|
18 ## You should have received a copy of the GNU General Public License
|
|
19 ## along with XEmacs; see the file COPYING. If not, write to
|
|
20 ## the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
21 ## Boston, MA 02111-1307, USA.
|
0
|
22
|
163
|
23 ## Synched up with: Not synched with FSF.
|
0
|
24
|
163
|
25 all: xemacs
|
173
|
26 .PHONY : all release dump-elc dump-elcs all-elc all-elcs lint binary
|
0
|
27
|
163
|
28 ## For performance and consistency, no built-in rules.
|
70
|
29 .SUFFIXES:
|
|
30 .SUFFIXES: .c .o .i .h
|
0
|
31
|
173
|
32 @SET_MAKE@
|
|
33 SHELL=/bin/sh
|
|
34 RM = rm -f
|
|
35
|
163
|
36 lispdir = ${srcdir}/../lisp/
|
|
37 libsrc = ../lib-src/
|
|
38 etcdir = ../etc/
|
|
39
|
|
40 ## Here are the things that we expect ../configure to edit.
|
0
|
41 srcdir=@srcdir@
|
|
42 CC=@CC@
|
|
43 CPP=@CPP@
|
|
44 CFLAGS=@CFLAGS@
|
149
|
45 CPPFLAGS=@CPPFLAGS@
|
|
46 LDFLAGS=@LDFLAGS@
|
173
|
47 RECURSIVE_MAKE=@RECURSIVE_MAKE@
|
149
|
48
|
|
49 c_switch_general=@c_switch_general@
|
|
50 c_switch_window_system=@c_switch_window_system@
|
|
51 c_switch_all=@c_switch_all@
|
|
52 ld_switch_general=@ld_switch_general@
|
|
53 ld_switch_window_system=@ld_switch_window_system@
|
|
54 ld_switch_all=@ld_switch_all@
|
|
55 ld_libs_general=@ld_libs_general@
|
|
56 ld_libs_window_system=@ld_libs_window_system@
|
|
57 ld_libs_all=@ld_libs_all@
|
|
58
|
|
59 extra_objs=@extra_objs@
|
0
|
60 LN_S=@LN_S@
|
|
61
|
163
|
62 ld_switch_shared=@ld_switch_shared@
|
|
63 start_files=@start_files@
|
|
64 start_flags=@start_flags@
|
|
65 LD=@ld@
|
|
66 lib_gcc=@lib_gcc@
|
|
67
|
0
|
68 #define NOT_C_CODE
|
|
69 #include "config.h"
|
|
70
|
163
|
71 ## With the traditional VPATH setting, it is not possible to
|
|
72 ## simultaneously compile in-place and in another directory. The
|
|
73 ## mistaken definition is that *all* dependencies are searched for in
|
|
74 ## the VPATH directory, rather than just the dependencies that are not
|
|
75 ## themselves targets. Thus, if there is an up-to-date .o file in the
|
|
76 ## in-place location, it will not get recompiled in the not-in-place
|
|
77 ## location.
|
0
|
78
|
163
|
79 ## The GNU Make "vpath" directive continues this tradition, but at
|
|
80 ## least lets you restrict the classes of files that it applies to.
|
|
81 ## This allows us to kludge around the problem.
|
|
82
|
0
|
83 #ifdef USE_GNU_MAKE
|
|
84 vpath %.c @srcdir@
|
|
85 vpath %.h @srcdir@
|
163
|
86 ## now list files that should NOT be searched in the srcdir.
|
|
87 ## This includes any .c or .h built from something else
|
|
88 ## (e.g. a .in file).
|
0
|
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
|
163
|
97 RM = rm -f
|
2
|
98 PURIFY_PROG=purify
|
70
|
99 PURIFY_FLAGS=-chain-length=16 -ignore-signals=SIGPOLL -log-file=puremacs.log \
|
|
100 -messages=batch -show-directory=yes -windows=yes \
|
|
101 -cache-dir=. -always-use-cache-dir=yes
|
2
|
102 PURECOV_PROG=purecov
|
|
103 #ifdef QUANTIFY
|
149
|
104 quantify_prog = quantify
|
|
105 quantify_flags = -windows=no -record-data=no
|
|
106 quantify_includes = -I/local/include
|
|
107 quantify_libs = /local/lib/quantify_stubs.a
|
|
108 #endif /* QUANTIFY */
|
0
|
109
|
|
110 #ifdef HAVE_NATIVE_SOUND
|
149
|
111 sound_cflags=@sound_cflags@
|
0
|
112 #endif
|
|
113
|
163
|
114 LWLIB_SRCDIR = ${srcdir}/../lwlib
|
70
|
115
|
149
|
116 #ifdef HAVE_X_WINDOWS
|
163
|
117 lwlib_libs = ../lwlib/liblw.a
|
|
118 lwlib_deps = $(lwlib_libs)
|
|
119 $(lwlib_libs) :
|
173
|
120 cd ../lwlib && $(RECURSIVE_MAKE)
|
0
|
121
|
157
|
122 x_objs=balloon_help.o balloon-x.o console-x.o device-x.o event-Xt.o frame-x.o\
|
|
123 glyphs-x.o objects-x.o redisplay-x.o xgccache.o xselect.o
|
70
|
124
|
149
|
125 #ifdef AIX4
|
|
126 LIBI18N = -li18n
|
|
127 #endif /* AIX4 */
|
70
|
128
|
149
|
129 X11_libs= $(LIBX11_LIBS) $(libx11_intl) $(LIBI18N)
|
|
130 #endif /* HAVE_X_WINDOWS */
|
0
|
131
|
163
|
132 ## -Demacs is needed to make some files produce the correct version
|
|
133 ## for use in Emacs.
|
0
|
134
|
157
|
135 cppflags = $(CPPFLAGS) -Demacs -I. $(c_switch_all)
|
163
|
136 cflags = $(CFLAGS) $(cppflags)
|
173
|
137 ldflags = $(ld_switch_all)
|
0
|
138
|
|
139 .c.o:
|
149
|
140 $(CC) -c $(cflags) $<
|
0
|
141
|
163
|
142 ## Create preprocessor output (debugging purposes only)
|
70
|
143 .c.i:
|
149
|
144 $(CC) -P $(cppflags) $<
|
0
|
145
|
|
146 #ifdef ENERGIZE
|
|
147 # ifdef EMACS_BTL
|
149
|
148 BTL_dir=$(srcdir)/../btl
|
|
149 BTL_objs = cadillac-btl.o cadillac-btl-process.o cadillac-btl-asm.o cadillac-btl-emacs.o
|
|
150 # endif /* EMACS_BTL */
|
0
|
151 # if defined(FREE_CHECKING) || defined(DEBUG_INPUT_BLOCKING) || defined(DEBUG_GCPRO)
|
149
|
152 freecheck_objs = free-hook.o
|
|
153 # endif /* FREE */
|
|
154 energize_objs = energize.o $(freecheck_objs)
|
|
155 #endif /* ENERGIZE */
|
0
|
156
|
163
|
157 ## lastfile must follow all files whose initialized data areas should
|
|
158 ## be dumped as pure by dump-emacs.
|
0
|
159
|
163
|
160 ## NOTE: The last line cannot be all macros, because make will barf
|
|
161 ## if they all come out null.
|
0
|
162
|
157
|
163 objs=\
|
|
164 abbrev.o alloc.o blocktype.o buffer.o bytecode.o\
|
|
165 callint.o callproc.o casefiddle.o casetab.o chartab.o\
|
|
166 cmdloop.o cmds.o console.o console-stream.o\
|
|
167 data.o device.o dired.o doc.o doprnt.o dynarr.o\
|
|
168 editfns.o elhash.o emacs.o\
|
|
169 $(energize_objs) eval.o events.o $(extra_objs)\
|
163
|
170 event-stream.o extents.o faces.o\
|
173
|
171 fileio.o $(LOCK_OBJ) filemode.o floatfns.o fns.o font-lock.o\
|
157
|
172 frame.o general.o getloadavg.o glyphs.o\
|
|
173 $(gui_objs) hash.o indent.o insdel.o intl.o\
|
|
174 keymap.o $(RTC_patch_objs) lread.o lstream.o\
|
|
175 macros.o marker.o md5.o minibuf.o objects.o opaque.o\
|
|
176 print.o process.o profile.o pure.o\
|
|
177 rangetab.o redisplay.o redisplay-output.o regex.o\
|
|
178 search.o signal.o sound.o\
|
|
179 specifier.o strftime.o symbols.o syntax.o sysdep.o\
|
|
180 undo.o $(x_objs) window.o
|
0
|
181
|
|
182 #ifdef REL_ALLOC
|
149
|
183 rallocdocsrc = ralloc.c
|
0
|
184 rallocobjs = ralloc.o
|
|
185 #endif
|
|
186
|
177
|
187 malloclib =
|
0
|
188 #ifndef SYSTEM_MALLOC
|
|
189 # ifdef GNU_MALLOC /* New GNU malloc */
|
|
190 # ifdef ERROR_CHECK_MALLOC
|
|
191 mallocobjs = gmalloc.o free-hook.o vm-limit.o
|
|
192 mallocdocsrc = free-hook.c
|
149
|
193 # else /* New GNU malloc, sans error checking */
|
0
|
194 mallocobjs = gmalloc.o vm-limit.o
|
|
195 mallocdocsrc =
|
149
|
196 # endif /* ERROR_CHECK_MALLOC */
|
0
|
197 # else /* Old GNU malloc */
|
|
198 mallocobjs = malloc.o
|
|
199 mallocdocsrc =
|
|
200 # endif /* Old GNU malloc */
|
149
|
201 #else /* SYSTEM_MALLOC */
|
0
|
202 mallocobjs =
|
|
203 mallocdocsrc =
|
177
|
204 #ifdef USE_DEBUG_MALLOC
|
|
205 malloclib = -ldmalloc
|
|
206 #endif /* USE_DEBUG_MALLOC */
|
0
|
207 #endif /* SYSTEM_MALLOC */
|
|
208
|
|
209 #ifdef HAVE_X_WINDOWS
|
|
210
|
|
211 # ifdef EXTERNAL_WIDGET
|
149
|
212 external_widget_objs = ExternalShell.o extw-Xt-nonshared.o extw-Xlib-nonshared.o
|
0
|
213
|
163
|
214 ## Now we try to figure out how to link a shared library.
|
|
215 ## If we cannot figure it out, leave EXTW_LINK undefined and a shared
|
|
216 ## library will not be created.
|
0
|
217
|
|
218 # ifdef USE_GCC
|
|
219 # ifdef USG5
|
|
220 # define EXTW_LINK(objs, output) $(CC) -shared objs -Xlinker -z -Xlinker text -o output
|
163
|
221 ## I cannot figure out how to do shared a.out libraries, so just punt.
|
0
|
222 # elif !defined (LINUX) || defined (__ELF__)
|
|
223 # define EXTW_LINK(objs, output) $(CC) -shared objs -o output
|
|
224 # endif
|
|
225 # elif defined (USG5)
|
|
226 # if defined (IRIX)
|
|
227 # define EXTW_LINK(objs, output) $(LD) -shared -g -check_registry ${TOOLROOT}/usr/lib/so_locations objs -o output
|
|
228 # else /* not IRIX */
|
|
229 # define EXTW_LINK(objs, output) $(CC) -G objs -z text -o output
|
|
230 # endif /* not IRIX */
|
|
231 # else /* not USG5 */
|
|
232 # if defined (DEC_ALPHA) && defined (OSF1)
|
163
|
233 # define EXTW_LINK(objs, output) $(LD) $(ldflags) $(ld_switch_shared) -d objs -o output $(LIBES)
|
0
|
234 # else /* !(DEC_ALPHA && OSF1) */
|
|
235 # define EXTW_LINK(objs, output) $(LD) -dc objs -assert pure-text -o output
|
|
236 # endif /* !(DEC_ALPHA && OSF1) */
|
|
237 # endif /* not USG5 */
|
|
238
|
|
239 # ifdef LWLIB_USES_MOTIF
|
|
240 # ifdef EXTW_LINK
|
157
|
241 motif_other_files = libextcli_Xm.a libextcli_Xm.so.1
|
0
|
242 # else
|
157
|
243 motif_other_files = libextcli_Xm.a
|
0
|
244 # endif
|
|
245 #endif
|
|
246
|
|
247 # ifdef EXTW_LINK
|
157
|
248 shared_other_files = libextcli_Xt.so.1 libextcli_Xlib.so.1
|
0
|
249 # endif
|
157
|
250 other_files=\
|
|
251 ${motif_other_files}\
|
|
252 libextcli_Xt.a libextcli_Xlib.a\
|
|
253 ${shared_other_files}
|
165
|
254
|
|
255 all: ${other_files}
|
149
|
256 # endif /* EXTERNAL_WIDGET */
|
0
|
257
|
149
|
258 X11_objs = EmacsFrame.o EmacsShell.o TopLevelEmacsShell.o TransientEmacsShell.o EmacsManager.o $(external_widget_objs)
|
|
259 #endif /* HAVE_X_WINDOWS */
|
0
|
260
|
163
|
261 ## define otherobjs as list of object files that make-docfile
|
|
262 ## should not be told about.
|
151
|
263 otherobjs = $(BTL_objs) lastfile.o $(mallocobjs) $(rallocobjs) $(X11_objs)
|
0
|
264
|
177
|
265 LIBES = $(lwlib_libs) $(quantify_libs) $(malloclib) $(ld_libs_all) $(lib_gcc)
|
0
|
266
|
|
267 #ifdef I18N3
|
149
|
268 mo_dir = ${etcdir}
|
|
269 mo_file = ${mo_dir}emacs.mo
|
0
|
270 #endif
|
|
271
|
153
|
272 LOADPATH = EMACSLOADPATH="${lispdir}prim"
|
0
|
273 DUMPENV = $(LOADPATH)
|
|
274
|
167
|
275 release: temacs ${libsrc}DOC $(mo_file) ${other_files}
|
0
|
276 #ifdef CANNOT_DUMP
|
|
277 ln temacs xemacs
|
|
278 #else
|
|
279 #ifdef HAVE_SHM
|
|
280 -if [ -w ${srcdir}/../lisp ]; then \
|
80
|
281 w=`pwd`; cd ${srcdir} && $${w}/temacs -nl -batch -l inc-vers; \
|
0
|
282 else true; fi
|
104
|
283 @touch SATISFIED
|
|
284 -$(DUMPENV) ./temacs -nl -batch -l loadup.el dump
|
173
|
285 @if test ! -f SATISFIED; then $(RECURSIVE_MAKE) $@; fi
|
163
|
286 @$(RM) SATISFIED
|
0
|
287 #else /* ! defined (HAVE_SHM) */
|
|
288 -if [ -w ${srcdir}/../lisp ]; then \
|
80
|
289 w=`pwd`; cd ${srcdir} && $${w}/temacs -batch -l inc-vers; \
|
0
|
290 else true; fi
|
104
|
291 @touch SATISFIED
|
|
292 -$(DUMPENV) ./temacs -batch -l loadup.el dump
|
173
|
293 @if test ! -f SATISFIED; then $(RECURSIVE_MAKE) $@; fi
|
163
|
294 @$(RM) SATISFIED
|
0
|
295 #endif /* ! defined (HAVE_SHM) */
|
|
296 touch release
|
|
297 #endif /* ! defined (CANNOT_DUMP) */
|
|
298
|
167
|
299 FRC.DOC:
|
|
300
|
173
|
301 FRC.xemacs:
|
|
302
|
|
303 xemacs: temacs ${libsrc}DOC $(mo_file) ${other_files} FRC.xemacs
|
|
304 @touch NOBYTECOMPILE
|
|
305 -${DUMPENV} ./temacs -batch -l ../prim/update-elc.el
|
|
306 if test -f NOBYTECOMPILE || test ! -f xemacs; then \
|
|
307 $(RECURSIVE_MAKE) binary; \
|
|
308 fi
|
|
309 @$(RM) NOBYTECOMPILE
|
|
310
|
|
311 binary: temacs
|
104
|
312 @touch SATISFIED
|
|
313 -$(DUMPENV) ./temacs -batch -l loadup.el dump
|
173
|
314 @if test ! -f SATISFIED; then $(RECURSIVE_MAKE) $@; fi
|
163
|
315 @$(RM) SATISFIED
|
0
|
316
|
|
317 obj_src = $(objs:.o=.c)
|
|
318
|
70
|
319 #ifdef DYNODUMP
|
163
|
320 dynodump_deps = ../dynodump/dynodump.so
|
|
321 ../dynodump/dynodump.so:
|
173
|
322 cd ../dynodump && $(RECURSIVE_MAKE)
|
149
|
323 #endif /* DYNODUMP */
|
0
|
324
|
169
|
325 ${libsrc}DOC: temacs
|
167
|
326 #ifdef NO_DOC_FILE
|
|
327 if test -f $@; then touch $@ && exit 0; fi; \
|
|
328 #endif
|
169
|
329 $(RM) ${libsrc}DOC; \
|
|
330 ${DUMPENV} ./temacs -batch -l ../prim/make-docfile.el -- \
|
163
|
331 -o ${libsrc}DOC -d ${srcdir} -i ${libsrc}../site-packages \
|
|
332 ${obj_src} ${mallocdocsrc} ${rallocdocsrc}
|
0
|
333
|
|
334 dump_elcs: dump-elcs
|
|
335
|
|
336 dump-elcs: temacs
|
163
|
337 -${DUMPENV} ./temacs -batch -l ../prim/update-elc.el
|
0
|
338
|
80
|
339 all-elc all-elcs:
|
173
|
340 cd .. && $(RECURSIVE_MAKE) all-elc
|
80
|
341
|
70
|
342 #ifdef I18N3
|
|
343
|
|
344 # if defined(SPARC) && !defined(USG)
|
|
345 xgettext= /usr/openwin/bin/xgettext
|
|
346 xgettext_args= -o emacs -m_X messages
|
|
347 msgfmt= /usr/openwin/bin/msgfmt
|
|
348 # else
|
|
349 xgettext= xgettext
|
|
350 xgettext_args= -s -d emacs -M_X messages
|
|
351 msgfmt= msgfmt
|
|
352 #endif
|
|
353
|
167
|
354 ${mo_dir}emacs.po: ${libsrc}make-msgfile ${libsrc}make-po ${objs}
|
|
355 ${libsrc}make-msgfile -o ${libsrc}messages ${objs}
|
80
|
356 cd ${libsrc} && ${xgettext} ${xgettext_args}
|
163
|
357 $(RM) ${mo_dir}emacs.po
|
149
|
358 cd ${libsrc} && ${libsrc}make-po -a ${mo_dir}emacs.po DOC
|
70
|
359
|
149
|
360 ${mo_dir}emacs.mo: ${mo_dir}emacs.po
|
|
361 cd ${mo_dir} && ${msgfmt} -o emacs.mo emacs.po
|
70
|
362
|
|
363 ${libsrc}make-msgfile:
|
173
|
364 cd ${libsrc} && $(RECURSIVE_MAKE) make-msgfile
|
70
|
365
|
|
366 ${libsrc}make-po:
|
173
|
367 cd ${libsrc} && $(RECURSIVE_MAKE) make-po
|
70
|
368
|
|
369 #endif /* I18N3 */
|
|
370
|
0
|
371 ${libsrc}make-docfile:
|
173
|
372 cd ${libsrc} && $(RECURSIVE_MAKE) make-docfile
|
0
|
373
|
163
|
374 ## Lint Section
|
153
|
375 LINT.c=$(LINT) $(LINTFLAGS) $(LINTINCLUDES)
|
0
|
376 LINTFILES= $(objs:.o=.ln)
|
149
|
377 LINTINCLUDES = $(cppflags)
|
163
|
378 ## LINTFLAGS= -fd -m -p -s -u -v -x
|
2
|
379 LINTFLAGS= -fd -m -s -u -v -x
|
0
|
380 lint: $(LINTFILES)
|
|
381 $(LINT.c) $(LINTFILES)
|
163
|
382 ## end of Lint Section
|
0
|
383
|
157
|
384 temacs_deps=\
|
173
|
385 $(LOCALCPP) $(start_files) ${objs} ${otherobjs}\
|
163
|
386 $(lwlib_deps) $(dynodump_deps) prefix-args
|
0
|
387
|
157
|
388 temacs_link_args=\
|
173
|
389 ${start_flags} ${ldflags}\
|
163
|
390 -o $@ ${start_files} ${objs} ${otherobjs} ${LIBES}
|
0
|
391
|
149
|
392 temacs: $(temacs_deps)
|
173
|
393 if $(LD) $(temacs_link_args); then \
|
|
394 $(RM) xemacs; \
|
|
395 fi
|
0
|
396
|
78
|
397 rtc_patch.o:
|
|
398 rtc_patch_area -o $@
|
|
399
|
149
|
400 rtcmacs: $(temacs_deps) rtc_patch.o
|
173
|
401 $(RM) temacs; $(RECURSIVE_MAKE) temacs RTC_patch_objs=rtc_patch.o
|
78
|
402 mv temacs rtcmacs
|
|
403
|
|
404 rtcrun: rtcmacs
|
|
405 dbx -q -C -c \
|
|
406 'dbxenv rtc_error_log_file_name /dev/fd/1; \
|
|
407 dbxenv suppress_startup_message 5.0; \
|
|
408 ignore POLL; \
|
|
409 check -access; \
|
|
410 suppress rui; \
|
|
411 runargs -batch -l loadup.el run-temacs -q; \
|
|
412 run' rtcmacs
|
|
413
|
149
|
414 puremacs: $(temacs_deps)
|
|
415 $(PURIFY_PROG) $(PURIFY_FLAGS) $(LD) $(temacs_link_args)
|
0
|
416
|
149
|
417 quantmacs: $(temacs_deps)
|
|
418 $(quantify_prog) $(quantify_flags) $(LD) $(temacs_link_args)
|
0
|
419
|
149
|
420 covmacs: $(temacs_deps)
|
|
421 $(PURECOV_PROG) $(LD) $(temacs_link_args)
|
0
|
422
|
|
423 TopLevelEmacsShell.o : ${srcdir}/EmacsShell-sub.c
|
149
|
424 $(CC) -c $(cflags) -DDEFINE_TOP_LEVEL_EMACS_SHELL ${srcdir}/EmacsShell-sub.c
|
0
|
425 mv EmacsShell-sub.o TopLevelEmacsShell.o
|
|
426
|
|
427 TransientEmacsShell.o : ${srcdir}/EmacsShell-sub.c TopLevelEmacsShell.o
|
149
|
428 $(CC) -c $(cflags) -DDEFINE_TRANSIENT_EMACS_SHELL ${srcdir}/EmacsShell-sub.c
|
0
|
429 mv EmacsShell-sub.o TransientEmacsShell.o
|
|
430
|
163
|
431 ## Position-independent code for shared library creation
|
149
|
432 #if USE_GCC
|
|
433 pic_arg = -fpic
|
|
434 #elif defined (IRIX)
|
|
435 pic_arg = -KPIC
|
|
436 # else
|
|
437 pic_arg = -K pic
|
|
438 #endif
|
|
439
|
0
|
440 #ifdef EXTERNAL_WIDGET
|
|
441
|
157
|
442 external_client_motif_objs_shared = ExternalClient-Xm-shared.o extw-Xt-shared.o extw-Xlib-shared.o
|
|
443 external_client_xt_objs_shared = ExternalClient-Xt-shared.o extw-Xt-shared.o extw-Xlib-shared.o
|
|
444 external_client_xlib_objs_shared = ExternalClient-Xlib-shared.o extw-Xlib-shared.o
|
|
445 external_client_motif_objs_nonshared = ExternalClient-Xm-nonshared.o extw-Xt-nonshared.o extw-Xlib-nonshared.o
|
|
446 external_client_xt_objs_nonshared = ExternalClient-Xt-nonshared.o extw-Xt-nonshared.o extw-Xlib-nonshared.o
|
|
447 external_client_xlib_objs_nonshared = ExternalClient-Xlib-nonshared.o extw-Xlib-nonshared.o
|
0
|
448
|
163
|
449 ## Add dependencies so things work right with a parallel make
|
0
|
450 ExternalClient-Xm-shared.o: ${srcdir}/ExternalClient.c ExternalClient-Xt-shared.o ExternalClient-Xm-nonshared.o
|
149
|
451 $(CC) -c $(pic_arg) $(cflags) -DEXTW_USES_MOTIF ${srcdir}/ExternalClient.c
|
0
|
452 mv ExternalClient.o ExternalClient-Xm-shared.o
|
|
453
|
|
454 ExternalClient-Xt-shared.o: ${srcdir}/ExternalClient.c ExternalClient-Xt-nonshared.o
|
149
|
455 $(CC) -c $(pic_arg) $(cflags) ${srcdir}/ExternalClient.c
|
0
|
456 mv ExternalClient.o ExternalClient-Xt-shared.o
|
|
457
|
|
458 ExternalClient-Xlib-shared.o: ${srcdir}/ExternalClient-Xlib.c ExternalClient-Xlib-nonshared.o
|
149
|
459 $(CC) -c $(pic_arg) $(cflags) ${srcdir}/ExternalClient-Xlib.c
|
0
|
460 mv ExternalClient-Xlib.o ExternalClient-Xlib-shared.o
|
|
461
|
|
462 ExternalClient-Xm-nonshared.o: ${srcdir}/ExternalClient.c ExternalClient-Xt-nonshared.o
|
149
|
463 $(CC) -c $(cflags) -DEXTW_USES_MOTIF ${srcdir}/ExternalClient.c
|
0
|
464 mv ExternalClient.o ExternalClient-Xm-nonshared.o
|
|
465
|
|
466 ExternalClient-Xt-nonshared.o: ${srcdir}/ExternalClient.c
|
149
|
467 $(CC) -c $(cflags) ${srcdir}/ExternalClient.c
|
0
|
468 mv ExternalClient.o ExternalClient-Xt-nonshared.o
|
|
469
|
|
470 ExternalClient-Xlib-nonshared.o: ${srcdir}/ExternalClient-Xlib.c
|
149
|
471 $(CC) -c $(cflags) ${srcdir}/ExternalClient-Xlib.c
|
0
|
472 mv ExternalClient-Xlib.o ExternalClient-Xlib-nonshared.o
|
|
473
|
163
|
474 ## We compile the common files twice (once with PIC and once without)
|
|
475 ## because on some systems, compiling with PIC but not linking into
|
|
476 ## a shared library messes things up.
|
|
477
|
0
|
478 extw-Xt-shared.o: ${srcdir}/extw-Xt.c extw-Xt-nonshared.o
|
149
|
479 $(CC) -c $(pic_arg) $(cflags) ${srcdir}/extw-Xt.c
|
0
|
480 mv extw-Xt.o extw-Xt-shared.o
|
|
481
|
|
482 extw-Xlib-shared.o: ${srcdir}/extw-Xlib.c extw-Xlib-nonshared.o
|
149
|
483 $(CC) -c $(pic_arg) $(cflags) ${srcdir}/extw-Xlib.c
|
0
|
484 mv extw-Xlib.o extw-Xlib-shared.o
|
|
485
|
|
486 extw-Xt-nonshared.o: ${srcdir}/extw-Xt.c
|
149
|
487 $(CC) -c $(cflags) ${srcdir}/extw-Xt.c
|
0
|
488 mv extw-Xt.o extw-Xt-nonshared.o
|
|
489
|
|
490 extw-Xlib-nonshared.o: ${srcdir}/extw-Xlib.c
|
149
|
491 $(CC) -c $(cflags) ${srcdir}/extw-Xlib.c
|
0
|
492 mv extw-Xlib.o extw-Xlib-nonshared.o
|
|
493
|
157
|
494 libextcli_Xm.a: ${external_client_motif_objs_nonshared}
|
|
495 ar r libextcli_Xm.a ${external_client_motif_objs_nonshared}
|
0
|
496
|
157
|
497 libextcli_Xt.a: ${external_client_xt_objs_nonshared}
|
|
498 ar r libextcli_Xt.a ${external_client_xt_objs_nonshared}
|
0
|
499
|
157
|
500 libextcli_Xlib.a: ${external_client_xlib_objs_nonshared}
|
|
501 ar r libextcli_Xlib.a ${external_client_xlib_objs_nonshared}
|
0
|
502
|
|
503 #ifdef EXTW_LINK
|
|
504
|
157
|
505 libextcli_Xm.so.1: ${external_client_motif_objs_shared}
|
|
506 EXTW_LINK(${external_client_motif_objs_shared}, libextcli_Xm.so.1)
|
0
|
507
|
157
|
508 libextcli_Xt.so.1: ${external_client_xt_objs_shared}
|
|
509 EXTW_LINK(${external_client_xt_objs_shared}, libextcli_Xt.so.1)
|
0
|
510
|
157
|
511 libextcli_Xlib.so.1: ${external_client_xlib_objs_shared}
|
|
512 EXTW_LINK(${external_client_xlib_objs_shared}, libextcli_Xlib.so.1)
|
0
|
513
|
149
|
514 #endif /* EXTW_LINK */
|
0
|
515
|
|
516 #endif /* EXTERNAL_WIDGET */
|
|
517
|
|
518 prefix-args: ${srcdir}/prefix-args.c config.h
|
149
|
519 $(CC) $(cflags) ${srcdir}/prefix-args.c -o prefix-args
|
0
|
520
|
|
521 config.h: ${srcdir}/config.h.in
|
104
|
522 puresize_adjust.h: ${srcdir}/puresize.h
|
0
|
523 paths.h: ${srcdir}/paths.h.in
|
163
|
524 Emacs.ad.h: ${srcdir}/${etcdir}Emacs.ad
|
0
|
525
|
163
|
526 config.h puresize_adjust.h paths.h Emacs.ad.h :
|
|
527 @echo "The file $@ needs to be re-generated."
|
|
528 @echo "Please run a make in the top level directory."
|
|
529 @echo "Consult the file \`INSTALL' for instructions for building XEmacs."
|
|
530 @exit 1
|
0
|
531
|
163
|
532 ## Some machines have alloca built-in.
|
|
533 ## They should define HAVE_ALLOCA, or may just let alloca.s
|
|
534 ## be used but generate no code.
|
|
535 ## Some have it written in assembler in alloca.s.
|
|
536 ## Some use the C version in alloca.c (these define C_ALLOCA in config.h).
|
|
537
|
0
|
538
|
|
539 #ifdef C_ALLOCA
|
163
|
540 ## We could put something in alloca.c to #define free and malloc
|
|
541 ## whenever emacs was #defined, but that's not appropriate for all
|
|
542 ## users of alloca in Emacs. Check out ../lib-src/getopt.c. */
|
|
543
|
0
|
544 alloca.o : ${srcdir}/alloca.c
|
149
|
545 $(CC) -c -Dfree=xfree -Dmalloc=xmalloc $(cflags) $<
|
0
|
546 #else
|
|
547 #ifndef HAVE_ALLOCA
|
|
548 alloca.o : ${srcdir}/alloca.s config.h
|
163
|
549 ## $(CPP) is cc -E, which may get confused by filenames
|
|
550 ## that do not end in .c. So copy file to a safe name. */
|
|
551 ## cp ${srcdir}/alloca.s allocatem.c
|
|
552 ## Remove any ^L, blank lines, and preprocessor comments,
|
|
553 ## since some assemblers barf on them. Use a different basename for the
|
|
554 ## output file, since some stupid compilers (Green Hill) use that
|
|
555 ## name for the intermediate assembler file.
|
149
|
556 $(CPP) $(cppflags) allocatem.c | \
|
0
|
557 sed -e 's///' -e 's/^#.*//' | \
|
|
558 sed -n -e '/^..*$$/p' > allocax.s
|
163
|
559 @$(RM) alloca.o
|
|
560 ## Xenix, in particular, needs to run assembler via cc.
|
0
|
561 $(CC) -c allocax.s
|
|
562 mv allocax.o alloca.o
|
163
|
563 $(RM) allocax.s allocatem.c
|
0
|
564 #endif /* HAVE_ALLOCA */
|
|
565 #endif /* ! defined (C_ALLOCA) */
|
|
566
|
|
567 #ifdef EMACS_BTL
|
149
|
568 BTL_includes = -I$(BTL_dir)
|
|
569 BTL_compile = -DEMACS_BTL -D`lucid-arch` -I. $(BTL_includes) $(BTL_dir)/$(@:.o=.c)
|
0
|
570
|
|
571 cadillac-btl.o cadillac-btl-process.o cadillac-btl-emacs.o:
|
149
|
572 $(CC) $(CFLAGS) -c $(BTL_compile)
|
0
|
573 cadillac-btl-asm.o:
|
149
|
574 $(CC) $(CFLAGS) -c $(BTL_compile)
|
0
|
575 #endif /* EMACS_BTL */
|
|
576
|
|
577 #ifdef ENERGIZE
|
|
578 energize.o: ${srcdir}/energize.c
|
149
|
579 $(CC) -c $(cppflags) $(cflags) $(BTL_includes) $<
|
0
|
580 #endif /* ENERGIZE */
|
|
581
|
|
582 #ifdef HAVE_NATIVE_SOUND
|
|
583 sunplay.o: ${srcdir}/sunplay.c
|
149
|
584 $(CC) -c $(sound_cflags) $(cflags) $<
|
0
|
585 hpplay.o: ${srcdir}/hpplay.c
|
149
|
586 $(CC) -c -Demacs $(sound_cflags) $(cflags) $<
|
0
|
587 #endif /* HAVE_NATIVE_SOUND */
|
|
588
|
163
|
589 ## System-specific programs to be made.
|
|
590 ## ${other_files}, $(objects_system) and $(objects_machine)
|
|
591 ## select which of these should be compiled. */
|
|
592
|
171
|
593 .PHONY: mostlyclean clean distclean realclean versionclean extraclean
|
0
|
594 mostlyclean:
|
171
|
595 $(RM) temacs puremacs quantmacs prefix-args depend.* *.o *.i core
|
|
596 clean: mostlyclean versionclean
|
|
597 $(RM) libextcli*
|
163
|
598 ## This is used in making a distribution.
|
|
599 ## Do not use it on development directories!
|
171
|
600 distclean: clean
|
163
|
601 $(RM) config.h paths.h puresize_adjust.h Emacs.ad.h \
|
171
|
602 Makefile Makefile.in TAGS
|
0
|
603 realclean: distclean
|
|
604 versionclean:
|
163
|
605 $(RM) xemacs ${libsrc}DOC
|
0
|
606 extraclean: realclean
|
171
|
607 $(RM) *~ \#* m/*~ m/\#* s/*~ s/\#*
|
0
|
608
|
163
|
609 .PHONY : lock unlock
|
171
|
610 SOURCES = *.[chm] *.pswm [sm]/* COPYING paths.h.in Makefile.in.in \
|
120
|
611 config.h.in README COPYING ChangeLog
|
0
|
612 unlock:
|
|
613 chmod u+w $(SOURCES)
|
|
614
|
|
615 relock:
|
|
616 chmod -w $(SOURCES)
|
|
617
|
|
618 #ifdef __GNUC__
|
|
619
|
163
|
620 ## Dependency processing using GCC
|
0
|
621
|
|
622 .c.dep:
|
149
|
623 $(CC) -MM $(cflags) $< > $*.dep
|
0
|
624
|
|
625 .SUFFIXES: .dep
|
|
626
|
|
627 obj_dep = $(objs:.o=.dep)
|
|
628
|
163
|
629 .PHONY : depend gnu-depend
|
|
630 ## #### Needs a bit of work: it doesn't see the object files that
|
|
631 ## we are not compiling
|
0
|
632 gnu-depend: $(obj_dep)
|
|
633 cat $(obj_dep) | sh ${libsrc}process-gnu-depends.sh > depend.out
|
|
634
|
|
635 #endif /* GCC */
|
|
636
|
163
|
637 ## Dependency processing using makedepend
|
0
|
638
|
|
639 depend:
|
|
640 : > depend.tmp
|
153
|
641 makedepend -f depend.tmp -Dsubprocesses \
|
149
|
642 -DHAVE_X_WINDOWS -DMULE -- $(cppflags) $(cflags) \
|
70
|
643 -- *.c
|
0
|
644 sh ${libsrc}process-depends.sh < depend.tmp > depend.out
|
70
|
645 egrep '^mule|[^a-zA-Z]mule' depend.out > /tmp/depend1.$$
|
|
646 grep -v '^mule' depend.out | grep -v '[^a-zA-Z]mule' > /tmp/depend2.$$
|
|
647 echo '#ifdef MULE' > depend.out
|
|
648 cat /tmp/depend1.$$ >> depend.out
|
153
|
649 @# The things you have to do to pay homage to the lexer God ... frightening
|
70
|
650 echo '#endif /''* MULE *''/' >> depend.out
|
|
651 echo '' >> depend.out
|
|
652 cat /tmp/depend2.$$ >> depend.out
|
163
|
653 $(RM) /tmp/depend1.$$ /tmp/depend2.$$
|
0
|
654
|
163
|
655 ## Manually-generated dependencies (makedepend misbehaves on these)
|
0
|
656
|
163
|
657 ## (actually makedepend does OK on these but we want to conditionalize them)
|
0
|
658 #ifdef EXTERNAL_WIDGET
|
|
659 ExternalClient-Xlib.o: extw-Xlib.h
|
|
660 ExternalClient-Xm.o: config.h
|
|
661 ExternalClient-Xm.o: xintrinsicp.h
|
|
662 ExternalClient-Xm.o: ExternalClient.h
|
|
663 ExternalClient-Xm.o: ExternalClientP.h
|
|
664 ExternalClient-Xm.o: extw-Xlib.h
|
|
665 ExternalClient-Xm.o: extw-Xt.h
|
|
666 ExternalClient-Xt.o: config.h
|
|
667 ExternalClient-Xt.o: xintrinsicp.h
|
|
668 ExternalClient-Xt.o: ExternalClient.h
|
|
669 ExternalClient-Xt.o: ExternalClientP.h
|
|
670 ExternalClient-Xt.o: extw-Xlib.h
|
|
671 ExternalClient-Xt.o: extw-Xt.h
|
|
672 ExternalShell.o: ExternalShell.h
|
|
673 ExternalShell.o: ExternalShellP.h
|
|
674 ExternalShell.o: config.h
|
|
675 ExternalShell.o: extw-Xlib.h
|
|
676 ExternalShell.o: extw-Xt.h
|
|
677 ExternalShell.o: xintrinsic.h
|
|
678 ExternalShell.o: xintrinsicp.h
|
|
679 extw-Xlib-shared.o: config.h
|
|
680 extw-Xlib-shared.o: extw-Xlib.h
|
|
681 extw-Xt-shared.o: config.h
|
|
682 extw-Xt-shared.o: extw-Xlib.h
|
|
683 extw-Xt-shared.o: extw-Xt.h
|
|
684 extw-Xlib-nonshared.o: config.h
|
|
685 extw-Xlib-nonshared.o: extw-Xlib.h
|
|
686 extw-Xt-nonshared.o: config.h
|
|
687 extw-Xt-nonshared.o: extw-Xlib.h
|
|
688 extw-Xt-nonshared.o: extw-Xt.h
|
149
|
689 #endif /* EXTERNAL_WIDGET */
|
0
|
690
|
|
691 #ifdef EMACS_BTL
|
149
|
692 cadillac-btl.o: $(BTL_dir)/cadillac-btl.c
|
|
693 cadillac-btl.o: $(BTL_dir)/cadillac-btl.h
|
|
694 cadillac-btl.o: $(BTL_dir)/cadillac-btl-extern.h
|
|
695 cadillac-btl-asm.o: $(BTL_dir)/cadillac-btl-asm.c
|
|
696 cadillac-btl-asm.o: $(BTL_dir)/cadillac-btl.h
|
|
697 cadillac-btl-asm.o: $(BTL_dir)/cadillac-btl-extern.h
|
|
698 cadillac-btl-emacs.o: $(BTL_dir)/cadillac-btl-extern.h
|
|
699 cadillac-btl-process.o: $(BTL_dir)/cadillac-btl-process.c
|
|
700 cadillac-btl-process.o: $(BTL_dir)/cadillac-btl.h
|
|
701 cadillac-btl-process.o: $(BTL_dir)/cadillac-btl-extern.h
|
0
|
702 #endif /* EMACS_BTL */
|
|
703
|
163
|
704 ## (makedepend definitely misbehaves on these)
|
0
|
705 sgiplay.o: config.h
|
|
706 sgiplay.o: libst.h
|
|
707 unexconvex.o: getpagesize.h
|
|
708 unexec.o: getpagesize.h
|
|
709 unexaix.o: config.h
|
|
710 unexalpha.o: config.h
|
|
711 unexapollo.o: config.h
|
|
712 unexconvex.o: config.h
|
|
713 unexec.o: config.h
|
|
714 unexelf.o: config.h
|
|
715 unexenix.o: config.h
|
|
716 unexfreebsd.o: config.h
|
|
717 unexhp9k3.o: config.h
|
|
718 unexhp9k800.o: config.h
|
|
719 unexmips.o: config.h
|
|
720 unexsunos4.o: config.h
|
|
721
|
163
|
722 ## Dependencies generated by 'make depend'
|
0
|
723
|
70
|
724 #ifdef MULE
|
|
725 EmacsFrame.o: mule-charset.h
|
|
726 abbrev.o: mule-charset.h
|
|
727 alloc.o: mule-charset.h
|
|
728 buffer.o: mule-charset.h
|
|
729 bytecode.o: mule-charset.h
|
|
730 callint.o: mule-charset.h
|
|
731 callproc.o: mule-charset.h
|
|
732 callproc.o: mule-coding.h
|
|
733 casefiddle.o: mule-charset.h
|
|
734 casetab.o: mule-charset.h
|
|
735 chartab.o: mule-charset.h
|
|
736 cmdloop.o: mule-charset.h
|
|
737 cmds.o: mule-charset.h
|
|
738 console-tty.o: mule-charset.h
|
|
739 console-tty.o: mule-coding.h
|
|
740 console.o: mule-charset.h
|
|
741 data.o: mule-charset.h
|
|
742 device-tty.o: mule-charset.h
|
|
743 device-x.o: mule-charset.h
|
|
744 device.o: mule-charset.h
|
|
745 dialog-x.o: mule-charset.h
|
|
746 dired.o: mule-charset.h
|
|
747 doc.o: mule-charset.h
|
|
748 doprnt.o: mule-charset.h
|
|
749 editfns.o: mule-charset.h
|
|
750 emacs.o: mule-charset.h
|
|
751 eval.o: mule-charset.h
|
|
752 event-Xt.o: mule-charset.h
|
|
753 event-stream.o: mule-charset.h
|
|
754 event-stream.o: mule-coding.h
|
|
755 events.o: mule-charset.h
|
|
756 extents.o: mule-charset.h
|
|
757 faces.o: mule-charset.h
|
|
758 fileio.o: mule-charset.h
|
|
759 fileio.o: mule-coding.h
|
|
760 filelock.o: mule-charset.h
|
|
761 fns.o: mule-charset.h
|
|
762 font-lock.o: mule-charset.h
|
|
763 frame-x.o: mule-charset.h
|
|
764 frame.o: mule-charset.h
|
|
765 glyphs-x.o: mule-charset.h
|
|
766 glyphs.o: mule-charset.h
|
|
767 gui-x.o: mule-charset.h
|
|
768 indent.o: mule-charset.h
|
118
|
769 inline.o: mule-charset.h
|
|
770 inline.o: mule-coding.h
|
70
|
771 input-method-xlib.o: mule-charset.h
|
|
772 input-method-xlib.o: mule-coding.h
|
|
773 insdel.o: mule-charset.h
|
|
774 keymap.o: mule-charset.h
|
|
775 lread.o: mule-charset.h
|
|
776 lread.o: mule-coding.h
|
|
777 lstream.o: mule-charset.h
|
|
778 macros.o: mule-charset.h
|
|
779 marker.o: mule-charset.h
|
|
780 md5.o: mule-charset.h
|
|
781 menubar-x.o: mule-charset.h
|
|
782 minibuf.o: mule-charset.h
|
149
|
783 #ifdef HAVE_CANNA
|
70
|
784 mule-canna.o: blocktype.h
|
|
785 mule-canna.o: buffer.h
|
|
786 mule-canna.o: bufslots.h
|
|
787 mule-canna.o: config.h
|
|
788 mule-canna.o: dynarr.h
|
|
789 mule-canna.o: mule-charset.h
|
149
|
790 #endif /* HAVE_CANNA */
|
70
|
791 mule-ccl.o: blocktype.h
|
|
792 mule-ccl.o: buffer.h
|
|
793 mule-ccl.o: bufslots.h
|
|
794 mule-ccl.o: config.h
|
|
795 mule-ccl.o: dynarr.h
|
|
796 mule-ccl.o: mule-charset.h
|
|
797 mule-ccl.o: mule-coding.h
|
|
798 mule-charset.o: blocktype.h
|
|
799 mule-charset.o: buffer.h
|
|
800 mule-charset.o: bufslots.h
|
|
801 mule-charset.o: chartab.h
|
|
802 mule-charset.o: config.h
|
|
803 mule-charset.o: dynarr.h
|
|
804 mule-charset.o: elhash.h
|
|
805 mule-charset.o: lstream.h
|
|
806 mule-charset.o: mule-charset.h
|
|
807 mule-coding.o: blocktype.h
|
|
808 mule-coding.o: buffer.h
|
|
809 mule-coding.o: bufslots.h
|
|
810 mule-coding.o: config.h
|
|
811 mule-coding.o: dynarr.h
|
|
812 mule-coding.o: elhash.h
|
|
813 mule-coding.o: insdel.h
|
|
814 mule-coding.o: lstream.h
|
|
815 mule-coding.o: mule-charset.h
|
|
816 mule-coding.o: mule-coding.h
|
149
|
817 #if 0
|
70
|
818 mule-mcpath.o: blocktype.h
|
|
819 mule-mcpath.o: buffer.h
|
|
820 mule-mcpath.o: bufslots.h
|
|
821 mule-mcpath.o: config.h
|
|
822 mule-mcpath.o: dynarr.h
|
|
823 mule-mcpath.o: mule-charset.h
|
|
824 mule-mcpath.o: sysfile.h
|
149
|
825 #endif /* obsolete */
|
|
826 #ifdef HAVE_WNN
|
70
|
827 mule-wnnfns.o: blocktype.h
|
|
828 mule-wnnfns.o: buffer.h
|
|
829 mule-wnnfns.o: bufslots.h
|
|
830 mule-wnnfns.o: config.h
|
|
831 mule-wnnfns.o: dynarr.h
|
|
832 mule-wnnfns.o: mule-charset.h
|
|
833 mule-wnnfns.o: redisplay.h
|
|
834 mule-wnnfns.o: scrollbar.h
|
|
835 mule-wnnfns.o: window.h
|
149
|
836 #endif /* HAVE_WNN */
|
70
|
837 mule.o: blocktype.h
|
|
838 mule.o: config.h
|
|
839 mule.o: dynarr.h
|
|
840 mule.o: regex.h
|
|
841 objects-tty.o: mule-charset.h
|
|
842 objects-x.o: mule-charset.h
|
|
843 objects.o: mule-charset.h
|
|
844 print.o: mule-charset.h
|
|
845 process.o: mule-charset.h
|
|
846 process.o: mule-coding.h
|
|
847 redisplay-output.o: mule-charset.h
|
|
848 redisplay-tty.o: mule-charset.h
|
|
849 redisplay-x.o: mule-charset.h
|
|
850 redisplay-x.o: mule-coding.h
|
|
851 redisplay.o: mule-charset.h
|
|
852 redisplay.o: mule-coding.h
|
|
853 regex.o: mule-charset.h
|
|
854 scrollbar.o: mule-charset.h
|
|
855 search.o: mule-charset.h
|
|
856 sound.o: mule-charset.h
|
|
857 specifier.o: mule-charset.h
|
|
858 symbols.o: mule-charset.h
|
|
859 syntax.o: mule-charset.h
|
|
860 sysdep.o: mule-charset.h
|
|
861 toolbar-x.o: mule-charset.h
|
|
862 toolbar.o: mule-charset.h
|
|
863 tooltalk.o: mule-charset.h
|
|
864 undo.o: mule-charset.h
|
|
865 window.o: mule-charset.h
|
|
866 xselect.o: mule-charset.h
|
|
867 #endif /* MULE */
|
0
|
868
|
149
|
869 EmacsFrame.o: $(LWLIB_SRCDIR)/lwlib.h
|
0
|
870 EmacsFrame.o: EmacsFrame.h
|
|
871 EmacsFrame.o: EmacsFrameP.h
|
|
872 EmacsFrame.o: EmacsManager.h
|
|
873 EmacsFrame.o: blocktype.h
|
|
874 EmacsFrame.o: buffer.h
|
|
875 EmacsFrame.o: bufslots.h
|
|
876 EmacsFrame.o: config.h
|
|
877 EmacsFrame.o: conslots.h
|
|
878 EmacsFrame.o: console-x.h
|
|
879 EmacsFrame.o: console.h
|
|
880 EmacsFrame.o: device.h
|
|
881 EmacsFrame.o: dynarr.h
|
|
882 EmacsFrame.o: faces.h
|
|
883 EmacsFrame.o: frame.h
|
|
884 EmacsFrame.o: frameslots.h
|
|
885 EmacsFrame.o: glyphs-x.h
|
|
886 EmacsFrame.o: glyphs.h
|
|
887 EmacsFrame.o: objects-x.h
|
|
888 EmacsFrame.o: objects.h
|
|
889 EmacsFrame.o: redisplay.h
|
|
890 EmacsFrame.o: scrollbar.h
|
|
891 EmacsFrame.o: specifier.h
|
|
892 EmacsFrame.o: toolbar.h
|
|
893 EmacsFrame.o: window.h
|
|
894 EmacsFrame.o: xintrinsic.h
|
|
895 EmacsFrame.o: xintrinsicp.h
|
|
896 EmacsFrame.o: xmprimitivep.h
|
|
897 EmacsFrame.o: xmu.h
|
|
898 EmacsManager.o: EmacsManager.h
|
|
899 EmacsManager.o: EmacsManagerP.h
|
|
900 EmacsManager.o: config.h
|
|
901 EmacsManager.o: xintrinsicp.h
|
|
902 EmacsManager.o: xmmanagerp.h
|
|
903 EmacsShell-sub.o: EmacsShell.h
|
|
904 EmacsShell-sub.o: EmacsShellP.h
|
|
905 EmacsShell-sub.o: config.h
|
|
906 EmacsShell-sub.o: xintrinsic.h
|
|
907 EmacsShell-sub.o: xintrinsicp.h
|
|
908 EmacsShell.o: EmacsShell.h
|
|
909 EmacsShell.o: config.h
|
|
910 EmacsShell.o: xintrinsicp.h
|
|
911 abbrev.o: blocktype.h
|
|
912 abbrev.o: buffer.h
|
|
913 abbrev.o: bufslots.h
|
70
|
914 abbrev.o: chartab.h
|
0
|
915 abbrev.o: commands.h
|
|
916 abbrev.o: config.h
|
|
917 abbrev.o: dynarr.h
|
|
918 abbrev.o: insdel.h
|
|
919 abbrev.o: redisplay.h
|
|
920 abbrev.o: scrollbar.h
|
|
921 abbrev.o: syntax.h
|
|
922 abbrev.o: window.h
|
|
923 alloc.o: backtrace.h
|
|
924 alloc.o: blocktype.h
|
|
925 alloc.o: buffer.h
|
|
926 alloc.o: bufslots.h
|
|
927 alloc.o: bytecode.h
|
70
|
928 alloc.o: chartab.h
|
0
|
929 alloc.o: config.h
|
|
930 alloc.o: conslots.h
|
|
931 alloc.o: console.h
|
|
932 alloc.o: device.h
|
|
933 alloc.o: dynarr.h
|
|
934 alloc.o: elhash.h
|
|
935 alloc.o: events.h
|
|
936 alloc.o: extents.h
|
|
937 alloc.o: frame.h
|
|
938 alloc.o: frameslots.h
|
|
939 alloc.o: glyphs.h
|
171
|
940 alloc.o: puresize.h
|
0
|
941 alloc.o: redisplay.h
|
|
942 alloc.o: scrollbar.h
|
|
943 alloc.o: specifier.h
|
|
944 alloc.o: systime.h
|
|
945 alloc.o: toolbar.h
|
|
946 alloc.o: window.h
|
|
947 alloca.o: config.h
|
163
|
948 balloon_help.o: config.h
|
|
949 balloon_help.o: balloon_help.h
|
|
950 balloon-x.o: config.h
|
|
951 balloon-x.o: device.h
|
|
952 balloon-x.o: console-x.h
|
|
953 balloon-x.o: balloon_help.h
|
0
|
954 blocktype.o: blocktype.h
|
|
955 blocktype.o: config.h
|
|
956 blocktype.o: dynarr.h
|
|
957 buffer.o: blocktype.h
|
|
958 buffer.o: buffer.h
|
|
959 buffer.o: bufslots.h
|
70
|
960 buffer.o: chartab.h
|
0
|
961 buffer.o: commands.h
|
|
962 buffer.o: config.h
|
|
963 buffer.o: conslots.h
|
|
964 buffer.o: console.h
|
|
965 buffer.o: device.h
|
|
966 buffer.o: dynarr.h
|
|
967 buffer.o: elhash.h
|
|
968 buffer.o: extents.h
|
|
969 buffer.o: faces.h
|
|
970 buffer.o: frame.h
|
|
971 buffer.o: frameslots.h
|
|
972 buffer.o: insdel.h
|
|
973 buffer.o: process.h
|
|
974 buffer.o: redisplay.h
|
|
975 buffer.o: scrollbar.h
|
|
976 buffer.o: specifier.h
|
|
977 buffer.o: syntax.h
|
|
978 buffer.o: sysdep.h
|
|
979 buffer.o: sysfile.h
|
|
980 buffer.o: toolbar.h
|
|
981 buffer.o: window.h
|
|
982 bytecode.o: blocktype.h
|
|
983 bytecode.o: buffer.h
|
|
984 bytecode.o: bufslots.h
|
70
|
985 bytecode.o: chartab.h
|
0
|
986 bytecode.o: config.h
|
|
987 bytecode.o: dynarr.h
|
|
988 bytecode.o: syntax.h
|
|
989 callint.o: blocktype.h
|
|
990 callint.o: buffer.h
|
|
991 callint.o: bufslots.h
|
|
992 callint.o: bytecode.h
|
|
993 callint.o: commands.h
|
|
994 callint.o: config.h
|
|
995 callint.o: dynarr.h
|
|
996 callint.o: events.h
|
|
997 callint.o: insdel.h
|
|
998 callint.o: redisplay.h
|
|
999 callint.o: scrollbar.h
|
|
1000 callint.o: systime.h
|
|
1001 callint.o: window.h
|
|
1002 callproc.o: blocktype.h
|
|
1003 callproc.o: buffer.h
|
|
1004 callproc.o: bufslots.h
|
|
1005 callproc.o: commands.h
|
|
1006 callproc.o: config.h
|
|
1007 callproc.o: dynarr.h
|
|
1008 callproc.o: insdel.h
|
|
1009 callproc.o: lstream.h
|
|
1010 callproc.o: paths.h
|
|
1011 callproc.o: process.h
|
|
1012 callproc.o: redisplay.h
|
|
1013 callproc.o: scrollbar.h
|
|
1014 callproc.o: sysdep.h
|
|
1015 callproc.o: sysfile.h
|
|
1016 callproc.o: sysproc.h
|
|
1017 callproc.o: systime.h
|
|
1018 callproc.o: systty.h
|
|
1019 callproc.o: window.h
|
|
1020 casefiddle.o: blocktype.h
|
|
1021 casefiddle.o: buffer.h
|
|
1022 casefiddle.o: bufslots.h
|
70
|
1023 casefiddle.o: chartab.h
|
0
|
1024 casefiddle.o: commands.h
|
|
1025 casefiddle.o: config.h
|
|
1026 casefiddle.o: dynarr.h
|
|
1027 casefiddle.o: insdel.h
|
|
1028 casefiddle.o: syntax.h
|
|
1029 casetab.o: blocktype.h
|
|
1030 casetab.o: buffer.h
|
|
1031 casetab.o: bufslots.h
|
|
1032 casetab.o: config.h
|
|
1033 casetab.o: dynarr.h
|
|
1034 casetab.o: opaque.h
|
70
|
1035 chartab.o: blocktype.h
|
|
1036 chartab.o: buffer.h
|
|
1037 chartab.o: bufslots.h
|
|
1038 chartab.o: chartab.h
|
|
1039 chartab.o: commands.h
|
|
1040 chartab.o: config.h
|
|
1041 chartab.o: dynarr.h
|
|
1042 chartab.o: syntax.h
|
0
|
1043 cm.o: blocktype.h
|
|
1044 cm.o: config.h
|
|
1045 cm.o: conslots.h
|
|
1046 cm.o: console-tty.h
|
|
1047 cm.o: console.h
|
|
1048 cm.o: device.h
|
|
1049 cm.o: dynarr.h
|
|
1050 cm.o: frame.h
|
|
1051 cm.o: frameslots.h
|
|
1052 cm.o: lstream.h
|
|
1053 cm.o: redisplay.h
|
|
1054 cm.o: scrollbar.h
|
|
1055 cm.o: specifier.h
|
|
1056 cm.o: systty.h
|
|
1057 cm.o: toolbar.h
|
|
1058 cmdloop.o: blocktype.h
|
|
1059 cmdloop.o: buffer.h
|
|
1060 cmdloop.o: bufslots.h
|
|
1061 cmdloop.o: commands.h
|
|
1062 cmdloop.o: config.h
|
|
1063 cmdloop.o: conslots.h
|
|
1064 cmdloop.o: console.h
|
|
1065 cmdloop.o: device.h
|
|
1066 cmdloop.o: dynarr.h
|
|
1067 cmdloop.o: events.h
|
|
1068 cmdloop.o: frame.h
|
|
1069 cmdloop.o: frameslots.h
|
|
1070 cmdloop.o: macros.h
|
|
1071 cmdloop.o: redisplay.h
|
|
1072 cmdloop.o: scrollbar.h
|
|
1073 cmdloop.o: specifier.h
|
|
1074 cmdloop.o: systime.h
|
|
1075 cmdloop.o: toolbar.h
|
|
1076 cmdloop.o: window.h
|
|
1077 cmds.o: blocktype.h
|
|
1078 cmds.o: buffer.h
|
|
1079 cmds.o: bufslots.h
|
70
|
1080 cmds.o: chartab.h
|
0
|
1081 cmds.o: commands.h
|
|
1082 cmds.o: config.h
|
|
1083 cmds.o: dynarr.h
|
|
1084 cmds.o: insdel.h
|
|
1085 cmds.o: syntax.h
|
|
1086 console-stream.o: blocktype.h
|
|
1087 console-stream.o: config.h
|
|
1088 console-stream.o: conslots.h
|
|
1089 console-stream.o: console-stream.h
|
|
1090 console-stream.o: console-tty.h
|
|
1091 console-stream.o: console.h
|
|
1092 console-stream.o: device.h
|
|
1093 console-stream.o: dynarr.h
|
|
1094 console-stream.o: events.h
|
|
1095 console-stream.o: frame.h
|
|
1096 console-stream.o: frameslots.h
|
|
1097 console-stream.o: redisplay.h
|
|
1098 console-stream.o: scrollbar.h
|
|
1099 console-stream.o: specifier.h
|
|
1100 console-stream.o: sysdep.h
|
|
1101 console-stream.o: systime.h
|
|
1102 console-stream.o: systty.h
|
|
1103 console-stream.o: toolbar.h
|
|
1104 console-stream.o: window.h
|
|
1105 console-tty.o: blocktype.h
|
|
1106 console-tty.o: buffer.h
|
|
1107 console-tty.o: bufslots.h
|
|
1108 console-tty.o: config.h
|
|
1109 console-tty.o: conslots.h
|
|
1110 console-tty.o: console-stream.h
|
|
1111 console-tty.o: console-tty.h
|
|
1112 console-tty.o: console.h
|
|
1113 console-tty.o: device.h
|
|
1114 console-tty.o: dynarr.h
|
|
1115 console-tty.o: events.h
|
|
1116 console-tty.o: faces.h
|
|
1117 console-tty.o: frame.h
|
|
1118 console-tty.o: frameslots.h
|
|
1119 console-tty.o: lstream.h
|
|
1120 console-tty.o: redisplay.h
|
|
1121 console-tty.o: scrollbar.h
|
|
1122 console-tty.o: specifier.h
|
|
1123 console-tty.o: sysdep.h
|
|
1124 console-tty.o: systime.h
|
|
1125 console-tty.o: systty.h
|
|
1126 console-tty.o: toolbar.h
|
|
1127 console-x.o: blocktype.h
|
|
1128 console-x.o: config.h
|
|
1129 console-x.o: conslots.h
|
|
1130 console-x.o: console-x.h
|
|
1131 console-x.o: console.h
|
|
1132 console-x.o: dynarr.h
|
|
1133 console-x.o: process.h
|
|
1134 console-x.o: redisplay.h
|
|
1135 console-x.o: xintrinsic.h
|
|
1136 console.o: blocktype.h
|
|
1137 console.o: buffer.h
|
|
1138 console.o: bufslots.h
|
|
1139 console.o: config.h
|
|
1140 console.o: conslots.h
|
|
1141 console.o: console-tty.h
|
|
1142 console.o: console.h
|
|
1143 console.o: device.h
|
|
1144 console.o: dynarr.h
|
|
1145 console.o: events.h
|
|
1146 console.o: frame.h
|
|
1147 console.o: frameslots.h
|
|
1148 console.o: redisplay.h
|
|
1149 console.o: scrollbar.h
|
|
1150 console.o: specifier.h
|
|
1151 console.o: sysdep.h
|
|
1152 console.o: systime.h
|
|
1153 console.o: systty.h
|
|
1154 console.o: toolbar.h
|
|
1155 console.o: window.h
|
|
1156 data.o: blocktype.h
|
|
1157 data.o: buffer.h
|
|
1158 data.o: bufslots.h
|
|
1159 data.o: bytecode.h
|
|
1160 data.o: config.h
|
|
1161 data.o: dynarr.h
|
|
1162 data.o: sysfloat.h
|
149
|
1163 #ifdef HAVE_DATABASE
|
0
|
1164 database.o: blocktype.h
|
|
1165 database.o: config.h
|
|
1166 database.o: database.h
|
|
1167 database.o: dynarr.h
|
149
|
1168 #endif /* HAVE_DATABASE */
|
0
|
1169 debug.o: blocktype.h
|
|
1170 debug.o: bytecode.h
|
|
1171 debug.o: config.h
|
|
1172 debug.o: debug.h
|
|
1173 debug.o: dynarr.h
|
|
1174 device-tty.o: blocktype.h
|
|
1175 device-tty.o: buffer.h
|
|
1176 device-tty.o: bufslots.h
|
|
1177 device-tty.o: config.h
|
|
1178 device-tty.o: conslots.h
|
|
1179 device-tty.o: console-stream.h
|
|
1180 device-tty.o: console-tty.h
|
|
1181 device-tty.o: console.h
|
|
1182 device-tty.o: device.h
|
|
1183 device-tty.o: dynarr.h
|
|
1184 device-tty.o: events.h
|
|
1185 device-tty.o: faces.h
|
|
1186 device-tty.o: frame.h
|
|
1187 device-tty.o: frameslots.h
|
|
1188 device-tty.o: lstream.h
|
|
1189 device-tty.o: redisplay.h
|
|
1190 device-tty.o: scrollbar.h
|
|
1191 device-tty.o: specifier.h
|
|
1192 device-tty.o: sysdep.h
|
|
1193 device-tty.o: systime.h
|
|
1194 device-tty.o: systty.h
|
|
1195 device-tty.o: toolbar.h
|
149
|
1196 device-x.o: $(LWLIB_SRCDIR)/lwlib.h
|
0
|
1197 device-x.o: blocktype.h
|
|
1198 device-x.o: buffer.h
|
|
1199 device-x.o: bufslots.h
|
|
1200 device-x.o: config.h
|
|
1201 device-x.o: conslots.h
|
|
1202 device-x.o: console-x.h
|
|
1203 device-x.o: console.h
|
|
1204 device-x.o: device.h
|
|
1205 device-x.o: dynarr.h
|
|
1206 device-x.o: events.h
|
|
1207 device-x.o: faces.h
|
|
1208 device-x.o: frame.h
|
|
1209 device-x.o: frameslots.h
|
|
1210 device-x.o: glyphs-x.h
|
|
1211 device-x.o: glyphs.h
|
|
1212 device-x.o: objects-x.h
|
|
1213 device-x.o: objects.h
|
|
1214 device-x.o: redisplay.h
|
|
1215 device-x.o: scrollbar.h
|
|
1216 device-x.o: specifier.h
|
|
1217 device-x.o: sysdep.h
|
|
1218 device-x.o: sysfile.h
|
|
1219 device-x.o: systime.h
|
|
1220 device-x.o: toolbar.h
|
|
1221 device-x.o: window.h
|
|
1222 device-x.o: xgccache.h
|
|
1223 device-x.o: xintrinsic.h
|
|
1224 device-x.o: xintrinsicp.h
|
|
1225 device-x.o: xmu.h
|
|
1226 device.o: blocktype.h
|
|
1227 device.o: buffer.h
|
|
1228 device.o: bufslots.h
|
|
1229 device.o: config.h
|
|
1230 device.o: conslots.h
|
|
1231 device.o: console.h
|
|
1232 device.o: device.h
|
|
1233 device.o: dynarr.h
|
|
1234 device.o: elhash.h
|
|
1235 device.o: events.h
|
|
1236 device.o: faces.h
|
|
1237 device.o: frame.h
|
|
1238 device.o: frameslots.h
|
|
1239 device.o: keymap.h
|
|
1240 device.o: redisplay.h
|
|
1241 device.o: scrollbar.h
|
|
1242 device.o: specifier.h
|
|
1243 device.o: sysdep.h
|
|
1244 device.o: systime.h
|
|
1245 device.o: toolbar.h
|
|
1246 device.o: window.h
|
|
1247 dgif_lib.o: config.h
|
|
1248 dgif_lib.o: gif_lib.h
|
149
|
1249 dialog-x.o: $(LWLIB_SRCDIR)/lwlib.h
|
0
|
1250 dialog-x.o: EmacsFrame.h
|
|
1251 dialog-x.o: EmacsManager.h
|
|
1252 dialog-x.o: EmacsShell.h
|
|
1253 dialog-x.o: blocktype.h
|
|
1254 dialog-x.o: buffer.h
|
|
1255 dialog-x.o: bufslots.h
|
|
1256 dialog-x.o: commands.h
|
|
1257 dialog-x.o: config.h
|
|
1258 dialog-x.o: conslots.h
|
|
1259 dialog-x.o: console-x.h
|
|
1260 dialog-x.o: console.h
|
|
1261 dialog-x.o: device.h
|
|
1262 dialog-x.o: dynarr.h
|
|
1263 dialog-x.o: events.h
|
|
1264 dialog-x.o: frame.h
|
|
1265 dialog-x.o: frameslots.h
|
|
1266 dialog-x.o: gui-x.h
|
|
1267 dialog-x.o: opaque.h
|
|
1268 dialog-x.o: redisplay.h
|
|
1269 dialog-x.o: scrollbar.h
|
|
1270 dialog-x.o: specifier.h
|
|
1271 dialog-x.o: systime.h
|
|
1272 dialog-x.o: toolbar.h
|
|
1273 dialog-x.o: window.h
|
|
1274 dialog-x.o: xintrinsic.h
|
|
1275 dialog.o: blocktype.h
|
|
1276 dialog.o: config.h
|
|
1277 dialog.o: dynarr.h
|
|
1278 dired.o: blocktype.h
|
|
1279 dired.o: buffer.h
|
|
1280 dired.o: bufslots.h
|
|
1281 dired.o: commands.h
|
|
1282 dired.o: config.h
|
|
1283 dired.o: dynarr.h
|
|
1284 dired.o: elhash.h
|
|
1285 dired.o: regex.h
|
|
1286 dired.o: sysdir.h
|
|
1287 dired.o: sysfile.h
|
|
1288 doc.o: blocktype.h
|
|
1289 doc.o: buffer.h
|
|
1290 doc.o: bufslots.h
|
|
1291 doc.o: bytecode.h
|
|
1292 doc.o: config.h
|
|
1293 doc.o: dynarr.h
|
|
1294 doc.o: insdel.h
|
|
1295 doc.o: keymap.h
|
|
1296 doc.o: sysfile.h
|
|
1297 doprnt.o: blocktype.h
|
|
1298 doprnt.o: buffer.h
|
|
1299 doprnt.o: bufslots.h
|
|
1300 doprnt.o: config.h
|
|
1301 doprnt.o: dynarr.h
|
|
1302 doprnt.o: lstream.h
|
|
1303 dynarr.o: blocktype.h
|
|
1304 dynarr.o: config.h
|
|
1305 dynarr.o: dynarr.h
|
|
1306 ecrt0.o: config.h
|
|
1307 editfns.o: blocktype.h
|
|
1308 editfns.o: buffer.h
|
|
1309 editfns.o: bufslots.h
|
|
1310 editfns.o: commands.h
|
|
1311 editfns.o: config.h
|
|
1312 editfns.o: conslots.h
|
|
1313 editfns.o: console.h
|
|
1314 editfns.o: device.h
|
|
1315 editfns.o: dynarr.h
|
|
1316 editfns.o: events.h
|
|
1317 editfns.o: extents.h
|
|
1318 editfns.o: frame.h
|
|
1319 editfns.o: frameslots.h
|
|
1320 editfns.o: insdel.h
|
|
1321 editfns.o: redisplay.h
|
|
1322 editfns.o: scrollbar.h
|
|
1323 editfns.o: specifier.h
|
|
1324 editfns.o: sysdep.h
|
|
1325 editfns.o: syspwd.h
|
|
1326 editfns.o: systime.h
|
|
1327 editfns.o: toolbar.h
|
|
1328 editfns.o: window.h
|
|
1329 elhash.o: blocktype.h
|
|
1330 elhash.o: bytecode.h
|
|
1331 elhash.o: config.h
|
|
1332 elhash.o: dynarr.h
|
|
1333 elhash.o: elhash.h
|
|
1334 elhash.o: hash.h
|
|
1335 emacs.o: backtrace.h
|
|
1336 emacs.o: blocktype.h
|
|
1337 emacs.o: buffer.h
|
|
1338 emacs.o: bufslots.h
|
|
1339 emacs.o: commands.h
|
|
1340 emacs.o: config.h
|
|
1341 emacs.o: conslots.h
|
|
1342 emacs.o: console.h
|
|
1343 emacs.o: dynarr.h
|
|
1344 emacs.o: process.h
|
|
1345 emacs.o: sysdep.h
|
|
1346 emacs.o: sysfile.h
|
|
1347 emacs.o: systime.h
|
|
1348 emacs.o: systty.h
|
|
1349 energize.o: config.h
|
|
1350 eval.o: backtrace.h
|
|
1351 eval.o: blocktype.h
|
|
1352 eval.o: buffer.h
|
|
1353 eval.o: bufslots.h
|
|
1354 eval.o: bytecode.h
|
|
1355 eval.o: commands.h
|
|
1356 eval.o: config.h
|
|
1357 eval.o: conslots.h
|
|
1358 eval.o: console.h
|
|
1359 eval.o: dynarr.h
|
|
1360 eval.o: opaque.h
|
149
|
1361 event-Xt.o: $(LWLIB_SRCDIR)/lwlib.h
|
0
|
1362 event-Xt.o: Emacs.ad.h
|
|
1363 event-Xt.o: EmacsFrame.h
|
|
1364 event-Xt.o: blocktype.h
|
|
1365 event-Xt.o: buffer.h
|
|
1366 event-Xt.o: bufslots.h
|
|
1367 event-Xt.o: commands.h
|
|
1368 event-Xt.o: config.h
|
|
1369 event-Xt.o: conslots.h
|
|
1370 event-Xt.o: console-tty.h
|
|
1371 event-Xt.o: console-x.h
|
|
1372 event-Xt.o: console.h
|
|
1373 event-Xt.o: device.h
|
|
1374 event-Xt.o: dynarr.h
|
|
1375 event-Xt.o: events.h
|
|
1376 event-Xt.o: frame.h
|
|
1377 event-Xt.o: frameslots.h
|
|
1378 event-Xt.o: objects-x.h
|
|
1379 event-Xt.o: objects.h
|
|
1380 event-Xt.o: paths.h
|
|
1381 event-Xt.o: process.h
|
|
1382 event-Xt.o: redisplay.h
|
|
1383 event-Xt.o: scrollbar.h
|
|
1384 event-Xt.o: specifier.h
|
|
1385 event-Xt.o: sysproc.h
|
|
1386 event-Xt.o: systime.h
|
|
1387 event-Xt.o: systty.h
|
|
1388 event-Xt.o: toolbar.h
|
|
1389 event-Xt.o: xintrinsic.h
|
|
1390 event-Xt.o: xintrinsicp.h
|
|
1391 event-stream.o: blocktype.h
|
|
1392 event-stream.o: buffer.h
|
|
1393 event-stream.o: bufslots.h
|
|
1394 event-stream.o: commands.h
|
|
1395 event-stream.o: config.h
|
|
1396 event-stream.o: conslots.h
|
|
1397 event-stream.o: console.h
|
|
1398 event-stream.o: device.h
|
|
1399 event-stream.o: dynarr.h
|
|
1400 event-stream.o: elhash.h
|
|
1401 event-stream.o: events.h
|
|
1402 event-stream.o: frame.h
|
|
1403 event-stream.o: frameslots.h
|
|
1404 event-stream.o: insdel.h
|
|
1405 event-stream.o: keymap.h
|
|
1406 event-stream.o: lstream.h
|
|
1407 event-stream.o: macros.h
|
|
1408 event-stream.o: opaque.h
|
|
1409 event-stream.o: process.h
|
|
1410 event-stream.o: redisplay.h
|
|
1411 event-stream.o: scrollbar.h
|
|
1412 event-stream.o: specifier.h
|
|
1413 event-stream.o: sysdep.h
|
|
1414 event-stream.o: systime.h
|
|
1415 event-stream.o: toolbar.h
|
|
1416 event-stream.o: window.h
|
|
1417 event-tty.o: blocktype.h
|
|
1418 event-tty.o: config.h
|
|
1419 event-tty.o: conslots.h
|
|
1420 event-tty.o: console-tty.h
|
|
1421 event-tty.o: console.h
|
|
1422 event-tty.o: device.h
|
|
1423 event-tty.o: dynarr.h
|
|
1424 event-tty.o: events.h
|
|
1425 event-tty.o: frame.h
|
|
1426 event-tty.o: frameslots.h
|
|
1427 event-tty.o: paths.h
|
|
1428 event-tty.o: process.h
|
|
1429 event-tty.o: scrollbar.h
|
|
1430 event-tty.o: specifier.h
|
|
1431 event-tty.o: sysproc.h
|
|
1432 event-tty.o: systime.h
|
|
1433 event-tty.o: systty.h
|
|
1434 event-tty.o: syswait.h
|
|
1435 event-tty.o: toolbar.h
|
|
1436 event-unixoid.o: blocktype.h
|
|
1437 event-unixoid.o: config.h
|
|
1438 event-unixoid.o: conslots.h
|
|
1439 event-unixoid.o: console-stream.h
|
|
1440 event-unixoid.o: console-tty.h
|
|
1441 event-unixoid.o: console.h
|
|
1442 event-unixoid.o: device.h
|
|
1443 event-unixoid.o: dynarr.h
|
|
1444 event-unixoid.o: events.h
|
|
1445 event-unixoid.o: paths.h
|
|
1446 event-unixoid.o: process.h
|
|
1447 event-unixoid.o: sysdep.h
|
|
1448 event-unixoid.o: sysproc.h
|
|
1449 event-unixoid.o: systime.h
|
|
1450 event-unixoid.o: systty.h
|
|
1451 events.o: blocktype.h
|
|
1452 events.o: buffer.h
|
|
1453 events.o: bufslots.h
|
|
1454 events.o: config.h
|
|
1455 events.o: conslots.h
|
|
1456 events.o: console-tty.h
|
|
1457 events.o: console-x.h
|
|
1458 events.o: console.h
|
|
1459 events.o: device.h
|
|
1460 events.o: dynarr.h
|
|
1461 events.o: events.h
|
|
1462 events.o: extents.h
|
|
1463 events.o: frame.h
|
|
1464 events.o: frameslots.h
|
|
1465 events.o: glyphs.h
|
|
1466 events.o: keymap.h
|
|
1467 events.o: redisplay.h
|
|
1468 events.o: scrollbar.h
|
|
1469 events.o: specifier.h
|
|
1470 events.o: systime.h
|
|
1471 events.o: systty.h
|
|
1472 events.o: toolbar.h
|
|
1473 events.o: window.h
|
|
1474 events.o: xintrinsic.h
|
|
1475 extents.o: blocktype.h
|
|
1476 extents.o: buffer.h
|
|
1477 extents.o: bufslots.h
|
|
1478 extents.o: config.h
|
|
1479 extents.o: conslots.h
|
|
1480 extents.o: console.h
|
|
1481 extents.o: debug.h
|
|
1482 extents.o: device.h
|
|
1483 extents.o: dynarr.h
|
|
1484 extents.o: elhash.h
|
|
1485 extents.o: extents.h
|
|
1486 extents.o: faces.h
|
|
1487 extents.o: frame.h
|
|
1488 extents.o: frameslots.h
|
|
1489 extents.o: glyphs.h
|
|
1490 extents.o: hash.h
|
|
1491 extents.o: insdel.h
|
|
1492 extents.o: opaque.h
|
|
1493 extents.o: process.h
|
|
1494 extents.o: redisplay.h
|
|
1495 extents.o: scrollbar.h
|
|
1496 extents.o: specifier.h
|
|
1497 extents.o: toolbar.h
|
|
1498 faces.o: EmacsFrame.h
|
|
1499 faces.o: blocktype.h
|
|
1500 faces.o: buffer.h
|
|
1501 faces.o: bufslots.h
|
|
1502 faces.o: config.h
|
|
1503 faces.o: conslots.h
|
|
1504 faces.o: console-x.h
|
|
1505 faces.o: console.h
|
|
1506 faces.o: device.h
|
|
1507 faces.o: dynarr.h
|
|
1508 faces.o: elhash.h
|
|
1509 faces.o: extents.h
|
|
1510 faces.o: faces.h
|
|
1511 faces.o: frame.h
|
|
1512 faces.o: frameslots.h
|
|
1513 faces.o: glyphs.h
|
|
1514 faces.o: hash.h
|
|
1515 faces.o: objects-x.h
|
|
1516 faces.o: objects.h
|
|
1517 faces.o: redisplay.h
|
|
1518 faces.o: scrollbar.h
|
|
1519 faces.o: specifier.h
|
|
1520 faces.o: toolbar.h
|
|
1521 faces.o: window.h
|
|
1522 faces.o: xintrinsic.h
|
|
1523 fileio.o: blocktype.h
|
|
1524 fileio.o: buffer.h
|
|
1525 fileio.o: bufslots.h
|
|
1526 fileio.o: config.h
|
|
1527 fileio.o: conslots.h
|
|
1528 fileio.o: console.h
|
|
1529 fileio.o: device.h
|
|
1530 fileio.o: dynarr.h
|
|
1531 fileio.o: events.h
|
|
1532 fileio.o: frame.h
|
|
1533 fileio.o: frameslots.h
|
|
1534 fileio.o: insdel.h
|
|
1535 fileio.o: lstream.h
|
|
1536 fileio.o: paths.h
|
|
1537 fileio.o: redisplay.h
|
|
1538 fileio.o: scrollbar.h
|
|
1539 fileio.o: specifier.h
|
|
1540 fileio.o: sysdep.h
|
|
1541 fileio.o: sysdir.h
|
|
1542 fileio.o: sysfile.h
|
|
1543 fileio.o: sysproc.h
|
|
1544 fileio.o: syspwd.h
|
|
1545 fileio.o: systime.h
|
|
1546 fileio.o: toolbar.h
|
|
1547 fileio.o: window.h
|
|
1548 filelock.o: blocktype.h
|
|
1549 filelock.o: buffer.h
|
|
1550 filelock.o: bufslots.h
|
|
1551 filelock.o: config.h
|
|
1552 filelock.o: dynarr.h
|
|
1553 filelock.o: paths.h
|
|
1554 filelock.o: sysdir.h
|
|
1555 filelock.o: sysfile.h
|
|
1556 filelock.o: syspwd.h
|
|
1557 filemode.o: blocktype.h
|
|
1558 filemode.o: config.h
|
|
1559 filemode.o: dynarr.h
|
|
1560 filemode.o: sysfile.h
|
|
1561 floatfns.o: blocktype.h
|
|
1562 floatfns.o: config.h
|
|
1563 floatfns.o: dynarr.h
|
|
1564 floatfns.o: sysfloat.h
|
|
1565 fns.o: blocktype.h
|
|
1566 fns.o: buffer.h
|
|
1567 fns.o: bufslots.h
|
|
1568 fns.o: bytecode.h
|
|
1569 fns.o: commands.h
|
|
1570 fns.o: config.h
|
|
1571 fns.o: conslots.h
|
|
1572 fns.o: console.h
|
|
1573 fns.o: device.h
|
|
1574 fns.o: dynarr.h
|
|
1575 fns.o: events.h
|
|
1576 fns.o: extents.h
|
|
1577 fns.o: frame.h
|
|
1578 fns.o: frameslots.h
|
|
1579 fns.o: scrollbar.h
|
|
1580 fns.o: specifier.h
|
|
1581 fns.o: systime.h
|
|
1582 fns.o: toolbar.h
|
|
1583 font-lock.o: blocktype.h
|
|
1584 font-lock.o: buffer.h
|
|
1585 font-lock.o: bufslots.h
|
70
|
1586 font-lock.o: chartab.h
|
0
|
1587 font-lock.o: config.h
|
|
1588 font-lock.o: dynarr.h
|
|
1589 font-lock.o: insdel.h
|
|
1590 font-lock.o: syntax.h
|
|
1591 frame-tty.o: blocktype.h
|
|
1592 frame-tty.o: config.h
|
|
1593 frame-tty.o: conslots.h
|
|
1594 frame-tty.o: console-tty.h
|
|
1595 frame-tty.o: console.h
|
|
1596 frame-tty.o: device.h
|
|
1597 frame-tty.o: dynarr.h
|
|
1598 frame-tty.o: frame.h
|
|
1599 frame-tty.o: frameslots.h
|
|
1600 frame-tty.o: scrollbar.h
|
|
1601 frame-tty.o: specifier.h
|
|
1602 frame-tty.o: systty.h
|
|
1603 frame-tty.o: toolbar.h
|
149
|
1604 frame-x.o: $(LWLIB_SRCDIR)/lwlib.h
|
0
|
1605 frame-x.o: EmacsFrame.h
|
|
1606 frame-x.o: EmacsFrameP.h
|
|
1607 frame-x.o: EmacsManager.h
|
|
1608 frame-x.o: EmacsShell.h
|
|
1609 frame-x.o: ExternalShell.h
|
|
1610 frame-x.o: blocktype.h
|
|
1611 frame-x.o: buffer.h
|
|
1612 frame-x.o: bufslots.h
|
|
1613 frame-x.o: config.h
|
|
1614 frame-x.o: conslots.h
|
|
1615 frame-x.o: console-x.h
|
|
1616 frame-x.o: console.h
|
|
1617 frame-x.o: device.h
|
|
1618 frame-x.o: dynarr.h
|
|
1619 frame-x.o: events.h
|
|
1620 frame-x.o: extents.h
|
|
1621 frame-x.o: faces.h
|
|
1622 frame-x.o: frame.h
|
|
1623 frame-x.o: frameslots.h
|
|
1624 frame-x.o: glyphs-x.h
|
|
1625 frame-x.o: glyphs.h
|
|
1626 frame-x.o: objects-x.h
|
|
1627 frame-x.o: objects.h
|
|
1628 frame-x.o: redisplay.h
|
|
1629 frame-x.o: scrollbar-x.h
|
|
1630 frame-x.o: scrollbar.h
|
|
1631 frame-x.o: specifier.h
|
|
1632 frame-x.o: systime.h
|
|
1633 frame-x.o: toolbar.h
|
|
1634 frame-x.o: window.h
|
|
1635 frame-x.o: xintrinsic.h
|
|
1636 frame-x.o: xintrinsicp.h
|
|
1637 frame-x.o: xmprimitivep.h
|
|
1638 frame-x.o: xmu.h
|
|
1639 frame.o: blocktype.h
|
|
1640 frame.o: buffer.h
|
|
1641 frame.o: bufslots.h
|
|
1642 frame.o: config.h
|
|
1643 frame.o: conslots.h
|
|
1644 frame.o: console.h
|
|
1645 frame.o: device.h
|
|
1646 frame.o: dynarr.h
|
|
1647 frame.o: events.h
|
|
1648 frame.o: extents.h
|
|
1649 frame.o: faces.h
|
|
1650 frame.o: frame.h
|
|
1651 frame.o: frameslots.h
|
|
1652 frame.o: glyphs.h
|
|
1653 frame.o: menubar.h
|
|
1654 frame.o: redisplay.h
|
|
1655 frame.o: scrollbar.h
|
|
1656 frame.o: specifier.h
|
|
1657 frame.o: sysdep.h
|
|
1658 frame.o: systime.h
|
|
1659 frame.o: toolbar.h
|
|
1660 frame.o: window.h
|
|
1661 free-hook.o: blocktype.h
|
|
1662 free-hook.o: config.h
|
|
1663 free-hook.o: dynarr.h
|
|
1664 free-hook.o: hash.h
|
|
1665 general.o: blocktype.h
|
|
1666 general.o: config.h
|
|
1667 general.o: dynarr.h
|
|
1668 getloadavg.o: blocktype.h
|
|
1669 getloadavg.o: config.h
|
|
1670 getloadavg.o: dynarr.h
|
|
1671 gif_err.o: config.h
|
|
1672 gif_err.o: gif_lib.h
|
|
1673 gifalloc.o: config.h
|
|
1674 gifalloc.o: gif_lib.h
|
149
|
1675 glyphs-x.o: $(LWLIB_SRCDIR)/lwlib.h
|
0
|
1676 glyphs-x.o: ${srcdir}/${etcdir}xemacs.xbm
|
|
1677 glyphs-x.o: bitmaps.h
|
|
1678 glyphs-x.o: blocktype.h
|
|
1679 glyphs-x.o: buffer.h
|
|
1680 glyphs-x.o: bufslots.h
|
|
1681 glyphs-x.o: config.h
|
|
1682 glyphs-x.o: conslots.h
|
|
1683 glyphs-x.o: console-x.h
|
|
1684 glyphs-x.o: console.h
|
|
1685 glyphs-x.o: device.h
|
|
1686 glyphs-x.o: dynarr.h
|
|
1687 glyphs-x.o: frame.h
|
|
1688 glyphs-x.o: frameslots.h
|
|
1689 glyphs-x.o: gif_lib.h
|
|
1690 glyphs-x.o: glyphs-x.h
|
|
1691 glyphs-x.o: glyphs.h
|
|
1692 glyphs-x.o: insdel.h
|
|
1693 glyphs-x.o: objects-x.h
|
|
1694 glyphs-x.o: objects.h
|
|
1695 glyphs-x.o: opaque.h
|
|
1696 glyphs-x.o: scrollbar.h
|
|
1697 glyphs-x.o: specifier.h
|
|
1698 glyphs-x.o: sysfile.h
|
|
1699 glyphs-x.o: toolbar.h
|
|
1700 glyphs-x.o: xintrinsic.h
|
|
1701 glyphs-x.o: xmu.h
|
|
1702 glyphs.o: blocktype.h
|
|
1703 glyphs.o: buffer.h
|
|
1704 glyphs.o: bufslots.h
|
|
1705 glyphs.o: config.h
|
|
1706 glyphs.o: conslots.h
|
|
1707 glyphs.o: console.h
|
|
1708 glyphs.o: device.h
|
|
1709 glyphs.o: dynarr.h
|
|
1710 glyphs.o: elhash.h
|
|
1711 glyphs.o: faces.h
|
|
1712 glyphs.o: frame.h
|
|
1713 glyphs.o: frameslots.h
|
|
1714 glyphs.o: glyphs.h
|
|
1715 glyphs.o: objects.h
|
|
1716 glyphs.o: redisplay.h
|
|
1717 glyphs.o: scrollbar.h
|
|
1718 glyphs.o: specifier.h
|
|
1719 glyphs.o: toolbar.h
|
|
1720 glyphs.o: window.h
|
|
1721 gmalloc.o: config.h
|
|
1722 gmalloc.o: getpagesize.h
|
149
|
1723 gui-x.o: $(LWLIB_SRCDIR)/lwlib.h
|
0
|
1724 gui-x.o: blocktype.h
|
|
1725 gui-x.o: buffer.h
|
|
1726 gui-x.o: bufslots.h
|
|
1727 gui-x.o: config.h
|
|
1728 gui-x.o: conslots.h
|
|
1729 gui-x.o: console-x.h
|
|
1730 gui-x.o: console.h
|
|
1731 gui-x.o: device.h
|
|
1732 gui-x.o: dynarr.h
|
|
1733 gui-x.o: frame.h
|
|
1734 gui-x.o: frameslots.h
|
|
1735 gui-x.o: gui-x.h
|
|
1736 gui-x.o: opaque.h
|
|
1737 gui-x.o: scrollbar.h
|
|
1738 gui-x.o: specifier.h
|
|
1739 gui-x.o: toolbar.h
|
|
1740 gui-x.o: xintrinsic.h
|
|
1741 gui.o: blocktype.h
|
|
1742 gui.o: config.h
|
|
1743 gui.o: dynarr.h
|
|
1744 hash.o: blocktype.h
|
|
1745 hash.o: config.h
|
|
1746 hash.o: dynarr.h
|
|
1747 hash.o: elhash.h
|
|
1748 hash.o: hash.h
|
|
1749 hftctl.o: blocktype.h
|
|
1750 hftctl.o: config.h
|
|
1751 hftctl.o: dynarr.h
|
|
1752 hpplay.o: blocktype.h
|
|
1753 hpplay.o: config.h
|
|
1754 hpplay.o: dynarr.h
|
|
1755 indent.o: blocktype.h
|
|
1756 indent.o: buffer.h
|
|
1757 indent.o: bufslots.h
|
|
1758 indent.o: config.h
|
|
1759 indent.o: conslots.h
|
|
1760 indent.o: console.h
|
|
1761 indent.o: device.h
|
|
1762 indent.o: dynarr.h
|
|
1763 indent.o: extents.h
|
|
1764 indent.o: faces.h
|
|
1765 indent.o: frame.h
|
|
1766 indent.o: frameslots.h
|
|
1767 indent.o: glyphs.h
|
|
1768 indent.o: insdel.h
|
|
1769 indent.o: redisplay.h
|
|
1770 indent.o: scrollbar.h
|
|
1771 indent.o: specifier.h
|
|
1772 indent.o: toolbar.h
|
|
1773 indent.o: window.h
|
149
|
1774 inline.o: $(LWLIB_SRCDIR)/lwlib.h
|
118
|
1775 inline.o: blocktype.h
|
|
1776 inline.o: buffer.h
|
|
1777 inline.o: bufslots.h
|
|
1778 inline.o: bytecode.h
|
|
1779 inline.o: chartab.h
|
|
1780 inline.o: config.h
|
|
1781 inline.o: conslots.h
|
|
1782 inline.o: console-x.h
|
|
1783 inline.o: console.h
|
|
1784 inline.o: device.h
|
|
1785 inline.o: dynarr.h
|
|
1786 inline.o: elhash.h
|
|
1787 inline.o: events.h
|
|
1788 inline.o: extents.h
|
|
1789 inline.o: faces.h
|
|
1790 inline.o: frame.h
|
|
1791 inline.o: frameslots.h
|
|
1792 inline.o: glyphs-x.h
|
|
1793 inline.o: glyphs.h
|
|
1794 inline.o: gui-x.h
|
|
1795 inline.o: keymap.h
|
|
1796 inline.o: lstream.h
|
|
1797 inline.o: objects.h
|
|
1798 inline.o: opaque.h
|
|
1799 inline.o: process.h
|
|
1800 inline.o: redisplay.h
|
|
1801 inline.o: scrollbar.h
|
|
1802 inline.o: specifier.h
|
|
1803 inline.o: syntax.h
|
|
1804 inline.o: systime.h
|
|
1805 inline.o: toolbar.h
|
|
1806 inline.o: window.h
|
|
1807 inline.o: xintrinsic.h
|
70
|
1808 input-method-xlib.o: EmacsFrame.h
|
|
1809 input-method-xlib.o: blocktype.h
|
|
1810 input-method-xlib.o: buffer.h
|
|
1811 input-method-xlib.o: bufslots.h
|
|
1812 input-method-xlib.o: config.h
|
|
1813 input-method-xlib.o: conslots.h
|
|
1814 input-method-xlib.o: console-x.h
|
|
1815 input-method-xlib.o: console.h
|
|
1816 input-method-xlib.o: device.h
|
|
1817 input-method-xlib.o: dynarr.h
|
|
1818 input-method-xlib.o: frame.h
|
|
1819 input-method-xlib.o: frameslots.h
|
|
1820 input-method-xlib.o: insdel.h
|
|
1821 input-method-xlib.o: lstream.h
|
|
1822 input-method-xlib.o: redisplay.h
|
|
1823 input-method-xlib.o: scrollbar.h
|
|
1824 input-method-xlib.o: specifier.h
|
|
1825 input-method-xlib.o: toolbar.h
|
|
1826 input-method-xlib.o: window.h
|
|
1827 input-method-xlib.o: xintrinsic.h
|
0
|
1828 insdel.o: blocktype.h
|
|
1829 insdel.o: buffer.h
|
|
1830 insdel.o: bufslots.h
|
|
1831 insdel.o: config.h
|
|
1832 insdel.o: conslots.h
|
|
1833 insdel.o: console.h
|
|
1834 insdel.o: device.h
|
|
1835 insdel.o: dynarr.h
|
|
1836 insdel.o: extents.h
|
|
1837 insdel.o: frame.h
|
|
1838 insdel.o: frameslots.h
|
|
1839 insdel.o: insdel.h
|
|
1840 insdel.o: lstream.h
|
|
1841 insdel.o: redisplay.h
|
|
1842 insdel.o: scrollbar.h
|
|
1843 insdel.o: specifier.h
|
|
1844 insdel.o: toolbar.h
|
|
1845 intl.o: blocktype.h
|
|
1846 intl.o: bytecode.h
|
|
1847 intl.o: config.h
|
|
1848 intl.o: conslots.h
|
|
1849 intl.o: console.h
|
|
1850 intl.o: device.h
|
|
1851 intl.o: dynarr.h
|
|
1852 keymap.o: blocktype.h
|
|
1853 keymap.o: buffer.h
|
|
1854 keymap.o: bufslots.h
|
|
1855 keymap.o: bytecode.h
|
|
1856 keymap.o: commands.h
|
|
1857 keymap.o: config.h
|
|
1858 keymap.o: conslots.h
|
|
1859 keymap.o: console.h
|
|
1860 keymap.o: device.h
|
|
1861 keymap.o: dynarr.h
|
|
1862 keymap.o: elhash.h
|
|
1863 keymap.o: events.h
|
|
1864 keymap.o: frame.h
|
|
1865 keymap.o: frameslots.h
|
|
1866 keymap.o: insdel.h
|
|
1867 keymap.o: keymap.h
|
|
1868 keymap.o: redisplay.h
|
|
1869 keymap.o: scrollbar.h
|
|
1870 keymap.o: specifier.h
|
|
1871 keymap.o: systime.h
|
|
1872 keymap.o: toolbar.h
|
|
1873 keymap.o: window.h
|
|
1874 libsst.o: blocktype.h
|
|
1875 libsst.o: config.h
|
|
1876 libsst.o: dynarr.h
|
|
1877 libsst.o: libsst.h
|
|
1878 linuxplay.o: blocktype.h
|
|
1879 linuxplay.o: config.h
|
|
1880 linuxplay.o: dynarr.h
|
|
1881 lread.o: blocktype.h
|
|
1882 lread.o: buffer.h
|
|
1883 lread.o: bufslots.h
|
|
1884 lread.o: bytecode.h
|
|
1885 lread.o: commands.h
|
|
1886 lread.o: config.h
|
|
1887 lread.o: dynarr.h
|
|
1888 lread.o: insdel.h
|
|
1889 lread.o: lstream.h
|
|
1890 lread.o: opaque.h
|
|
1891 lread.o: paths.h
|
|
1892 lread.o: sysfile.h
|
|
1893 lstream.o: blocktype.h
|
|
1894 lstream.o: buffer.h
|
|
1895 lstream.o: bufslots.h
|
|
1896 lstream.o: config.h
|
|
1897 lstream.o: dynarr.h
|
|
1898 lstream.o: insdel.h
|
|
1899 lstream.o: lstream.h
|
|
1900 lstream.o: sysfile.h
|
|
1901 macros.o: blocktype.h
|
|
1902 macros.o: buffer.h
|
|
1903 macros.o: bufslots.h
|
|
1904 macros.o: commands.h
|
|
1905 macros.o: config.h
|
|
1906 macros.o: conslots.h
|
|
1907 macros.o: console.h
|
|
1908 macros.o: device.h
|
|
1909 macros.o: dynarr.h
|
|
1910 macros.o: events.h
|
|
1911 macros.o: frame.h
|
|
1912 macros.o: frameslots.h
|
|
1913 macros.o: keymap.h
|
|
1914 macros.o: macros.h
|
|
1915 macros.o: redisplay.h
|
|
1916 macros.o: scrollbar.h
|
|
1917 macros.o: specifier.h
|
|
1918 macros.o: systime.h
|
|
1919 macros.o: toolbar.h
|
|
1920 macros.o: window.h
|
|
1921 malloc.o: config.h
|
|
1922 malloc.o: getpagesize.h
|
|
1923 marker.o: blocktype.h
|
|
1924 marker.o: buffer.h
|
|
1925 marker.o: bufslots.h
|
|
1926 marker.o: config.h
|
|
1927 marker.o: dynarr.h
|
|
1928 md5.o: blocktype.h
|
|
1929 md5.o: buffer.h
|
|
1930 md5.o: bufslots.h
|
|
1931 md5.o: config.h
|
|
1932 md5.o: dynarr.h
|
|
1933 md5.o: insdel.h
|
149
|
1934 menubar-x.o: $(LWLIB_SRCDIR)/lwlib.h
|
0
|
1935 menubar-x.o: EmacsFrame.h
|
|
1936 menubar-x.o: EmacsManager.h
|
|
1937 menubar-x.o: EmacsShell.h
|
|
1938 menubar-x.o: blocktype.h
|
|
1939 menubar-x.o: buffer.h
|
|
1940 menubar-x.o: bufslots.h
|
|
1941 menubar-x.o: commands.h
|
|
1942 menubar-x.o: config.h
|
|
1943 menubar-x.o: conslots.h
|
|
1944 menubar-x.o: console-x.h
|
|
1945 menubar-x.o: console.h
|
|
1946 menubar-x.o: device.h
|
|
1947 menubar-x.o: dynarr.h
|
|
1948 menubar-x.o: events.h
|
|
1949 menubar-x.o: frame.h
|
|
1950 menubar-x.o: frameslots.h
|
|
1951 menubar-x.o: gui-x.h
|
|
1952 menubar-x.o: opaque.h
|
|
1953 menubar-x.o: redisplay.h
|
|
1954 menubar-x.o: scrollbar.h
|
|
1955 menubar-x.o: specifier.h
|
|
1956 menubar-x.o: systime.h
|
|
1957 menubar-x.o: toolbar.h
|
|
1958 menubar-x.o: window.h
|
|
1959 menubar-x.o: xintrinsic.h
|
|
1960 menubar.o: blocktype.h
|
|
1961 menubar.o: config.h
|
|
1962 menubar.o: conslots.h
|
|
1963 menubar.o: console.h
|
|
1964 menubar.o: device.h
|
|
1965 menubar.o: dynarr.h
|
|
1966 menubar.o: frame.h
|
|
1967 menubar.o: frameslots.h
|
|
1968 menubar.o: menubar.h
|
|
1969 menubar.o: redisplay.h
|
|
1970 menubar.o: scrollbar.h
|
|
1971 menubar.o: specifier.h
|
|
1972 menubar.o: toolbar.h
|
|
1973 menubar.o: window.h
|
|
1974 minibuf.o: blocktype.h
|
|
1975 minibuf.o: buffer.h
|
|
1976 minibuf.o: bufslots.h
|
|
1977 minibuf.o: commands.h
|
|
1978 minibuf.o: config.h
|
|
1979 minibuf.o: conslots.h
|
|
1980 minibuf.o: console-stream.h
|
|
1981 minibuf.o: console.h
|
|
1982 minibuf.o: device.h
|
|
1983 minibuf.o: dynarr.h
|
|
1984 minibuf.o: events.h
|
|
1985 minibuf.o: frame.h
|
|
1986 minibuf.o: frameslots.h
|
|
1987 minibuf.o: insdel.h
|
|
1988 minibuf.o: redisplay.h
|
|
1989 minibuf.o: scrollbar.h
|
|
1990 minibuf.o: specifier.h
|
|
1991 minibuf.o: systime.h
|
|
1992 minibuf.o: toolbar.h
|
|
1993 minibuf.o: window.h
|
|
1994 msdos.o: config.h
|
|
1995 nas.o: blocktype.h
|
|
1996 nas.o: config.h
|
|
1997 nas.o: dynarr.h
|
|
1998 objects-tty.o: blocktype.h
|
|
1999 objects-tty.o: config.h
|
|
2000 objects-tty.o: conslots.h
|
|
2001 objects-tty.o: console-tty.h
|
|
2002 objects-tty.o: console.h
|
|
2003 objects-tty.o: device.h
|
|
2004 objects-tty.o: dynarr.h
|
|
2005 objects-tty.o: insdel.h
|
|
2006 objects-tty.o: objects-tty.h
|
|
2007 objects-tty.o: objects.h
|
|
2008 objects-tty.o: specifier.h
|
|
2009 objects-tty.o: systty.h
|
|
2010 objects-x.o: blocktype.h
|
|
2011 objects-x.o: buffer.h
|
|
2012 objects-x.o: bufslots.h
|
|
2013 objects-x.o: config.h
|
|
2014 objects-x.o: conslots.h
|
|
2015 objects-x.o: console-x.h
|
|
2016 objects-x.o: console.h
|
|
2017 objects-x.o: device.h
|
|
2018 objects-x.o: dynarr.h
|
|
2019 objects-x.o: insdel.h
|
|
2020 objects-x.o: objects-x.h
|
|
2021 objects-x.o: objects.h
|
|
2022 objects-x.o: specifier.h
|
|
2023 objects-x.o: xintrinsic.h
|
|
2024 objects.o: blocktype.h
|
|
2025 objects.o: buffer.h
|
|
2026 objects.o: bufslots.h
|
|
2027 objects.o: config.h
|
|
2028 objects.o: conslots.h
|
|
2029 objects.o: console.h
|
|
2030 objects.o: device.h
|
|
2031 objects.o: dynarr.h
|
|
2032 objects.o: elhash.h
|
|
2033 objects.o: faces.h
|
|
2034 objects.o: frame.h
|
|
2035 objects.o: frameslots.h
|
|
2036 objects.o: objects.h
|
|
2037 objects.o: redisplay.h
|
|
2038 objects.o: scrollbar.h
|
|
2039 objects.o: specifier.h
|
|
2040 objects.o: toolbar.h
|
|
2041 objects.o: window.h
|
|
2042 opaque.o: blocktype.h
|
|
2043 opaque.o: config.h
|
|
2044 opaque.o: dynarr.h
|
|
2045 opaque.o: opaque.h
|
|
2046 print.o: backtrace.h
|
|
2047 print.o: blocktype.h
|
|
2048 print.o: buffer.h
|
|
2049 print.o: bufslots.h
|
|
2050 print.o: bytecode.h
|
|
2051 print.o: config.h
|
|
2052 print.o: conslots.h
|
|
2053 print.o: console-stream.h
|
|
2054 print.o: console-tty.h
|
|
2055 print.o: console.h
|
|
2056 print.o: device.h
|
|
2057 print.o: dynarr.h
|
|
2058 print.o: extents.h
|
|
2059 print.o: frame.h
|
|
2060 print.o: frameslots.h
|
|
2061 print.o: insdel.h
|
|
2062 print.o: lstream.h
|
|
2063 print.o: scrollbar.h
|
|
2064 print.o: specifier.h
|
|
2065 print.o: systty.h
|
|
2066 print.o: toolbar.h
|
|
2067 process.o: blocktype.h
|
|
2068 process.o: buffer.h
|
|
2069 process.o: bufslots.h
|
|
2070 process.o: commands.h
|
|
2071 process.o: config.h
|
|
2072 process.o: conslots.h
|
|
2073 process.o: console.h
|
|
2074 process.o: device.h
|
|
2075 process.o: dynarr.h
|
|
2076 process.o: events.h
|
|
2077 process.o: frame.h
|
|
2078 process.o: frameslots.h
|
|
2079 process.o: insdel.h
|
|
2080 process.o: lstream.h
|
|
2081 process.o: opaque.h
|
|
2082 process.o: paths.h
|
|
2083 process.o: process.h
|
|
2084 process.o: redisplay.h
|
|
2085 process.o: scrollbar.h
|
|
2086 process.o: specifier.h
|
|
2087 process.o: sysdep.h
|
|
2088 process.o: sysfile.h
|
|
2089 process.o: sysproc.h
|
|
2090 process.o: systime.h
|
|
2091 process.o: systty.h
|
|
2092 process.o: syswait.h
|
|
2093 process.o: toolbar.h
|
|
2094 process.o: window.h
|
|
2095 profile.o: backtrace.h
|
|
2096 profile.o: blocktype.h
|
|
2097 profile.o: bytecode.h
|
|
2098 profile.o: config.h
|
|
2099 profile.o: dynarr.h
|
|
2100 profile.o: hash.h
|
|
2101 profile.o: systime.h
|
|
2102 pure.o: blocktype.h
|
|
2103 pure.o: config.h
|
|
2104 pure.o: dynarr.h
|
104
|
2105 pure.o: puresize.h puresize_adjust.h
|
0
|
2106 ralloc.o: blocktype.h
|
|
2107 ralloc.o: config.h
|
|
2108 ralloc.o: dynarr.h
|
|
2109 ralloc.o: getpagesize.h
|
|
2110 rangetab.o: blocktype.h
|
|
2111 rangetab.o: config.h
|
|
2112 rangetab.o: dynarr.h
|
|
2113 realpath.o: config.h
|
|
2114 redisplay-output.o: blocktype.h
|
|
2115 redisplay-output.o: buffer.h
|
|
2116 redisplay-output.o: bufslots.h
|
|
2117 redisplay-output.o: config.h
|
|
2118 redisplay-output.o: conslots.h
|
|
2119 redisplay-output.o: console.h
|
|
2120 redisplay-output.o: debug.h
|
|
2121 redisplay-output.o: device.h
|
|
2122 redisplay-output.o: dynarr.h
|
|
2123 redisplay-output.o: faces.h
|
|
2124 redisplay-output.o: frame.h
|
|
2125 redisplay-output.o: frameslots.h
|
|
2126 redisplay-output.o: glyphs.h
|
|
2127 redisplay-output.o: redisplay.h
|
|
2128 redisplay-output.o: scrollbar.h
|
|
2129 redisplay-output.o: specifier.h
|
|
2130 redisplay-output.o: sysdep.h
|
|
2131 redisplay-output.o: toolbar.h
|
|
2132 redisplay-output.o: window.h
|
|
2133 redisplay-tty.o: blocktype.h
|
|
2134 redisplay-tty.o: buffer.h
|
|
2135 redisplay-tty.o: bufslots.h
|
|
2136 redisplay-tty.o: config.h
|
|
2137 redisplay-tty.o: conslots.h
|
|
2138 redisplay-tty.o: console-tty.h
|
|
2139 redisplay-tty.o: console.h
|
|
2140 redisplay-tty.o: device.h
|
|
2141 redisplay-tty.o: dynarr.h
|
|
2142 redisplay-tty.o: events.h
|
|
2143 redisplay-tty.o: faces.h
|
|
2144 redisplay-tty.o: frame.h
|
|
2145 redisplay-tty.o: frameslots.h
|
|
2146 redisplay-tty.o: glyphs.h
|
|
2147 redisplay-tty.o: lstream.h
|
|
2148 redisplay-tty.o: objects-tty.h
|
|
2149 redisplay-tty.o: objects.h
|
|
2150 redisplay-tty.o: redisplay.h
|
|
2151 redisplay-tty.o: scrollbar.h
|
|
2152 redisplay-tty.o: specifier.h
|
|
2153 redisplay-tty.o: sysdep.h
|
|
2154 redisplay-tty.o: systime.h
|
|
2155 redisplay-tty.o: systty.h
|
|
2156 redisplay-tty.o: toolbar.h
|
|
2157 redisplay-tty.o: window.h
|
149
|
2158 redisplay-x.o: $(LWLIB_SRCDIR)/lwlib.h
|
0
|
2159 redisplay-x.o: EmacsFrame.h
|
|
2160 redisplay-x.o: EmacsFrameP.h
|
|
2161 redisplay-x.o: blocktype.h
|
|
2162 redisplay-x.o: buffer.h
|
|
2163 redisplay-x.o: bufslots.h
|
|
2164 redisplay-x.o: config.h
|
|
2165 redisplay-x.o: conslots.h
|
|
2166 redisplay-x.o: console-x.h
|
|
2167 redisplay-x.o: console.h
|
|
2168 redisplay-x.o: debug.h
|
|
2169 redisplay-x.o: device.h
|
|
2170 redisplay-x.o: dynarr.h
|
|
2171 redisplay-x.o: faces.h
|
|
2172 redisplay-x.o: frame.h
|
|
2173 redisplay-x.o: frameslots.h
|
|
2174 redisplay-x.o: glyphs-x.h
|
|
2175 redisplay-x.o: glyphs.h
|
|
2176 redisplay-x.o: objects-x.h
|
|
2177 redisplay-x.o: objects.h
|
|
2178 redisplay-x.o: paths.h
|
|
2179 redisplay-x.o: redisplay.h
|
|
2180 redisplay-x.o: scrollbar.h
|
|
2181 redisplay-x.o: specifier.h
|
|
2182 redisplay-x.o: sysdep.h
|
|
2183 redisplay-x.o: sysproc.h
|
|
2184 redisplay-x.o: systime.h
|
|
2185 redisplay-x.o: toolbar.h
|
|
2186 redisplay-x.o: window.h
|
|
2187 redisplay-x.o: xgccache.h
|
|
2188 redisplay-x.o: xintrinsic.h
|
|
2189 redisplay-x.o: xintrinsicp.h
|
|
2190 redisplay-x.o: xmprimitivep.h
|
|
2191 redisplay.o: blocktype.h
|
|
2192 redisplay.o: buffer.h
|
|
2193 redisplay.o: bufslots.h
|
|
2194 redisplay.o: commands.h
|
|
2195 redisplay.o: config.h
|
|
2196 redisplay.o: conslots.h
|
|
2197 redisplay.o: console.h
|
|
2198 redisplay.o: debug.h
|
|
2199 redisplay.o: device.h
|
|
2200 redisplay.o: dynarr.h
|
|
2201 redisplay.o: extents.h
|
|
2202 redisplay.o: faces.h
|
|
2203 redisplay.o: frame.h
|
|
2204 redisplay.o: frameslots.h
|
|
2205 redisplay.o: glyphs.h
|
|
2206 redisplay.o: insdel.h
|
|
2207 redisplay.o: menubar.h
|
|
2208 redisplay.o: objects.h
|
|
2209 redisplay.o: process.h
|
|
2210 redisplay.o: redisplay.h
|
|
2211 redisplay.o: scrollbar.h
|
|
2212 redisplay.o: specifier.h
|
|
2213 redisplay.o: toolbar.h
|
|
2214 redisplay.o: window.h
|
|
2215 regex.o: blocktype.h
|
|
2216 regex.o: buffer.h
|
|
2217 regex.o: bufslots.h
|
70
|
2218 regex.o: chartab.h
|
0
|
2219 regex.o: config.h
|
|
2220 regex.o: dynarr.h
|
|
2221 regex.o: regex.h
|
|
2222 regex.o: syntax.h
|
149
|
2223 scrollbar-x.o: $(LWLIB_SRCDIR)/lwlib.h
|
0
|
2224 scrollbar-x.o: EmacsFrame.h
|
|
2225 scrollbar-x.o: EmacsManager.h
|
|
2226 scrollbar-x.o: blocktype.h
|
|
2227 scrollbar-x.o: config.h
|
|
2228 scrollbar-x.o: conslots.h
|
|
2229 scrollbar-x.o: console-x.h
|
|
2230 scrollbar-x.o: console.h
|
|
2231 scrollbar-x.o: device.h
|
|
2232 scrollbar-x.o: dynarr.h
|
|
2233 scrollbar-x.o: frame.h
|
|
2234 scrollbar-x.o: frameslots.h
|
|
2235 scrollbar-x.o: glyphs-x.h
|
|
2236 scrollbar-x.o: glyphs.h
|
|
2237 scrollbar-x.o: gui-x.h
|
|
2238 scrollbar-x.o: redisplay.h
|
|
2239 scrollbar-x.o: scrollbar-x.h
|
|
2240 scrollbar-x.o: scrollbar.h
|
|
2241 scrollbar-x.o: specifier.h
|
|
2242 scrollbar-x.o: toolbar.h
|
|
2243 scrollbar-x.o: window.h
|
|
2244 scrollbar-x.o: xintrinsic.h
|
|
2245 scrollbar.o: blocktype.h
|
|
2246 scrollbar.o: buffer.h
|
|
2247 scrollbar.o: bufslots.h
|
|
2248 scrollbar.o: commands.h
|
|
2249 scrollbar.o: config.h
|
|
2250 scrollbar.o: conslots.h
|
|
2251 scrollbar.o: console.h
|
|
2252 scrollbar.o: device.h
|
|
2253 scrollbar.o: dynarr.h
|
|
2254 scrollbar.o: frame.h
|
|
2255 scrollbar.o: frameslots.h
|
|
2256 scrollbar.o: glyphs.h
|
|
2257 scrollbar.o: redisplay.h
|
|
2258 scrollbar.o: scrollbar.h
|
|
2259 scrollbar.o: specifier.h
|
|
2260 scrollbar.o: toolbar.h
|
|
2261 scrollbar.o: window.h
|
|
2262 search.o: blocktype.h
|
|
2263 search.o: buffer.h
|
|
2264 search.o: bufslots.h
|
70
|
2265 search.o: chartab.h
|
0
|
2266 search.o: commands.h
|
|
2267 search.o: config.h
|
|
2268 search.o: dynarr.h
|
|
2269 search.o: insdel.h
|
|
2270 search.o: opaque.h
|
|
2271 search.o: regex.h
|
|
2272 search.o: syntax.h
|
|
2273 signal.o: blocktype.h
|
|
2274 signal.o: config.h
|
|
2275 signal.o: conslots.h
|
|
2276 signal.o: console.h
|
|
2277 signal.o: device.h
|
|
2278 signal.o: dynarr.h
|
|
2279 signal.o: events.h
|
|
2280 signal.o: frame.h
|
|
2281 signal.o: frameslots.h
|
|
2282 signal.o: scrollbar.h
|
|
2283 signal.o: specifier.h
|
|
2284 signal.o: sysdep.h
|
|
2285 signal.o: systime.h
|
|
2286 signal.o: toolbar.h
|
|
2287 sound.o: blocktype.h
|
|
2288 sound.o: buffer.h
|
|
2289 sound.o: bufslots.h
|
|
2290 sound.o: commands.h
|
|
2291 sound.o: config.h
|
|
2292 sound.o: conslots.h
|
|
2293 sound.o: console-x.h
|
|
2294 sound.o: console.h
|
|
2295 sound.o: device.h
|
|
2296 sound.o: dynarr.h
|
|
2297 sound.o: redisplay.h
|
|
2298 sound.o: sysdep.h
|
|
2299 sound.o: xintrinsic.h
|
|
2300 specifier.o: blocktype.h
|
|
2301 specifier.o: buffer.h
|
|
2302 specifier.o: bufslots.h
|
|
2303 specifier.o: config.h
|
|
2304 specifier.o: conslots.h
|
|
2305 specifier.o: console.h
|
|
2306 specifier.o: device.h
|
|
2307 specifier.o: dynarr.h
|
|
2308 specifier.o: frame.h
|
|
2309 specifier.o: frameslots.h
|
|
2310 specifier.o: opaque.h
|
|
2311 specifier.o: redisplay.h
|
|
2312 specifier.o: scrollbar.h
|
|
2313 specifier.o: specifier.h
|
|
2314 specifier.o: toolbar.h
|
|
2315 specifier.o: window.h
|
|
2316 strftime.o: blocktype.h
|
|
2317 strftime.o: config.h
|
|
2318 strftime.o: dynarr.h
|
|
2319 sunOS-fix.o: config.h
|
|
2320 sunplay.o: blocktype.h
|
|
2321 sunplay.o: config.h
|
|
2322 sunplay.o: dynarr.h
|
|
2323 sunplay.o: sysdep.h
|
|
2324 sunpro.o: blocktype.h
|
|
2325 sunpro.o: config.h
|
|
2326 sunpro.o: dynarr.h
|
|
2327 symbols.o: blocktype.h
|
|
2328 symbols.o: buffer.h
|
|
2329 symbols.o: bufslots.h
|
|
2330 symbols.o: config.h
|
|
2331 symbols.o: conslots.h
|
|
2332 symbols.o: console.h
|
|
2333 symbols.o: dynarr.h
|
|
2334 syntax.o: blocktype.h
|
|
2335 syntax.o: buffer.h
|
|
2336 syntax.o: bufslots.h
|
70
|
2337 syntax.o: chartab.h
|
0
|
2338 syntax.o: commands.h
|
|
2339 syntax.o: config.h
|
|
2340 syntax.o: dynarr.h
|
|
2341 syntax.o: insdel.h
|
|
2342 syntax.o: syntax.h
|
|
2343 sysdep.o: blocktype.h
|
|
2344 sysdep.o: buffer.h
|
|
2345 sysdep.o: bufslots.h
|
|
2346 sysdep.o: config.h
|
|
2347 sysdep.o: conslots.h
|
|
2348 sysdep.o: console-stream.h
|
|
2349 sysdep.o: console-x.h
|
|
2350 sysdep.o: console.h
|
|
2351 sysdep.o: device.h
|
|
2352 sysdep.o: dynarr.h
|
|
2353 sysdep.o: events.h
|
|
2354 sysdep.o: frame.h
|
|
2355 sysdep.o: frameslots.h
|
|
2356 sysdep.o: process.h
|
|
2357 sysdep.o: redisplay.h
|
|
2358 sysdep.o: scrollbar.h
|
|
2359 sysdep.o: specifier.h
|
|
2360 sysdep.o: sysdep.h
|
|
2361 sysdep.o: sysdir.h
|
|
2362 sysdep.o: sysfile.h
|
|
2363 sysdep.o: systime.h
|
|
2364 sysdep.o: syswait.h
|
|
2365 sysdep.o: toolbar.h
|
|
2366 sysdep.o: window.h
|
|
2367 sysdep.o: xintrinsic.h
|
|
2368 termcap.o: blocktype.h
|
|
2369 termcap.o: config.h
|
|
2370 termcap.o: conslots.h
|
|
2371 termcap.o: console.h
|
|
2372 termcap.o: device.h
|
|
2373 termcap.o: dynarr.h
|
|
2374 terminfo.o: config.h
|
149
|
2375 toolbar-x.o: $(LWLIB_SRCDIR)/lwlib.h
|
0
|
2376 toolbar-x.o: EmacsFrame.h
|
|
2377 toolbar-x.o: EmacsFrameP.h
|
|
2378 toolbar-x.o: EmacsManager.h
|
|
2379 toolbar-x.o: blocktype.h
|
|
2380 toolbar-x.o: buffer.h
|
|
2381 toolbar-x.o: bufslots.h
|
|
2382 toolbar-x.o: config.h
|
|
2383 toolbar-x.o: conslots.h
|
|
2384 toolbar-x.o: console-x.h
|
|
2385 toolbar-x.o: console.h
|
|
2386 toolbar-x.o: device.h
|
|
2387 toolbar-x.o: dynarr.h
|
|
2388 toolbar-x.o: faces.h
|
|
2389 toolbar-x.o: frame.h
|
|
2390 toolbar-x.o: frameslots.h
|
|
2391 toolbar-x.o: glyphs-x.h
|
|
2392 toolbar-x.o: glyphs.h
|
|
2393 toolbar-x.o: objects-x.h
|
|
2394 toolbar-x.o: objects.h
|
|
2395 toolbar-x.o: redisplay.h
|
|
2396 toolbar-x.o: scrollbar.h
|
|
2397 toolbar-x.o: specifier.h
|
|
2398 toolbar-x.o: toolbar.h
|
|
2399 toolbar-x.o: window.h
|
|
2400 toolbar-x.o: xgccache.h
|
|
2401 toolbar-x.o: xintrinsic.h
|
|
2402 toolbar-x.o: xintrinsicp.h
|
|
2403 toolbar-x.o: xmprimitivep.h
|
|
2404 toolbar.o: blocktype.h
|
|
2405 toolbar.o: buffer.h
|
|
2406 toolbar.o: bufslots.h
|
|
2407 toolbar.o: config.h
|
|
2408 toolbar.o: conslots.h
|
|
2409 toolbar.o: console.h
|
|
2410 toolbar.o: device.h
|
|
2411 toolbar.o: dynarr.h
|
|
2412 toolbar.o: frame.h
|
|
2413 toolbar.o: frameslots.h
|
|
2414 toolbar.o: glyphs.h
|
|
2415 toolbar.o: redisplay.h
|
|
2416 toolbar.o: scrollbar.h
|
|
2417 toolbar.o: specifier.h
|
|
2418 toolbar.o: toolbar.h
|
|
2419 toolbar.o: window.h
|
|
2420 tooltalk.o: blocktype.h
|
|
2421 tooltalk.o: buffer.h
|
|
2422 tooltalk.o: bufslots.h
|
|
2423 tooltalk.o: config.h
|
|
2424 tooltalk.o: dynarr.h
|
|
2425 tooltalk.o: elhash.h
|
|
2426 tooltalk.o: process.h
|
|
2427 tooltalk.o: tooltalk.h
|
|
2428 tparam.o: config.h
|
|
2429 undo.o: blocktype.h
|
|
2430 undo.o: buffer.h
|
|
2431 undo.o: bufslots.h
|
|
2432 undo.o: config.h
|
|
2433 undo.o: dynarr.h
|
|
2434 undo.o: extents.h
|
|
2435 vm-limit.o: blocktype.h
|
|
2436 vm-limit.o: config.h
|
|
2437 vm-limit.o: dynarr.h
|
|
2438 vm-limit.o: mem-limits.h
|
|
2439 window.o: blocktype.h
|
|
2440 window.o: buffer.h
|
|
2441 window.o: bufslots.h
|
|
2442 window.o: commands.h
|
|
2443 window.o: config.h
|
|
2444 window.o: conslots.h
|
|
2445 window.o: console.h
|
|
2446 window.o: device.h
|
|
2447 window.o: dynarr.h
|
|
2448 window.o: faces.h
|
|
2449 window.o: frame.h
|
|
2450 window.o: frameslots.h
|
|
2451 window.o: glyphs.h
|
|
2452 window.o: objects.h
|
|
2453 window.o: redisplay.h
|
|
2454 window.o: scrollbar.h
|
|
2455 window.o: specifier.h
|
|
2456 window.o: toolbar.h
|
|
2457 window.o: window.h
|
|
2458 xgccache.o: blocktype.h
|
|
2459 xgccache.o: config.h
|
|
2460 xgccache.o: dynarr.h
|
|
2461 xgccache.o: hash.h
|
|
2462 xgccache.o: xgccache.h
|
|
2463 xmu.o: config.h
|
|
2464 xselect.o: blocktype.h
|
|
2465 xselect.o: buffer.h
|
|
2466 xselect.o: bufslots.h
|
|
2467 xselect.o: config.h
|
|
2468 xselect.o: conslots.h
|
|
2469 xselect.o: console-x.h
|
|
2470 xselect.o: console.h
|
|
2471 xselect.o: device.h
|
|
2472 xselect.o: dynarr.h
|
|
2473 xselect.o: frame.h
|
|
2474 xselect.o: frameslots.h
|
|
2475 xselect.o: objects-x.h
|
|
2476 xselect.o: objects.h
|
|
2477 xselect.o: opaque.h
|
|
2478 xselect.o: scrollbar.h
|
|
2479 xselect.o: specifier.h
|
|
2480 xselect.o: systime.h
|
|
2481 xselect.o: toolbar.h
|
|
2482 xselect.o: xintrinsic.h
|