File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / readline / Makefile.in
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Mar 17 01:01:01 2021 UTC (3 years, 3 months ago) by misho
Branches: readline, MAIN
CVS tags: v8_2p0, v8_1p0, HEAD
readline 8.1

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

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