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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-dev/] [fsf-gcc-snapshot-1-mar-12/] [or1k-gcc/] [libada/] [Makefile.in] - Diff between revs 729 and 783

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

Rev 729 Rev 783
# Makefile for libada.
# Makefile for libada.
#   Copyright 2003, 2004, 2009, 2010, 2011 Free Software Foundation, Inc.
#   Copyright 2003, 2004, 2009, 2010, 2011 Free Software Foundation, Inc.
#
#
# This file is free software; you can redistribute it and/or modify
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
# (at your option) any later version.
#
#
# This program is distributed in the hope that it will be useful,
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# You should have received a copy of the GNU General Public License
# along with this program; see the file COPYING3.  If not see
# along with this program; see the file COPYING3.  If not see
# .
# .
# Default target; must be first.
# Default target; must be first.
all: gnatlib
all: gnatlib
        $(MULTIDO) $(AM_MAKEFLAGS) DO=all multi-do # $(MAKE)
        $(MULTIDO) $(AM_MAKEFLAGS) DO=all multi-do # $(MAKE)
.PHONY: all
.PHONY: all
## Multilib support variables.
## Multilib support variables.
MULTISRCTOP =
MULTISRCTOP =
MULTIBUILDTOP =
MULTIBUILDTOP =
MULTIDIRS =
MULTIDIRS =
MULTISUBDIR =
MULTISUBDIR =
MULTIDO = true
MULTIDO = true
MULTICLEAN = true
MULTICLEAN = true
# Standard autoconf-set variables.
# Standard autoconf-set variables.
SHELL = @SHELL@
SHELL = @SHELL@
srcdir = @srcdir@
srcdir = @srcdir@
libdir = @libdir@
libdir = @libdir@
bindir = @bindir@
bindir = @bindir@
build = @build@
build = @build@
target = @target@
target = @target@
prefix = @prefix@
prefix = @prefix@
# Nonstandard autoconf-set variables.
# Nonstandard autoconf-set variables.
enable_shared = @enable_shared@
enable_shared = @enable_shared@
LN_S=@LN_S@
LN_S=@LN_S@
AWK=@AWK@
AWK=@AWK@
# Variables for the user (or the top level) to override.
# Variables for the user (or the top level) to override.
objext=.o
objext=.o
THREAD_KIND=native
THREAD_KIND=native
TRACE=no
TRACE=no
LDFLAGS=
LDFLAGS=
# The tedious process of getting CFLAGS right.
# The tedious process of getting CFLAGS right.
CFLAGS=-g
CFLAGS=-g
PICFLAG = @PICFLAG@
PICFLAG = @PICFLAG@
GNATLIBFLAGS= -W -Wall -gnatpg -nostdinc
GNATLIBFLAGS= -W -Wall -gnatpg -nostdinc
GNATLIBCFLAGS= -g -O2
GNATLIBCFLAGS= -g -O2
GNATLIBCFLAGS_FOR_C = -W -Wall $(GNATLIBCFLAGS) $(PICFLAG) \
GNATLIBCFLAGS_FOR_C = -W -Wall $(GNATLIBCFLAGS) $(PICFLAG) \
        -fexceptions -DIN_RTS @have_getipinfo@
        -fexceptions -DIN_RTS @have_getipinfo@
host_subdir = @host_subdir@
host_subdir = @host_subdir@
GCC_DIR=$(MULTIBUILDTOP)../../$(host_subdir)/gcc
GCC_DIR=$(MULTIBUILDTOP)../../$(host_subdir)/gcc
target_noncanonical:=@target_noncanonical@
target_noncanonical:=@target_noncanonical@
version := $(shell cat $(srcdir)/../gcc/BASE-VER)
version := $(shell cat $(srcdir)/../gcc/BASE-VER)
libsubdir := $(libdir)/gcc/$(target_noncanonical)/$(version)$(MULTISUBDIR)
libsubdir := $(libdir)/gcc/$(target_noncanonical)/$(version)$(MULTISUBDIR)
ADA_RTS_DIR=$(GCC_DIR)/ada/rts$(subst /,_,$(MULTISUBDIR))
ADA_RTS_DIR=$(GCC_DIR)/ada/rts$(subst /,_,$(MULTISUBDIR))
ADA_RTS_SUBDIR=./rts$(subst /,_,$(MULTISUBDIR))
ADA_RTS_SUBDIR=./rts$(subst /,_,$(MULTISUBDIR))
# exeext should not be used because it's the *host* exeext.  We're building
# exeext should not be used because it's the *host* exeext.  We're building
# a *target* library, aren't we?!?  Likewise for CC.  Still, provide bogus
# a *target* library, aren't we?!?  Likewise for CC.  Still, provide bogus
# definitions just in case something slips through the safety net provided
# definitions just in case something slips through the safety net provided
# by recursive make invocations in gcc/ada/Makefile.in
# by recursive make invocations in gcc/ada/Makefile.in
LIBADA_FLAGS_TO_PASS = \
LIBADA_FLAGS_TO_PASS = \
        "MAKEOVERRIDES=" \
        "MAKEOVERRIDES=" \
        "LDFLAGS=$(LDFLAGS)" \
        "LDFLAGS=$(LDFLAGS)" \
        "LN_S=$(LN_S)" \
        "LN_S=$(LN_S)" \
        "SHELL=$(SHELL)" \
        "SHELL=$(SHELL)" \
        "GNATLIBFLAGS=$(GNATLIBFLAGS) $(MULTIFLAGS)" \
        "GNATLIBFLAGS=$(GNATLIBFLAGS) $(MULTIFLAGS)" \
        "GNATLIBCFLAGS=$(GNATLIBCFLAGS) $(MULTIFLAGS)" \
        "GNATLIBCFLAGS=$(GNATLIBCFLAGS) $(MULTIFLAGS)" \
        "GNATLIBCFLAGS_FOR_C=$(GNATLIBCFLAGS_FOR_C) $(MULTIFLAGS)" \
        "GNATLIBCFLAGS_FOR_C=$(GNATLIBCFLAGS_FOR_C) $(MULTIFLAGS)" \
        "PICFLAG_FOR_TARGET=$(PICFLAG)" \
        "PICFLAG_FOR_TARGET=$(PICFLAG)" \
        "THREAD_KIND=$(THREAD_KIND)" \
        "THREAD_KIND=$(THREAD_KIND)" \
        "TRACE=$(TRACE)" \
        "TRACE=$(TRACE)" \
        "MULTISUBDIR=$(MULTISUBDIR)" \
        "MULTISUBDIR=$(MULTISUBDIR)" \
        "libsubdir=$(libsubdir)" \
        "libsubdir=$(libsubdir)" \
        "bindir=$(bindir)" \
        "bindir=$(bindir)" \
        "objext=$(objext)" \
        "objext=$(objext)" \
        "prefix=$(prefix)" \
        "prefix=$(prefix)" \
        "exeext=.exeext.should.not.be.used " \
        "exeext=.exeext.should.not.be.used " \
        'CC=the.host.compiler.should.not.be.needed' \
        'CC=the.host.compiler.should.not.be.needed' \
        "GCC_FOR_TARGET=$(CC)" \
        "GCC_FOR_TARGET=$(CC)" \
        "CFLAGS=$(CFLAGS)"
        "CFLAGS=$(CFLAGS)"
# Rules to build gnatlib.
# Rules to build gnatlib.
.PHONY: gnatlib gnatlib-plain gnatlib-sjlj gnatlib-zcx gnatlib-shared osconstool
.PHONY: gnatlib gnatlib-plain gnatlib-sjlj gnatlib-zcx gnatlib-shared osconstool
gnatlib: @default_gnatlib_target@
gnatlib: @default_gnatlib_target@
gnatlib-plain: osconstool $(GCC_DIR)/ada/Makefile
gnatlib-plain: osconstool $(GCC_DIR)/ada/Makefile
        test -f stamp-libada || \
        test -f stamp-libada || \
        $(MAKE) -C $(GCC_DIR)/ada $(LIBADA_FLAGS_TO_PASS) gnatlib \
        $(MAKE) -C $(GCC_DIR)/ada $(LIBADA_FLAGS_TO_PASS) gnatlib \
        && touch stamp-libada
        && touch stamp-libada
        -rm -rf adainclude
        -rm -rf adainclude
        -rm -rf adalib
        -rm -rf adalib
        $(LN_S) $(ADA_RTS_DIR) adainclude
        $(LN_S) $(ADA_RTS_DIR) adainclude
        $(LN_S) $(ADA_RTS_DIR) adalib
        $(LN_S) $(ADA_RTS_DIR) adalib
gnatlib-sjlj gnatlib-zcx gnatlib-shared: osconstool $(GCC_DIR)/ada/Makefile
gnatlib-sjlj gnatlib-zcx gnatlib-shared: osconstool $(GCC_DIR)/ada/Makefile
        test -f stamp-libada || \
        test -f stamp-libada || \
        $(MAKE) -C $(GCC_DIR)/ada $(LIBADA_FLAGS_TO_PASS) $@ \
        $(MAKE) -C $(GCC_DIR)/ada $(LIBADA_FLAGS_TO_PASS) $@ \
        && touch stamp-libada
        && touch stamp-libada
        -rm -rf adainclude
        -rm -rf adainclude
        -rm -rf adalib
        -rm -rf adalib
        $(LN_S) $(ADA_RTS_DIR) adainclude
        $(LN_S) $(ADA_RTS_DIR) adainclude
        $(LN_S) $(ADA_RTS_DIR) adalib
        $(LN_S) $(ADA_RTS_DIR) adalib
osconstool:
osconstool:
        $(MAKE) -C $(GCC_DIR)/ada $(LIBADA_FLAGS_TO_PASS) ./bldtools/oscons/xoscons
        $(MAKE) -C $(GCC_DIR)/ada $(LIBADA_FLAGS_TO_PASS) ./bldtools/oscons/xoscons
install-gnatlib: $(GCC_DIR)/ada/Makefile
install-gnatlib: $(GCC_DIR)/ada/Makefile
        $(MAKE) -C $(GCC_DIR)/ada $(LIBADA_FLAGS_TO_PASS) install-gnatlib
        $(MAKE) -C $(GCC_DIR)/ada $(LIBADA_FLAGS_TO_PASS) install-gnatlib
# Check uninstalled version.
# Check uninstalled version.
check:
check:
# Check installed version.
# Check installed version.
installcheck:
installcheck:
# Build info (none here).
# Build info (none here).
info:
info:
# Build DVI (none here).
# Build DVI (none here).
dvi:
dvi:
# Build PDF (none here).
# Build PDF (none here).
pdf:
pdf:
# Build html (none here).
# Build html (none here).
html:
html:
# Build TAGS (none here).
# Build TAGS (none here).
TAGS:
TAGS:
.PHONY: check installcheck info dvi pdf html
.PHONY: check installcheck info dvi pdf html
# Installation rules.
# Installation rules.
install: install-gnatlib
install: install-gnatlib
        $(MULTIDO) $(AM_MAKEFLAGS) DO=install multi-do # $(MAKE)
        $(MULTIDO) $(AM_MAKEFLAGS) DO=install multi-do # $(MAKE)
install-strip: install
install-strip: install
install-info:
install-info:
install-pdf:
install-pdf:
install-html:
install-html:
.PHONY: install install-strip install-info install-pdf install-html
.PHONY: install install-strip install-info install-pdf install-html
# Cleaning rules.
# Cleaning rules.
mostlyclean:
mostlyclean:
        $(MULTICLEAN) $(AM_MAKEFLAGS) DO=mostlyclean multi-clean # $(MAKE)
        $(MULTICLEAN) $(AM_MAKEFLAGS) DO=mostlyclean multi-clean # $(MAKE)
clean:
clean:
        $(MULTICLEAN) $(AM_MAKEFLAGS) DO=clean multi-clean # $(MAKE)
        $(MULTICLEAN) $(AM_MAKEFLAGS) DO=clean multi-clean # $(MAKE)
distclean:
distclean:
        $(MULTICLEAN) $(AM_MAKEFLAGS) DO=distclean multi-clean # $(MAKE)
        $(MULTICLEAN) $(AM_MAKEFLAGS) DO=distclean multi-clean # $(MAKE)
        $(RM) Makefile config.status config.log
        $(RM) Makefile config.status config.log
maintainer-clean:
maintainer-clean:
.PHONY: mostlyclean clean distclean maintainer-clean
.PHONY: mostlyclean clean distclean maintainer-clean
# Rules for rebuilding this Makefile.
# Rules for rebuilding this Makefile.
Makefile: $(srcdir)/Makefile.in config.status
Makefile: $(srcdir)/Makefile.in config.status
        CONFIG_FILES=$@ ; \
        CONFIG_FILES=$@ ; \
        CONFIG_HEADERS= ; \
        CONFIG_HEADERS= ; \
        $(SHELL) ./config.status
        $(SHELL) ./config.status
config.status: $(srcdir)/configure
config.status: $(srcdir)/configure
        $(SHELL) ./config.status --recheck
        $(SHELL) ./config.status --recheck
AUTOCONF = autoconf
AUTOCONF = autoconf
configure_deps = \
configure_deps = \
        $(srcdir)/configure.ac \
        $(srcdir)/configure.ac \
        $(srcdir)/../config/acx.m4 \
        $(srcdir)/../config/acx.m4 \
        $(srcdir)/../config/override.m4 \
        $(srcdir)/../config/override.m4 \
        $(srcdir)/../config/multi.m4
        $(srcdir)/../config/multi.m4
$(srcdir)/configure: @MAINT@ $(configure_deps)
$(srcdir)/configure: @MAINT@ $(configure_deps)
        cd $(srcdir) && $(AUTOCONF)
        cd $(srcdir) && $(AUTOCONF)
# Don't export variables to the environment, in order to not confuse
# Don't export variables to the environment, in order to not confuse
# configure.
# configure.
.NOEXPORT:
.NOEXPORT:
 
 

powered by: WebSVN 2.1.0

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