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