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