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