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