Import of readline 4.3.
[deliverable/binutils-gdb.git] / readline / shlib / Makefile.in
1 ## -*- text -*- ##
2 # Makefile for the GNU readline library shared library support.
3 #
4 # Copyright (C) 1998 Free Software Foundation, Inc.
5
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
9 # any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
19
20 RL_LIBRARY_VERSION = @LIBVERSION@
21 RL_LIBRARY_NAME = readline
22
23 srcdir = @srcdir@
24 VPATH = .:@top_srcdir@
25 topdir = @top_srcdir@
26 BUILD_DIR = @BUILD_DIR@
27
28 INSTALL = @INSTALL@
29 INSTALL_PROGRAM = @INSTALL_PROGRAM@
30 INSTALL_DATA = @INSTALL_DATA@
31
32 CC = @CC@
33 RANLIB = @RANLIB@
34 AR = @AR@
35 ARFLAGS = @ARFLAGS@
36 RM = rm -f
37 CP = cp
38 MV = mv
39 LN = ln
40
41 SHELL = @MAKE_SHELL@
42
43 host_os = @host_os@
44
45 prefix = @prefix@
46 exec_prefix = @exec_prefix@
47 includedir = @includedir@
48 libdir = @libdir@
49
50 # Support an alternate destination root directory for package building
51 DESTDIR =
52
53 CFLAGS = @CFLAGS@
54 LOCAL_CFLAGS = @LOCAL_CFLAGS@ -DRL_LIBRARY_VERSION='"$(RL_LIBRARY_VERSION)"'
55 CPPFLAGS = @CPPFLAGS@
56 LDFLAGS = @LDFLAGS@ @LOCAL_LDFLAGS@ @CFLAGS@
57
58 DEFS = @DEFS@
59 LOCAL_DEFS = @LOCAL_DEFS@
60
61 #
62 # These values are generated for configure by ${topdir}/support/shobj-conf.
63 # If your system is not supported by that script, but includes facilities for
64 # dynamic loading of shared objects, please update the script and send the
65 # changes to bash-maintainers@gnu.org.
66 #
67 SHOBJ_CC = @SHOBJ_CC@
68 SHOBJ_CFLAGS = @SHOBJ_CFLAGS@
69 SHOBJ_LD = @SHOBJ_LD@
70
71 SHOBJ_LDFLAGS = @SHOBJ_LDFLAGS@
72 SHOBJ_XLDFLAGS = @SHOBJ_XLDFLAGS@
73 SHOBJ_LIBS = @SHOBJ_LIBS@
74
75 SHLIB_XLDFLAGS = @SHLIB_XLDFLAGS@
76 SHLIB_LIBS = @SHLIB_LIBS@
77 SHLIB_LIBSUFF = @SHLIB_LIBSUFF@
78
79 SHLIB_LIBVERSION = @SHLIB_LIBVERSION@
80
81 SHLIB_STATUS = @SHLIB_STATUS@
82
83 # shared library versioning
84 SHLIB_MAJOR= @SHLIB_MAJOR@
85 # shared library systems like SVR4's do not use minor versions
86 SHLIB_MINOR= .@SHLIB_MINOR@
87
88 # For libraries which include headers from other libraries.
89 INCLUDES = -I. -I.. -I$(topdir)
90
91 CCFLAGS = $(DEFS) $(LOCAL_DEFS) $(CPPFLAGS) $(INCLUDES) $(LOCAL_CFLAGS) $(CFLAGS)
92
93 .SUFFIXES: .so
94
95 .c.so:
96 ${RM} $@
97 $(SHOBJ_CC) -c $(CCFLAGS) $(SHOBJ_CFLAGS) -o $*.o $<
98 $(MV) $*.o $@
99
100 # The name of the main library target.
101
102 SHARED_READLINE = libreadline.$(SHLIB_LIBVERSION)
103 SHARED_HISTORY = libhistory.$(SHLIB_LIBVERSION)
104 SHARED_LIBS = $(SHARED_READLINE) $(SHARED_HISTORY)
105
106 # The C code source files for this library.
107 CSOURCES = $(topdir)/readline.c $(topdir)/funmap.c $(topdir)/keymaps.c \
108 $(topdir)/vi_mode.c $(topdir)/parens.c $(topdir)/rltty.c \
109 $(topdir)/complete.c $(topdir)/bind.c $(topdir)/isearch.c \
110 $(topdir)/display.c $(topdir)/signals.c $(topdir)/emacs_keymap.c \
111 $(topdir)/vi_keymap.c $(topdir)/util.c $(topdir)/kill.c \
112 $(topdir)/undo.c $(topdir)/macro.c $(topdir)/input.c \
113 $(topdir)/callback.c $(topdir)/terminal.c $(topdir)/xmalloc.c \
114 $(topdir)/history.c $(topdir)/histsearch.c $(topdir)/histexpand.c \
115 $(topdir)/histfile.c $(topdir)/nls.c $(topdir)/search.c \
116 $(topdir)/shell.c $(topdir)/savestring.c $(topdir)/tilde.c \
117 $(topdir)/text.c $(topdir)/misc.c $(topdir)/compat.c \
118 $(topdir)/mbutil.c
119
120 # The header files for this library.
121 HSOURCES = readline.h rldefs.h chardefs.h keymaps.h history.h histlib.h \
122 posixstat.h posixdir.h posixjmp.h tilde.h rlconf.h rltty.h \
123 ansi_stdlib.h tcap.h xmalloc.h rlprivate.h rlshell.h rlmbutil.h
124
125 SHARED_HISTOBJ = history.so histexpand.so histfile.so histsearch.so shell.so \
126 mbutil.so
127 SHARED_TILDEOBJ = tilde.so
128 SHARED_OBJ = readline.so vi_mode.so funmap.so keymaps.so parens.so search.so \
129 rltty.so complete.so bind.so isearch.so display.so signals.so \
130 util.so kill.so undo.so macro.so input.so callback.so terminal.so \
131 text.so nls.so misc.so xmalloc.so $(SHARED_HISTOBJ) $(SHARED_TILDEOBJ) \
132 compat.so
133
134 ##########################################################################
135
136 all: $(SHLIB_STATUS)
137
138 supported: $(SHARED_LIBS)
139
140 unsupported:
141 @echo "Your system and compiler (${host_os}-${CC}) are not supported by the"
142 @echo "${topdir}/support/shobj-conf script."
143 @echo "If your operating system provides facilities for creating"
144 @echo "shared libraries, please update the script and re-run configure."
145 @echo "Please send the changes you made to bash-maintainers@gnu.org"
146 @echo "for inclusion in future bash and readline releases."
147
148 $(SHARED_READLINE): $(SHARED_OBJ)
149 $(RM) $@
150 $(SHOBJ_LD) ${SHOBJ_LDFLAGS} ${SHLIB_XLDFLAGS} -o $@ $(SHARED_OBJ) $(SHLIB_LIBS)
151
152 $(SHARED_HISTORY): $(SHARED_HISTOBJ) xmalloc.so
153 $(RM) $@
154 $(SHOBJ_LD) ${SHOBJ_LDFLAGS} ${SHLIB_XLDFLAGS} -o $@ $(SHARED_HISTOBJ) xmalloc.so $(SHLIB_LIBS)
155
156 # Since tilde.c is shared between readline and bash, make sure we compile
157 # it with the right flags when it's built as part of readline
158 tilde.so: tilde.c
159 ${RM} $@
160 $(SHOBJ_CC) -c $(CCFLAGS) $(SHOBJ_CFLAGS) -DREADLINE_LIBRARY -c -o tilde.o $(topdir)/tilde.c
161 $(MV) tilde.o $@
162
163 installdirs: $(topdir)/support/mkdirs
164 -$(SHELL) $(topdir)/support/mkdirs $(DESTDIR)$(libdir)
165
166 install: installdirs $(SHLIB_STATUS)
167 $(SHELL) $(topdir)/support/shlib-install -O $(host_os) -d $(DESTDIR)$(libdir) -i "$(INSTALL_DATA)" $(SHARED_HISTORY)
168 $(SHELL) $(topdir)/support/shlib-install -O $(host_os) -d $(DESTDIR)$(libdir) -i "$(INSTALL_DATA)" $(SHARED_READLINE)
169 @echo install: you may need to run ldconfig
170
171 uninstall:
172 $(SHELL) $(topdir)/support/shlib-install -O $(host_os) -d $(DESTDIR)$(libdir) -U $(SHARED_HISTORY)
173 $(SHELL) $(topdir)/support/shlib-install -O $(host_os) -d $(DESTDIR)$(libdir) -U $(SHARED_READLINE)
174 @echo uninstall: you may need to run ldconfig
175
176 clean mostlyclean: force
177 $(RM) $(SHARED_OBJ) $(SHARED_LIBS)
178
179 distclean maintainer-clean: clean
180 $(RM) Makefile
181
182 force:
183
184 # Tell versions [3.59,3.63) of GNU make not to export all variables.
185 # Otherwise a system limit (for SysV at least) may be exceeded.
186 .NOEXPORT:
187
188 # Dependencies
189 bind.so: $(topdir)/ansi_stdlib.h $(topdir)/posixstat.h
190 bind.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
191 bind.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
192 bind.so: $(topdir)/rltypedefs.h
193 bind.so: $(topdir)/tilde.h $(topdir)/history.h
194 compat.so: $(topdir)/rlstdc.h
195 callback.so: $(topdir)/rlconf.h
196 callback.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h
197 callback.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
198 callback.so: $(topdir)/rltypedefs.h
199 callback.so: $(topdir)/tilde.h
200 complete.so: $(topdir)/ansi_stdlib.h posixdir.h $(topdir)/posixstat.h
201 complete.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
202 complete.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
203 complete.so: $(topdir)/rltypedefs.h
204 complete.so: $(topdir)/tilde.h
205 display.so: $(topdir)/ansi_stdlib.h $(topdir)/posixstat.h
206 display.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
207 display.so: $(topdir)/tcap.h
208 display.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
209 display.so: $(topdir)/rltypedefs.h
210 display.so: $(topdir)/tilde.h $(topdir)/history.h
211 funmap.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
212 funmap.so: $(topdir)/rltypedefs.h
213 funmap.so: $(topdir)/rlconf.h $(topdir)/ansi_stdlib.h
214 funmap.so: ${BUILD_DIR}/config.h $(topdir)/tilde.h
215 histexpand.so: $(topdir)/ansi_stdlib.h
216 histexpand.so: $(topdir)/history.h $(topdir)/histlib.h $(topdir)/rltypedefs.h
217 histexpand.so: ${BUILD_DIR}/config.h
218 histfile.so: $(topdir)/ansi_stdlib.h
219 histfile.so: $(topdir)/history.h $(topdir)/histlib.h $(topdir)/rltypedefs.h
220 histfile.so: ${BUILD_DIR}/config.h
221 history.so: $(topdir)/ansi_stdlib.h
222 history.so: $(topdir)/history.h $(topdir)/histlib.h $(topdir)/rltypedefs.h
223 history.so: ${BUILD_DIR}/config.h
224 histsearch.so: $(topdir)/ansi_stdlib.h
225 histsearch.so: $(topdir)/history.h $(topdir)/histlib.h $(topdir)/rltypedefs.h
226 histsearch.so: ${BUILD_DIR}/config.h
227 input.so: $(topdir)/ansi_stdlib.h
228 input.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
229 input.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
230 input.so: $(topdir)/rltypedefs.h
231 input.so: $(topdir)/tilde.h
232 isearch.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
233 isearch.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
234 isearch.so: $(topdir)/rltypedefs.h
235 isearch.so: $(topdir)/ansi_stdlib.h $(topdir)/history.h $(topdir)/tilde.h
236 keymaps.so: emacs_keymap.c vi_keymap.c
237 keymaps.so: $(topdir)/keymaps.h $(topdir)/chardefs.h $(topdir)/rlconf.h
238 keymaps.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
239 keymaps.so: $(topdir)/rltypedefs.h
240 keymaps.so: ${BUILD_DIR}/config.h $(topdir)/ansi_stdlib.h $(topdir)/tilde.h
241 kill.so: $(topdir)/ansi_stdlib.h
242 kill.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
243 kill.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
244 kill.so: $(topdir)/tilde.h $(topdir)/history.h $(topdir)/rltypedefs.h
245 macro.so: $(topdir)/ansi_stdlib.h
246 macro.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
247 macro.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
248 macro.so: $(topdir)/tilde.h $(topdir)/history.h $(topdir)/rltypedefs.h
249 mbutil.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
250 mbutil.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/rltypedefs.h
251 mbutil.so: $(topdir)/chardefs.h $(topdir)/rlstdc.h
252 misc.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
253 misc.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
254 misc.so: $(topdir)/rltypedefs.h
255 misc.so: $(topdir)/history.h $(topdir)/tilde.h $(topdir)/ansi_stdlib.h
256 nls.so: $(topdir)/ansi_stdlib.h
257 nls.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
258 nls.o: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
259 nls.o: $(topdir)/rltypedefs.h
260 nls.o: $(topdir)/tilde.h $(topdir)/history.h $(topdir)/rlstdc.h
261 parens.so: $(topdir)/rlconf.h ${BUILD_DIR}/config.h
262 parens.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
263 parens.so: $(topdir)/rltypedefs.h
264 parens.so: $(topdir)/tilde.h
265 rltty.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
266 rltty.so: $(topdir)/rltty.h $(topdir)/tilde.h
267 rltty.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
268 rltty.so: $(topdir)/rltypedefs.h
269 search.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
270 search.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
271 search.so: $(topdir)/ansi_stdlib.h $(topdir)/history.h $(topdir)/tilde.h
272 search.so: $(topdir)/rltypedefs.h
273 signals.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
274 signals.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
275 signals.so: $(topdir)/history.h $(topdir)/tilde.h
276 signals.so: $(topdir)/rltypedefs.h
277 terminal.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
278 terminal.so: $(topdir)/tcap.h
279 terminal.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
280 terminal.so: $(topdir)/tilde.h $(topdir)/history.h
281 terminal.so: $(topdir)/rltypedefs.h
282 text.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
283 text.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
284 text.so: $(topdir)/rltypedefs.h
285 text.so: $(topdir)/history.h $(topdir)/tilde.h $(topdir)/ansi_stdlib.h
286 tilde.so: $(topdir)/ansi_stdlib.h ${BUILD_DIR}/config.h $(topdir)/tilde.h
287 undo.so: $(topdir)/ansi_stdlib.h
288 undo.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
289 undo.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
290 undo.so: $(topdir)/rltypedefs.h
291 undo.so: $(topdir)/tilde.h $(topdir)/history.h
292 util.so: $(topdir)/posixjmp.h $(topdir)/ansi_stdlib.h
293 util.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
294 util.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
295 util.so: $(topdir)/rltypedefs.h $(topdir)/tilde.h
296 vi_mode.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
297 vi_mode.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
298 vi_mode.so: $(topdir)/history.h $(topdir)/ansi_stdlib.h $(topdir)/tilde.h
299 vi_mode.so: $(topdir)/rltypedefs.h
300 xmalloc.so: ${BUILD_DIR}/config.h
301 xmalloc.so: $(topdir)/ansi_stdlib.h
302
303 bind.so: $(topdir)/rlshell.h
304 histfile.so: $(topdir)/rlshell.h
305 nls.so: $(topdir)/rlshell.h
306 readline.so: $(topdir)/rlshell.h
307 shell.so: $(topdir)/rlshell.h
308 terminal.so: $(topdir)/rlshell.h
309 histexpand.so: $(topdir)/rlshell.h
310
311 bind.so: $(topdir)/rlprivate.h
312 callback.so: $(topdir)/rlprivate.h
313 complete.so: $(topdir)/rlprivate.h
314 display.so: $(topdir)/rlprivate.h
315 input.so: $(topdir)/rlprivate.h
316 isearch.so: $(topdir)/rlprivate.h
317 kill.so: $(topdir)/rlprivate.h
318 macro.so: $(topdir)/rlprivate.h
319 mbutil.so: $(topdir)/rlprivate.h
320 misc.so: $(topdir)/rlprivate.h
321 nls.so: $(topdir)/rlprivate.h
322 parens.so: $(topdir)/rlprivate.h
323 readline.so: $(topdir)/rlprivate.h
324 rltty.so: $(topdir)/rlprivate.h
325 search.so: $(topdir)/rlprivate.h
326 signals.so: $(topdir)/rlprivate.h
327 terminal.so: $(topdir)/rlprivate.h
328 text.so: $(topdir)/rlprivate.h
329 undo.so: $(topdir)/rlprivate.h
330 util.so: $(topdir)/rlprivate.h
331 vi_mode.so: $(topdir)/rlprivate.h
332
333 bind.so: $(topdir)/xmalloc.h
334 complete.so: $(topdir)/xmalloc.h
335 display.so: $(topdir)/xmalloc.h
336 funmap.so: $(topdir)/xmalloc.h
337 histexpand.so: $(topdir)/xmalloc.h
338 histfile.so: $(topdir)/xmalloc.h
339 history.so: $(topdir)/xmalloc.h
340 input.so: $(topdir)/xmalloc.h
341 isearch.so: $(topdir)/xmalloc.h
342 keymaps.so: $(topdir)/xmalloc.h
343 kill.so: $(topdir)/xmalloc.h
344 macro.so: $(topdir)/xmalloc.h
345 mbutil.so: $(topdir)/xmalloc.h
346 misc.so: $(topdir)/xmalloc.h
347 readline.so: $(topdir)/xmalloc.h
348 savestring.so: $(topdir)/xmalloc.h
349 search.so: $(topdir)/xmalloc.h
350 shell.so: $(topdir)/xmalloc.h
351 terminal.so: $(topdir)/xmalloc.h
352 text.so: $(topdir)/xmalloc.h
353 tilde.so: $(topdir)/xmalloc.h
354 undo.so: $(topdir)/xmalloc.h
355 util.so: $(topdir)/xmalloc.h
356 vi_mode.so: $(topdir)/xmalloc.h
357 xmalloc.so: $(topdir)/xmalloc.h
358
359 complete.o: $(topdir)/rlmbutil.h
360 display.o: $(topdir)/rlmbutil.h
361 histexpand.o: $(topdir)/rlmbutil.h
362 input.o: $(topdir)/rlmbutil.h
363 isearch.o: $(topdir)/rlmbutil.h
364 mbutil.o: $(topdir)/rlmbutil.h
365 misc.o: $(topdir)/rlmbutil.h
366 readline.o: $(topdir)/rlmbutil.h
367 search.o: $(topdir)/rlmbutil.h
368 text.o: $(topdir)/rlmbutil.h
369 vi_mode.o: $(topdir)/rlmbutil.h
370
371 bind.so: $(topdir)/bind.c
372 callback.so: $(topdir)/callback.c
373 compat.so: $(topdir)/compat.c
374 complete.so: $(topdir)/complete.c
375 display.so: $(topdir)/display.c
376 funmap.so: $(topdir)/funmap.c
377 input.so: $(topdir)/input.c
378 isearch.so: $(topdir)/isearch.c
379 keymaps.so: $(topdir)/keymaps.c $(topdir)/emacs_keymap.c $(topdir)/vi_keymap.c
380 kill.so: $(topdir)/kill.c
381 macro.so: $(topdir)/macro.c
382 mbutil.so: $(topdir)/mbutil.c
383 misc.so: $(topdir)/mbutil.c
384 nls.so: $(topdir)/nls.c
385 parens.so: $(topdir)/parens.c
386 readline.so: $(topdir)/readline.c
387 rltty.so: $(topdir)/rltty.c
388 savestring.so: $(topdir)/savestring.c
389 search.so: $(topdir)/search.c
390 shell.so: $(topdir)/shell.c
391 signals.so: $(topdir)/signals.c
392 terminal.so: $(topdir)/terminal.c
393 text.so: $(topdir)/terminal.c
394 tilde.so: $(topdir)/tilde.c
395 undo.so: $(topdir)/undo.c
396 util.so: $(topdir)/util.c
397 vi_mode.so: $(topdir)/vi_mode.c
398 xmalloc.so: $(topdir)/xmalloc.c
399
400 histexpand.so: $(topdir)/histexpand.c
401 histfile.so: $(topdir)/histfile.c
402 history.so: $(topdir)/history.c
403 histsearch.so: $(topdir)/histsearch.c
404
405 bind.so: bind.c
406 callback.so: callback.c
407 comapt.so: compat.c
408 complete.so: complete.c
409 display.so: display.c
410 funmap.so: funmap.c
411 input.so: input.c
412 isearch.so: isearch.c
413 keymaps.so: keymaps.c emacs_keymap.c vi_keymap.c
414 kill.so: kill.c
415 macro.so: macro.c
416 mbutil.so: mbutil.c
417 misc.so: misc.c
418 nls.so: nls.c
419 parens.so: parens.c
420 readline.so: readline.c
421 rltty.so: rltty.c
422 savestring.so: savestring.c
423 search.so: search.c
424 signals.so: signals.c
425 shell.so: shell.c
426 terminal.so: terminal.c
427 text.so: terminal.c
428 tilde.so: tilde.c
429 undo.so: undo.c
430 util.so: util.c
431 vi_mode.so: vi_mode.c
432 xmalloc.so: xmalloc.c
433
434 histexpand.so: histexpand.c
435 histfile.so: histfile.c
436 history.so: history.c
437 histsearch.so: histsearch.c
This page took 0.0392 seconds and 5 git commands to generate.