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