sim/
[deliverable/binutils-gdb.git] / readline / Makefile.in
CommitLineData
d60d9f65
SS
1## -*- text -*- ##
2# Master Makefile for the GNU readline library.
5bdf8622 3# Copyright (C) 1994-2004 Free Software Foundation, Inc.
d60d9f65
SS
4
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 2, or (at your option)
8# any later version.
9
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, write to the Free Software
1b17e766 17# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
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
DJ
60datadir = @datadir@
61localedir = $(datadir)/locale
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
SS
70# Programs to make tags files.
71ETAGS = etags -tw
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
86XCCFLAGS = $(DEFS) $(LOCAL_DEFS) $(CPPFLAGS) $(INCLUDES)
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
25ed0b71
KW
103WCWIDTH_OBJ = @WCWIDTH_OBJ@
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 \
112 $(srcdir)/callback.c $(srcdir)/terminal.c $(srcdir)/xmalloc.c \
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 \
25ed0b71 117 $(srcdir)/mbutil.c $(srcdir)/support/wcwidth.c
d60d9f65
SS
118
119# The header files for this library.
120HSOURCES = readline.h rldefs.h chardefs.h keymaps.h history.h histlib.h \
121 posixstat.h posixdir.h posixjmp.h tilde.h rlconf.h rltty.h \
9255ee31
EZ
122 ansi_stdlib.h tcap.h rlstdc.h xmalloc.h rlprivate.h rlshell.h \
123 rltypedefs.h rlmbutil.h
d60d9f65 124
9255ee31 125HISTOBJ = history.o histexpand.o histfile.o histsearch.o shell.o mbutil.o
d60d9f65
SS
126TILDEOBJ = tilde.o
127OBJECTS = readline.o vi_mode.o funmap.o keymaps.o parens.o search.o \
128 rltty.o complete.o bind.o isearch.o display.o signals.o \
129 util.o kill.o undo.o macro.o input.o callback.o terminal.o \
25ed0b71
KW
130 text.o nls.o misc.o compat.o xmalloc.o $(HISTOBJ) $(TILDEOBJ) \
131 $(WCWIDTH_OBJ)
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
SS
140CREATED_CONFIGURE = config.status config.h config.cache config.log \
141 stamp-config stamp-h
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
162libhistory.a: $(HISTOBJ) xmalloc.o
163 $(RM) $@
c862e87b 164 $(AR) $(ARFLAGS) $@ $(HISTOBJ) xmalloc.o
d60d9f65
SS
165 -test -n "$(RANLIB)" && $(RANLIB) $@
166
25ed0b71
KW
167wcwidth.o: $(srcdir)/support/wcwidth.c
168 $(RM) $@
169 $(CC) $(CCFLAGS) -c $(srcdir)/support/wcwidth.c
170
9255ee31
EZ
171# Since tilde.c is shared between readline and bash, make sure we compile
172# it with the right flags when it's built as part of readline
173tilde.o: tilde.c
174 rm -f $@
175 $(CC) $(CCFLAGS) -DREADLINE_LIBRARY -c $(srcdir)/tilde.c
176
1b17e766
EZ
177readline: $(OBJECTS) readline.h rldefs.h chardefs.h ./libreadline.a
178 $(CC) $(CCFLAGS) -o $@ ./examples/rl.c ./libreadline.a ${TERMCAP_LIB}
d60d9f65 179
9255ee31
EZ
180lint: force
181 $(MAKE) $(MFLAGS) CCFLAGS='$(GCC_LINT_CFLAGS)' static
182
d60d9f65
SS
183Makefile makefile: config.status $(srcdir)/Makefile.in
184 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
185
186Makefiles makefiles: config.status $(srcdir)/Makefile.in
187 @for mf in $(CREATED_MAKEFILES); do \
188 CONFIG_FILES=$$mf CONFIG_HEADERS= $(SHELL) ./config.status ; \
189 done
190
191config.status: configure
192 $(SHELL) ./config.status --recheck
193
194config.h: stamp-h
195
196stamp-h: config.status $(srcdir)/config.h.in
197 CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status
198 echo > $@
199
1b17e766
EZ
200#$(srcdir)/configure: $(srcdir)/configure.in ## Comment-me-out in distribution
201# cd $(srcdir) && autoconf ## Comment-me-out in distribution
d60d9f65 202
c862e87b
JM
203shared: force
204 -test -d shlib || mkdir shlib
205 -( cd shlib ; ${MAKE} ${MFLAGS} all )
206
d60d9f65
SS
207documentation: force
208 -test -d doc || mkdir doc
209 -( cd doc && $(MAKE) $(MFLAGS) )
210
211examples: force
212 -test -d examples || mkdir examples
213 -(cd examples && ${MAKE} ${MFLAGS} all )
214
215force:
216
1b17e766
EZ
217install-headers: installdirs ${INSTALLED_HEADERS}
218 for f in ${INSTALLED_HEADERS}; do \
9255ee31 219 $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(includedir)/readline ; \
1b17e766
EZ
220 done
221
222uninstall-headers:
9255ee31 223 -test -n "$(includedir)" && cd $(DESTDIR)$(includedir)/readline && \
1b17e766
EZ
224 ${RM} ${INSTALLED_HEADERS}
225
226maybe-uninstall-headers: uninstall-headers
227
5bdf8622 228## GDB LOCAL
771578d1
SS
229## Don't mess with people's installed readline's.
230## This tries to install this version of readline over whatever
231## version is already installed on the system (which could be a
232## newer version). There is no real reason for us to install
233## readline along with GDB. GDB links statically against readline,
234## so it doesn't depend on us installing it on the system.
235
236install:
237
9255ee31
EZ
238#install: $(INSTALL_TARGETS)
239
5bdf8622 240install-static: installdirs $(STATIC_LIBS) install-headers install-doc
9255ee31
EZ
241 -$(MV) $(DESTDIR)$(libdir)/libreadline.a $(DESTDIR)$(libdir)/libreadline.old
242 $(INSTALL_DATA) libreadline.a $(DESTDIR)$(libdir)/libreadline.a
243 -test -n "$(RANLIB)" && $(RANLIB) $(DESTDIR)$(libdir)/libreadline.a
244 -$(MV) $(DESTDIR)$(libdir)/libhistory.a $(DESTDIR)$(libdir)/libhistory.old
245 $(INSTALL_DATA) libhistory.a $(DESTDIR)$(libdir)/libhistory.a
246 -test -n "$(RANLIB)" && $(RANLIB) $(DESTDIR)$(libdir)/libhistory.a
d60d9f65 247
5bdf8622
DJ
248installdirs: $(srcdir)/support/mkinstalldirs
249 -$(SHELL) $(srcdir)/support/mkinstalldirs $(DESTDIR)$(includedir) \
9255ee31
EZ
250 $(DESTDIR)$(includedir)/readline $(DESTDIR)$(libdir) \
251 $(DESTDIR)$(infodir) $(DESTDIR)$(man3dir)
d60d9f65 252
5bdf8622 253uninstall: uninstall-headers uninstall-doc
9255ee31 254 -test -n "$(DESTDIR)$(libdir)" && cd $(DESTDIR)$(libdir) && \
d60d9f65 255 ${RM} libreadline.a libreadline.old libhistory.a libhistory.old $(SHARED_LIBS)
9255ee31 256 -( cd shlib; ${MAKE} ${MFLAGS} DESTDIR=${DESTDIR} uninstall )
d60d9f65 257
5bdf8622 258install-shared: installdirs install-headers shared install-doc
9255ee31 259 -( cd shlib ; ${MAKE} ${MFLAGS} DESTDIR=${DESTDIR} install )
5bdf8622 260
1b17e766 261uninstall-shared: maybe-uninstall-headers
9255ee31 262 -( cd shlib; ${MAKE} ${MFLAGS} DESTDIR=${DESTDIR} uninstall )
d60d9f65 263
5bdf8622
DJ
264install-doc: installdirs
265 -( if test -d doc ; then \
266 cd doc && \
267 ${MAKE} ${MFLAGS} infodir=$(infodir) DESTDIR=${DESTDIR} install; \
268 fi )
269
270uninstall-doc:
271 -( if test -d doc ; then \
272 cd doc && \
273 ${MAKE} ${MFLAGS} infodir=$(infodir) DESTDIR=${DESTDIR} uninstall; \
274 fi )
275
d60d9f65
SS
276TAGS: force
277 $(ETAGS) $(CSOURCES) $(HSOURCES)
278
279tags: force
280 $(CTAGS) $(CSOURCES) $(HSOURCES)
281
282clean: force
283 $(RM) $(OBJECTS) $(STATIC_LIBS)
1b17e766 284 $(RM) readline readline.exe
c862e87b 285 -( cd shlib && $(MAKE) $(MFLAGS) $@ )
d60d9f65
SS
286 -( cd doc && $(MAKE) $(MFLAGS) $@ )
287 -( cd examples && $(MAKE) $(MFLAGS) $@ )
288
289mostlyclean: clean
c862e87b 290 -( cd shlib && $(MAKE) $(MFLAGS) $@ )
d60d9f65
SS
291 -( cd doc && $(MAKE) $(MFLAGS) $@ )
292 -( cd examples && $(MAKE) $(MFLAGS) $@ )
293
294distclean maintainer-clean: clean
c862e87b 295 -( cd shlib && $(MAKE) $(MFLAGS) $@ )
d60d9f65
SS
296 -( cd doc && $(MAKE) $(MFLAGS) $@ )
297 -( cd examples && $(MAKE) $(MFLAGS) $@ )
298 $(RM) Makefile
299 $(RM) $(CREATED_CONFIGURE)
300 $(RM) $(CREATED_TAGS)
301
89a34d1b 302info dvi html pdf:
d60d9f65
SS
303 -( cd doc && $(MAKE) $(MFLAGS) $@ )
304
305install-info:
89a34d1b
JM
306install-html:
307install-pdf:
d60d9f65
SS
308check:
309installcheck:
310
311dist: force
312 @echo Readline distributions are created using $(srcdir)/support/mkdist.
313 @echo Here is a sample of the necessary commands:
1b17e766 314 @echo bash $(srcdir)/support/mkdist -m $(srcdir)/MANIFEST -s $(srcdir) -r $(RL_LIBRARY_NAME) $(RL_LIBRARY_VERSION)
d60d9f65
SS
315 @echo tar cf $(RL_LIBRARY_NAME)-${RL_LIBRARY_VERSION}.tar ${RL_LIBRARY_NAME}-$(RL_LIBRARY_VERSION)
316 @echo gzip $(RL_LIBRARY_NAME)-$(RL_LIBRARY_VERSION).tar
317
318# Tell versions [3.59,3.63) of GNU make not to export all variables.
319# Otherwise a system limit (for SysV at least) may be exceeded.
320.NOEXPORT:
321
322# Dependencies
323bind.o: ansi_stdlib.h posixstat.h
324bind.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
9255ee31 325bind.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
d60d9f65
SS
326bind.o: history.h
327callback.o: rlconf.h
328callback.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
9255ee31
EZ
329callback.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
330compat.o: rlstdc.h
d60d9f65
SS
331complete.o: ansi_stdlib.h posixdir.h posixstat.h
332complete.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
9255ee31 333complete.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
d60d9f65
SS
334display.o: ansi_stdlib.h posixstat.h
335display.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
336display.o: tcap.h
9255ee31 337display.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
c862e87b 338display.o: history.h rlstdc.h
9255ee31 339funmap.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
c862e87b 340funmap.o: rlconf.h ansi_stdlib.h rlstdc.h
d60d9f65
SS
341funmap.o: ${BUILD_DIR}/config.h
342histexpand.o: ansi_stdlib.h
9255ee31 343histexpand.o: history.h histlib.h rlstdc.h rltypedefs.h
d60d9f65
SS
344histexpand.o: ${BUILD_DIR}/config.h
345histfile.o: ansi_stdlib.h
9255ee31 346histfile.o: history.h histlib.h rlstdc.h rltypedefs.h
d60d9f65
SS
347histfile.o: ${BUILD_DIR}/config.h
348history.o: ansi_stdlib.h
9255ee31 349history.o: history.h histlib.h rlstdc.h rltypedefs.h
d60d9f65
SS
350history.o: ${BUILD_DIR}/config.h
351histsearch.o: ansi_stdlib.h
9255ee31 352histsearch.o: history.h histlib.h rlstdc.h rltypedefs.h
d60d9f65
SS
353histsearch.o: ${BUILD_DIR}/config.h
354input.o: ansi_stdlib.h
355input.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
9255ee31 356input.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
d60d9f65 357isearch.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
9255ee31 358isearch.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
c862e87b 359isearch.o: ansi_stdlib.h history.h rlstdc.h
d60d9f65 360keymaps.o: emacs_keymap.c vi_keymap.c
9255ee31
EZ
361keymaps.o: keymaps.h rltypedefs.h chardefs.h rlconf.h ansi_stdlib.h
362keymaps.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
c862e87b 363keymaps.o: ${BUILD_DIR}/config.h rlstdc.h
d60d9f65
SS
364kill.o: ansi_stdlib.h
365kill.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
9255ee31 366kill.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
c862e87b 367kill.o: history.h rlstdc.h
d60d9f65
SS
368macro.o: ansi_stdlib.h
369macro.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
9255ee31 370macro.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
c862e87b 371macro.o: history.h rlstdc.h
9255ee31
EZ
372mbutil.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
373mbutil.o: readline.h keymaps.h rltypedefs.h chardefs.h rlstdc.h
374misc.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
375misc.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
376misc.o: history.h rlstdc.h ansi_stdlib.h
d60d9f65
SS
377nls.o: ansi_stdlib.h
378nls.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
9255ee31 379nls.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
1b17e766 380nls.o: history.h rlstdc.h
d60d9f65
SS
381parens.o: rlconf.h
382parens.o: ${BUILD_DIR}/config.h
9255ee31
EZ
383parens.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
384readline.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
d60d9f65 385readline.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
c862e87b 386readline.o: history.h rlstdc.h
d60d9f65
SS
387readline.o: posixstat.h ansi_stdlib.h posixjmp.h
388rltty.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
389rltty.o: rltty.h
9255ee31 390rltty.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
d60d9f65 391search.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
9255ee31 392search.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
c862e87b 393search.o: ansi_stdlib.h history.h rlstdc.h
d60d9f65
SS
394shell.o: ${BUILD_DIR}/config.h
395shell.o: ansi_stdlib.h
396signals.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
9255ee31 397signals.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
c862e87b 398signals.o: history.h rlstdc.h
d60d9f65
SS
399terminal.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
400terminal.o: tcap.h
9255ee31 401terminal.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
c862e87b 402terminal.o: history.h rlstdc.h
9255ee31
EZ
403text.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
404text.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
405text.o: history.h rlstdc.h ansi_stdlib.h
d60d9f65
SS
406tilde.o: ansi_stdlib.h
407tilde.o: ${BUILD_DIR}/config.h
408tilde.o: tilde.h
409undo.o: ansi_stdlib.h
410undo.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
9255ee31 411undo.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
c862e87b 412undo.o: history.h rlstdc.h
d60d9f65
SS
413util.o: posixjmp.h ansi_stdlib.h
414util.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
9255ee31 415util.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
d60d9f65 416vi_mode.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
9255ee31 417vi_mode.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
c862e87b 418vi_mode.o: history.h ansi_stdlib.h rlstdc.h
d60d9f65
SS
419xmalloc.o: ${BUILD_DIR}/config.h
420xmalloc.o: ansi_stdlib.h
421
1b17e766
EZ
422bind.o: rlshell.h
423histfile.o: rlshell.h
424nls.o: rlshell.h
425readline.o: rlshell.h
426shell.o: rlshell.h
427terminal.o: rlshell.h
428histexpand.o: rlshell.h
429
430bind.o: rlprivate.h
431callback.o: rlprivate.h
432complete.o: rlprivate.h
433display.o: rlprivate.h
434input.o: rlprivate.h
435isearch.o: rlprivate.h
436kill.o: rlprivate.h
437macro.o: rlprivate.h
9255ee31
EZ
438mbutil.o: rlprivate.h
439misc.o: rlprivate.h
1b17e766
EZ
440nls.o: rlprivate.h
441parens.o: rlprivate.h
442readline.o: rlprivate.h
443rltty.o: rlprivate.h
444search.o: rlprivate.h
445signals.o: rlprivate.h
446terminal.o: rlprivate.h
9255ee31 447text.o: rlprivate.h
1b17e766
EZ
448undo.o: rlprivate.h
449util.o: rlprivate.h
450vi_mode.o: rlprivate.h
451
452bind.o: xmalloc.h
0b7b5a97 453callback.o: xmalloc.h
1b17e766
EZ
454complete.o: xmalloc.h
455display.o: xmalloc.h
456funmap.o: xmalloc.h
457histexpand.o: xmalloc.h
458histfile.o: xmalloc.h
459history.o: xmalloc.h
460input.o: xmalloc.h
461isearch.o: xmalloc.h
462keymaps.o: xmalloc.h
463kill.o: xmalloc.h
464macro.o: xmalloc.h
9255ee31
EZ
465mbutil.o: xmalloc.h
466misc.o: xmalloc.h
1b17e766
EZ
467readline.o: xmalloc.h
468savestring.o: xmalloc.h
469search.o: xmalloc.h
470shell.o: xmalloc.h
9255ee31
EZ
471terminal.o: xmalloc.h
472text.o: xmalloc.h
1b17e766 473tilde.o: xmalloc.h
9255ee31 474undo.o: xmalloc.h
1b17e766
EZ
475util.o: xmalloc.h
476vi_mode.o: xmalloc.h
9255ee31
EZ
477xmalloc.o: xmalloc.h
478
479complete.o: rlmbutil.h
480display.o: rlmbutil.h
481histexpand.o: rlmbutil.h
482input.o: rlmbutil.h
483isearch.o: rlmbutil.h
484mbutil.o: rlmbutil.h
485misc.o: rlmbutil.h
486readline.o: rlmbutil.h
487search.o: rlmbutil.h
488text.o: rlmbutil.h
489vi_mode.o: rlmbutil.h
1b17e766 490
d60d9f65 491bind.o: $(srcdir)/bind.c
9255ee31
EZ
492callback.o: $(srcdir)/callback.c
493compat.o: $(srcdir)/compat.c
494complete.o: $(srcdir)/complete.c
d60d9f65 495display.o: $(srcdir)/display.c
9255ee31
EZ
496funmap.o: $(srcdir)/funmap.c
497input.o: $(srcdir)/input.c
498isearch.o: $(srcdir)/isearch.c
499keymaps.o: $(srcdir)/keymaps.c $(srcdir)/emacs_keymap.c $(srcdir)/vi_keymap.c
d60d9f65 500kill.o: $(srcdir)/kill.c
d60d9f65 501macro.o: $(srcdir)/macro.c
9255ee31
EZ
502mbutil.o: $(srcdir)/mbutil.c
503misc.o: $(srcdir)/misc.c
d60d9f65 504nls.o: $(srcdir)/nls.c
9255ee31
EZ
505parens.o: $(srcdir)/parens.c
506readline.o: $(srcdir)/readline.c
507rltty.o: $(srcdir)/rltty.c
508savestring.o: $(srcdir)/savestring.c
509search.o: $(srcdir)/search.c
510shell.o: $(srcdir)/shell.c
511signals.o: $(srcdir)/signals.c
512terminal.o: $(srcdir)/terminal.c
513text.o: $(srcdir)/text.c
514tilde.o: $(srcdir)/tilde.c
515undo.o: $(srcdir)/undo.c
516util.o: $(srcdir)/util.c
517vi_mode.o: $(srcdir)/vi_mode.c
d60d9f65 518xmalloc.o: $(srcdir)/xmalloc.c
9255ee31 519
d60d9f65
SS
520histexpand.o: $(srcdir)/histexpand.c
521histfile.o: $(srcdir)/histfile.c
9255ee31 522history.o: $(srcdir)/history.c
d60d9f65 523histsearch.o: $(srcdir)/histsearch.c
d60d9f65 524
d60d9f65 525bind.o: bind.c
9255ee31
EZ
526callback.o: callback.c
527compat.o: compat.c
528complete.o: complete.c
d60d9f65 529display.o: display.c
9255ee31
EZ
530funmap.o: funmap.c
531input.o: input.c
532isearch.o: isearch.c
533keymaps.o: keymaps.c emacs_keymap.c vi_keymap.c
d60d9f65 534kill.o: kill.c
d60d9f65 535macro.o: macro.c
9255ee31
EZ
536mbutil.o: mbutil.c
537misc.o: misc.c
d60d9f65 538nls.o: nls.c
9255ee31
EZ
539parens.o: parens.c
540readline.o: readline.c
541rltty.o: rltty.c
542savestring.o: savestring.c
543search.o: search.c
544shell.o: shell.c
545signals.o: signals.c
546terminal.o: terminal.c
547text.o: text.c
548tilde.o: tilde.c
549undo.o: undo.c
550util.o: util.c
551vi_mode.o: vi_mode.c
d60d9f65 552xmalloc.o: xmalloc.c
9255ee31 553
d60d9f65
SS
554histexpand.o: histexpand.c
555histfile.o: histfile.c
9255ee31 556history.o: history.c
d60d9f65 557histsearch.o: histsearch.c
This page took 0.54065 seconds and 4 git commands to generate.