OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [libssp/] [Makefile.am] - Diff between revs 154 and 816

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 154 Rev 816
## Makefile for the toplevel directory of the libssp library.
## Makefile for the toplevel directory of the libssp library.
##
##
## Copyright (C) 2005
## Copyright (C) 2005
## Free Software Foundation, Inc.
## Free Software Foundation, Inc.
##
##
AUTOMAKE_OPTIONS = 1.9.5 foreign
AUTOMAKE_OPTIONS = 1.9.5 foreign
ACLOCAL_AMFLAGS = -I .. -I ../config
ACLOCAL_AMFLAGS = -I .. -I ../config
MAINT_CHARSET = latin1
MAINT_CHARSET = latin1
# May be used by various substitution variables.
# May be used by various substitution variables.
gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER)
gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER)
if LIBSSP_USE_SYMVER
if LIBSSP_USE_SYMVER
version_arg = -Wl,--version-script=$(srcdir)/ssp.map
version_arg = -Wl,--version-script=$(srcdir)/ssp.map
version_dep = $(srcdir)/ssp.map
version_dep = $(srcdir)/ssp.map
else
else
version_arg =
version_arg =
version_dep =
version_dep =
endif
endif
AM_CFLAGS = -Wall
AM_CFLAGS = -Wall
toolexeclib_LTLIBRARIES = libssp.la libssp_nonshared.la
toolexeclib_LTLIBRARIES = libssp.la libssp_nonshared.la
target_noncanonical = @target_noncanonical@
target_noncanonical = @target_noncanonical@
libsubincludedir = $(libdir)/gcc/$(target_noncanonical)/$(gcc_version)/include
libsubincludedir = $(libdir)/gcc/$(target_noncanonical)/$(gcc_version)/include
nobase_libsubinclude_HEADERS = ssp/ssp.h ssp/string.h ssp/stdio.h ssp/unistd.h
nobase_libsubinclude_HEADERS = ssp/ssp.h ssp/string.h ssp/stdio.h ssp/unistd.h
libssp_la_SOURCES = \
libssp_la_SOURCES = \
        ssp.c gets-chk.c memcpy-chk.c memmove-chk.c mempcpy-chk.c \
        ssp.c gets-chk.c memcpy-chk.c memmove-chk.c mempcpy-chk.c \
        memset-chk.c snprintf-chk.c sprintf-chk.c stpcpy-chk.c \
        memset-chk.c snprintf-chk.c sprintf-chk.c stpcpy-chk.c \
        strcat-chk.c strcpy-chk.c strncat-chk.c strncpy-chk.c \
        strcat-chk.c strcpy-chk.c strncat-chk.c strncpy-chk.c \
        vsnprintf-chk.c vsprintf-chk.c
        vsnprintf-chk.c vsprintf-chk.c
libssp_la_LIBADD =
libssp_la_LIBADD =
libssp_la_DEPENDENCIES = $(version_dep) $(libssp_la_LIBADD)
libssp_la_DEPENDENCIES = $(version_dep) $(libssp_la_LIBADD)
libssp_la_LDFLAGS = -version-info `grep -v '^\#' $(srcdir)/libtool-version` \
libssp_la_LDFLAGS = -version-info `grep -v '^\#' $(srcdir)/libtool-version` \
                    $(version_arg)
                    $(version_arg)
libssp_nonshared_la_SOURCES = \
libssp_nonshared_la_SOURCES = \
        ssp-local.c
        ssp-local.c
libssp_nonshared_la_CFLAGS = -prefer-pic
libssp_nonshared_la_CFLAGS = -prefer-pic
libssp_nonshared_la_LIBADD =
libssp_nonshared_la_LIBADD =
libssp_nonshared_la_DEPENDENCIES = $(libssp_nonshared_la_LIBADD)
libssp_nonshared_la_DEPENDENCIES = $(libssp_nonshared_la_LIBADD)
libssp_nonshared_la_LDFLAGS = -static
libssp_nonshared_la_LDFLAGS = -static
# XXX hack alert
# XXX hack alert
# From libffi/Makefile.am
# From libffi/Makefile.am
# Work around what appears to be a GNU make bug handling MAKEFLAGS
# Work around what appears to be a GNU make bug handling MAKEFLAGS
# values defined in terms of make variables, as is the case for CC and
# values defined in terms of make variables, as is the case for CC and
# friends when we are called from the top level Makefile.
# friends when we are called from the top level Makefile.
AM_MAKEFLAGS = \
AM_MAKEFLAGS = \
        "AR_FLAGS=$(AR_FLAGS)" \
        "AR_FLAGS=$(AR_FLAGS)" \
        "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
        "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
        "CFLAGS=$(CFLAGS)" \
        "CFLAGS=$(CFLAGS)" \
        "CXXFLAGS=$(CXXFLAGS)" \
        "CXXFLAGS=$(CXXFLAGS)" \
        "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
        "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
        "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
        "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
        "INSTALL=$(INSTALL)" \
        "INSTALL=$(INSTALL)" \
        "INSTALL_DATA=$(INSTALL_DATA)" \
        "INSTALL_DATA=$(INSTALL_DATA)" \
        "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
        "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
        "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
        "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
        "JC1FLAGS=$(JC1FLAGS)" \
        "JC1FLAGS=$(JC1FLAGS)" \
        "LDFLAGS=$(LDFLAGS)" \
        "LDFLAGS=$(LDFLAGS)" \
        "LIBCFLAGS=$(LIBCFLAGS)" \
        "LIBCFLAGS=$(LIBCFLAGS)" \
        "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
        "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
        "MAKE=$(MAKE)" \
        "MAKE=$(MAKE)" \
        "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
        "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
        "PICFLAG=$(PICFLAG)" \
        "PICFLAG=$(PICFLAG)" \
        "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
        "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
        "SHELL=$(SHELL)" \
        "SHELL=$(SHELL)" \
        "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
        "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
        "exec_prefix=$(exec_prefix)" \
        "exec_prefix=$(exec_prefix)" \
        "infodir=$(infodir)" \
        "infodir=$(infodir)" \
        "libdir=$(libdir)" \
        "libdir=$(libdir)" \
        "prefix=$(prefix)" \
        "prefix=$(prefix)" \
        "includedir=$(includedir)" \
        "includedir=$(includedir)" \
        "AR=$(AR)" \
        "AR=$(AR)" \
        "AS=$(AS)" \
        "AS=$(AS)" \
        "CC=$(CC)" \
        "CC=$(CC)" \
        "CXX=$(CXX)" \
        "CXX=$(CXX)" \
        "LD=$(LD)" \
        "LD=$(LD)" \
        "LIBCFLAGS=$(LIBCFLAGS)" \
        "LIBCFLAGS=$(LIBCFLAGS)" \
        "NM=$(NM)" \
        "NM=$(NM)" \
        "PICFLAG=$(PICFLAG)" \
        "PICFLAG=$(PICFLAG)" \
        "RANLIB=$(RANLIB)" \
        "RANLIB=$(RANLIB)" \
        "DESTDIR=$(DESTDIR)"
        "DESTDIR=$(DESTDIR)"
MAKEOVERRIDES=
MAKEOVERRIDES=
.PHONY: install-html
.PHONY: install-html
install-html:
install-html:
## ################################################################
## ################################################################
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.