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