2 # Master Makefile for the GNU readline library.
3 # Copyright (C) 1994, 1998 Free Software Foundation, Inc.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2, or (at your option)
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 RL_LIBRARY_VERSION
= @LIBVERSION@
19 RL_LIBRARY_NAME
= readline
23 top_srcdir
= @top_srcdir@
24 BUILD_DIR
= @BUILD_DIR@
27 INSTALL_PROGRAM
= @INSTALL_PROGRAM@
28 INSTALL_DATA
= @INSTALL_DATA@
31 LD
= ld # needed when building shared libraries
39 exec_prefix = @
exec_prefix@
44 includedir = @
includedir@
48 man3dir = $(mandir)/man3
52 # Programs to make tags files.
57 LOCAL_CFLAGS
= @LOCAL_CFLAGS@
-DRL_LIBRARY_VERSION
='"$(RL_LIBRARY_VERSION)"'
59 LDFLAGS
= @LDFLAGS@ @LOCAL_LDFLAGS@ @CFLAGS@
62 LOCAL_DEFS
= @LOCAL_DEFS@
64 # For libraries which include headers from other libraries.
65 INCLUDES
= -I.
-I
$(srcdir) -I
$(includedir)
67 CCFLAGS
= $(DEFS
) $(LOCAL_DEFS
) $(CPPFLAGS
) $(INCLUDES
) $(LOCAL_CFLAGS
) $(CFLAGS
)
69 # these two options need tweaking for compiler/OS versions other than gcc
71 PICFLAG
= -fpic
# -pic for some versions of cc
72 SHLIB_OPTS
= -assert pure-text
-ldl
# -Bshareable for some versions of gcc
75 # shared library systems like SVR4's do not use minor versions
81 $(CC
) -c
$(CCFLAGS
) $<
85 $(CC
) -c
$(PICFLAG
) $(CCFLAGS
) $<
89 # The name of the main library target.
90 LIBRARY_NAME
= libreadline.a
91 STATIC_LIBS
= libreadline.a libhistory.a
93 SHARED_READLINE
= libreadline.so.
$(MAJOR
)$(MINOR
)
94 SHARED_HISTORY
= libhistory.so.
$(MAJOR
)$(MINOR
)
95 SHARED_LIBS
= $(SHARED_READLINE
) $(SHARED_HISTORY
)
97 # The C code source files for this library.
98 CSOURCES
= $(srcdir)/readline.c
$(srcdir)/funmap.c
$(srcdir)/keymaps.c \
99 $(srcdir)/vi_mode.c
$(srcdir)/parens.c
$(srcdir)/rltty.c \
100 $(srcdir)/complete.c
$(srcdir)/bind.c
$(srcdir)/isearch.c \
101 $(srcdir)/display.c
$(srcdir)/signals.c
$(srcdir)/emacs_keymap.c \
102 $(srcdir)/vi_keymap.c
$(srcdir)/util.c
$(srcdir)/kill.c \
103 $(srcdir)/undo.c
$(srcdir)/macro.c
$(srcdir)/input.c \
104 $(srcdir)/callback.c
$(srcdir)/terminal.c
$(srcdir)/xmalloc.c \
105 $(srcdir)/history.c
$(srcdir)/histsearch.c
$(srcdir)/histexpand.c \
106 $(srcdir)/histfile.c
$(srcdir)/nls.c
$(srcdir)/search.c \
107 $(srcdir)/shell.c
$(srcdir)/tilde.c
109 # The header files for this library.
110 HSOURCES
= readline.h rldefs.h chardefs.h keymaps.h history.h histlib.h \
111 posixstat.h posixdir.h posixjmp.h tilde.h rlconf.h rltty.h \
114 HISTOBJ
= history.o histexpand.o histfile.o histsearch.o
shell.o
116 OBJECTS
= readline.o vi_mode.o funmap.o keymaps.o parens.o search.o \
117 rltty.o complete.o bind.o isearch.o display.o signals.o \
118 util.o kill.o undo.o macro.o input.o callback.o terminal.o \
119 nls.o xmalloc.o
$(HISTOBJ
) $(TILDEOBJ
)
121 SHARED_HISTOBJ
= history.so histexpand.so histfile.so histsearch.so
shell.so
122 SHARED_TILDEOBJ
= tilde.so
123 SHARED_OBJ
= readline.so vi_mode.so funmap.so keymaps.so parens.so search.so \
124 rltty.so complete.so bind.so isearch.so display.so signals.so \
125 util.so kill.so undo.so macro.so input.so callback.so terminal.so \
126 nls.so xmalloc.so
$(SHARED_HISTOBJ
) $(SHARED_TILDEOBJ
)
128 # The texinfo files which document this library.
129 DOCSOURCE
= doc
/rlman.texinfo doc
/rltech.texinfo doc
/rluser.texinfo
130 DOCOBJECT
= doc
/readline.
dvi
131 DOCSUPPORT
= doc
/Makefile
132 DOCUMENTATION
= $(DOCSOURCE
) $(DOCOBJECT
) $(DOCSUPPORT
)
134 CREATED_MAKEFILES
= Makefile doc
/Makefile examples
/Makefile
135 CREATED_CONFIGURE
= config.status config.h config.cache config.log \
137 CREATED_TAGS
= TAGS
tags
139 INSTALLED_HEADERS
= readline.h chardefs.h keymaps.h history.h tilde.h
141 ##########################################################################
145 static
: $(STATIC_LIBS
)
146 shared
: $(SHARED_LIBS
)
148 libreadline.a
: $(OBJECTS
)
150 $(AR
) cr
$@
$(OBJECTS
)
151 -test -n
"$(RANLIB)" && $(RANLIB
) $@
153 libhistory.a
: $(HISTOBJ
) xmalloc.o
155 $(AR
) cr
$@
$(HISTOBJ
) xmalloc.o
156 -test -n
"$(RANLIB)" && $(RANLIB
) $@
158 $(SHARED_READLINE
): $(SHARED_OBJ
)
160 $(LD
) ${SHLIB_OPTS} -o
$@
$(SHARED_OBJ
)
162 $(SHARED_HISTORY
): $(SHARED_HISTOBJ
) xmalloc.so
164 $(LD
) ${SHLIB_OPTS} -o
$@
$(SHARED_HISTOBJ
) xmalloc.so
166 readline
: $(OBJECTS
) readline.h rldefs.h chardefs.h
167 $(CC
) $(CCFLAGS
) -o
$@ .
/examples
/rl.c .
/libreadline.a
-ltermcap
169 Makefile makefile
: config.status
$(srcdir)/Makefile.in
170 CONFIG_FILES
=Makefile CONFIG_HEADERS
= $(SHELL
) .
/config.status
172 Makefiles makefiles
: config.status
$(srcdir)/Makefile.in
173 @for mf in
$(CREATED_MAKEFILES
); do \
174 CONFIG_FILES
=$$mf CONFIG_HEADERS
= $(SHELL
) .
/config.status
; \
177 config.status
: configure
178 $(SHELL
) .
/config.status
--recheck
182 stamp-h
: config.status
$(srcdir)/config.h.in
183 CONFIG_FILES
= CONFIG_HEADERS
=config.h .
/config.status
186 # CYGNUS LOCAL: Never run autoconf.
187 #$(srcdir)/configure: $(srcdir)/configure.in Comment-me-out in distribution
188 # cd $(srcdir) && autoconf Comment-me-out in distribution
191 -test -d doc || mkdir doc
192 -( cd doc
&& $(MAKE
) $(MFLAGS
) )
195 -test -d examples || mkdir examples
196 -(cd examples
&& ${MAKE} ${MFLAGS} all )
201 ## Don't mess with people's installed readline's.
202 ## This tries to install this version of readline over whatever
203 ## version is already installed on the system (which could be a
204 ## newer version). There is no real reason for us to install
205 ## readline along with GDB. GDB links statically against readline,
206 ## so it doesn't depend on us installing it on the system.
210 #install: installdirs $(STATIC_LIBS)
211 # for f in ${INSTALLED_HEADERS}; do \
212 # $(INSTALL_DATA) $(srcdir)/$$f $(includedir)/readline ; \
214 # -( if test -f $(libdir)/libreadline.a ; then $(MV) $(libdir)/libreadline.a $(libdir)/libreadline.old; fi )
215 # $(INSTALL_DATA) libreadline.a $(libdir)/libreadline.a
216 # -test -n "$(RANLIB)" && $(RANLIB) -t $(libdir)/libreadline.a
217 # -( if test -f $(libdir)/libhistory.a; then $(MV) $(libdir)/libhistory.a $(libdir)/libhistory.old; fi )
218 # $(INSTALL_DATA) libhistory.a $(libdir)/libhistory.a
219 # -test -n "$(RANLIB)" && $(RANLIB) -t $(libdir)/libhistory.a
220 # -( if test -d doc ; then \
222 # ${MAKE} ${MFLAGS} infodir=$(infodir) $@; \
225 installdirs: $(srcdir)/support
/mkdirs
226 -$(SHELL
) $(srcdir)/support
/mkdirs
$(includedir) \
227 $(includedir)/readline
$(libdir) $(infodir) $(man3dir)
230 -test -n
"$(includedir)" && cd
$(includedir)/readline
&& \
231 ${RM} ${INSTALLED_HEADERS}
232 -test -n
"$(libdir)" && cd
$(libdir) && \
233 ${RM} libreadline.a libreadline.old libhistory.a libhistory.old
$(SHARED_LIBS
)
235 install-shared
: installdirs shared
236 -$(MV
) $(libdir)/$(SHARED_HISTORY
) $(libdir)/$(SHARED_HISTORY
).old
237 $(INSTALL_DATA
) $(SHARED_HISTORY
) $(libdir)/$(SHARED_HISTORY
)
238 -$(MV
) $(libdir)/$(SHARED_READLINE
) $(libdir)/$(SHARED_READLINE
).old
239 $(INSTALL_DATA
) $(SHARED_READLINE
) $(libdir)/$(SHARED_READLINE
)
242 -test -n
"$(libdir)" && cd
$(libdir) && ${RM} ${SHARED_LIBS}
245 $(ETAGS
) $(CSOURCES
) $(HSOURCES
)
248 $(CTAGS
) $(CSOURCES
) $(HSOURCES
)
251 $(RM
) $(OBJECTS
) $(STATIC_LIBS
)
252 $(RM
) $(SHARED_OBJ
) $(SHARED_LIBS
)
253 -( cd doc
&& $(MAKE
) $(MFLAGS
) $@
)
254 -( cd examples
&& $(MAKE
) $(MFLAGS
) $@
)
257 -( cd doc
&& $(MAKE
) $(MFLAGS
) $@
)
258 -( cd examples
&& $(MAKE
) $(MFLAGS
) $@
)
260 distclean maintainer-clean
: clean
261 -( cd doc
&& $(MAKE
) $(MFLAGS
) $@
)
262 -( cd examples
&& $(MAKE
) $(MFLAGS
) $@
)
264 $(RM
) $(CREATED_CONFIGURE
)
265 $(RM
) $(CREATED_TAGS
)
268 -( cd doc
&& $(MAKE
) $(MFLAGS
) $@
)
275 @echo Readline distributions are created using
$(srcdir)/support
/mkdist.
276 @echo Here is a sample of the necessary commands
:
277 @echo bash
$(srcdir)/support
/mkdist
-m
$(srcdir)/MANIFEST
-s
$(srcdir) -r
$(RL_LIBRARY_NAME
)-$(RL_LIBRARY_VERSION
)
278 @echo
tar cf
$(RL_LIBRARY_NAME
)-${RL_LIBRARY_VERSION}.
tar ${RL_LIBRARY_NAME}-$(RL_LIBRARY_VERSION
)
279 @echo gzip
$(RL_LIBRARY_NAME
)-$(RL_LIBRARY_VERSION
).
tar
281 # Tell versions [3.59,3.63) of GNU make not to export all variables.
282 # Otherwise a system limit (for SysV at least) may be exceeded.
286 bind.o
: ansi_stdlib.h posixstat.h
287 bind.o
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
288 bind.o
: readline.h keymaps.h chardefs.h tilde.h
291 callback.o
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
292 callback.o
: readline.h keymaps.h chardefs.h tilde.h
293 complete.o
: ansi_stdlib.h posixdir.h posixstat.h
294 complete.o
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
295 complete.o
: readline.h keymaps.h chardefs.h tilde.h
296 display.o
: ansi_stdlib.h posixstat.h
297 display.o
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
299 display.o
: readline.h keymaps.h chardefs.h tilde.h
301 funmap.o
: readline.h keymaps.h chardefs.h tilde.h
302 funmap.o
: rlconf.h ansi_stdlib.h
303 funmap.o
: ${BUILD_DIR}/config.h
304 histexpand.o
: ansi_stdlib.h
305 histexpand.o
: history.h histlib.h
306 histexpand.o
: ${BUILD_DIR}/config.h
307 histfile.o
: ansi_stdlib.h
308 histfile.o
: history.h histlib.h
309 histfile.o
: ${BUILD_DIR}/config.h
310 history.o
: ansi_stdlib.h
311 history.o
: history.h histlib.h
312 history.o
: ${BUILD_DIR}/config.h
313 histsearch.o
: ansi_stdlib.h
314 histsearch.o
: history.h histlib.h
315 histsearch.o
: ${BUILD_DIR}/config.h
316 input.o
: ansi_stdlib.h
317 input.o
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
318 input.o
: readline.h keymaps.h chardefs.h tilde.h
319 isearch.o
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
320 isearch.o
: readline.h keymaps.h chardefs.h tilde.h
321 isearch.o
: ansi_stdlib.h history.h
322 keymaps.o
: emacs_keymap.c vi_keymap.c
323 keymaps.o
: keymaps.h chardefs.h rlconf.h ansi_stdlib.h
324 keymaps.o
: readline.h keymaps.h chardefs.h tilde.h
325 keymaps.o
: ${BUILD_DIR}/config.h
326 kill.o
: ansi_stdlib.h
327 kill.o
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
328 kill.o
: readline.h keymaps.h chardefs.h tilde.h
330 macro.o
: ansi_stdlib.h
331 macro.o
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
332 macro.o
: readline.h keymaps.h chardefs.h tilde.h
335 nls.o
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
337 parens.o
: ${BUILD_DIR}/config.h
338 parens.o
: readline.h keymaps.h chardefs.h tilde.h
339 readline.o
: readline.h keymaps.h chardefs.h tilde.h
340 readline.o
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
341 readline.o
: history.h
342 readline.o
: posixstat.h ansi_stdlib.h posixjmp.h
343 rltty.o
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
345 rltty.o
: readline.h keymaps.h chardefs.h tilde.h
346 search.o
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
347 search.o
: readline.h keymaps.h chardefs.h tilde.h
348 search.o
: ansi_stdlib.h history.h
349 shell.o
: ${BUILD_DIR}/config.h
350 shell.o
: ansi_stdlib.h
351 signals.o
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
352 signals.o
: readline.h keymaps.h chardefs.h tilde.h
354 terminal.o
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
356 terminal.o
: readline.h keymaps.h chardefs.h tilde.h
357 terminal.o
: history.h
358 tilde.o
: ansi_stdlib.h
359 tilde.o
: ${BUILD_DIR}/config.h
361 undo.o
: ansi_stdlib.h
362 undo.o
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
363 undo.o
: readline.h keymaps.h chardefs.h tilde.h
365 util.o
: posixjmp.h ansi_stdlib.h
366 util.o
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
367 util.o
: readline.h keymaps.h chardefs.h tilde.h
368 vi_mode.o
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
369 vi_mode.o
: readline.h keymaps.h chardefs.h tilde.h
370 vi_mode.o
: history.h ansi_stdlib.h
371 xmalloc.o
: ${BUILD_DIR}/config.h
372 xmalloc.o
: ansi_stdlib.h
374 readline.o
: $(srcdir)/readline.c
375 vi_mode.o
: $(srcdir)/vi_mode.c
376 funmap.o
: $(srcdir)/funmap.c
377 keymaps.o
: $(srcdir)/keymaps.c
378 parens.o
: $(srcdir)/parens.c
379 search.o
: $(srcdir)/search.c
380 rltty.o
: $(srcdir)/rltty.c
381 complete.o
: $(srcdir)/complete.c
382 bind.o
: $(srcdir)/bind.c
383 isearch.o
: $(srcdir)/isearch.c
384 display.o
: $(srcdir)/display.c
385 signals.o
: $(srcdir)/signals.c
386 util.o
: $(srcdir)/util.c
387 kill.o
: $(srcdir)/kill.c
388 undo.o
: $(srcdir)/undo.c
389 macro.o
: $(srcdir)/macro.c
390 input.o
: $(srcdir)/input.c
391 callback.o
: $(srcdir)/callback.c
392 terminal.o
: $(srcdir)/terminal.c
393 nls.o
: $(srcdir)/nls.c
394 xmalloc.o
: $(srcdir)/xmalloc.c
395 history.o
: $(srcdir)/history.c
396 histexpand.o
: $(srcdir)/histexpand.c
397 histfile.o
: $(srcdir)/histfile.c
398 histsearch.o
: $(srcdir)/histsearch.c
399 shell.o
: $(srcdir)/shell.c
400 tilde.o
: $(srcdir)/tilde.c
402 bind.so
: ansi_stdlib.h posixstat.h
403 bind.so
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
404 bind.so
: readline.h keymaps.h chardefs.h tilde.h
406 callback.so
: rlconf.h
407 callback.so
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
408 callback.so
: readline.h keymaps.h chardefs.h tilde.h
409 complete.so
: ansi_stdlib.h posixdir.h posixstat.h
410 complete.so
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
411 complete.so
: readline.h keymaps.h chardefs.h tilde.h
412 display.so
: ansi_stdlib.h posixstat.h
413 display.so
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
415 display.so
: readline.h keymaps.h chardefs.h tilde.h
416 display.so
: history.h
417 funmap.so
: readline.h keymaps.h chardefs.h tilde.h
418 funmap.so
: rlconf.h ansi_stdlib.h
419 funmap.so
: ${BUILD_DIR}/config.h
420 histexpand.so
: ansi_stdlib.h
421 histexpand.so
: history.h histlib.h
422 histexpand.so
: ${BUILD_DIR}/config.h
423 histfile.so
: ansi_stdlib.h
424 histfile.so
: history.h histlib.h
425 histfile.so
: ${BUILD_DIR}/config.h
426 history.so
: ansi_stdlib.h
427 history.so
: history.h histlib.h
428 history.so
: ${BUILD_DIR}/config.h
429 histsearch.so
: ansi_stdlib.h
430 histsearch.so
: history.h histlib.h
431 histsearch.so
: ${BUILD_DIR}/config.h
432 input.so
: ansi_stdlib.h
433 input.so
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
434 input.so
: readline.h keymaps.h chardefs.h tilde.h
435 isearch.so
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
436 isearch.so
: readline.h keymaps.h chardefs.h tilde.h
437 isearch.so
: ansi_stdlib.h history.h
438 keymaps.so
: emacs_keymap.c vi_keymap.c
439 keymaps.so
: keymaps.h chardefs.h rlconf.h ansi_stdlib.h
440 keymaps.so
: readline.h keymaps.h chardefs.h tilde.h
441 keymaps.so
: ${BUILD_DIR}/config.h
442 kill.so
: ansi_stdlib.h
443 kill.so
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
444 kill.so
: readline.h keymaps.h chardefs.h tilde.h
446 macro.so
: ansi_stdlib.h
447 macro.so
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
448 macro.so
: readline.h keymaps.h chardefs.h tilde.h
450 nls.so
: ansi_stdlib.h
451 nls.so
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
453 parens.so
: ${BUILD_DIR}/config.h
454 parens.so
: readline.h keymaps.h chardefs.h tilde.h
455 readline.so
: readline.h keymaps.h chardefs.h tilde.h
456 readline.so
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
457 readline.so
: history.h
458 readline.so
: posixstat.h ansi_stdlib.h posixjmp.h
459 rltty.so
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
461 rltty.so
: readline.h keymaps.h chardefs.h tilde.h
462 search.so
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
463 search.so
: readline.h keymaps.h chardefs.h tilde.h
464 search.so
: ansi_stdlib.h history.h
465 signals.so
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
466 signals.so
: readline.h keymaps.h chardefs.h tilde.h
467 signals.so
: history.h
468 terminal.so
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
470 terminal.so
: readline.h keymaps.h chardefs.h tilde.h
471 terminal.so
: history.h
472 tilde.so
: ansi_stdlib.h
473 tilde.so
: ${BUILD_DIR}/config.h
475 undo.so
: ansi_stdlib.h
476 undo.so
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
477 undo.so
: readline.h keymaps.h chardefs.h tilde.h
479 util.so
: posixjmp.h ansi_stdlib.h
480 util.so
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
481 util.so
: readline.h keymaps.h chardefs.h tilde.h
482 vi_mode.so
: rldefs.h
${BUILD_DIR}/config.h rlconf.h
483 vi_mode.so
: readline.h keymaps.h chardefs.h tilde.h
484 vi_mode.so
: history.h ansi_stdlib.h
485 xmalloc.so
: ${BUILD_DIR}/config.h
486 xmalloc.so
: ansi_stdlib.h
488 readline.o
: readline.c
495 complete.o
: complete.c
505 callback.o
: callback.c
506 terminal.o
: terminal.c
510 histexpand.o
: histexpand.c
511 histfile.o
: histfile.c
512 histsearch.o
: histsearch.c
516 readline.so
: $(srcdir)/readline.c
517 vi_mode.so
: $(srcdir)/vi_mode.c
518 funmap.so
: $(srcdir)/funmap.c
519 keymaps.so
: $(srcdir)/keymaps.c
520 parens.so
: $(srcdir)/parens.c
521 search.so
: $(srcdir)/search.c
522 rltty.so
: $(srcdir)/rltty.c
523 complete.so
: $(srcdir)/complete.c
524 bind.so
: $(srcdir)/bind.c
525 isearch.so
: $(srcdir)/isearch.c
526 display.so
: $(srcdir)/display.c
527 signals.so
: $(srcdir)/signals.c
528 util.so
: $(srcdir)/util.c
529 kill.so
: $(srcdir)/kill.c
530 undo.so
: $(srcdir)/undo.c
531 macro.so
: $(srcdir)/macro.c
532 input.so
: $(srcdir)/input.c
533 callback.so
: $(srcdir)/callback.c
534 terminal.so
: $(srcdir)/terminal.c
535 nls.so
: $(srcdir)/nls.c
536 xmalloc.so
: $(srcdir)/xmalloc.c
537 history.so
: $(srcdir)/history.c
538 histexpand.so
: $(srcdir)/histexpand.c
539 histfile.so
: $(srcdir)/histfile.c
540 histsearch.so
: $(srcdir)/histsearch.c
541 shell.so
: $(srcdir)/shell.c
542 tilde.so
: $(srcdir)/tilde.c
544 readline.so
: readline.c
545 vi_mode.so
: vi_mode.c
547 keymaps.so
: keymaps.c
551 complete.so
: complete.c
553 isearch.so
: isearch.c
554 display.so
: display.c
555 signals.so
: signals.c
561 callback.so
: callback.c
562 terminal.so
: terminal.c
564 xmalloc.so
: xmalloc.c
565 history.so
: history.c
566 histexpand.so
: histexpand.c
567 histfile.so
: histfile.c
568 histsearch.so
: histsearch.c