Annotation of embedaddon/readline/shlib/Makefile.in, revision 1.1.1.1

1.1       misho       1: ## -*- text -*- ##
                      2: # Makefile for the GNU readline library shared library support.
                      3: #
                      4: # Copyright (C) 1998-2009 Free Software Foundation, Inc.
                      5: 
                      6: #   This program is free software: you can redistribute it and/or modify
                      7: #   it under the terms of the GNU General Public License as published by
                      8: #   the Free Software Foundation, either version 3 of the License, or
                      9: #   (at your option) any later version.
                     10: 
                     11: #   This program is distributed in the hope that it will be useful,
                     12: #   but WITHOUT ANY WARRANTY; without even the implied warranty of
                     13: #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     14: #   GNU General Public License for more details.
                     15: 
                     16: #   You should have received a copy of the GNU General Public License
                     17: #   along with this program.  If not, see <http://www.gnu.org/licenses/>.
                     18: 
                     19: PACKAGE = @PACKAGE_NAME@
                     20: VERSION = @PACKAGE_VERSION@
                     21: 
                     22: PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
                     23: PACKAGE_NAME = @PACKAGE_NAME@
                     24: PACKAGE_STRING = @PACKAGE_STRING@
                     25: PACKAGE_VERSION = @PACKAGE_VERSION@
                     26: 
                     27: RL_LIBRARY_VERSION = @LIBVERSION@
                     28: RL_LIBRARY_NAME = readline
                     29: 
                     30: datarootdir = @datarootdir@
                     31: 
                     32: srcdir = @srcdir@
                     33: VPATH = @top_srcdir@
                     34: topdir = @top_srcdir@
                     35: BUILD_DIR = @BUILD_DIR@
                     36: 
                     37: INSTALL = @INSTALL@
                     38: INSTALL_PROGRAM = @INSTALL_PROGRAM@
                     39: INSTALL_DATA = @INSTALL_DATA@
                     40: 
                     41: CC = @CC@
                     42: RANLIB = @RANLIB@
                     43: AR = @AR@
                     44: ARFLAGS = @ARFLAGS@
                     45: RM = rm -f
                     46: CP = cp
                     47: MV = mv
                     48: LN = ln
                     49: 
                     50: SHELL = @MAKE_SHELL@
                     51: 
                     52: host_os = @host_os@
                     53: host_vendor = @host_vendor@
                     54: 
                     55: prefix = @prefix@
                     56: exec_prefix = @exec_prefix@
                     57: includedir = @includedir@
                     58: bindir = @bindir@
                     59: libdir = @libdir@
                     60: datadir = @datadir@
                     61: localedir = @localedir@
                     62: 
                     63: # Support an alternate destination root directory for package building
                     64: DESTDIR =
                     65: 
                     66: CFLAGS = @CFLAGS@
                     67: LOCAL_CFLAGS = @LOCAL_CFLAGS@ -DRL_LIBRARY_VERSION='"$(RL_LIBRARY_VERSION)"'
                     68: CPPFLAGS = @CPPFLAGS@
                     69: LDFLAGS = @LDFLAGS@ @LOCAL_LDFLAGS@ @CFLAGS@
                     70: 
                     71: DEFS = @DEFS@ @CROSS_COMPILE@
                     72: LOCAL_DEFS = @LOCAL_DEFS@
                     73: 
                     74: #
                     75: # These values are generated for configure by ${topdir}/support/shobj-conf.
                     76: # If your system is not supported by that script, but includes facilities for
                     77: # dynamic loading of shared objects, please update the script and send the
                     78: # changes to bash-maintainers@gnu.org.
                     79: #
                     80: SHOBJ_CC = @SHOBJ_CC@
                     81: SHOBJ_CFLAGS = @SHOBJ_CFLAGS@
                     82: SHOBJ_LD = @SHOBJ_LD@
                     83: 
                     84: SHOBJ_LDFLAGS = @SHOBJ_LDFLAGS@
                     85: SHOBJ_XLDFLAGS = @SHOBJ_XLDFLAGS@
                     86: SHOBJ_LIBS = @SHOBJ_LIBS@
                     87: 
                     88: SHLIB_XLDFLAGS = @LDFLAGS@ @SHLIB_XLDFLAGS@
                     89: SHLIB_LIBS = @SHLIB_LIBS@
                     90: 
                     91: SHLIB_DOT = @SHLIB_DOT@
                     92: SHLIB_LIBPREF = @SHLIB_LIBPREF@
                     93: SHLIB_LIBSUFF = @SHLIB_LIBSUFF@
                     94: 
                     95: SHLIB_LIBVERSION = @SHLIB_LIBVERSION@
                     96: SHLIB_DLLVERSION = @SHLIB_DLLVERSION@
                     97: 
                     98: SHLIB_STATUS = @SHLIB_STATUS@
                     99: 
                    100: TERMCAP_LIB = @TERMCAP_LIB@
                    101: 
                    102: # shared library versioning
                    103: SHLIB_MAJOR=           @SHLIB_MAJOR@
                    104: # shared library systems like SVR4's do not use minor versions
                    105: SHLIB_MINOR=           .@SHLIB_MINOR@
                    106: 
                    107: # For libraries which include headers from other libraries.
                    108: INCLUDES = -I. -I.. -I$(topdir)
                    109: 
                    110: CCFLAGS = $(DEFS) $(LOCAL_DEFS) $(CPPFLAGS) $(INCLUDES) $(LOCAL_CFLAGS) $(CFLAGS)
                    111: 
                    112: .SUFFIXES:     .so
                    113: 
                    114: .c.so:
                    115:        ${RM} $@
                    116:        $(SHOBJ_CC) -c $(CCFLAGS) $(SHOBJ_CFLAGS) -o $*.o $< 
                    117:        $(MV) $*.o $@
                    118: 
                    119: # The name of the main library target.
                    120: 
                    121: SHARED_READLINE = $(SHLIB_LIBPREF)readline$(SHLIB_DOT)$(SHLIB_LIBVERSION)
                    122: SHARED_HISTORY = $(SHLIB_LIBPREF)history$(SHLIB_DOT)$(SHLIB_LIBVERSION)
                    123: SHARED_LIBS = $(SHARED_READLINE) $(SHARED_HISTORY)
                    124: 
                    125: # The C code source files for this library.
                    126: CSOURCES = $(topdir)/readline.c $(topdir)/funmap.c $(topdir)/keymaps.c \
                    127:           $(topdir)/vi_mode.c $(topdir)/parens.c $(topdir)/rltty.c \
                    128:           $(topdir)/complete.c $(topdir)/bind.c $(topdir)/isearch.c \
                    129:           $(topdir)/display.c $(topdir)/signals.c $(topdir)/emacs_keymap.c \
                    130:           $(topdir)/vi_keymap.c $(topdir)/util.c $(topdir)/kill.c \
                    131:           $(topdir)/undo.c $(topdir)/macro.c $(topdir)/input.c \
                    132:           $(topdir)/callback.c $(topdir)/terminal.c $(topdir)/xmalloc.c $(topdir)/xfree.c \
                    133:           $(topdir)/history.c $(topdir)/histsearch.c $(topdir)/histexpand.c \
                    134:           $(topdir)/histfile.c $(topdir)/nls.c $(topdir)/search.c \
                    135:           $(topdir)/shell.c $(topdir)/savestring.c $(topdir)/tilde.c \
                    136:           $(topdir)/text.c $(topdir)/misc.c $(topdir)/compat.c \
                    137:           $(topdir)/colors.c $(topdir)/parse-colors.c \
                    138:           $(topdir)/mbutil.c $(topdir)/xfree.c
                    139: 
                    140: # The header files for this library.
                    141: HSOURCES = $(topdir)/readline.h $(topdir)/rldefs.h $(topdir)/chardefs.h \
                    142:           $(topdir)/keymaps.h $(topdir)/history.h $(topdir)/histlib.h \
                    143:           $(topdir)/posixstat.h $(topdir)/posixdir.h $(topdir)/posixjmp.h \
                    144:           $(topdir)/tilde.h $(topdir)/rlconf.h $(topdir)/rltty.h \
                    145:           $(topdir)/ansi_stdlib.h $(topdir)/tcap.h $(topdir)/rlstdc.h \
                    146:           $(topdir)/xmalloc.h $(topdir)/rlprivate.h $(topdir)/rlshell.h \
                    147:           $(topdir)/rltypedefs.h $(topdir)/rlmbutil.h \
                    148:            $(topdir)/colors.h $(topdir)/parse-colors.h
                    149: 
                    150: SHARED_HISTOBJ = history.so histexpand.so histfile.so histsearch.so shell.so \
                    151:                 mbutil.so
                    152: SHARED_TILDEOBJ = tilde.so
                    153: SHARED_COLORSOBJ = colors.so parse-colors.so
                    154: SHARED_OBJ = readline.so vi_mode.so funmap.so keymaps.so parens.so search.so \
                    155:          rltty.so complete.so bind.so isearch.so display.so signals.so \
                    156:          util.so kill.so undo.so macro.so input.so callback.so terminal.so \
                    157:          text.so nls.so misc.so \
                    158:          $(SHARED_HISTOBJ) $(SHARED_TILDEOBJ) $(SHARED_COLORSOBJ) \
                    159:          xmalloc.so xfree.so compat.so
                    160: 
                    161: ##########################################################################
                    162: 
                    163: all: $(SHLIB_STATUS)
                    164: 
                    165: supported: $(SHARED_LIBS)
                    166: 
                    167: unsupported:
                    168:        @echo "Your system and compiler (${host_os}-${CC}) are not supported by the"
                    169:        @echo "${topdir}/support/shobj-conf script."
                    170:        @echo "If your operating system provides facilities for creating"
                    171:        @echo "shared libraries, please update the script and re-run configure."
                    172:        @echo "Please send the changes you made to bash-maintainers@gnu.org"
                    173:        @echo "for inclusion in future bash and readline releases."
                    174: 
                    175: $(SHARED_READLINE):    $(SHARED_OBJ)
                    176:        $(RM) $@
                    177:        $(SHOBJ_LD) ${SHOBJ_LDFLAGS} ${SHLIB_XLDFLAGS} -o $@ $(SHARED_OBJ) $(SHLIB_LIBS)
                    178: 
                    179: $(SHARED_HISTORY):     $(SHARED_HISTOBJ) xmalloc.so xfree.so
                    180:        $(RM) $@
                    181:        $(SHOBJ_LD) ${SHOBJ_LDFLAGS} ${SHLIB_XLDFLAGS} -o $@ $(SHARED_HISTOBJ) xmalloc.so xfree.so $(SHLIB_LIBS)
                    182: 
                    183: # Since tilde.c is shared between readline and bash, make sure we compile 
                    184: # it with the right flags when it's built as part of readline
                    185: tilde.so:        tilde.c
                    186:        ${RM} $@
                    187:        $(SHOBJ_CC) -c $(CCFLAGS) $(SHOBJ_CFLAGS) -DREADLINE_LIBRARY -c -o tilde.o $(topdir)/tilde.c
                    188:        $(MV) tilde.o $@
                    189: 
                    190: installdirs: $(topdir)/support/mkdirs
                    191:        -$(SHELL) $(topdir)/support/mkdirs $(DESTDIR)$(libdir)
                    192:        -$(SHELL) $(topdir)/support/mkdirs $(DESTDIR)$(bindir)
                    193: 
                    194: install-supported: installdirs $(SHLIB_STATUS)
                    195:        $(SHELL) $(topdir)/support/shlib-install -O $(host_os) -V $(host_vendor) -d $(DESTDIR)$(libdir) -b $(DESTDIR)$(bindir) -i "$(INSTALL_DATA)" $(SHARED_HISTORY)
                    196:        $(SHELL) $(topdir)/support/shlib-install -O $(host_os) -V $(host_vendor) -d $(DESTDIR)$(libdir) -b $(DESTDIR)$(bindir) -i "$(INSTALL_DATA)" $(SHARED_READLINE)
                    197:        @echo install: you may need to run ldconfig
                    198: 
                    199: install-unsupported:
                    200:        @echo install: shared libraries not supported
                    201: 
                    202: install: install-$(SHLIB_STATUS)
                    203: 
                    204: uninstall-supported:
                    205:        $(SHELL) $(topdir)/support/shlib-install -O $(host_os) -V $(host_vendor) -d $(DESTDIR)$(libdir) -b $(DESTDIR)$(bindir) -U $(SHARED_HISTORY)
                    206:        $(SHELL) $(topdir)/support/shlib-install -O $(host_os) -V $(host_vendor) -d $(DESTDIR)$(libdir) -b $(DESTDIR)$(bindir) -U $(SHARED_READLINE)
                    207:        @echo uninstall: you may need to run ldconfig
                    208: 
                    209: uninstall-unsupported:
                    210:        @echo uninstall: shared libraries not supported
                    211: 
                    212: uninstall: uninstall-$(SHLIB_STATUS)
                    213: 
                    214: clean mostlyclean:     force
                    215:        $(RM) $(SHARED_OBJ) $(SHARED_LIBS)
                    216: 
                    217: distclean maintainer-clean: clean
                    218:        $(RM) Makefile
                    219: 
                    220: force:
                    221: 
                    222: # Tell versions [3.59,3.63) of GNU make not to export all variables.
                    223: # Otherwise a system limit (for SysV at least) may be exceeded.
                    224: .NOEXPORT:
                    225: 
                    226: # Dependencies
                    227: bind.so: $(topdir)/ansi_stdlib.h $(topdir)/posixstat.h
                    228: bind.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
                    229: bind.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
                    230: bind.so: $(topdir)/rltypedefs.h
                    231: bind.so: $(topdir)/tilde.h $(topdir)/history.h
                    232: compat.so: $(topdir)/rlstdc.h
                    233: callback.so: $(topdir)/rlconf.h
                    234: callback.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h
                    235: callback.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
                    236: callback.so: $(topdir)/rltypedefs.h
                    237: callback.so: $(topdir)/tilde.h
                    238: complete.so: $(topdir)/ansi_stdlib.h $(topdir)/posixdir.h $(topdir)/posixstat.h
                    239: complete.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
                    240: complete.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
                    241: complete.so: $(topdir)/rltypedefs.h
                    242: complete.so: $(topdir)/tilde.h
                    243: display.so: $(topdir)/ansi_stdlib.h $(topdir)/posixstat.h
                    244: display.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
                    245: display.so: $(topdir)/tcap.h
                    246: display.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
                    247: display.so: $(topdir)/rltypedefs.h
                    248: display.so: $(topdir)/tilde.h $(topdir)/history.h
                    249: funmap.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
                    250: funmap.so: $(topdir)/rltypedefs.h
                    251: funmap.so: $(topdir)/rlconf.h $(topdir)/ansi_stdlib.h
                    252: funmap.so: ${BUILD_DIR}/config.h $(topdir)/tilde.h
                    253: histexpand.so: $(topdir)/ansi_stdlib.h
                    254: histexpand.so: $(topdir)/history.h $(topdir)/histlib.h $(topdir)/rltypedefs.h
                    255: histexpand.so: ${BUILD_DIR}/config.h
                    256: histfile.so: $(topdir)/ansi_stdlib.h
                    257: histfile.so: $(topdir)/history.h $(topdir)/histlib.h $(topdir)/rltypedefs.h
                    258: histfile.so: ${BUILD_DIR}/config.h
                    259: history.so: $(topdir)/ansi_stdlib.h
                    260: history.so: $(topdir)/history.h $(topdir)/histlib.h $(topdir)/rltypedefs.h
                    261: history.so: ${BUILD_DIR}/config.h
                    262: histsearch.so: $(topdir)/ansi_stdlib.h
                    263: histsearch.so: $(topdir)/history.h $(topdir)/histlib.h $(topdir)/rltypedefs.h
                    264: histsearch.so: ${BUILD_DIR}/config.h
                    265: input.so: $(topdir)/ansi_stdlib.h
                    266: input.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
                    267: input.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
                    268: input.so: $(topdir)/rltypedefs.h
                    269: input.so: $(topdir)/tilde.h
                    270: isearch.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
                    271: isearch.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
                    272: isearch.so: $(topdir)/rltypedefs.h
                    273: isearch.so: $(topdir)/ansi_stdlib.h $(topdir)/history.h $(topdir)/tilde.h
                    274: keymaps.so: $(topdir)/keymaps.h $(topdir)/chardefs.h $(topdir)/rlconf.h
                    275: keymaps.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
                    276: keymaps.so: $(topdir)/rltypedefs.h
                    277: keymaps.so: ${BUILD_DIR}/config.h $(topdir)/ansi_stdlib.h $(topdir)/tilde.h
                    278: kill.so: $(topdir)/ansi_stdlib.h
                    279: kill.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
                    280: kill.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
                    281: kill.so: $(topdir)/tilde.h $(topdir)/history.h  $(topdir)/rltypedefs.h
                    282: macro.so: $(topdir)/ansi_stdlib.h
                    283: macro.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
                    284: macro.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
                    285: macro.so: $(topdir)/tilde.h $(topdir)/history.h $(topdir)/rltypedefs.h
                    286: mbutil.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
                    287: mbutil.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/rltypedefs.h
                    288: mbutil.so: $(topdir)/chardefs.h $(topdir)/rlstdc.h
                    289: misc.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
                    290: misc.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
                    291: misc.so: $(topdir)/rltypedefs.h
                    292: misc.so: $(topdir)/history.h $(topdir)/tilde.h $(topdir)/ansi_stdlib.h
                    293: nls.so: $(topdir)/ansi_stdlib.h
                    294: nls.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
                    295: nls.o: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
                    296: nls.o: $(topdir)/rltypedefs.h
                    297: nls.o: $(topdir)/tilde.h $(topdir)/history.h $(topdir)/rlstdc.h  
                    298: parens.so: $(topdir)/rlconf.h ${BUILD_DIR}/config.h
                    299: parens.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
                    300: parens.so: $(topdir)/rltypedefs.h
                    301: parens.so: $(topdir)/tilde.h
                    302: rltty.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
                    303: rltty.so: $(topdir)/rltty.h $(topdir)/tilde.h
                    304: rltty.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
                    305: rltty.so: $(topdir)/rltypedefs.h
                    306: search.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
                    307: search.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
                    308: search.so: $(topdir)/ansi_stdlib.h $(topdir)/history.h $(topdir)/tilde.h
                    309: search.so: $(topdir)/rltypedefs.h
                    310: signals.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
                    311: signals.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
                    312: signals.so: $(topdir)/history.h $(topdir)/tilde.h
                    313: signals.so: $(topdir)/rltypedefs.h
                    314: terminal.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
                    315: terminal.so: $(topdir)/tcap.h
                    316: terminal.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
                    317: terminal.so: $(topdir)/tilde.h $(topdir)/history.h
                    318: terminal.so: $(topdir)/rltypedefs.h
                    319: text.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
                    320: text.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
                    321: text.so: $(topdir)/rltypedefs.h
                    322: text.so: $(topdir)/history.h $(topdir)/tilde.h $(topdir)/ansi_stdlib.h
                    323: tilde.so: $(topdir)/ansi_stdlib.h ${BUILD_DIR}/config.h $(topdir)/tilde.h
                    324: undo.so: $(topdir)/ansi_stdlib.h
                    325: undo.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
                    326: undo.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
                    327: undo.so: $(topdir)/rltypedefs.h
                    328: undo.so: $(topdir)/tilde.h $(topdir)/history.h
                    329: util.so: $(topdir)/posixjmp.h $(topdir)/ansi_stdlib.h
                    330: util.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
                    331: util.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
                    332: util.so: $(topdir)/rltypedefs.h $(topdir)/tilde.h
                    333: vi_mode.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
                    334: vi_mode.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
                    335: vi_mode.so: $(topdir)/history.h $(topdir)/ansi_stdlib.h $(topdir)/tilde.h
                    336: vi_mode.so: $(topdir)/rltypedefs.h
                    337: xfree.so: ${BUILD_DIR}/config.h
                    338: xfree.so: $(topdir)/ansi_stdlib.h
                    339: xmalloc.so: ${BUILD_DIR}/config.h
                    340: xmalloc.so: $(topdir)/ansi_stdlib.h
                    341: 
                    342: bind.so: $(topdir)/rlshell.h
                    343: histfile.so: $(topdir)/rlshell.h
                    344: nls.so: $(topdir)/rlshell.h
                    345: readline.so: $(topdir)/rlshell.h
                    346: shell.so: $(topdir)/rlshell.h
                    347: terminal.so: $(topdir)/rlshell.h
                    348: histexpand.so: $(topdir)/rlshell.h
                    349: 
                    350: colors.so: $(BUILD_DIR)/config.h $(topdir)/colors.h
                    351: colors.so: $(topdir)/rlconf.h 
                    352: colors.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/rltypedefs.h
                    353: colors.so: $(topdir)/chardefs.h $(topdir)/tilde.h $(topdir)/rlstdc.h
                    354: colors.so: $(topdir)/ansi_stdlib.h $(topdir)/posixstat.h
                    355: parse-colors.so: $(BUILD_DIR)/config.h $(topdir)/colors.h $(topdir)/parse-colors.h
                    356: parse-colors.so: $(topdir)/rldefs.h $(topdir)/rlconf.h 
                    357: parse-colors.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/rltypedefs.h
                    358: parse-colors.so: $(topdir)/chardefs.h $(topdir)/tilde.h $(topdir)/rlstdc.h
                    359: 
                    360: bind.so: $(topdir)/rlprivate.h
                    361: callback.so: $(topdir)/rlprivate.h
                    362: complete.so: $(topdir)/rlprivate.h
                    363: display.so: $(topdir)/rlprivate.h
                    364: input.so: $(topdir)/rlprivate.h
                    365: isearch.so: $(topdir)/rlprivate.h
                    366: kill.so: $(topdir)/rlprivate.h
                    367: macro.so: $(topdir)/rlprivate.h
                    368: mbutil.so: $(topdir)/rlprivate.h
                    369: misc.so: $(topdir)/rlprivate.h
                    370: nls.so: $(topdir)/rlprivate.h   
                    371: parens.so: $(topdir)/rlprivate.h
                    372: readline.so: $(topdir)/rlprivate.h
                    373: rltty.so: $(topdir)/rlprivate.h 
                    374: search.so: $(topdir)/rlprivate.h
                    375: signals.so: $(topdir)/rlprivate.h
                    376: terminal.so: $(topdir)/rlprivate.h
                    377: text.so: $(topdir)/rlprivate.h
                    378: undo.so: $(topdir)/rlprivate.h
                    379: util.so: $(topdir)/rlprivate.h
                    380: vi_mode.so: $(topdir)/
                    381: colors.so: $(topdir)/rlprivate.h
                    382: parse-colors.so: $(topdir)/rlprivate.h
                    383: 
                    384: bind.so: $(topdir)/xmalloc.h
                    385: callback.so: $(topdir)/xmalloc.h
                    386: complete.so: $(topdir)/xmalloc.h
                    387: display.so: $(topdir)/xmalloc.h
                    388: funmap.so: $(topdir)/xmalloc.h
                    389: histexpand.so: $(topdir)/xmalloc.h
                    390: histfile.so: $(topdir)/xmalloc.h
                    391: history.so: $(topdir)/xmalloc.h
                    392: input.so: $(topdir)/xmalloc.h
                    393: isearch.so: $(topdir)/xmalloc.h
                    394: keymaps.so: $(topdir)/xmalloc.h
                    395: kill.so: $(topdir)/xmalloc.h
                    396: macro.so: $(topdir)/xmalloc.h
                    397: mbutil.so: $(topdir)/xmalloc.h
                    398: misc.so: $(topdir)/xmalloc.h
                    399: readline.so: $(topdir)/xmalloc.h
                    400: savestring.so: $(topdir)/xmalloc.h
                    401: search.so: $(topdir)/xmalloc.h
                    402: shell.so: $(topdir)/xmalloc.h
                    403: terminal.so: $(topdir)/xmalloc.h
                    404: text.so: $(topdir)/xmalloc.h
                    405: tilde.so: $(topdir)/xmalloc.h
                    406: undo.so: $(topdir)/xmalloc.h
                    407: util.so: $(topdir)/xmalloc.h
                    408: vi_mode.so: $(topdir)/xmalloc.h
                    409: xfree.so: $(topdir)/xmalloc.h
                    410: xmalloc.so: $(topdir)/xmalloc.h
                    411: colors.so: $(topdir)/xmalloc.h
                    412: parse-colors.so: $(topdir)/xmalloc.h
                    413: 
                    414: complete.so: $(topdir)/rlmbutil.h
                    415: display.so: $(topdir)/rlmbutil.h
                    416: histexpand.so: $(topdir)/rlmbutil.h
                    417: input.so: $(topdir)/rlmbutil.h
                    418: isearch.so: $(topdir)/rlmbutil.h
                    419: mbutil.so: $(topdir)/rlmbutil.h
                    420: misc.so: $(topdir)/rlmbutil.h
                    421: readline.so: $(topdir)/rlmbutil.h
                    422: search.so: $(topdir)/rlmbutil.h
                    423: text.so: $(topdir)/rlmbutil.h
                    424: vi_mode.so: $(topdir)/rlmbutil.h
                    425: colors.so: $(topdir)/rlmbutil.h
                    426: parse-colors.so: $(topdir)/rlmbutil.h
                    427: 
                    428: bind.so: $(topdir)/bind.c
                    429: callback.so: $(topdir)/callback.c
                    430: compat.so: $(topdir)/compat.c
                    431: complete.so: $(topdir)/complete.c
                    432: display.so: $(topdir)/display.c
                    433: funmap.so: $(topdir)/funmap.c
                    434: input.so: $(topdir)/input.c
                    435: isearch.so: $(topdir)/isearch.c
                    436: keymaps.so: $(topdir)/keymaps.c $(topdir)/emacs_keymap.c $(topdir)/vi_keymap.c
                    437: kill.so: $(topdir)/kill.c
                    438: macro.so: $(topdir)/macro.c
                    439: mbutil.so: $(topdir)/mbutil.c
                    440: misc.so: $(topdir)/mbutil.c
                    441: nls.so: $(topdir)/nls.c
                    442: parens.so: $(topdir)/parens.c
                    443: readline.so: $(topdir)/readline.c
                    444: rltty.so: $(topdir)/rltty.c
                    445: savestring.so: $(topdir)/savestring.c
                    446: search.so: $(topdir)/search.c
                    447: shell.so: $(topdir)/shell.c
                    448: signals.so: $(topdir)/signals.c
                    449: terminal.so: $(topdir)/terminal.c
                    450: text.so: $(topdir)/text.c
                    451: tilde.so: $(topdir)/tilde.c
                    452: undo.so: $(topdir)/undo.c
                    453: util.so: $(topdir)/util.c
                    454: vi_mode.so: $(topdir)/vi_mode.c
                    455: xfree.so: $(topdir)/xfree.c
                    456: xmalloc.so: $(topdir)/xmalloc.c
                    457: 
                    458: histexpand.so: $(topdir)/histexpand.c
                    459: histfile.so: $(topdir)/histfile.c
                    460: history.so: $(topdir)/history.c
                    461: histsearch.so: $(topdir)/histsearch.c
                    462: 
                    463: bind.so: bind.c
                    464: callback.so: callback.c
                    465: comapt.so: compat.c
                    466: complete.so: complete.c
                    467: display.so: display.c
                    468: funmap.so: funmap.c
                    469: input.so: input.c
                    470: isearch.so: isearch.c
                    471: keymaps.so: keymaps.c emacs_keymap.c vi_keymap.c
                    472: kill.so: kill.c
                    473: macro.so: macro.c
                    474: mbutil.so: mbutil.c
                    475: misc.so: misc.c
                    476: nls.so: nls.c
                    477: parens.so: parens.c
                    478: readline.so: readline.c
                    479: rltty.so: rltty.c
                    480: savestring.so: savestring.c
                    481: search.so: search.c
                    482: signals.so: signals.c
                    483: shell.so: shell.c
                    484: terminal.so: terminal.c
                    485: text.so: text.c
                    486: tilde.so: tilde.c
                    487: undo.so: undo.c
                    488: util.so: util.c
                    489: vi_mode.so: vi_mode.c
                    490: xfree.so: xfree.c
                    491: xmalloc.so: xmalloc.c
                    492: 
                    493: colors.so: colors.c
                    494: parse-colors.so: parse-colors.c
                    495: 
                    496: histexpand.so: histexpand.c
                    497: histfile.so: histfile.c
                    498: history.so: history.c
                    499: histsearch.so: histsearch.c

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