URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gdb-6.8/] [readline/] [shlib/] [Makefile.in] - Rev 294
Go to most recent revision | Compare with Previous | Blame | View Log
## -*- text -*- ### Makefile for the GNU readline library shared library support.## Copyright (C) 1998-2003 Free Software Foundation, Inc.# This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2, or (at your option)# any later version.# This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the# GNU General Public License for more details.# You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.PACKAGE = @PACKAGE_NAME@VERSION = @PACKAGE_VERSION@PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@PACKAGE_NAME = @PACKAGE_NAME@PACKAGE_STRING = @PACKAGE_STRING@PACKAGE_VERSION = @PACKAGE_VERSION@RL_LIBRARY_VERSION = @LIBVERSION@RL_LIBRARY_NAME = readlinesrcdir = @srcdir@VPATH = .:@top_srcdir@topdir = @top_srcdir@BUILD_DIR = @BUILD_DIR@INSTALL = @INSTALL@INSTALL_PROGRAM = @INSTALL_PROGRAM@INSTALL_DATA = @INSTALL_DATA@CC = @CC@RANLIB = @RANLIB@AR = @AR@ARFLAGS = @ARFLAGS@RM = rm -fCP = cpMV = mvLN = lnSHELL = @MAKE_SHELL@host_os = @host_os@prefix = @prefix@exec_prefix = @exec_prefix@includedir = @includedir@bindir = @bindir@libdir = @libdir@datadir = @datadir@localedir = $(datadir)/locale# Support an alternate destination root directory for package buildingDESTDIR =CFLAGS = @CFLAGS@LOCAL_CFLAGS = @LOCAL_CFLAGS@ -DRL_LIBRARY_VERSION='"$(RL_LIBRARY_VERSION)"'CPPFLAGS = @CPPFLAGS@LDFLAGS = @LDFLAGS@ @LOCAL_LDFLAGS@ @CFLAGS@DEFS = @DEFS@ @CROSS_COMPILE@LOCAL_DEFS = @LOCAL_DEFS@## These values are generated for configure by ${topdir}/support/shobj-conf.# If your system is not supported by that script, but includes facilities for# dynamic loading of shared objects, please update the script and send the# changes to bash-maintainers@gnu.org.#SHOBJ_CC = @SHOBJ_CC@SHOBJ_CFLAGS = @SHOBJ_CFLAGS@SHOBJ_LD = @SHOBJ_LD@SHOBJ_LDFLAGS = @SHOBJ_LDFLAGS@SHOBJ_XLDFLAGS = @SHOBJ_XLDFLAGS@SHOBJ_LIBS = @SHOBJ_LIBS@SHLIB_XLDFLAGS = @LDFLAGS@ @SHLIB_XLDFLAGS@SHLIB_LIBS = @SHLIB_LIBS@SHLIB_DOT = @SHLIB_DOT@SHLIB_LIBPREF = @SHLIB_LIBPREF@SHLIB_LIBSUFF = @SHLIB_LIBSUFF@SHLIB_LIBVERSION = @SHLIB_LIBVERSION@SHLIB_DLLVERSION = @SHLIB_DLLVERSION@SHLIB_STATUS = @SHLIB_STATUS@TERMCAP_LIB = @TERMCAP_LIB@# shared library versioningSHLIB_MAJOR= @SHLIB_MAJOR@# shared library systems like SVR4's do not use minor versionsSHLIB_MINOR= .@SHLIB_MINOR@# For libraries which include headers from other libraries.INCLUDES = -I. -I.. -I$(topdir)CCFLAGS = $(DEFS) $(LOCAL_DEFS) $(CPPFLAGS) $(INCLUDES) $(LOCAL_CFLAGS) $(CFLAGS).SUFFIXES: .so.c.so:${RM} $@$(SHOBJ_CC) -c $(CCFLAGS) $(SHOBJ_CFLAGS) -o $*.o $<$(MV) $*.o $@# The name of the main library target.SHARED_READLINE = $(SHLIB_LIBPREF)readline$(SHLIB_DOT)$(SHLIB_LIBVERSION)SHARED_HISTORY = $(SHLIB_LIBPREF)history$(SHLIB_DOT)$(SHLIB_LIBVERSION)SHARED_LIBS = $(SHARED_READLINE) $(SHARED_HISTORY)WCWIDTH_OBJ = @WCWIDTH_OBJ@# The C code source files for this library.CSOURCES = $(topdir)/readline.c $(topdir)/funmap.c $(topdir)/keymaps.c \$(topdir)/vi_mode.c $(topdir)/parens.c $(topdir)/rltty.c \$(topdir)/complete.c $(topdir)/bind.c $(topdir)/isearch.c \$(topdir)/display.c $(topdir)/signals.c $(topdir)/emacs_keymap.c \$(topdir)/vi_keymap.c $(topdir)/util.c $(topdir)/kill.c \$(topdir)/undo.c $(topdir)/macro.c $(topdir)/input.c \$(topdir)/callback.c $(topdir)/terminal.c $(topdir)/xmalloc.c \$(topdir)/history.c $(topdir)/histsearch.c $(topdir)/histexpand.c \$(topdir)/histfile.c $(topdir)/nls.c $(topdir)/search.c \$(topdir)/shell.c $(topdir)/savestring.c $(topdir)/tilde.c \$(topdir)/text.c $(topdir)/misc.c $(topdir)/compat.c \$(topdir)/mbutil.c $(topdir)/support/wcwidth.c# The header files for this library.HSOURCES = readline.h rldefs.h chardefs.h keymaps.h history.h histlib.h \posixstat.h posixdir.h posixjmp.h tilde.h rlconf.h rltty.h \ansi_stdlib.h tcap.h xmalloc.h rlprivate.h rlshell.h rlmbutil.hSHARED_HISTOBJ = history.so histexpand.so histfile.so histsearch.so shell.so \mbutil.soSHARED_TILDEOBJ = tilde.soSHARED_OBJ = readline.so vi_mode.so funmap.so keymaps.so parens.so search.so \rltty.so complete.so bind.so isearch.so display.so signals.so \util.so kill.so undo.so macro.so input.so callback.so terminal.so \text.so nls.so misc.so xmalloc.so $(SHARED_HISTOBJ) $(SHARED_TILDEOBJ) \compat.so $(WCWIDTH_OBJ)##########################################################################all: $(SHLIB_STATUS)supported: $(SHARED_LIBS)unsupported:@echo "Your system and compiler (${host_os}-${CC}) are not supported by the"@echo "${topdir}/support/shobj-conf script."@echo "If your operating system provides facilities for creating"@echo "shared libraries, please update the script and re-run configure."@echo "Please send the changes you made to bash-maintainers@gnu.org"@echo "for inclusion in future bash and readline releases."$(SHARED_READLINE): $(SHARED_OBJ)$(RM) $@$(SHOBJ_LD) ${SHOBJ_LDFLAGS} ${SHLIB_XLDFLAGS} -o $@ $(SHARED_OBJ) $(SHLIB_LIBS)$(SHARED_HISTORY): $(SHARED_HISTOBJ) xmalloc.so$(RM) $@$(SHOBJ_LD) ${SHOBJ_LDFLAGS} ${SHLIB_XLDFLAGS} -o $@ $(SHARED_HISTOBJ) xmalloc.so $(SHLIB_LIBS)wcwidth.o: $(srcdir)/support/wcwidth.c$(RM) $@$(SHOBJ_CC) -c $(CCFLAGS) $(SHOBJ_FLAGS) $(srcdir)/support/wcwidth.c# Since tilde.c is shared between readline and bash, make sure we compile# it with the right flags when it's built as part of readlinetilde.so: tilde.c${RM} $@$(SHOBJ_CC) -c $(CCFLAGS) $(SHOBJ_CFLAGS) -DREADLINE_LIBRARY -c -o tilde.o $(topdir)/tilde.c$(MV) tilde.o $@installdirs: $(topdir)/support/mkdirs-$(SHELL) $(topdir)/support/mkdirs $(DESTDIR)$(libdir)install: installdirs $(SHLIB_STATUS)$(SHELL) $(topdir)/support/shlib-install -O $(host_os) -d $(DESTDIR)$(libdir) -b $(DESTDIR)$(bindir) -i "$(INSTALL_DATA)" $(SHARED_HISTORY)$(SHELL) $(topdir)/support/shlib-install -O $(host_os) -d $(DESTDIR)$(libdir) -b $(DESTDIR)$(bindir) -i "$(INSTALL_DATA)" $(SHARED_READLINE)@echo install: you may need to run ldconfiguninstall:$(SHELL) $(topdir)/support/shlib-install -O $(host_os) -d $(DESTDIR)$(libdir) -b $(DESTDIR)$(bindir) -U $(SHARED_HISTORY)$(SHELL) $(topdir)/support/shlib-install -O $(host_os) -d $(DESTDIR)$(libdir) -b $(DESTDIR)$(bindir) -U $(SHARED_READLINE)@echo uninstall: you may need to run ldconfigclean mostlyclean: force$(RM) $(SHARED_OBJ) $(SHARED_LIBS)distclean maintainer-clean: clean$(RM) Makefileforce:# Tell versions [3.59,3.63) of GNU make not to export all variables.# Otherwise a system limit (for SysV at least) may be exceeded..NOEXPORT:# Dependenciesbind.so: $(topdir)/ansi_stdlib.h $(topdir)/posixstat.hbind.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.hbind.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.hbind.so: $(topdir)/rltypedefs.hbind.so: $(topdir)/tilde.h $(topdir)/history.hcompat.so: $(topdir)/rlstdc.hcallback.so: $(topdir)/rlconf.hcallback.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.hcallback.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.hcallback.so: $(topdir)/rltypedefs.hcallback.so: $(topdir)/tilde.hcomplete.so: $(topdir)/ansi_stdlib.h posixdir.h $(topdir)/posixstat.hcomplete.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.hcomplete.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.hcomplete.so: $(topdir)/rltypedefs.hcomplete.so: $(topdir)/tilde.hdisplay.so: $(topdir)/ansi_stdlib.h $(topdir)/posixstat.hdisplay.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.hdisplay.so: $(topdir)/tcap.hdisplay.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.hdisplay.so: $(topdir)/rltypedefs.hdisplay.so: $(topdir)/tilde.h $(topdir)/history.hfunmap.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.hfunmap.so: $(topdir)/rltypedefs.hfunmap.so: $(topdir)/rlconf.h $(topdir)/ansi_stdlib.hfunmap.so: ${BUILD_DIR}/config.h $(topdir)/tilde.hhistexpand.so: $(topdir)/ansi_stdlib.hhistexpand.so: $(topdir)/history.h $(topdir)/histlib.h $(topdir)/rltypedefs.hhistexpand.so: ${BUILD_DIR}/config.hhistfile.so: $(topdir)/ansi_stdlib.hhistfile.so: $(topdir)/history.h $(topdir)/histlib.h $(topdir)/rltypedefs.hhistfile.so: ${BUILD_DIR}/config.hhistory.so: $(topdir)/ansi_stdlib.hhistory.so: $(topdir)/history.h $(topdir)/histlib.h $(topdir)/rltypedefs.hhistory.so: ${BUILD_DIR}/config.hhistsearch.so: $(topdir)/ansi_stdlib.hhistsearch.so: $(topdir)/history.h $(topdir)/histlib.h $(topdir)/rltypedefs.hhistsearch.so: ${BUILD_DIR}/config.hinput.so: $(topdir)/ansi_stdlib.hinput.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.hinput.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.hinput.so: $(topdir)/rltypedefs.hinput.so: $(topdir)/tilde.hisearch.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.hisearch.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.hisearch.so: $(topdir)/rltypedefs.hisearch.so: $(topdir)/ansi_stdlib.h $(topdir)/history.h $(topdir)/tilde.hkeymaps.so: emacs_keymap.c vi_keymap.ckeymaps.so: $(topdir)/keymaps.h $(topdir)/chardefs.h $(topdir)/rlconf.hkeymaps.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.hkeymaps.so: $(topdir)/rltypedefs.hkeymaps.so: ${BUILD_DIR}/config.h $(topdir)/ansi_stdlib.h $(topdir)/tilde.hkill.so: $(topdir)/ansi_stdlib.hkill.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.hkill.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.hkill.so: $(topdir)/tilde.h $(topdir)/history.h $(topdir)/rltypedefs.hmacro.so: $(topdir)/ansi_stdlib.hmacro.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.hmacro.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.hmacro.so: $(topdir)/tilde.h $(topdir)/history.h $(topdir)/rltypedefs.hmbutil.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.hmbutil.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/rltypedefs.hmbutil.so: $(topdir)/chardefs.h $(topdir)/rlstdc.hmisc.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.hmisc.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.hmisc.so: $(topdir)/rltypedefs.hmisc.so: $(topdir)/history.h $(topdir)/tilde.h $(topdir)/ansi_stdlib.hnls.so: $(topdir)/ansi_stdlib.hnls.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.hnls.o: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.hnls.o: $(topdir)/rltypedefs.hnls.o: $(topdir)/tilde.h $(topdir)/history.h $(topdir)/rlstdc.hparens.so: $(topdir)/rlconf.h ${BUILD_DIR}/config.hparens.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.hparens.so: $(topdir)/rltypedefs.hparens.so: $(topdir)/tilde.hrltty.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.hrltty.so: $(topdir)/rltty.h $(topdir)/tilde.hrltty.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.hrltty.so: $(topdir)/rltypedefs.hsearch.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.hsearch.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.hsearch.so: $(topdir)/ansi_stdlib.h $(topdir)/history.h $(topdir)/tilde.hsearch.so: $(topdir)/rltypedefs.hsignals.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.hsignals.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.hsignals.so: $(topdir)/history.h $(topdir)/tilde.hsignals.so: $(topdir)/rltypedefs.hterminal.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.hterminal.so: $(topdir)/tcap.hterminal.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.hterminal.so: $(topdir)/tilde.h $(topdir)/history.hterminal.so: $(topdir)/rltypedefs.htext.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.htext.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.htext.so: $(topdir)/rltypedefs.htext.so: $(topdir)/history.h $(topdir)/tilde.h $(topdir)/ansi_stdlib.htilde.so: $(topdir)/ansi_stdlib.h ${BUILD_DIR}/config.h $(topdir)/tilde.hundo.so: $(topdir)/ansi_stdlib.hundo.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.hundo.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.hundo.so: $(topdir)/rltypedefs.hundo.so: $(topdir)/tilde.h $(topdir)/history.hutil.so: $(topdir)/posixjmp.h $(topdir)/ansi_stdlib.hutil.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.hutil.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.hutil.so: $(topdir)/rltypedefs.h $(topdir)/tilde.hvi_mode.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.hvi_mode.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.hvi_mode.so: $(topdir)/history.h $(topdir)/ansi_stdlib.h $(topdir)/tilde.hvi_mode.so: $(topdir)/rltypedefs.hxmalloc.so: ${BUILD_DIR}/config.hxmalloc.so: $(topdir)/ansi_stdlib.hbind.so: $(topdir)/rlshell.hhistfile.so: $(topdir)/rlshell.hnls.so: $(topdir)/rlshell.hreadline.so: $(topdir)/rlshell.hshell.so: $(topdir)/rlshell.hterminal.so: $(topdir)/rlshell.hhistexpand.so: $(topdir)/rlshell.hbind.so: $(topdir)/rlprivate.hcallback.so: $(topdir)/rlprivate.hcomplete.so: $(topdir)/rlprivate.hdisplay.so: $(topdir)/rlprivate.hinput.so: $(topdir)/rlprivate.hisearch.so: $(topdir)/rlprivate.hkill.so: $(topdir)/rlprivate.hmacro.so: $(topdir)/rlprivate.hmbutil.so: $(topdir)/rlprivate.hmisc.so: $(topdir)/rlprivate.hnls.so: $(topdir)/rlprivate.hparens.so: $(topdir)/rlprivate.hreadline.so: $(topdir)/rlprivate.hrltty.so: $(topdir)/rlprivate.hsearch.so: $(topdir)/rlprivate.hsignals.so: $(topdir)/rlprivate.hterminal.so: $(topdir)/rlprivate.htext.so: $(topdir)/rlprivate.hundo.so: $(topdir)/rlprivate.hutil.so: $(topdir)/rlprivate.hvi_mode.so: $(topdir)/rlprivate.hbind.so: $(topdir)/xmalloc.hcomplete.so: $(topdir)/xmalloc.hdisplay.so: $(topdir)/xmalloc.hfunmap.so: $(topdir)/xmalloc.hhistexpand.so: $(topdir)/xmalloc.hhistfile.so: $(topdir)/xmalloc.hhistory.so: $(topdir)/xmalloc.hinput.so: $(topdir)/xmalloc.hisearch.so: $(topdir)/xmalloc.hkeymaps.so: $(topdir)/xmalloc.hkill.so: $(topdir)/xmalloc.hmacro.so: $(topdir)/xmalloc.hmbutil.so: $(topdir)/xmalloc.hmisc.so: $(topdir)/xmalloc.hreadline.so: $(topdir)/xmalloc.hsavestring.so: $(topdir)/xmalloc.hsearch.so: $(topdir)/xmalloc.hshell.so: $(topdir)/xmalloc.hterminal.so: $(topdir)/xmalloc.htext.so: $(topdir)/xmalloc.htilde.so: $(topdir)/xmalloc.hundo.so: $(topdir)/xmalloc.hutil.so: $(topdir)/xmalloc.hvi_mode.so: $(topdir)/xmalloc.hxmalloc.so: $(topdir)/xmalloc.hcomplete.o: $(topdir)/rlmbutil.hdisplay.o: $(topdir)/rlmbutil.hhistexpand.o: $(topdir)/rlmbutil.hinput.o: $(topdir)/rlmbutil.hisearch.o: $(topdir)/rlmbutil.hmbutil.o: $(topdir)/rlmbutil.hmisc.o: $(topdir)/rlmbutil.hreadline.o: $(topdir)/rlmbutil.hsearch.o: $(topdir)/rlmbutil.htext.o: $(topdir)/rlmbutil.hvi_mode.o: $(topdir)/rlmbutil.hbind.so: $(topdir)/bind.ccallback.so: $(topdir)/callback.ccompat.so: $(topdir)/compat.ccomplete.so: $(topdir)/complete.cdisplay.so: $(topdir)/display.cfunmap.so: $(topdir)/funmap.cinput.so: $(topdir)/input.cisearch.so: $(topdir)/isearch.ckeymaps.so: $(topdir)/keymaps.c $(topdir)/emacs_keymap.c $(topdir)/vi_keymap.ckill.so: $(topdir)/kill.cmacro.so: $(topdir)/macro.cmbutil.so: $(topdir)/mbutil.cmisc.so: $(topdir)/mbutil.cnls.so: $(topdir)/nls.cparens.so: $(topdir)/parens.creadline.so: $(topdir)/readline.crltty.so: $(topdir)/rltty.csavestring.so: $(topdir)/savestring.csearch.so: $(topdir)/search.cshell.so: $(topdir)/shell.csignals.so: $(topdir)/signals.cterminal.so: $(topdir)/terminal.ctext.so: $(topdir)/text.ctilde.so: $(topdir)/tilde.cundo.so: $(topdir)/undo.cutil.so: $(topdir)/util.cvi_mode.so: $(topdir)/vi_mode.cxmalloc.so: $(topdir)/xmalloc.chistexpand.so: $(topdir)/histexpand.chistfile.so: $(topdir)/histfile.chistory.so: $(topdir)/history.chistsearch.so: $(topdir)/histsearch.cbind.so: bind.ccallback.so: callback.ccomapt.so: compat.ccomplete.so: complete.cdisplay.so: display.cfunmap.so: funmap.cinput.so: input.cisearch.so: isearch.ckeymaps.so: keymaps.c emacs_keymap.c vi_keymap.ckill.so: kill.cmacro.so: macro.cmbutil.so: mbutil.cmisc.so: misc.cnls.so: nls.cparens.so: parens.creadline.so: readline.crltty.so: rltty.csavestring.so: savestring.csearch.so: search.csignals.so: signals.cshell.so: shell.cterminal.so: terminal.ctext.so: text.ctilde.so: tilde.cundo.so: undo.cutil.so: util.cvi_mode.so: vi_mode.cxmalloc.so: xmalloc.chistexpand.so: histexpand.chistfile.so: histfile.chistory.so: history.chistsearch.so: histsearch.c
Go to most recent revision | Compare with Previous | Blame | View Log
