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