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