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