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