File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / readline / Makefile.in
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Jul 30 08:16:45 2014 UTC (9 years, 10 months ago) by misho
Branches: readline, MAIN
CVS tags: v6_3p10_cross, v6_3p10, v6_3, p6, HEAD
readline 6.3

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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>