Makefile.in revision 75406
126497Sache## -*- text -*- ##
226497Sache# Master Makefile for the GNU readline library.
326497Sache# Copyright (C) 1994 Free Software Foundation, Inc.
421308Sache
526497Sache# This program is free software; you can redistribute it and/or modify
626497Sache# it under the terms of the GNU General Public License as published by
726497Sache# the Free Software Foundation; either version 2, or (at your option)
826497Sache# any later version.
926497Sache
1026497Sache# This program is distributed in the hope that it will be useful,
1126497Sache# but WITHOUT ANY WARRANTY; without even the implied warranty of
1226497Sache# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1326497Sache# GNU General Public License for more details.
1426497Sache
1526497Sache# You should have received a copy of the GNU General Public License
1626497Sache# along with this program; if not, write to the Free Software
1758310Sache# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
1826497SacheRL_LIBRARY_VERSION = @LIBVERSION@
1926497SacheRL_LIBRARY_NAME = readline
2026497Sache
2121308Sachesrcdir = @srcdir@
2221308SacheVPATH = .:@srcdir@
2326497Sachetop_srcdir = @top_srcdir@
2435486SacheBUILD_DIR = @BUILD_DIR@
2521308Sache
2621308SacheINSTALL = @INSTALL@
2721308SacheINSTALL_PROGRAM = @INSTALL_PROGRAM@
2821308SacheINSTALL_DATA = @INSTALL_DATA@
2921308Sache
3021308SacheCC = @CC@
3121308SacheRANLIB = @RANLIB@
3247558SacheAR = @AR@
3347558SacheARFLAGS = @ARFLAGS@
3421308SacheRM = rm -f
3521308SacheCP = cp
3621308SacheMV = mv
3721308Sache
3875406Sache@SET_MAKE@
3947558SacheSHELL = @MAKE_SHELL@
4047558Sache
4126497Sacheprefix = @prefix@
4226497Sacheexec_prefix = @exec_prefix@
4321308Sache
4426497Sachebindir = @bindir@
4526497Sachelibdir = @libdir@
4626497Sachemandir = @mandir@
4726497Sacheincludedir = @includedir@
4826497Sache
4926497Sacheinfodir = @infodir@
5026497Sache
5126497Sacheman3dir = $(mandir)/man3
5226497Sache
5326497Sache# Programs to make tags files.
5426497SacheETAGS = etags -tw
5526497SacheCTAGS = ctags -tw
5626497Sache
5721308SacheCFLAGS = @CFLAGS@
5826497SacheLOCAL_CFLAGS = @LOCAL_CFLAGS@ -DRL_LIBRARY_VERSION='"$(RL_LIBRARY_VERSION)"'
5921308SacheCPPFLAGS = @CPPFLAGS@
6021308Sache
6121308SacheDEFS = @DEFS@
6226497SacheLOCAL_DEFS = @LOCAL_DEFS@
6321308Sache
6458310SacheTERMCAP_LIB = @TERMCAP_LIB@
6558310Sache
6626497Sache# For libraries which include headers from other libraries.
6726497SacheINCLUDES = -I. -I$(srcdir) -I$(includedir)
6821308Sache
6975406SacheXCCFLAGS = $(DEFS) $(LOCAL_DEFS) $(CPPFLAGS) $(INCLUDES)
7075406SacheCCFLAGS = $(XCCFLAGS) $(LOCAL_CFLAGS) $(CFLAGS)
7121308Sache
7275406Sache# could add -Werror here
7375406SacheGCC_LINT_FLAGS = -ansi -Wall -Wshadow -Wpointer-arith -Wcast-qual \
7475406Sache		 -Wwrite-strings -Wstrict-prototypes \
7575406Sache		 -Wmissing-prototypes -Wno-implicit
7675406SacheGCC_LINT_CFLAGS = $(XCCFLAGS) $(GCC_LINT_FLAGS) @CFLAGS@ @LOCAL_CFLAGS@
7775406Sache
7821308Sache.c.o:
7947558Sache	${RM} $@
8021308Sache	$(CC) -c $(CCFLAGS) $<
8121308Sache
8221308Sache# The name of the main library target.
8321308SacheLIBRARY_NAME = libreadline.a
8435486SacheSTATIC_LIBS = libreadline.a libhistory.a
8535486Sache
8621308Sache# The C code source files for this library.
8721308SacheCSOURCES = $(srcdir)/readline.c $(srcdir)/funmap.c $(srcdir)/keymaps.c \
8821308Sache	   $(srcdir)/vi_mode.c $(srcdir)/parens.c $(srcdir)/rltty.c \
8921308Sache	   $(srcdir)/complete.c $(srcdir)/bind.c $(srcdir)/isearch.c \
9021308Sache	   $(srcdir)/display.c $(srcdir)/signals.c $(srcdir)/emacs_keymap.c \
9121308Sache	   $(srcdir)/vi_keymap.c $(srcdir)/util.c $(srcdir)/kill.c \
9221308Sache	   $(srcdir)/undo.c $(srcdir)/macro.c $(srcdir)/input.c \
9321308Sache	   $(srcdir)/callback.c $(srcdir)/terminal.c $(srcdir)/xmalloc.c \
9421308Sache	   $(srcdir)/history.c $(srcdir)/histsearch.c $(srcdir)/histexpand.c \
9526497Sache	   $(srcdir)/histfile.c $(srcdir)/nls.c $(srcdir)/search.c \
9675406Sache	   $(srcdir)/shell.c $(srcdir)/savestring.c $(srcdir)/tilde.c \
9775406Sache	   $(srcdir)/compat.c
9821308Sache
9921308Sache# The header files for this library.
10021308SacheHSOURCES = readline.h rldefs.h chardefs.h keymaps.h history.h histlib.h \
10126497Sache	   posixstat.h posixdir.h posixjmp.h tilde.h rlconf.h rltty.h \
10275406Sache	   ansi_stdlib.h tcap.h rlstdc.h xmalloc.h rlprivate.h rlshell.h \
10375406Sache	   rltypedefs.h
10421308Sache
10547558SacheHISTOBJ = history.o histexpand.o histfile.o histsearch.o shell.o 
10626497SacheTILDEOBJ = tilde.o
10721308SacheOBJECTS = readline.o vi_mode.o funmap.o keymaps.o parens.o search.o \
10821308Sache	  rltty.o complete.o bind.o isearch.o display.o signals.o \
10921308Sache	  util.o kill.o undo.o macro.o input.o callback.o terminal.o \
11075406Sache	  nls.o compat.o xmalloc.o $(HISTOBJ) $(TILDEOBJ)
11121308Sache
11221308Sache# The texinfo files which document this library.
11321308SacheDOCSOURCE = doc/rlman.texinfo doc/rltech.texinfo doc/rluser.texinfo
11421308SacheDOCOBJECT = doc/readline.dvi
11521308SacheDOCSUPPORT = doc/Makefile
11621308SacheDOCUMENTATION = $(DOCSOURCE) $(DOCOBJECT) $(DOCSUPPORT)
11721308Sache
11847558SacheCREATED_MAKEFILES = Makefile doc/Makefile examples/Makefile shlib/Makefile
11935486SacheCREATED_CONFIGURE = config.status config.h config.cache config.log \
12035486Sache		    stamp-config stamp-h
12135486SacheCREATED_TAGS = TAGS tags
12221308Sache
12347558SacheINSTALLED_HEADERS = readline.h chardefs.h keymaps.h history.h tilde.h \
12475406Sache		    rlstdc.h rlconf.h rltypedefs.h
12521308Sache
12621308Sache##########################################################################
12721308Sache
12835486Sacheall: static
12935486Sache
13058310Sacheeverything: static shared examples
13158310Sache
13235486Sachestatic: $(STATIC_LIBS)
13321308Sache
13421308Sachelibreadline.a: $(OBJECTS)
13526497Sache	$(RM) $@
13647558Sache	$(AR) $(ARFLAGS) $@ $(OBJECTS)
13721308Sache	-test -n "$(RANLIB)" && $(RANLIB) $@
13821308Sache
13921308Sachelibhistory.a: $(HISTOBJ) xmalloc.o
14026497Sache	$(RM) $@
14147558Sache	$(AR) $(ARFLAGS) $@ $(HISTOBJ) xmalloc.o
14221308Sache	-test -n "$(RANLIB)" && $(RANLIB) $@
14321308Sache
14458310Sachereadline: $(OBJECTS) readline.h rldefs.h chardefs.h ./libreadline.a
14558310Sache	$(CC) $(CCFLAGS) -o $@ ./examples/rl.c ./libreadline.a ${TERMCAP_LIB}
14626497Sache
14775406Sachelint:	force
14875406Sache	$(MAKE) $(MFLAGS) CCFLAGS='$(GCC_LINT_CFLAGS)' static
14975406Sache
15026497SacheMakefile makefile: config.status $(srcdir)/Makefile.in
15126497Sache	CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
15226497Sache
15326497SacheMakefiles makefiles: config.status $(srcdir)/Makefile.in
15426497Sache	@for mf in $(CREATED_MAKEFILES); do \
15526497Sache		CONFIG_FILES=$$mf CONFIG_HEADERS= $(SHELL) ./config.status ; \
15626497Sache	done
15726497Sache
15826497Sacheconfig.status: configure
15926497Sache	$(SHELL) ./config.status --recheck
16026497Sache
16126497Sacheconfig.h:	stamp-h
16226497Sache
16326497Sachestamp-h: config.status $(srcdir)/config.h.in
16426497Sache	CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status
16526497Sache	echo > $@
16626497Sache
16758310Sache#$(srcdir)/configure: $(srcdir)/configure.in	## Comment-me-out in distribution
16858310Sache#	cd $(srcdir) && autoconf	## Comment-me-out in distribution
16926497Sache
17047558Sache
17147558Sacheshared:	force
17247558Sache	-test -d shlib || mkdir shlib
17347558Sache	-( cd shlib ; ${MAKE} ${MFLAGS} all )
17447558Sache
17521308Sachedocumentation: force
17626497Sache	-test -d doc || mkdir doc
17721308Sache	-( cd doc && $(MAKE) $(MFLAGS) )
17821308Sache
17935486Sacheexamples: force
18035486Sache	-test -d examples || mkdir examples
18135486Sache	-(cd examples && ${MAKE} ${MFLAGS} all )
18235486Sache
18321308Sacheforce:
18421308Sache
18558310Sacheinstall-headers: installdirs ${INSTALLED_HEADERS}
18626497Sache	for f in ${INSTALLED_HEADERS}; do \
18726497Sache		$(INSTALL_DATA) $(srcdir)/$$f $(includedir)/readline ; \
18821308Sache	done
18958310Sache
19058310Sacheuninstall-headers:
19158310Sache	-test -n "$(includedir)" && cd $(includedir)/readline && \
19258310Sache		${RM} ${INSTALLED_HEADERS}
19358310Sache
19458310Sachemaybe-uninstall-headers: uninstall-headers
19558310Sache
19658310Sacheinstall: installdirs $(STATIC_LIBS) install-headers
19726497Sache	-$(MV) $(libdir)/libreadline.a $(libdir)/libreadline.old
19826497Sache	$(INSTALL_DATA) libreadline.a $(libdir)/libreadline.a
19975406Sache	-test -n "$(RANLIB)" && $(RANLIB) $(libdir)/libreadline.a
20047558Sache	-$(MV) $(libdir)/libhistory.a $(libdir)/libhistory.old
20135486Sache	$(INSTALL_DATA) libhistory.a $(libdir)/libhistory.a
20275406Sache	-test -n "$(RANLIB)" && $(RANLIB) $(libdir)/libhistory.a
20326497Sache	-( if test -d doc ; then \
20426497Sache		cd doc && \
20535486Sache		${MAKE} ${MFLAGS} infodir=$(infodir) $@; \
20626497Sache	  fi )
20721308Sache
20826497Sacheinstalldirs: $(srcdir)/support/mkdirs
20926497Sache	-$(SHELL) $(srcdir)/support/mkdirs $(includedir) \
21021308Sache		$(includedir)/readline $(libdir) $(infodir) $(man3dir)
21121308Sache
21258310Sacheuninstall: uninstall-headers
21326497Sache	-test -n "$(libdir)" && cd $(libdir) && \
21435486Sache		${RM} libreadline.a libreadline.old libhistory.a libhistory.old $(SHARED_LIBS)
21521308Sache
21658310Sacheinstall-shared: installdirs install-headers shared
21747558Sache	-( cd shlib ; ${MAKE} ${MFLAGS} install )
21835486Sache
21958310Sacheuninstall-shared: maybe-uninstall-headers
22047558Sache	-( cd shlib; ${MAKE} ${MFLAGS} uninstall )
22135486Sache
22221308SacheTAGS:	force
22326497Sache	$(ETAGS) $(CSOURCES) $(HSOURCES)
22421308Sache
22526497Sachetags:	force
22626497Sache	$(CTAGS) $(CSOURCES) $(HSOURCES)
22721308Sache
22821308Sacheclean:	force
22935486Sache	$(RM) $(OBJECTS) $(STATIC_LIBS)
23058310Sache	$(RM) readline readline.exe
23147558Sache	-( cd shlib && $(MAKE) $(MFLAGS) $@ )
23221308Sache	-( cd doc && $(MAKE) $(MFLAGS) $@ )
23335486Sache	-( cd examples && $(MAKE) $(MFLAGS) $@ )
23421308Sache
23526497Sachemostlyclean: clean
23647558Sache	-( cd shlib && $(MAKE) $(MFLAGS) $@ )
23721308Sache	-( cd doc && $(MAKE) $(MFLAGS) $@ )
23835486Sache	-( cd examples && $(MAKE) $(MFLAGS) $@ )
23926497Sache
24026497Sachedistclean maintainer-clean: clean
24147558Sache	-( cd shlib && $(MAKE) $(MFLAGS) $@ )
24226497Sache	-( cd doc && $(MAKE) $(MFLAGS) $@ )
24335486Sache	-( cd examples && $(MAKE) $(MFLAGS) $@ )
24421308Sache	$(RM) Makefile
24535486Sache	$(RM) $(CREATED_CONFIGURE)
24635486Sache	$(RM) $(CREATED_TAGS)
24721308Sache
24826497Sacheinfo dvi:
24921308Sache	-( cd doc && $(MAKE) $(MFLAGS) $@ )
25021308Sache
25126497Sacheinstall-info:
25226497Sachecheck:
25326497Sacheinstallcheck:
25426497Sache
25526497Sachedist:   force
25626497Sache	@echo Readline distributions are created using $(srcdir)/support/mkdist.
25726497Sache	@echo Here is a sample of the necessary commands:
25858310Sache	@echo bash $(srcdir)/support/mkdist -m $(srcdir)/MANIFEST -s $(srcdir) -r $(RL_LIBRARY_NAME) $(RL_LIBRARY_VERSION)
25926497Sache	@echo tar cf $(RL_LIBRARY_NAME)-${RL_LIBRARY_VERSION}.tar ${RL_LIBRARY_NAME}-$(RL_LIBRARY_VERSION)
26026497Sache	@echo gzip $(RL_LIBRARY_NAME)-$(RL_LIBRARY_VERSION).tar
26126497Sache
26226497Sache# Tell versions [3.59,3.63) of GNU make not to export all variables.
26326497Sache# Otherwise a system limit (for SysV at least) may be exceeded.
26426497Sache.NOEXPORT:
26526497Sache
26621308Sache# Dependencies
26726497Sachebind.o: ansi_stdlib.h posixstat.h
26826497Sachebind.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
26975406Sachebind.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
27026497Sachebind.o: history.h
27126497Sachecallback.o: rlconf.h
27226497Sachecallback.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
27375406Sachecallback.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
27475406Sachecompat.o: rlstdc.h
27526497Sachecomplete.o: ansi_stdlib.h posixdir.h posixstat.h
27626497Sachecomplete.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
27775406Sachecomplete.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
27826497Sachedisplay.o: ansi_stdlib.h posixstat.h
27926497Sachedisplay.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
28026497Sachedisplay.o: tcap.h
28175406Sachedisplay.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
28247558Sachedisplay.o: history.h rlstdc.h
28375406Sachefunmap.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
28447558Sachefunmap.o: rlconf.h ansi_stdlib.h rlstdc.h
28526497Sachefunmap.o: ${BUILD_DIR}/config.h
28626497Sachehistexpand.o: ansi_stdlib.h
28775406Sachehistexpand.o: history.h histlib.h rlstdc.h rltypedefs.h
28826497Sachehistexpand.o: ${BUILD_DIR}/config.h
28926497Sachehistfile.o: ansi_stdlib.h
29075406Sachehistfile.o: history.h histlib.h rlstdc.h rltypedefs.h
29126497Sachehistfile.o: ${BUILD_DIR}/config.h
29226497Sachehistory.o: ansi_stdlib.h
29375406Sachehistory.o: history.h histlib.h rlstdc.h rltypedefs.h
29426497Sachehistory.o: ${BUILD_DIR}/config.h
29526497Sachehistsearch.o: ansi_stdlib.h
29675406Sachehistsearch.o: history.h histlib.h rlstdc.h rltypedefs.h
29726497Sachehistsearch.o: ${BUILD_DIR}/config.h
29826497Sacheinput.o: ansi_stdlib.h
29926497Sacheinput.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
30075406Sacheinput.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
30126497Sacheisearch.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
30275406Sacheisearch.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
30347558Sacheisearch.o: ansi_stdlib.h history.h rlstdc.h
30426497Sachekeymaps.o: emacs_keymap.c vi_keymap.c
30575406Sachekeymaps.o: keymaps.h rltypedefs.h chardefs.h rlconf.h ansi_stdlib.h
30675406Sachekeymaps.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
30747558Sachekeymaps.o: ${BUILD_DIR}/config.h rlstdc.h
30826497Sachekill.o: ansi_stdlib.h
30926497Sachekill.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
31075406Sachekill.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
31147558Sachekill.o: history.h rlstdc.h
31226497Sachemacro.o: ansi_stdlib.h
31326497Sachemacro.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
31475406Sachemacro.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
31547558Sachemacro.o: history.h rlstdc.h
31626497Sachenls.o: ansi_stdlib.h
31726497Sachenls.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
31875406Sachenls.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h  
31958310Sachenls.o: history.h rlstdc.h  
32026497Sacheparens.o: rlconf.h
32126497Sacheparens.o: ${BUILD_DIR}/config.h
32275406Sacheparens.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
32375406Sachereadline.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
32426497Sachereadline.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
32547558Sachereadline.o: history.h rlstdc.h
32626497Sachereadline.o: posixstat.h ansi_stdlib.h posixjmp.h
32726497Sacherltty.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
32826497Sacherltty.o: rltty.h
32975406Sacherltty.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
33026497Sachesearch.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
33175406Sachesearch.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
33247558Sachesearch.o: ansi_stdlib.h history.h rlstdc.h
33335486Sacheshell.o: ${BUILD_DIR}/config.h
33435486Sacheshell.o: ansi_stdlib.h
33526497Sachesignals.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
33675406Sachesignals.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
33747558Sachesignals.o: history.h rlstdc.h
33826497Sacheterminal.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
33926497Sacheterminal.o: tcap.h
34075406Sacheterminal.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
34147558Sacheterminal.o: history.h rlstdc.h
34226497Sachetilde.o: ansi_stdlib.h
34326497Sachetilde.o: ${BUILD_DIR}/config.h
34426497Sachetilde.o: tilde.h
34526497Sacheundo.o: ansi_stdlib.h
34626497Sacheundo.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
34775406Sacheundo.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
34847558Sacheundo.o: history.h rlstdc.h
34926497Sacheutil.o: posixjmp.h ansi_stdlib.h
35026497Sacheutil.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
35175406Sacheutil.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h rlstdc.h
35226497Sachevi_mode.o: rldefs.h ${BUILD_DIR}/config.h rlconf.h
35375406Sachevi_mode.o: readline.h keymaps.h rltypedefs.h chardefs.h tilde.h
35447558Sachevi_mode.o: history.h ansi_stdlib.h rlstdc.h
35526497Sachexmalloc.o: ${BUILD_DIR}/config.h
35626497Sachexmalloc.o: ansi_stdlib.h
35721308Sache
35858310Sachebind.o: rlshell.h
35958310Sachehistfile.o: rlshell.h
36058310Sachenls.o: rlshell.h
36158310Sachereadline.o: rlshell.h
36258310Sacheshell.o: rlshell.h
36358310Sacheterminal.o: rlshell.h
36458310Sachehistexpand.o: rlshell.h
36558310Sache
36658310Sachebind.o: rlprivate.h
36758310Sachecallback.o: rlprivate.h
36858310Sachecomplete.o: rlprivate.h
36958310Sachedisplay.o: rlprivate.h
37058310Sacheinput.o: rlprivate.h
37158310Sacheisearch.o: rlprivate.h
37258310Sachekill.o: rlprivate.h
37358310Sachemacro.o: rlprivate.h
37458310Sachenls.o: rlprivate.h   
37558310Sacheparens.o: rlprivate.h
37658310Sachereadline.o: rlprivate.h
37758310Sacherltty.o: rlprivate.h 
37858310Sachesearch.o: rlprivate.h
37958310Sachesignals.o: rlprivate.h
38058310Sacheterminal.o: rlprivate.h
38158310Sacheundo.o: rlprivate.h
38258310Sacheutil.o: rlprivate.h
38358310Sachevi_mode.o: rlprivate.h
38458310Sache
38558310Sachebind.o: xmalloc.h
38658310Sachecomplete.o: xmalloc.h
38758310Sachedisplay.o: xmalloc.h
38858310Sachefunmap.o: xmalloc.h
38958310Sachehistexpand.o: xmalloc.h
39058310Sachehistfile.o: xmalloc.h
39158310Sachehistory.o: xmalloc.h
39258310Sacheinput.o: xmalloc.h
39358310Sacheisearch.o: xmalloc.h
39458310Sachekeymaps.o: xmalloc.h
39558310Sachekill.o: xmalloc.h
39658310Sachemacro.o: xmalloc.h
39758310Sachereadline.o: xmalloc.h
39858310Sachesavestring.o: xmalloc.h
39958310Sachesearch.o: xmalloc.h
40058310Sacheshell.o: xmalloc.h
40158310Sachetilde.o: xmalloc.h
40258310Sachetilde.o: xmalloc.h
40358310Sacheutil.o: xmalloc.h
40458310Sachevi_mode.o: xmalloc.h
40558310Sache
40635486Sachereadline.o: $(srcdir)/readline.c
40735486Sachevi_mode.o: $(srcdir)/vi_mode.c
40835486Sachefunmap.o: $(srcdir)/funmap.c
40935486Sachekeymaps.o: $(srcdir)/keymaps.c
41035486Sacheparens.o: $(srcdir)/parens.c
41135486Sachesearch.o: $(srcdir)/search.c
41235486Sacherltty.o: $(srcdir)/rltty.c
41375406Sachecompat.o: $(srcdir)/compat.c
41435486Sachecomplete.o: $(srcdir)/complete.c
41535486Sachebind.o: $(srcdir)/bind.c
41635486Sacheisearch.o: $(srcdir)/isearch.c
41735486Sachedisplay.o: $(srcdir)/display.c
41835486Sachesignals.o: $(srcdir)/signals.c
41935486Sacheutil.o: $(srcdir)/util.c
42035486Sachekill.o: $(srcdir)/kill.c
42135486Sacheundo.o: $(srcdir)/undo.c
42235486Sachemacro.o: $(srcdir)/macro.c
42335486Sacheinput.o: $(srcdir)/input.c
42435486Sachecallback.o: $(srcdir)/callback.c
42535486Sacheterminal.o: $(srcdir)/terminal.c
42635486Sachenls.o: $(srcdir)/nls.c
42735486Sachexmalloc.o: $(srcdir)/xmalloc.c
42835486Sachehistory.o: $(srcdir)/history.c
42935486Sachehistexpand.o: $(srcdir)/histexpand.c
43035486Sachehistfile.o: $(srcdir)/histfile.c
43135486Sachehistsearch.o: $(srcdir)/histsearch.c
43247558Sachesavestring.o: $(srcdir)/savestring.c
43335486Sacheshell.o: $(srcdir)/shell.c
43435486Sachetilde.o: $(srcdir)/tilde.c
43535486Sache
43635486Sachereadline.o: readline.c
43735486Sachevi_mode.o: vi_mode.c
43835486Sachefunmap.o: funmap.c
43935486Sachekeymaps.o: keymaps.c
44035486Sacheparens.o: parens.c
44135486Sachesearch.o: search.c
44235486Sacherltty.o: rltty.c
44375406Sachecompat.o: compat.c
44435486Sachecomplete.o: complete.c
44535486Sachebind.o: bind.c
44635486Sacheisearch.o: isearch.c
44735486Sachedisplay.o: display.c
44835486Sachesignals.o: signals.c
44935486Sacheutil.o: util.c
45035486Sachekill.o: kill.c
45135486Sacheundo.o: undo.c
45235486Sachemacro.o: macro.c
45335486Sacheinput.o: input.c
45435486Sachecallback.o: callback.c
45535486Sacheterminal.o: terminal.c
45635486Sachenls.o: nls.c
45735486Sachexmalloc.o: xmalloc.c
45835486Sachehistory.o: history.c
45935486Sachehistexpand.o: histexpand.c
46035486Sachehistfile.o: histfile.c
46135486Sachehistsearch.o: histsearch.c
46247558Sachesavestring.o: savestring.c
46335486Sacheshell.o: shell.c
46435486Sachetilde.o: tilde.c
465