Makefile.in 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568
  1. ## -*- text -*- ##
  2. # Master Makefile for the GNU readline library.
  3. # Copyright (C) 1994-2009 Free Software Foundation, Inc.
  4. # This program is free software: you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation, either version 3 of the License, or
  7. # (at your option) any later version.
  8. # This program is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. # GNU General Public License for more details.
  12. # You should have received a copy of the GNU General Public License
  13. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. RL_LIBRARY_VERSION = @LIBVERSION@
  15. RL_LIBRARY_NAME = readline
  16. PACKAGE = @PACKAGE_NAME@
  17. VERSION = @PACKAGE_VERSION@
  18. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  19. PACKAGE_NAME = @PACKAGE_NAME@
  20. PACKAGE_STRING = @PACKAGE_STRING@
  21. PACKAGE_VERSION = @PACKAGE_VERSION@
  22. srcdir = @srcdir@
  23. VPATH = @srcdir@
  24. top_srcdir = @top_srcdir@
  25. BUILD_DIR = @BUILD_DIR@
  26. INSTALL = @INSTALL@
  27. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  28. INSTALL_DATA = @INSTALL_DATA@
  29. CC = @CC@
  30. RANLIB = @RANLIB@
  31. AR = @AR@
  32. ARFLAGS = @ARFLAGS@
  33. RM = rm -f
  34. CP = cp
  35. MV = mv
  36. PURIFY = @PURIFY@
  37. @SET_MAKE@
  38. SHELL = @MAKE_SHELL@
  39. prefix = @prefix@
  40. exec_prefix = @exec_prefix@
  41. datarootdir = @datarootdir@
  42. bindir = @bindir@
  43. libdir = @libdir@
  44. mandir = @mandir@
  45. includedir = @includedir@
  46. datadir = @datadir@
  47. localedir = @localedir@
  48. infodir = @infodir@
  49. man3dir = $(mandir)/man3
  50. # Support an alternate destination root directory for package building
  51. DESTDIR =
  52. # Programs to make tags files.
  53. ETAGS = etags
  54. CTAGS = ctags -tw
  55. CFLAGS = @CFLAGS@
  56. LOCAL_CFLAGS = @LOCAL_CFLAGS@ -DRL_LIBRARY_VERSION='"$(RL_LIBRARY_VERSION)"'
  57. CPPFLAGS = @CPPFLAGS@
  58. DEFS = @DEFS@ @CROSS_COMPILE@
  59. LOCAL_DEFS = @LOCAL_DEFS@
  60. TERMCAP_LIB = @TERMCAP_LIB@
  61. # For libraries which include headers from other libraries.
  62. INCLUDES = -I. -I$(srcdir)
  63. XCCFLAGS = $(DEFS) $(LOCAL_DEFS) $(CPPFLAGS) $(INCLUDES)
  64. CCFLAGS = $(XCCFLAGS) $(LOCAL_CFLAGS) $(CFLAGS)
  65. # could add -Werror here
  66. GCC_LINT_FLAGS = -ansi -Wall -Wshadow -Wpointer-arith -Wcast-qual \
  67. -Wwrite-strings -Wstrict-prototypes \
  68. -Wmissing-prototypes -Wno-implicit -pedantic
  69. GCC_LINT_CFLAGS = $(XCCFLAGS) $(GCC_LINT_FLAGS) @CFLAGS@ @LOCAL_CFLAGS@
  70. .c.o:
  71. ${RM} $@
  72. $(CC) -c $(CCFLAGS) $<
  73. # The name of the main library target.
  74. LIBRARY_NAME = libreadline.a
  75. STATIC_LIBS = libreadline.a libhistory.a
  76. # The C code source files for this library.
  77. CSOURCES = $(srcdir)/readline.c $(srcdir)/funmap.c $(srcdir)/keymaps.c \
  78. $(srcdir)/vi_mode.c $(srcdir)/parens.c $(srcdir)/rltty.c \
  79. $(srcdir)/complete.c $(srcdir)/bind.c $(srcdir)/isearch.c \
  80. $(srcdir)/display.c $(srcdir)/signals.c $(srcdir)/emacs_keymap.c \
  81. $(srcdir)/vi_keymap.c $(srcdir)/util.c $(srcdir)/kill.c \
  82. $(srcdir)/undo.c $(srcdir)/macro.c $(srcdir)/input.c \
  83. $(srcdir)/callback.c $(srcdir)/terminal.c $(srcdir)/xmalloc.c $(srcdir)/xfree.c \
  84. $(srcdir)/history.c $(srcdir)/histsearch.c $(srcdir)/histexpand.c \
  85. $(srcdir)/histfile.c $(srcdir)/nls.c $(srcdir)/search.c \
  86. $(srcdir)/shell.c $(srcdir)/savestring.c $(srcdir)/tilde.c \
  87. $(srcdir)/text.c $(srcdir)/misc.c $(srcdir)/compat.c \
  88. $(srcdir)/mbutil.c
  89. # The header files for this library.
  90. HSOURCES = $(srcdir)/readline.h $(srcdir)/rldefs.h $(srcdir)/chardefs.h \
  91. $(srcdir)/keymaps.h $(srcdir)/history.h $(srcdir)/histlib.h \
  92. $(srcdir)/posixstat.h $(srcdir)/posixdir.h $(srcdir)/posixjmp.h \
  93. $(srcdir)/tilde.h $(srcdir)/rlconf.h $(srcdir)/rltty.h \
  94. $(srcdir)/ansi_stdlib.h $(srcdir)/tcap.h $(srcdir)/rlstdc.h \
  95. $(srcdir)/xmalloc.h $(srcdir)/rlprivate.h $(srcdir)/rlshell.h \
  96. $(srcdir)/rltypedefs.h $(srcdir)/rlmbutil.h
  97. HISTOBJ = history.o histexpand.o histfile.o histsearch.o shell.o mbutil.o
  98. TILDEOBJ = tilde.o
  99. OBJECTS = readline.o vi_mode.o funmap.o keymaps.o parens.o search.o \
  100. rltty.o complete.o bind.o isearch.o display.o signals.o \
  101. util.o kill.o undo.o macro.o input.o callback.o terminal.o \
  102. text.o nls.o misc.o compat.o xfree.o xmalloc.o $(HISTOBJ) $(TILDEOBJ)
  103. # The texinfo files which document this library.
  104. DOCSOURCE = doc/rlman.texinfo doc/rltech.texinfo doc/rluser.texinfo
  105. DOCOBJECT = doc/readline.dvi
  106. DOCSUPPORT = doc/Makefile
  107. DOCUMENTATION = $(DOCSOURCE) $(DOCOBJECT) $(DOCSUPPORT)
  108. CREATED_MAKEFILES = Makefile doc/Makefile examples/Makefile shlib/Makefile
  109. CREATED_CONFIGURE = config.status config.h config.cache config.log \
  110. stamp-config stamp-h
  111. CREATED_TAGS = TAGS tags
  112. INSTALLED_HEADERS = readline.h chardefs.h keymaps.h history.h tilde.h \
  113. rlstdc.h rlconf.h rltypedefs.h
  114. ##########################################################################
  115. TARGETS = @STATIC_TARGET@ @SHARED_TARGET@
  116. INSTALL_TARGETS = @STATIC_INSTALL_TARGET@ @SHARED_INSTALL_TARGET@
  117. all: $(TARGETS)
  118. everything: all examples
  119. static: $(STATIC_LIBS)
  120. libreadline.a: $(OBJECTS)
  121. $(RM) $@
  122. $(AR) $(ARFLAGS) $@ $(OBJECTS)
  123. -test -n "$(RANLIB)" && $(RANLIB) $@
  124. libhistory.a: $(HISTOBJ) xmalloc.o xfree.o
  125. $(RM) $@
  126. $(AR) $(ARFLAGS) $@ $(HISTOBJ) xmalloc.o xfree.o
  127. -test -n "$(RANLIB)" && $(RANLIB) $@
  128. # Since tilde.c is shared between readline and bash, make sure we compile
  129. # it with the right flags when it's built as part of readline
  130. tilde.o: tilde.c
  131. rm -f $@
  132. $(CC) $(CCFLAGS) -DREADLINE_LIBRARY -c $(srcdir)/tilde.c
  133. readline: $(OBJECTS) readline.h rldefs.h chardefs.h ./libreadline.a
  134. $(CC) $(CCFLAGS) -DREADLINE_LIBRARY -o $@ $(top_srcdir)/examples/rl.c ./libreadline.a ${TERMCAP_LIB}
  135. lint: force
  136. $(MAKE) $(MFLAGS) CCFLAGS='$(GCC_LINT_CFLAGS)' static
  137. Makefile makefile: config.status $(srcdir)/Makefile.in
  138. CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
  139. Makefiles makefiles: config.status $(srcdir)/Makefile.in
  140. @for mf in $(CREATED_MAKEFILES); do \
  141. CONFIG_FILES=$$mf CONFIG_HEADERS= $(SHELL) ./config.status ; \
  142. done
  143. config.status: configure
  144. $(SHELL) ./config.status --recheck
  145. config.h: stamp-h
  146. stamp-h: config.status $(srcdir)/config.h.in
  147. CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status
  148. echo > $@
  149. #$(srcdir)/configure: $(srcdir)/configure.in ## Comment-me-out in distribution
  150. # cd $(srcdir) && autoconf ## Comment-me-out in distribution
  151. shared: force
  152. -test -d shlib || mkdir shlib
  153. -( cd shlib ; ${MAKE} ${MFLAGS} all )
  154. documentation: force
  155. -test -d doc || mkdir doc
  156. -( cd doc && $(MAKE) $(MFLAGS) )
  157. examples: force
  158. -test -d examples || mkdir examples
  159. -(cd examples && ${MAKE} ${MFLAGS} all )
  160. force:
  161. ## GDB LOCAL
  162. ## Don't mess with people's installed readline's.
  163. ## This tries to install this version of readline over whatever
  164. ## version is already installed on the system (which could be a
  165. ## newer version). There is no real reason for us to install
  166. ## readline along with GDB. GDB links statically against readline,
  167. ## so it doesn't depend on us installing it on the system.
  168. install:
  169. #install: $(INSTALL_TARGETS)
  170. install-headers: installdirs ${INSTALLED_HEADERS}
  171. for f in ${INSTALLED_HEADERS}; do \
  172. $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(includedir)/readline ; \
  173. done
  174. uninstall-headers:
  175. -test -n "$(includedir)" && cd $(DESTDIR)$(includedir)/readline && \
  176. ${RM} ${INSTALLED_HEADERS}
  177. maybe-uninstall-headers: uninstall-headers
  178. install-static: installdirs $(STATIC_LIBS) install-headers install-doc install-examples
  179. -$(MV) $(DESTDIR)$(libdir)/libreadline.a $(DESTDIR)$(libdir)/libreadline.old
  180. $(INSTALL_DATA) libreadline.a $(DESTDIR)$(libdir)/libreadline.a
  181. -test -n "$(RANLIB)" && $(RANLIB) $(DESTDIR)$(libdir)/libreadline.a
  182. -$(MV) $(DESTDIR)$(libdir)/libhistory.a $(DESTDIR)$(libdir)/libhistory.old
  183. $(INSTALL_DATA) libhistory.a $(DESTDIR)$(libdir)/libhistory.a
  184. -test -n "$(RANLIB)" && $(RANLIB) $(DESTDIR)$(libdir)/libhistory.a
  185. installdirs: $(srcdir)/support/mkinstalldirs
  186. -$(SHELL) $(srcdir)/support/mkinstalldirs $(DESTDIR)$(includedir) \
  187. $(DESTDIR)$(includedir)/readline $(DESTDIR)$(libdir) \
  188. $(DESTDIR)$(infodir) $(DESTDIR)$(man3dir)
  189. uninstall: uninstall-headers uninstall-doc uninstall-examples
  190. -test -n "$(DESTDIR)$(libdir)" && cd $(DESTDIR)$(libdir) && \
  191. ${RM} libreadline.a libreadline.old libhistory.a libhistory.old $(SHARED_LIBS)
  192. -( cd shlib; ${MAKE} ${MFLAGS} DESTDIR=${DESTDIR} uninstall )
  193. install-shared: installdirs install-headers shared install-doc
  194. -( cd shlib ; ${MAKE} ${MFLAGS} DESTDIR=${DESTDIR} install )
  195. uninstall-shared: maybe-uninstall-headers
  196. -( cd shlib; ${MAKE} ${MFLAGS} DESTDIR=${DESTDIR} uninstall )
  197. install-examples: installdirs install-headers shared
  198. -( cd examples ; ${MAKE} ${MFLAGS} DESTDIR=${DESTDIR} install )
  199. uninstall-examples: maybe-uninstall-headers
  200. -( cd examples; ${MAKE} ${MFLAGS} DESTDIR=${DESTDIR} uninstall )
  201. install-doc: installdirs
  202. -( if test -d doc ; then \
  203. cd doc && \
  204. ${MAKE} ${MFLAGS} infodir=$(infodir) DESTDIR=${DESTDIR} install; \
  205. fi )
  206. uninstall-doc:
  207. -( if test -d doc ; then \
  208. cd doc && \
  209. ${MAKE} ${MFLAGS} infodir=$(infodir) DESTDIR=${DESTDIR} uninstall; \
  210. fi )
  211. TAGS: force
  212. -( cd $(srcdir) && $(ETAGS) $(CSOURCES) $(HSOURCES) )
  213. tags: force
  214. -( cd $(srcdir) && $(CTAGS) $(CSOURCES) $(HSOURCES) )
  215. clean: force
  216. $(RM) $(OBJECTS) $(STATIC_LIBS)
  217. $(RM) readline readline.exe
  218. -( cd shlib && $(MAKE) $(MFLAGS) $@ )
  219. -( cd doc && $(MAKE) $(MFLAGS) $@ )
  220. -( cd examples && $(MAKE) $(MFLAGS) $@ )
  221. mostlyclean: clean
  222. -( cd shlib && $(MAKE) $(MFLAGS) $@ )
  223. -( cd doc && $(MAKE) $(MFLAGS) $@ )
  224. -( cd examples && $(MAKE) $(MFLAGS) $@ )
  225. distclean maintainer-clean: clean
  226. -( cd shlib && $(MAKE) $(MFLAGS) $@ )
  227. -( cd doc && $(MAKE) $(MFLAGS) $@ )
  228. -( cd examples && $(MAKE) $(MFLAGS) $@ )
  229. $(RM) Makefile
  230. $(RM) $(CREATED_CONFIGURE)
  231. $(RM) $(CREATED_TAGS)
  232. info dvi html pdf ps:
  233. -( cd doc && $(MAKE) $(MFLAGS) $@ )
  234. install-info:
  235. install-dvi:
  236. install-html:
  237. install-pdf:
  238. install-ps:
  239. check:
  240. installcheck:
  241. dist: force
  242. @echo Readline distributions are created using $(srcdir)/support/mkdist.
  243. @echo Here is a sample of the necessary commands:
  244. @echo bash $(srcdir)/support/mkdist -m $(srcdir)/MANIFEST -s $(srcdir) -r $(RL_LIBRARY_NAME) $(RL_LIBRARY_VERSION)
  245. @echo tar cf $(RL_LIBRARY_NAME)-${RL_LIBRARY_VERSION}.tar ${RL_LIBRARY_NAME}-$(RL_LIBRARY_VERSION)
  246. @echo gzip $(RL_LIBRARY_NAME)-$(RL_LIBRARY_VERSION).tar
  247. # Tell versions [3.59,3.63) of GNU make not to export all variables.
  248. # Otherwise a system limit (for SysV at least) may be exceeded.
  249. .NOEXPORT:
  250. # Dependencies
  251. bind.o: ansi_stdlib.h posixstat.h
  252. bind.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
  253. bind.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
  254. bind.o: history.h
  255. callback.o: rlconf.h
  256. callback.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
  257. callback.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
  258. compat.o: rlstdc.h
  259. complete.o: ansi_stdlib.h posixdir.h posixstat.h
  260. complete.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
  261. complete.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
  262. display.o: ansi_stdlib.h posixstat.h
  263. display.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
  264. display.o: tcap.h
  265. display.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
  266. display.o: history.h rlstdc.h
  267. funmap.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
  268. funmap.o: rlconf.h ansi_stdlib.h rlstdc.h
  269. funmap.o: ${BUILD_DIR}/config.h
  270. histexpand.o: ansi_stdlib.h
  271. histexpand.o: history.h histlib.h rlstdc.h rltypedefs.h
  272. histexpand.o: ${BUILD_DIR}/config.h
  273. histfile.o: ansi_stdlib.h
  274. histfile.o: history.h histlib.h rlstdc.h rltypedefs.h
  275. histfile.o: ${BUILD_DIR}/config.h
  276. history.o: ansi_stdlib.h
  277. history.o: history.h histlib.h rlstdc.h rltypedefs.h
  278. history.o: ${BUILD_DIR}/config.h
  279. histsearch.o: ansi_stdlib.h
  280. histsearch.o: history.h histlib.h rlstdc.h rltypedefs.h
  281. histsearch.o: ${BUILD_DIR}/config.h
  282. input.o: ansi_stdlib.h
  283. input.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
  284. input.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
  285. isearch.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
  286. isearch.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
  287. isearch.o: ansi_stdlib.h history.h rlstdc.h
  288. keymaps.o: emacs_keymap.c vi_keymap.c
  289. keymaps.o: keymaps.h rltypedefs.h chardefs.h rlconf.h ansi_stdlib.h
  290. keymaps.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
  291. keymaps.o: ${BUILD_DIR}/config.h rlstdc.h
  292. kill.o: ansi_stdlib.h
  293. kill.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
  294. kill.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
  295. kill.o: history.h rlstdc.h
  296. macro.o: ansi_stdlib.h
  297. macro.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
  298. macro.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
  299. macro.o: history.h rlstdc.h
  300. mbutil.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
  301. mbutil.o: readline.h keymaps.h rltypedefs.h chardefs.h rlstdc.h
  302. misc.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
  303. misc.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
  304. misc.o: history.h rlstdc.h ansi_stdlib.h
  305. nls.o: ansi_stdlib.h
  306. nls.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
  307. nls.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
  308. nls.o: history.h rlstdc.h
  309. parens.o: rlconf.h
  310. parens.o: ${BUILD_DIR}/config.h
  311. parens.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
  312. readline.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
  313. readline.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
  314. readline.o: history.h rlstdc.h
  315. readline.o: posixstat.h ansi_stdlib.h posixjmp.h
  316. rltty.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
  317. rltty.o: rltty.h
  318. rltty.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
  319. search.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
  320. search.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
  321. search.o: ansi_stdlib.h history.h rlstdc.h
  322. shell.o: ${BUILD_DIR}/config.h
  323. shell.o: ansi_stdlib.h
  324. signals.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
  325. signals.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
  326. signals.o: history.h rlstdc.h
  327. terminal.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
  328. terminal.o: tcap.h
  329. terminal.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
  330. terminal.o: history.h rlstdc.h
  331. text.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
  332. text.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
  333. text.o: history.h rlstdc.h ansi_stdlib.h
  334. tilde.o: ansi_stdlib.h
  335. tilde.o: ${BUILD_DIR}/config.h
  336. tilde.o: tilde.h
  337. undo.o: ansi_stdlib.h
  338. undo.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
  339. undo.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
  340. undo.o: history.h rlstdc.h
  341. util.o: posixjmp.h ansi_stdlib.h
  342. util.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
  343. util.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
  344. vi_mode.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
  345. vi_mode.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
  346. vi_mode.o: history.h ansi_stdlib.h rlstdc.h
  347. xfree.o: ${BUILD_DIR}/config.h
  348. xfree.o: ansi_stdlib.h readline.h
  349. xmalloc.o: ${BUILD_DIR}/config.h
  350. xmalloc.o: ansi_stdlib.h
  351. bind.o: rlshell.h
  352. histfile.o: rlshell.h
  353. nls.o: rlshell.h
  354. readline.o: rlshell.h
  355. shell.o: rlshell.h
  356. terminal.o: rlshell.h
  357. histexpand.o: rlshell.h
  358. bind.o: rlprivate.h
  359. callback.o: rlprivate.h
  360. complete.o: rlprivate.h
  361. display.o: rlprivate.h
  362. input.o: rlprivate.h
  363. isearch.o: rlprivate.h
  364. kill.o: rlprivate.h
  365. macro.o: rlprivate.h
  366. mbutil.o: rlprivate.h
  367. misc.o: rlprivate.h
  368. nls.o: rlprivate.h
  369. parens.o: rlprivate.h
  370. readline.o: rlprivate.h
  371. rltty.o: rlprivate.h
  372. search.o: rlprivate.h
  373. signals.o: rlprivate.h
  374. terminal.o: rlprivate.h
  375. text.o: rlprivate.h
  376. undo.o: rlprivate.h
  377. util.o: rlprivate.h
  378. vi_mode.o: rlprivate.h
  379. bind.o: xmalloc.h
  380. callback.o: xmalloc.h
  381. complete.o: xmalloc.h
  382. display.o: xmalloc.h
  383. funmap.o: xmalloc.h
  384. histexpand.o: xmalloc.h
  385. histfile.o: xmalloc.h
  386. history.o: xmalloc.h
  387. input.o: xmalloc.h
  388. isearch.o: xmalloc.h
  389. keymaps.o: xmalloc.h
  390. kill.o: xmalloc.h
  391. macro.o: xmalloc.h
  392. mbutil.o: xmalloc.h
  393. misc.o: xmalloc.h
  394. readline.o: xmalloc.h
  395. savestring.o: xmalloc.h
  396. search.o: xmalloc.h
  397. shell.o: xmalloc.h
  398. terminal.o: xmalloc.h
  399. text.o: xmalloc.h
  400. tilde.o: xmalloc.h
  401. undo.o: xmalloc.h
  402. util.o: xmalloc.h
  403. vi_mode.o: xmalloc.h
  404. xfree.o: xmalloc.h
  405. xmalloc.o: xmalloc.h
  406. complete.o: rlmbutil.h
  407. display.o: rlmbutil.h
  408. histexpand.o: rlmbutil.h
  409. input.o: rlmbutil.h
  410. isearch.o: rlmbutil.h
  411. mbutil.o: rlmbutil.h
  412. misc.o: rlmbutil.h
  413. readline.o: rlmbutil.h
  414. search.o: rlmbutil.h
  415. text.o: rlmbutil.h
  416. vi_mode.o: rlmbutil.h
  417. bind.o: $(srcdir)/bind.c
  418. callback.o: $(srcdir)/callback.c
  419. compat.o: $(srcdir)/compat.c
  420. complete.o: $(srcdir)/complete.c
  421. display.o: $(srcdir)/display.c
  422. funmap.o: $(srcdir)/funmap.c
  423. input.o: $(srcdir)/input.c
  424. isearch.o: $(srcdir)/isearch.c
  425. keymaps.o: $(srcdir)/keymaps.c $(srcdir)/emacs_keymap.c $(srcdir)/vi_keymap.c
  426. kill.o: $(srcdir)/kill.c
  427. macro.o: $(srcdir)/macro.c
  428. mbutil.o: $(srcdir)/mbutil.c
  429. misc.o: $(srcdir)/misc.c
  430. nls.o: $(srcdir)/nls.c
  431. parens.o: $(srcdir)/parens.c
  432. readline.o: $(srcdir)/readline.c
  433. rltty.o: $(srcdir)/rltty.c
  434. savestring.o: $(srcdir)/savestring.c
  435. search.o: $(srcdir)/search.c
  436. shell.o: $(srcdir)/shell.c
  437. signals.o: $(srcdir)/signals.c
  438. terminal.o: $(srcdir)/terminal.c
  439. text.o: $(srcdir)/text.c
  440. tilde.o: $(srcdir)/tilde.c
  441. undo.o: $(srcdir)/undo.c
  442. util.o: $(srcdir)/util.c
  443. vi_mode.o: $(srcdir)/vi_mode.c
  444. xfree.o: $(srcdir)/xfree.c
  445. xmalloc.o: $(srcdir)/xmalloc.c
  446. histexpand.o: $(srcdir)/histexpand.c
  447. histfile.o: $(srcdir)/histfile.c
  448. history.o: $(srcdir)/history.c
  449. histsearch.o: $(srcdir)/histsearch.c
  450. bind.o: bind.c
  451. callback.o: callback.c
  452. compat.o: compat.c
  453. complete.o: complete.c
  454. display.o: display.c
  455. funmap.o: funmap.c
  456. input.o: input.c
  457. isearch.o: isearch.c
  458. keymaps.o: keymaps.c emacs_keymap.c vi_keymap.c
  459. kill.o: kill.c
  460. macro.o: macro.c
  461. mbutil.o: mbutil.c
  462. misc.o: misc.c
  463. nls.o: nls.c
  464. parens.o: parens.c
  465. readline.o: readline.c
  466. rltty.o: rltty.c
  467. savestring.o: savestring.c
  468. search.o: search.c
  469. shell.o: shell.c
  470. signals.o: signals.c
  471. terminal.o: terminal.c
  472. text.o: text.c
  473. tilde.o: tilde.c
  474. undo.o: undo.c
  475. util.o: util.c
  476. vi_mode.o: vi_mode.c
  477. xfree.o: xfree.c
  478. xmalloc.o: xmalloc.c
  479. histexpand.o: histexpand.c
  480. histfile.o: histfile.c
  481. history.o: history.c
  482. histsearch.o: histsearch.c