URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [gdb-5.0/] [readline/] [shlib/] [Makefile.in] - Rev 1771
Go to most recent revision | Compare with Previous | Blame | View Log
## -*- text -*- ### Makefile for the GNU readline library shared library support.## Copyright (C) 1998 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., 675 Mass Ave, Cambridge, MA 02139, USA.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 = mvSHELL = @MAKE_SHELL@host_os = @host_os@prefix = @prefix@exec_prefix = @exec_prefix@libdir = @libdir@CFLAGS = @CFLAGS@LOCAL_CFLAGS = @LOCAL_CFLAGS@ -DRL_LIBRARY_VERSION='"$(RL_LIBRARY_VERSION)"'CPPFLAGS = @CPPFLAGS@LDFLAGS = @LDFLAGS@ @LOCAL_LDFLAGS@ @CFLAGS@DEFS = @DEFS@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 = @SHLIB_XLDFLAGS@SHLIB_LIBS = @SHLIB_LIBS@SHLIB_LIBSUFF = @SHLIB_LIBSUFF@SHLIB_LIBVERSION = @SHLIB_LIBVERSION@SHLIB_STATUS = @SHLIB_STATUS@# shared library versioningSHLIB_MAJOR= 4# shared library systems like SVR4's do not use minor versionsSHLIB_MINOR= .0# For libraries which include headers from other libraries.INCLUDES = -I. -I.. -I$(topdir) -I$(includedir)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 = libreadline.$(SHLIB_LIBVERSION)SHARED_HISTORY = libhistory.$(SHLIB_LIBVERSION)SHARED_LIBS = $(SHARED_READLINE) $(SHARED_HISTORY)# 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# 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.hSHARED_HISTOBJ = history.so histexpand.so histfile.so histsearch.so shell.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 \nls.so xmalloc.so $(SHARED_HISTOBJ) $(SHARED_TILDEOBJ)##########################################################################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)installdirs: $(topdir)/support/mkdirs-$(SHELL) $(topdir)/support/mkdirs $(libdir)install: installdirs $(SHLIB_STATUS)$(SHELL) $(topdir)/support/shlib-install -O $(host_os) -d $(libdir) -i "$(INSTALL_DATA)" $(SHARED_HISTORY)$(SHELL) $(topdir)/support/shlib-install -O $(host_os) -d $(libdir) -i "$(INSTALL_DATA)" $(SHARED_READLINE)@echo install: you may need to run ldconfiguninstall:$(SHELL) $(topdir)/support/shlib-install -O $(host_os) -d $(libdir) -U $(SHARED_HISTORY)$(SHELL) $(topdir)/support/shlib-install -O $(host_os) -d $(libdir) -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)/tilde.h $(topdir)/history.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)/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)/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)/tilde.h $(topdir)/history.hfunmap.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.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 histlib.hhistexpand.so: ${BUILD_DIR}/config.hhistfile.so: $(topdir)/ansi_stdlib.hhistfile.so: $(topdir)/history.h histlib.hhistfile.so: ${BUILD_DIR}/config.hhistory.so: $(topdir)/ansi_stdlib.hhistory.so: $(topdir)/history.h histlib.hhistory.so: ${BUILD_DIR}/config.hhistsearch.so: $(topdir)/ansi_stdlib.hhistsearch.so: $(topdir)/history.h histlib.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)/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)/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: ${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.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.hnls.so: $(topdir)/ansi_stdlib.hnls.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.hparens.so: $(topdir)/rlconf.h ${BUILD_DIR}/config.hparens.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.hparens.so: $(topdir)/tilde.hreadline.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.hreadline.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.hreadline.so: $(topdir)/history.h $(topdir)/tilde.hreadline.so: $(topdir)/posixstat.h $(topdir)/ansi_stdlib.h $(topdir)/posixjmp.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.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.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.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.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)/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)/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.hxmalloc.so: ${BUILD_DIR}/config.hxmalloc.so: $(topdir)/ansi_stdlib.hreadline.so: $(topdir)/readline.cvi_mode.so: $(topdir)/vi_mode.cfunmap.so: $(topdir)/funmap.ckeymaps.so: $(topdir)/keymaps.cparens.so: $(topdir)/parens.csearch.so: $(topdir)/search.crltty.so: $(topdir)/rltty.ccomplete.so: $(topdir)/complete.cbind.so: $(topdir)/bind.cisearch.so: $(topdir)/isearch.cdisplay.so: $(topdir)/display.csignals.so: $(topdir)/signals.cutil.so: $(topdir)/util.ckill.so: $(topdir)/kill.cundo.so: $(topdir)/undo.cmacro.so: $(topdir)/macro.cinput.so: $(topdir)/input.ccallback.so: $(topdir)/callback.cterminal.so: $(topdir)/terminal.cnls.so: $(topdir)/nls.cxmalloc.so: $(topdir)/xmalloc.chistory.so: $(topdir)/history.chistexpand.so: $(topdir)/histexpand.chistfile.so: $(topdir)/histfile.chistsearch.so: $(topdir)/histsearch.csavestring.so: $(topdir)/savestring.cshell.so: $(topdir)/shell.ctilde.so: $(topdir)/tilde.creadline.so: readline.cvi_mode.so: vi_mode.cfunmap.so: funmap.ckeymaps.so: keymaps.cparens.so: parens.csearch.so: search.crltty.so: rltty.ccomplete.so: complete.cbind.so: bind.cisearch.so: isearch.cdisplay.so: display.csignals.so: signals.cutil.so: util.ckill.so: kill.cundo.so: undo.cmacro.so: macro.cinput.so: input.ccallback.so: callback.cterminal.so: terminal.cnls.so: nls.cxmalloc.so: xmalloc.chistory.so: history.chistexpand.so: histexpand.chistfile.so: histfile.chistsearch.so: histsearch.csavestring.so: savestring.cshell.so: shell.ctilde.so: tilde.c
Go to most recent revision | Compare with Previous | Blame | View Log
