2 # Makefile for the GNU readline library shared library support.
4 # Copyright (C) 1998-2009 Free Software Foundation, Inc.
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 3 of the License, or
9 # (at your option) any later version.
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.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 PACKAGE
= @PACKAGE_NAME@
20 VERSION
= @PACKAGE_VERSION@
22 PACKAGE_BUGREPORT
= @PACKAGE_BUGREPORT@
23 PACKAGE_NAME
= @PACKAGE_NAME@
24 PACKAGE_STRING
= @PACKAGE_STRING@
25 PACKAGE_VERSION
= @PACKAGE_VERSION@
27 RL_LIBRARY_VERSION
= @LIBVERSION@
28 RL_LIBRARY_NAME
= readline
30 datarootdir
= @datarootdir@
35 BUILD_DIR
= @BUILD_DIR@
38 INSTALL_PROGRAM
= @INSTALL_PROGRAM@
39 INSTALL_DATA
= @INSTALL_DATA@
53 host_vendor
= @host_vendor@
56 exec_prefix = @
exec_prefix@
57 includedir = @
includedir@
61 localedir
= @localedir@
63 # Support an alternate destination root directory for package building
67 LOCAL_CFLAGS
= @LOCAL_CFLAGS@
-DRL_LIBRARY_VERSION
='"$(RL_LIBRARY_VERSION)"'
69 LDFLAGS
= @LDFLAGS@ @LOCAL_LDFLAGS@ @CFLAGS@
71 DEFS
= @DEFS@ @CROSS_COMPILE@
72 LOCAL_DEFS
= @LOCAL_DEFS@
75 # These values are generated for configure by ${topdir}/support/shobj-conf.
76 # If your system is not supported by that script, but includes facilities for
77 # dynamic loading of shared objects, please update the script and send the
78 # changes to bash-maintainers@gnu.org.
81 SHOBJ_CFLAGS
= @SHOBJ_CFLAGS@
84 SHOBJ_LDFLAGS
= @SHOBJ_LDFLAGS@
85 SHOBJ_XLDFLAGS
= @SHOBJ_XLDFLAGS@
86 SHOBJ_LIBS
= @SHOBJ_LIBS@
88 SHLIB_XLDFLAGS
= @LDFLAGS@ @SHLIB_XLDFLAGS@
89 SHLIB_LIBS
= @SHLIB_LIBS@
91 SHLIB_DOT
= @SHLIB_DOT@
92 SHLIB_LIBPREF
= @SHLIB_LIBPREF@
93 SHLIB_LIBSUFF
= @SHLIB_LIBSUFF@
95 SHLIB_LIBVERSION
= @SHLIB_LIBVERSION@
96 SHLIB_DLLVERSION
= @SHLIB_DLLVERSION@
98 SHLIB_STATUS
= @SHLIB_STATUS@
100 TERMCAP_LIB
= @TERMCAP_LIB@
102 # shared library versioning
103 SHLIB_MAJOR
= @SHLIB_MAJOR@
104 # shared library systems like SVR4's do not use minor versions
105 SHLIB_MINOR
= .@SHLIB_MINOR@
107 # For libraries which include headers from other libraries.
108 INCLUDES
= -I.
-I..
-I
$(topdir
)
110 CCFLAGS
= $(DEFS
) $(LOCAL_DEFS
) $(CPPFLAGS
) $(INCLUDES
) $(LOCAL_CFLAGS
) $(CFLAGS
)
116 $(SHOBJ_CC
) -c
$(CCFLAGS
) $(SHOBJ_CFLAGS
) -o
$*.o
$<
119 # The name of the main library target.
121 SHARED_READLINE
= $(SHLIB_LIBPREF
)readline
$(SHLIB_DOT
)$(SHLIB_LIBVERSION
)
122 SHARED_HISTORY
= $(SHLIB_LIBPREF
)history
$(SHLIB_DOT
)$(SHLIB_LIBVERSION
)
123 SHARED_LIBS
= $(SHARED_READLINE
) $(SHARED_HISTORY
)
125 # The C code source files for this library.
126 CSOURCES
= $(topdir
)/readline.c
$(topdir
)/funmap.c
$(topdir
)/keymaps.c \
127 $(topdir
)/vi_mode.c
$(topdir
)/parens.c
$(topdir
)/rltty.c \
128 $(topdir
)/complete.c
$(topdir
)/bind.c
$(topdir
)/isearch.c \
129 $(topdir
)/display.c
$(topdir
)/signals.c
$(topdir
)/emacs_keymap.c \
130 $(topdir
)/vi_keymap.c
$(topdir
)/util.c
$(topdir
)/kill.c \
131 $(topdir
)/undo.c
$(topdir
)/macro.c
$(topdir
)/input.c \
132 $(topdir
)/callback.c
$(topdir
)/terminal.c
$(topdir
)/xmalloc.c
$(topdir
)/xfree.c \
133 $(topdir
)/history.c
$(topdir
)/histsearch.c
$(topdir
)/histexpand.c \
134 $(topdir
)/histfile.c
$(topdir
)/nls.c
$(topdir
)/search.c \
135 $(topdir
)/shell.c
$(topdir
)/savestring.c
$(topdir
)/tilde.c \
136 $(topdir
)/text.c
$(topdir
)/misc.c
$(topdir
)/compat.c \
139 # The header files for this library.
140 HSOURCES
= readline.h rldefs.h chardefs.h keymaps.h history.h histlib.h \
141 posixstat.h posixdir.h posixjmp.h tilde.h rlconf.h rltty.h \
142 ansi_stdlib.h tcap.h xmalloc.h rlprivate.h rlshell.h rlmbutil.h
144 SHARED_HISTOBJ
= history.so histexpand.so histfile.so histsearch.so
shell.so \
146 SHARED_TILDEOBJ
= tilde.so
147 SHARED_OBJ
= readline.so vi_mode.so funmap.so keymaps.so parens.so search.so \
148 rltty.so complete.so bind.so isearch.so display.so signals.so \
149 util.so kill.so undo.so macro.so input.so callback.so terminal.so \
150 text.so nls.so misc.so xmalloc.so xfree.so
$(SHARED_HISTOBJ
) $(SHARED_TILDEOBJ
) \
153 ##########################################################################
157 supported
: $(SHARED_LIBS
)
160 @echo
"Your system and compiler (${host_os}-${CC}) are not supported by the"
161 @echo
"${topdir}/support/shobj-conf script."
162 @echo
"If your operating system provides facilities for creating"
163 @echo
"shared libraries, please update the script and re-run configure."
164 @echo
"Please send the changes you made to bash-maintainers@gnu.org"
165 @echo
"for inclusion in future bash and readline releases."
167 $(SHARED_READLINE
): $(SHARED_OBJ
)
169 $(SHOBJ_LD
) ${SHOBJ_LDFLAGS} ${SHLIB_XLDFLAGS} -o
$@
$(SHARED_OBJ
) $(SHLIB_LIBS
)
171 $(SHARED_HISTORY
): $(SHARED_HISTOBJ
) xmalloc.so xfree.so
173 $(SHOBJ_LD
) ${SHOBJ_LDFLAGS} ${SHLIB_XLDFLAGS} -o
$@
$(SHARED_HISTOBJ
) xmalloc.so xfree.so
$(SHLIB_LIBS
)
175 # Since tilde.c is shared between readline and bash, make sure we compile
176 # it with the right flags when it's built as part of readline
179 $(SHOBJ_CC
) -c
$(CCFLAGS
) $(SHOBJ_CFLAGS
) -DREADLINE_LIBRARY
-c
-o tilde.o
$(topdir
)/tilde.c
182 installdirs: $(topdir
)/support
/mkdirs
183 -$(SHELL
) $(topdir
)/support
/mkdirs
$(DESTDIR
)$(libdir)
184 -$(SHELL
) $(topdir
)/support
/mkdirs
$(DESTDIR
)$(bindir)
186 install: installdirs $(SHLIB_STATUS
)
187 $(SHELL
) $(topdir
)/support
/shlib-install
-O
$(host_os
) -V
$(host_vendor
) -d
$(DESTDIR
)$(libdir) -b
$(DESTDIR
)$(bindir) -i
"$(INSTALL_DATA)" $(SHARED_HISTORY
)
188 $(SHELL
) $(topdir
)/support
/shlib-install
-O
$(host_os
) -V
$(host_vendor
) -d
$(DESTDIR
)$(libdir) -b
$(DESTDIR
)$(bindir) -i
"$(INSTALL_DATA)" $(SHARED_READLINE
)
189 @echo
install: you may need to run ldconfig
192 $(SHELL
) $(topdir
)/support
/shlib-install
-O
$(host_os
) -V
$(host_vendor
) -d
$(DESTDIR
)$(libdir) -b
$(DESTDIR
)$(bindir) -U
$(SHARED_HISTORY
)
193 $(SHELL
) $(topdir
)/support
/shlib-install
-O
$(host_os
) -V
$(host_vendor
) -d
$(DESTDIR
)$(libdir) -b
$(DESTDIR
)$(bindir) -U
$(SHARED_READLINE
)
194 @echo
uninstall: you may need to run ldconfig
196 clean mostlyclean: force
197 $(RM
) $(SHARED_OBJ
) $(SHARED_LIBS
)
199 distclean maintainer-clean
: clean
204 # Tell versions [3.59,3.63) of GNU make not to export all variables.
205 # Otherwise a system limit (for SysV at least) may be exceeded.
209 bind.so
: $(topdir
)/ansi_stdlib.h
$(topdir
)/posixstat.h
210 bind.so
: $(topdir
)/rldefs.h
${BUILD_DIR}/config.h
$(topdir
)/rlconf.h
211 bind.so
: $(topdir
)/readline.h
$(topdir
)/keymaps.h
$(topdir
)/chardefs.h
212 bind.so
: $(topdir
)/rltypedefs.h
213 bind.so
: $(topdir
)/tilde.h
$(topdir
)/history.h
214 compat.so
: $(topdir
)/rlstdc.h
215 callback.so
: $(topdir
)/rlconf.h
216 callback.so
: $(topdir
)/rldefs.h
${BUILD_DIR}/config.h
217 callback.so
: $(topdir
)/readline.h
$(topdir
)/keymaps.h
$(topdir
)/chardefs.h
218 callback.so
: $(topdir
)/rltypedefs.h
219 callback.so
: $(topdir
)/tilde.h
220 complete.so
: $(topdir
)/ansi_stdlib.h posixdir.h
$(topdir
)/posixstat.h
221 complete.so
: $(topdir
)/rldefs.h
${BUILD_DIR}/config.h
$(topdir
)/rlconf.h
222 complete.so
: $(topdir
)/readline.h
$(topdir
)/keymaps.h
$(topdir
)/chardefs.h
223 complete.so
: $(topdir
)/rltypedefs.h
224 complete.so
: $(topdir
)/tilde.h
225 display.so
: $(topdir
)/ansi_stdlib.h
$(topdir
)/posixstat.h
226 display.so
: $(topdir
)/rldefs.h
${BUILD_DIR}/config.h
$(topdir
)/rlconf.h
227 display.so
: $(topdir
)/tcap.h
228 display.so
: $(topdir
)/readline.h
$(topdir
)/keymaps.h
$(topdir
)/chardefs.h
229 display.so
: $(topdir
)/rltypedefs.h
230 display.so
: $(topdir
)/tilde.h
$(topdir
)/history.h
231 funmap.so
: $(topdir
)/readline.h
$(topdir
)/keymaps.h
$(topdir
)/chardefs.h
232 funmap.so
: $(topdir
)/rltypedefs.h
233 funmap.so
: $(topdir
)/rlconf.h
$(topdir
)/ansi_stdlib.h
234 funmap.so
: ${BUILD_DIR}/config.h
$(topdir
)/tilde.h
235 histexpand.so
: $(topdir
)/ansi_stdlib.h
236 histexpand.so
: $(topdir
)/history.h
$(topdir
)/histlib.h
$(topdir
)/rltypedefs.h
237 histexpand.so
: ${BUILD_DIR}/config.h
238 histfile.so
: $(topdir
)/ansi_stdlib.h
239 histfile.so
: $(topdir
)/history.h
$(topdir
)/histlib.h
$(topdir
)/rltypedefs.h
240 histfile.so
: ${BUILD_DIR}/config.h
241 history.so
: $(topdir
)/ansi_stdlib.h
242 history.so
: $(topdir
)/history.h
$(topdir
)/histlib.h
$(topdir
)/rltypedefs.h
243 history.so
: ${BUILD_DIR}/config.h
244 histsearch.so
: $(topdir
)/ansi_stdlib.h
245 histsearch.so
: $(topdir
)/history.h
$(topdir
)/histlib.h
$(topdir
)/rltypedefs.h
246 histsearch.so
: ${BUILD_DIR}/config.h
247 input.so
: $(topdir
)/ansi_stdlib.h
248 input.so
: $(topdir
)/rldefs.h
${BUILD_DIR}/config.h
$(topdir
)/rlconf.h
249 input.so
: $(topdir
)/readline.h
$(topdir
)/keymaps.h
$(topdir
)/chardefs.h
250 input.so
: $(topdir
)/rltypedefs.h
251 input.so
: $(topdir
)/tilde.h
252 isearch.so
: $(topdir
)/rldefs.h
${BUILD_DIR}/config.h
$(topdir
)/rlconf.h
253 isearch.so
: $(topdir
)/readline.h
$(topdir
)/keymaps.h
$(topdir
)/chardefs.h
254 isearch.so
: $(topdir
)/rltypedefs.h
255 isearch.so
: $(topdir
)/ansi_stdlib.h
$(topdir
)/history.h
$(topdir
)/tilde.h
256 keymaps.so
: emacs_keymap.c vi_keymap.c
257 keymaps.so
: $(topdir
)/keymaps.h
$(topdir
)/chardefs.h
$(topdir
)/rlconf.h
258 keymaps.so
: $(topdir
)/readline.h
$(topdir
)/keymaps.h
$(topdir
)/chardefs.h
259 keymaps.so
: $(topdir
)/rltypedefs.h
260 keymaps.so
: ${BUILD_DIR}/config.h
$(topdir
)/ansi_stdlib.h
$(topdir
)/tilde.h
261 kill.so
: $(topdir
)/ansi_stdlib.h
262 kill.so
: $(topdir
)/rldefs.h
${BUILD_DIR}/config.h
$(topdir
)/rlconf.h
263 kill.so
: $(topdir
)/readline.h
$(topdir
)/keymaps.h
$(topdir
)/chardefs.h
264 kill.so
: $(topdir
)/tilde.h
$(topdir
)/history.h
$(topdir
)/rltypedefs.h
265 macro.so
: $(topdir
)/ansi_stdlib.h
266 macro.so
: $(topdir
)/rldefs.h
${BUILD_DIR}/config.h
$(topdir
)/rlconf.h
267 macro.so
: $(topdir
)/readline.h
$(topdir
)/keymaps.h
$(topdir
)/chardefs.h
268 macro.so
: $(topdir
)/tilde.h
$(topdir
)/history.h
$(topdir
)/rltypedefs.h
269 mbutil.so
: $(topdir
)/rldefs.h
${BUILD_DIR}/config.h
$(topdir
)/rlconf.h
270 mbutil.so
: $(topdir
)/readline.h
$(topdir
)/keymaps.h
$(topdir
)/rltypedefs.h
271 mbutil.so
: $(topdir
)/chardefs.h
$(topdir
)/rlstdc.h
272 misc.so
: $(topdir
)/readline.h
$(topdir
)/keymaps.h
$(topdir
)/chardefs.h
273 misc.so
: $(topdir
)/rldefs.h
${BUILD_DIR}/config.h
$(topdir
)/rlconf.h
274 misc.so
: $(topdir
)/rltypedefs.h
275 misc.so
: $(topdir
)/history.h
$(topdir
)/tilde.h
$(topdir
)/ansi_stdlib.h
276 nls.so
: $(topdir
)/ansi_stdlib.h
277 nls.so
: $(topdir
)/rldefs.h
${BUILD_DIR}/config.h
$(topdir
)/rlconf.h
278 nls.o
: $(topdir
)/readline.h
$(topdir
)/keymaps.h
$(topdir
)/chardefs.h
279 nls.o
: $(topdir
)/rltypedefs.h
280 nls.o
: $(topdir
)/tilde.h
$(topdir
)/history.h
$(topdir
)/rlstdc.h
281 parens.so
: $(topdir
)/rlconf.h
${BUILD_DIR}/config.h
282 parens.so
: $(topdir
)/readline.h
$(topdir
)/keymaps.h
$(topdir
)/chardefs.h
283 parens.so
: $(topdir
)/rltypedefs.h
284 parens.so
: $(topdir
)/tilde.h
285 rltty.so
: $(topdir
)/rldefs.h
${BUILD_DIR}/config.h
$(topdir
)/rlconf.h
286 rltty.so
: $(topdir
)/rltty.h
$(topdir
)/tilde.h
287 rltty.so
: $(topdir
)/readline.h
$(topdir
)/keymaps.h
$(topdir
)/chardefs.h
288 rltty.so
: $(topdir
)/rltypedefs.h
289 search.so
: $(topdir
)/rldefs.h
${BUILD_DIR}/config.h
$(topdir
)/rlconf.h
290 search.so
: $(topdir
)/readline.h
$(topdir
)/keymaps.h
$(topdir
)/chardefs.h
291 search.so
: $(topdir
)/ansi_stdlib.h
$(topdir
)/history.h
$(topdir
)/tilde.h
292 search.so
: $(topdir
)/rltypedefs.h
293 signals.so
: $(topdir
)/rldefs.h
${BUILD_DIR}/config.h
$(topdir
)/rlconf.h
294 signals.so
: $(topdir
)/readline.h
$(topdir
)/keymaps.h
$(topdir
)/chardefs.h
295 signals.so
: $(topdir
)/history.h
$(topdir
)/tilde.h
296 signals.so
: $(topdir
)/rltypedefs.h
297 terminal.so
: $(topdir
)/rldefs.h
${BUILD_DIR}/config.h
$(topdir
)/rlconf.h
298 terminal.so
: $(topdir
)/tcap.h
299 terminal.so
: $(topdir
)/readline.h
$(topdir
)/keymaps.h
$(topdir
)/chardefs.h
300 terminal.so
: $(topdir
)/tilde.h
$(topdir
)/history.h
301 terminal.so
: $(topdir
)/rltypedefs.h
302 text.so
: $(topdir
)/readline.h
$(topdir
)/keymaps.h
$(topdir
)/chardefs.h
303 text.so
: $(topdir
)/rldefs.h
${BUILD_DIR}/config.h
$(topdir
)/rlconf.h
304 text.so
: $(topdir
)/rltypedefs.h
305 text.so
: $(topdir
)/history.h
$(topdir
)/tilde.h
$(topdir
)/ansi_stdlib.h
306 tilde.so
: $(topdir
)/ansi_stdlib.h
${BUILD_DIR}/config.h
$(topdir
)/tilde.h
307 undo.so
: $(topdir
)/ansi_stdlib.h
308 undo.so
: $(topdir
)/rldefs.h
${BUILD_DIR}/config.h
$(topdir
)/rlconf.h
309 undo.so
: $(topdir
)/readline.h
$(topdir
)/keymaps.h
$(topdir
)/chardefs.h
310 undo.so
: $(topdir
)/rltypedefs.h
311 undo.so
: $(topdir
)/tilde.h
$(topdir
)/history.h
312 util.so
: $(topdir
)/posixjmp.h
$(topdir
)/ansi_stdlib.h
313 util.so
: $(topdir
)/rldefs.h
${BUILD_DIR}/config.h
$(topdir
)/rlconf.h
314 util.so
: $(topdir
)/readline.h
$(topdir
)/keymaps.h
$(topdir
)/chardefs.h
315 util.so
: $(topdir
)/rltypedefs.h
$(topdir
)/tilde.h
316 vi_mode.so
: $(topdir
)/rldefs.h
${BUILD_DIR}/config.h
$(topdir
)/rlconf.h
317 vi_mode.so
: $(topdir
)/readline.h
$(topdir
)/keymaps.h
$(topdir
)/chardefs.h
318 vi_mode.so
: $(topdir
)/history.h
$(topdir
)/ansi_stdlib.h
$(topdir
)/tilde.h
319 vi_mode.so
: $(topdir
)/rltypedefs.h
320 xfree.so
: ${BUILD_DIR}/config.h
321 xfree.so
: $(topdir
)/ansi_stdlib.h
322 xmalloc.so
: ${BUILD_DIR}/config.h
323 xmalloc.so
: $(topdir
)/ansi_stdlib.h
325 bind.so
: $(topdir
)/rlshell.h
326 histfile.so
: $(topdir
)/rlshell.h
327 nls.so
: $(topdir
)/rlshell.h
328 readline.so
: $(topdir
)/rlshell.h
329 shell.so
: $(topdir
)/rlshell.h
330 terminal.so
: $(topdir
)/rlshell.h
331 histexpand.so
: $(topdir
)/rlshell.h
333 bind.so
: $(topdir
)/rlprivate.h
334 callback.so
: $(topdir
)/rlprivate.h
335 complete.so
: $(topdir
)/rlprivate.h
336 display.so
: $(topdir
)/rlprivate.h
337 input.so
: $(topdir
)/rlprivate.h
338 isearch.so
: $(topdir
)/rlprivate.h
339 kill.so
: $(topdir
)/rlprivate.h
340 macro.so
: $(topdir
)/rlprivate.h
341 mbutil.so
: $(topdir
)/rlprivate.h
342 misc.so
: $(topdir
)/rlprivate.h
343 nls.so
: $(topdir
)/rlprivate.h
344 parens.so
: $(topdir
)/rlprivate.h
345 readline.so
: $(topdir
)/rlprivate.h
346 rltty.so
: $(topdir
)/rlprivate.h
347 search.so
: $(topdir
)/rlprivate.h
348 signals.so
: $(topdir
)/rlprivate.h
349 terminal.so
: $(topdir
)/rlprivate.h
350 text.so
: $(topdir
)/rlprivate.h
351 undo.so
: $(topdir
)/rlprivate.h
352 util.so
: $(topdir
)/rlprivate.h
353 vi_mode.so
: $(topdir
)/rlprivate.h
355 bind.so
: $(topdir
)/xmalloc.h
356 complete.so
: $(topdir
)/xmalloc.h
357 display.so
: $(topdir
)/xmalloc.h
358 funmap.so
: $(topdir
)/xmalloc.h
359 histexpand.so
: $(topdir
)/xmalloc.h
360 histfile.so
: $(topdir
)/xmalloc.h
361 history.so
: $(topdir
)/xmalloc.h
362 input.so
: $(topdir
)/xmalloc.h
363 isearch.so
: $(topdir
)/xmalloc.h
364 keymaps.so
: $(topdir
)/xmalloc.h
365 kill.so
: $(topdir
)/xmalloc.h
366 macro.so
: $(topdir
)/xmalloc.h
367 mbutil.so
: $(topdir
)/xmalloc.h
368 misc.so
: $(topdir
)/xmalloc.h
369 readline.so
: $(topdir
)/xmalloc.h
370 savestring.so
: $(topdir
)/xmalloc.h
371 search.so
: $(topdir
)/xmalloc.h
372 shell.so
: $(topdir
)/xmalloc.h
373 terminal.so
: $(topdir
)/xmalloc.h
374 text.so
: $(topdir
)/xmalloc.h
375 tilde.so
: $(topdir
)/xmalloc.h
376 undo.so
: $(topdir
)/xmalloc.h
377 util.so
: $(topdir
)/xmalloc.h
378 vi_mode.so
: $(topdir
)/xmalloc.h
379 xfree.so
: $(topdir
)/xmalloc.h
380 xmalloc.so
: $(topdir
)/xmalloc.h
382 complete.o
: $(topdir
)/rlmbutil.h
383 display.o
: $(topdir
)/rlmbutil.h
384 histexpand.o
: $(topdir
)/rlmbutil.h
385 input.o
: $(topdir
)/rlmbutil.h
386 isearch.o
: $(topdir
)/rlmbutil.h
387 mbutil.o
: $(topdir
)/rlmbutil.h
388 misc.o
: $(topdir
)/rlmbutil.h
389 readline.o
: $(topdir
)/rlmbutil.h
390 search.o
: $(topdir
)/rlmbutil.h
391 text.o
: $(topdir
)/rlmbutil.h
392 vi_mode.o
: $(topdir
)/rlmbutil.h
394 bind.so
: $(topdir
)/bind.c
395 callback.so
: $(topdir
)/callback.c
396 compat.so
: $(topdir
)/compat.c
397 complete.so
: $(topdir
)/complete.c
398 display.so
: $(topdir
)/display.c
399 funmap.so
: $(topdir
)/funmap.c
400 input.so
: $(topdir
)/input.c
401 isearch.so
: $(topdir
)/isearch.c
402 keymaps.so
: $(topdir
)/keymaps.c
$(topdir
)/emacs_keymap.c
$(topdir
)/vi_keymap.c
403 kill.so
: $(topdir
)/kill.c
404 macro.so
: $(topdir
)/macro.c
405 mbutil.so
: $(topdir
)/mbutil.c
406 misc.so
: $(topdir
)/mbutil.c
407 nls.so
: $(topdir
)/nls.c
408 parens.so
: $(topdir
)/parens.c
409 readline.so
: $(topdir
)/readline.c
410 rltty.so
: $(topdir
)/rltty.c
411 savestring.so
: $(topdir
)/savestring.c
412 search.so
: $(topdir
)/search.c
413 shell.so
: $(topdir
)/shell.c
414 signals.so
: $(topdir
)/signals.c
415 terminal.so
: $(topdir
)/terminal.c
416 text.so
: $(topdir
)/text.c
417 tilde.so
: $(topdir
)/tilde.c
418 undo.so
: $(topdir
)/undo.c
419 util.so
: $(topdir
)/util.c
420 vi_mode.so
: $(topdir
)/vi_mode.c
421 xfree.so
: $(topdir
)/xfree.c
422 xmalloc.so
: $(topdir
)/xmalloc.c
424 histexpand.so
: $(topdir
)/histexpand.c
425 histfile.so
: $(topdir
)/histfile.c
426 history.so
: $(topdir
)/history.c
427 histsearch.so
: $(topdir
)/histsearch.c
430 callback.so
: callback.c
432 complete.so
: complete.c
433 display.so
: display.c
436 isearch.so
: isearch.c
437 keymaps.so
: keymaps.c emacs_keymap.c vi_keymap.c
444 readline.so
: readline.c
446 savestring.so
: savestring.c
448 signals.so
: signals.c
450 terminal.so
: terminal.c
455 vi_mode.so
: vi_mode.c
457 xmalloc.so
: xmalloc.c
459 histexpand.so
: histexpand.c
460 histfile.so
: histfile.c
461 history.so
: history.c
462 histsearch.so
: histsearch.c