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