Line 1... |
Line 1... |
|
|
# Makefile.in is generated from Makefile.tpl by 'autogen Makefile.def'.
|
# Makefile.in is generated from Makefile.tpl by 'autogen Makefile.def'.
|
#
|
#
|
# Makefile for directory with subdirs to build.
|
# Makefile for directory with subdirs to build.
|
# Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
|
# Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
|
# 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation
|
# 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
|
|
# Free Software Foundation
|
#
|
#
|
# 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 2 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; if not, write to the Free Software
|
# along with this program; see the file COPYING3. If not see
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
# .
|
#
|
#
|
|
|
|
# First, test for a proper version of make, but only where one is required.
|
|
|
|
@if gcc
|
|
ifeq (,$(.VARIABLES)) # The variable .VARIABLES, new with 3.80, is never empty.
|
|
$(error GNU make version 3.80 or newer is required.)
|
|
endif
|
|
@endif gcc
|
|
|
# -------------------------------
|
# -------------------------------
|
# Standard Autoconf-set variables
|
# Standard Autoconf-set variables
|
# -------------------------------
|
# -------------------------------
|
VPATH=@srcdir@
|
VPATH=@srcdir@
|
|
|
Line 95... |
Line 104... |
|
|
# This is the name of the environment variable used for the path to
|
# This is the name of the environment variable used for the path to
|
# the libraries.
|
# the libraries.
|
RPATH_ENVVAR = @RPATH_ENVVAR@
|
RPATH_ENVVAR = @RPATH_ENVVAR@
|
|
|
|
# On targets where RPATH_ENVVAR is PATH, a subdirectory of the GCC build path
|
|
# is used instead of the directory itself to avoid including built
|
|
# executables in PATH.
|
|
GCC_SHLIB_SUBDIR = @GCC_SHLIB_SUBDIR@
|
|
|
# Build programs are put under this directory.
|
# Build programs are put under this directory.
|
BUILD_SUBDIR = @build_subdir@
|
BUILD_SUBDIR = @build_subdir@
|
# This is set by the configure script to the arguments to use when configuring
|
# This is set by the configure script to the arguments to use when configuring
|
# directories built for the build system.
|
# directories built for the build system.
|
BUILD_CONFIGARGS = @build_configargs@ --with-build-subdir="$(BUILD_SUBDIR)"
|
BUILD_CONFIGARGS = @build_configargs@ --with-build-subdir="$(BUILD_SUBDIR)"
|
|
|
|
# Linker flags to use on the host, for stage1 or when not
|
|
# bootstrapping.
|
|
STAGE1_LDFLAGS = @stage1_ldflags@
|
|
|
|
# Libraries to use on the host, for stage1 or when not bootstrapping.
|
|
STAGE1_LIBS = @stage1_libs@
|
|
|
|
# Linker flags to use for stage2 and later.
|
|
POSTSTAGE1_LDFLAGS = @poststage1_ldflags@
|
|
|
|
# Libraries to use for stage2 and later.
|
|
POSTSTAGE1_LIBS = @poststage1_libs@
|
|
|
# This is the list of variables to export in the environment when
|
# This is the list of variables to export in the environment when
|
# configuring any subdirectory. It must also be exported whenever
|
# configuring any subdirectory. It must also be exported whenever
|
# recursing into a build directory in case that directory's Makefile
|
# recursing into a build directory in case that directory's Makefile
|
# re-runs configure.
|
# re-runs configure.
|
BASE_EXPORTS = \
|
BASE_EXPORTS = \
|
FLEX="$(FLEX)"; export FLEX; \
|
FLEX="$(FLEX)"; export FLEX; \
|
LEX="$(LEX)"; export LEX; \
|
LEX="$(LEX)"; export LEX; \
|
BISON="$(BISON)"; export BISON; \
|
BISON="$(BISON)"; export BISON; \
|
YACC="$(YACC)"; export YACC; \
|
YACC="$(YACC)"; export YACC; \
|
M4="$(M4)"; export M4; \
|
M4="$(M4)"; export M4; \
|
|
SED="$(SED)"; export SED; \
|
|
AWK="$(AWK)"; export AWK; \
|
MAKEINFO="$(MAKEINFO)"; export MAKEINFO;
|
MAKEINFO="$(MAKEINFO)"; export MAKEINFO;
|
|
|
# This is the list of variables to export in the environment when
|
# This is the list of variables to export in the environment when
|
# configuring subdirectories for the build system.
|
# configuring subdirectories for the build system.
|
BUILD_EXPORTS = \
|
BUILD_EXPORTS = \
|
Line 134... |
Line 163... |
NM="$(NM_FOR_BUILD)"; export NM; \
|
NM="$(NM_FOR_BUILD)"; export NM; \
|
RANLIB="$(RANLIB_FOR_BUILD)"; export RANLIB; \
|
RANLIB="$(RANLIB_FOR_BUILD)"; export RANLIB; \
|
WINDRES="$(WINDRES_FOR_BUILD)"; export WINDRES; \
|
WINDRES="$(WINDRES_FOR_BUILD)"; export WINDRES; \
|
WINDMC="$(WINDMC_FOR_BUILD)"; export WINDMC;
|
WINDMC="$(WINDMC_FOR_BUILD)"; export WINDMC;
|
|
|
|
# These variables must be set on the make command line for directories
|
|
# built for the build system to override those in BASE_FLAGS_TO_PASSS.
|
|
EXTRA_BUILD_FLAGS = \
|
|
CFLAGS="$(CFLAGS_FOR_BUILD)" \
|
|
LDFLAGS="$(LDFLAGS_FOR_BUILD)"
|
|
|
# This is the list of directories to built for the host system.
|
# This is the list of directories to built for the host system.
|
SUBDIRS = @configdirs@
|
SUBDIRS = @configdirs@
|
# This is set by the configure script to the arguments to use when configuring
|
# This is set by the configure script to the arguments to use when configuring
|
# directories built for the host system.
|
# directories built for the host system.
|
HOST_CONFIGARGS = @host_configargs@
|
HOST_CONFIGARGS = @host_configargs@
|
Line 148... |
Line 183... |
# configuring subdirectories for the host system. We need to pass
|
# configuring subdirectories for the host system. We need to pass
|
# some to the GCC configure because of its hybrid host/target nature.
|
# some to the GCC configure because of its hybrid host/target nature.
|
HOST_EXPORTS = \
|
HOST_EXPORTS = \
|
$(BASE_EXPORTS) \
|
$(BASE_EXPORTS) \
|
CC="$(CC)"; export CC; \
|
CC="$(CC)"; export CC; \
|
|
ADA_CFLAGS="$(ADA_CFLAGS)"; export ADA_CFLAGS; \
|
CFLAGS="$(CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(CFLAGS)"; export CFLAGS; \
|
CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
|
CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
|
CXX="$(CXX)"; export CXX; \
|
CXX="$(CXX)"; export CXX; \
|
CXXFLAGS="$(CXXFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(CXXFLAGS)"; export CXXFLAGS; \
|
|
GCJ="$(GCJ)"; export GCJ; \
|
|
GFORTRAN="$(GFORTRAN)"; export GFORTRAN; \
|
AR="$(AR)"; export AR; \
|
AR="$(AR)"; export AR; \
|
AS="$(AS)"; export AS; \
|
AS="$(AS)"; export AS; \
|
CC_FOR_BUILD="$(CC_FOR_BUILD)"; export CC_FOR_BUILD; \
|
CC_FOR_BUILD="$(CC_FOR_BUILD)"; export CC_FOR_BUILD; \
|
DLLTOOL="$(DLLTOOL)"; export DLLTOOL; \
|
DLLTOOL="$(DLLTOOL)"; export DLLTOOL; \
|
LD="$(LD)"; export LD; \
|
LD="$(LD)"; export LD; \
|
LDFLAGS="$(LDFLAGS)"; export LDFLAGS; \
|
LDFLAGS="$(STAGE1_LDFLAGS) $(LDFLAGS)"; export LDFLAGS; \
|
NM="$(NM)"; export NM; \
|
NM="$(NM)"; export NM; \
|
RANLIB="$(RANLIB)"; export RANLIB; \
|
RANLIB="$(RANLIB)"; export RANLIB; \
|
WINDRES="$(WINDRES)"; export WINDRES; \
|
WINDRES="$(WINDRES)"; export WINDRES; \
|
WINDMC="$(WINDMC)"; export WINDMC; \
|
WINDMC="$(WINDMC)"; export WINDMC; \
|
OBJCOPY="$(OBJCOPY)"; export OBJCOPY; \
|
OBJCOPY="$(OBJCOPY)"; export OBJCOPY; \
|
Line 172... |
Line 210... |
LD_FOR_TARGET="$(LD_FOR_TARGET)"; export LD_FOR_TARGET; \
|
LD_FOR_TARGET="$(LD_FOR_TARGET)"; export LD_FOR_TARGET; \
|
NM_FOR_TARGET="$(NM_FOR_TARGET)"; export NM_FOR_TARGET; \
|
NM_FOR_TARGET="$(NM_FOR_TARGET)"; export NM_FOR_TARGET; \
|
OBJDUMP_FOR_TARGET="$(OBJDUMP_FOR_TARGET)"; export OBJDUMP_FOR_TARGET; \
|
OBJDUMP_FOR_TARGET="$(OBJDUMP_FOR_TARGET)"; export OBJDUMP_FOR_TARGET; \
|
RANLIB_FOR_TARGET="$(RANLIB_FOR_TARGET)"; export RANLIB_FOR_TARGET; \
|
RANLIB_FOR_TARGET="$(RANLIB_FOR_TARGET)"; export RANLIB_FOR_TARGET; \
|
TOPLEVEL_CONFIGURE_ARGUMENTS="$(TOPLEVEL_CONFIGURE_ARGUMENTS)"; export TOPLEVEL_CONFIGURE_ARGUMENTS; \
|
TOPLEVEL_CONFIGURE_ARGUMENTS="$(TOPLEVEL_CONFIGURE_ARGUMENTS)"; export TOPLEVEL_CONFIGURE_ARGUMENTS; \
|
|
HOST_LIBS="$(STAGE1_LIBS)"; export HOST_LIBS; \
|
GMPLIBS="$(HOST_GMPLIBS)"; export GMPLIBS; \
|
GMPLIBS="$(HOST_GMPLIBS)"; export GMPLIBS; \
|
GMPINC="$(HOST_GMPINC)"; export GMPINC; \
|
GMPINC="$(HOST_GMPINC)"; export GMPINC; \
|
|
PPLLIBS="$(HOST_PPLLIBS)"; export PPLLIBS; \
|
|
PPLINC="$(HOST_PPLINC)"; export PPLINC; \
|
|
CLOOGLIBS="$(HOST_CLOOGLIBS)"; export CLOOGLIBS; \
|
|
CLOOGINC="$(HOST_CLOOGINC)"; export CLOOGINC; \
|
@if gcc-bootstrap
|
@if gcc-bootstrap
|
$(RPATH_ENVVAR)=`echo "$(TARGET_LIB_PATH)$$$(RPATH_ENVVAR)" | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; export $(RPATH_ENVVAR); \
|
$(RPATH_ENVVAR)=`echo "$(TARGET_LIB_PATH)$$$(RPATH_ENVVAR)" | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; export $(RPATH_ENVVAR); \
|
@endif gcc-bootstrap
|
@endif gcc-bootstrap
|
$(RPATH_ENVVAR)=`echo "$(HOST_LIB_PATH)$$$(RPATH_ENVVAR)" | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; export $(RPATH_ENVVAR);
|
$(RPATH_ENVVAR)=`echo "$(HOST_LIB_PATH)$$$(RPATH_ENVVAR)" | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; export $(RPATH_ENVVAR);
|
|
|
# Similar, for later GCC stages.
|
# Similar, for later GCC stages.
|
POSTSTAGE1_HOST_EXPORTS = \
|
POSTSTAGE1_HOST_EXPORTS = \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
CC="$(STAGE_CC_WRAPPER) $$r/$(HOST_SUBDIR)/prev-gcc/xgcc$(exeext) \
|
CC="$(STAGE_CC_WRAPPER) $$r/$(HOST_SUBDIR)/prev-gcc/xgcc$(exeext) \
|
-B$$r/$(HOST_SUBDIR)/prev-gcc/ -B$(build_tooldir)/bin/"; export CC; \
|
-B$$r/$(HOST_SUBDIR)/prev-gcc/ -B$(build_tooldir)/bin/ \
|
CC_FOR_BUILD="$(STAGE_CC_WRAPPER) \
|
$(XGCC_FLAGS_FOR_TARGET) $$TFLAGS"; export CC; \
|
$$r/$(HOST_SUBDIR)/prev-gcc/xgcc$(exeext) \
|
CC_FOR_BUILD="$$CC"; export CC_FOR_BUILD; \
|
-B$$r/$(HOST_SUBDIR)/prev-gcc/ \
|
CXX="$(STAGE_CC_WRAPPER) $$r/$(HOST_SUBDIR)/prev-gcc/g++$(exeext) \
|
-B$(build_tooldir)/bin/"; export CC_FOR_BUILD; \
|
-B$$r/$(HOST_SUBDIR)/prev-gcc/ -B$(build_tooldir)/bin/ -nostdinc++ \
|
LDFLAGS="$(BOOT_LDFLAGS)"; export LDFLAGS;
|
-I$$r/prev-$(TARGET_SUBDIR)/libstdc++-v3/include/$(TARGET_SUBDIR) \
|
|
-I$$r/prev-$(TARGET_SUBDIR)/libstdc++-v3/include \
|
|
-I$$r/$(srcdir)/libstdc++-v3/libsupc++ \
|
|
-L$$r/prev-$(TARGET_SUBDIR)/libstdc++-v3/src/.libs"; export CXX; \
|
|
CXX_FOR_BUILD="$$CXX"; export CXX_FOR_BUILD; \
|
|
GNATBIND="$$r/$(HOST_SUBDIR)/prev-gcc/gnatbind"; export GNATBIND; \
|
|
LDFLAGS="$(POSTSTAGE1_LDFLAGS) $(BOOT_LDFLAGS)"; export LDFLAGS; \
|
|
HOST_LIBS="$(POSTSTAGE1_LIBS)"; export HOST_LIBS;
|
|
|
# Target libraries are put under this directory:
|
# Target libraries are put under this directory:
|
TARGET_SUBDIR = @target_subdir@
|
TARGET_SUBDIR = @target_subdir@
|
# This is set by the configure script to the arguments to use when configuring
|
# This is set by the configure script to the arguments to use when configuring
|
# directories built for the target.
|
# directories built for the target.
|
Line 201... |
Line 251... |
# configuring subdirectories for the host system.
|
# configuring subdirectories for the host system.
|
BASE_TARGET_EXPORTS = \
|
BASE_TARGET_EXPORTS = \
|
$(BASE_EXPORTS) \
|
$(BASE_EXPORTS) \
|
AR="$(AR_FOR_TARGET)"; export AR; \
|
AR="$(AR_FOR_TARGET)"; export AR; \
|
AS="$(COMPILER_AS_FOR_TARGET)"; export AS; \
|
AS="$(COMPILER_AS_FOR_TARGET)"; export AS; \
|
CC="$(CC_FOR_TARGET)"; export CC; \
|
CC="$(CC_FOR_TARGET) $(XGCC_FLAGS_FOR_TARGET) $$TFLAGS"; export CC; \
|
CFLAGS="$(CFLAGS_FOR_TARGET) $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
|
CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
|
CPPFLAGS="$(CPPFLAGS_FOR_TARGET)"; export CPPFLAGS; \
|
CPPFLAGS="$(CPPFLAGS_FOR_TARGET)"; export CPPFLAGS; \
|
CXXFLAGS="$(CXXFLAGS_FOR_TARGET) $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
GCJ="$(GCJ_FOR_TARGET)"; export GCJ; \
|
GCJ="$(GCJ_FOR_TARGET) $(XGCC_FLAGS_FOR_TARGET) $$TFLAGS"; export GCJ; \
|
GFORTRAN="$(GFORTRAN_FOR_TARGET)"; export GFORTRAN; \
|
GFORTRAN="$(GFORTRAN_FOR_TARGET) $(XGCC_FLAGS_FOR_TARGET) $$TFLAGS"; export GFORTRAN; \
|
DLLTOOL="$(DLLTOOL_FOR_TARGET)"; export DLLTOOL; \
|
DLLTOOL="$(DLLTOOL_FOR_TARGET)"; export DLLTOOL; \
|
LD="$(COMPILER_LD_FOR_TARGET)"; export LD; \
|
LD="$(COMPILER_LD_FOR_TARGET)"; export LD; \
|
LDFLAGS="$(LDFLAGS_FOR_TARGET)"; export LDFLAGS; \
|
LDFLAGS="$(LDFLAGS_FOR_TARGET)"; export LDFLAGS; \
|
LIPO="$(LIPO_FOR_TARGET)"; export LIPO; \
|
LIPO="$(LIPO_FOR_TARGET)"; export LIPO; \
|
NM="$(COMPILER_NM_FOR_TARGET)"; export NM; \
|
NM="$(COMPILER_NM_FOR_TARGET)"; export NM; \
|
Line 223... |
Line 273... |
$(RPATH_ENVVAR)=`echo "$(HOST_LIB_PATH)$(TARGET_LIB_PATH)$$$(RPATH_ENVVAR)" | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; export $(RPATH_ENVVAR);
|
$(RPATH_ENVVAR)=`echo "$(HOST_LIB_PATH)$(TARGET_LIB_PATH)$$$(RPATH_ENVVAR)" | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; export $(RPATH_ENVVAR);
|
|
|
RAW_CXX_TARGET_EXPORTS = \
|
RAW_CXX_TARGET_EXPORTS = \
|
$(BASE_TARGET_EXPORTS) \
|
$(BASE_TARGET_EXPORTS) \
|
CXX_FOR_TARGET="$(RAW_CXX_FOR_TARGET)"; export CXX_FOR_TARGET; \
|
CXX_FOR_TARGET="$(RAW_CXX_FOR_TARGET)"; export CXX_FOR_TARGET; \
|
CXX="$(RAW_CXX_FOR_TARGET)"; export CXX;
|
CXX="$(RAW_CXX_FOR_TARGET) $(XGCC_FLAGS_FOR_TARGET) $$TFLAGS"; export CXX;
|
|
|
NORMAL_TARGET_EXPORTS = \
|
NORMAL_TARGET_EXPORTS = \
|
$(BASE_TARGET_EXPORTS) \
|
$(BASE_TARGET_EXPORTS) \
|
CXX="$(CXX_FOR_TARGET)"; export CXX;
|
CXX="$(CXX_FOR_TARGET) $(XGCC_FLAGS_FOR_TARGET) $$TFLAGS"; export CXX;
|
|
|
# Where to find GMP
|
# Where to find GMP
|
HOST_GMPLIBS = @gmplibs@
|
HOST_GMPLIBS = @gmplibs@
|
HOST_GMPINC = @gmpinc@
|
HOST_GMPINC = @gmpinc@
|
|
|
|
# Where to find PPL
|
|
HOST_PPLLIBS = @ppllibs@
|
|
HOST_PPLINC = @pplinc@
|
|
|
|
# Where to find CLOOG
|
|
HOST_CLOOGLIBS = @clooglibs@
|
|
HOST_CLOOGINC = @clooginc@
|
|
|
# ----------------------------------------------
|
# ----------------------------------------------
|
# Programs producing files for the BUILD machine
|
# Programs producing files for the BUILD machine
|
# ----------------------------------------------
|
# ----------------------------------------------
|
|
|
SHELL = @config_shell@
|
SHELL = @config_shell@
|
Line 274... |
Line 332... |
|
|
# Flags to pass to stage2 and later makes. They are defined
|
# Flags to pass to stage2 and later makes. They are defined
|
# here so that they can be overridden by Makefile fragments.
|
# here so that they can be overridden by Makefile fragments.
|
BOOT_CFLAGS= -g -O2
|
BOOT_CFLAGS= -g -O2
|
BOOT_LDFLAGS=
|
BOOT_LDFLAGS=
|
|
BOOT_ADAFLAGS=-gnatpg -gnata
|
|
|
|
AWK = @AWK@
|
|
SED = @SED@
|
BISON = @BISON@
|
BISON = @BISON@
|
YACC = @YACC@
|
YACC = @YACC@
|
FLEX = @FLEX@
|
FLEX = @FLEX@
|
LEX = @LEX@
|
LEX = @LEX@
|
M4 = @M4@
|
M4 = @M4@
|
Line 317... |
Line 378... |
CFLAGS = @CFLAGS@
|
CFLAGS = @CFLAGS@
|
LDFLAGS = @LDFLAGS@
|
LDFLAGS = @LDFLAGS@
|
LIBCFLAGS = $(CFLAGS)
|
LIBCFLAGS = $(CFLAGS)
|
CXXFLAGS = @CXXFLAGS@
|
CXXFLAGS = @CXXFLAGS@
|
LIBCXXFLAGS = $(CXXFLAGS) -fno-implicit-templates
|
LIBCXXFLAGS = $(CXXFLAGS) -fno-implicit-templates
|
PICFLAG =
|
|
|
TFLAGS =
|
|
|
|
# Defaults for all stages; some are overridden below.
|
|
|
|
STAGE_CFLAGS = $(BOOT_CFLAGS)
|
|
STAGE_TFLAGS = $(TFLAGS)
|
|
STAGE_CONFIGURE_FLAGS=@stage2_werror_flag@
|
|
|
|
|
|
# Defaults for stage 1; some are overridden below.
|
|
STAGE1_CFLAGS = $(STAGE_CFLAGS)
|
|
STAGE1_TFLAGS = $(STAGE_TFLAGS)
|
|
STAGE1_CONFIGURE_FLAGS = $(STAGE_CONFIGURE_FLAGS)
|
|
|
|
# Defaults for stage 2; some are overridden below.
|
|
STAGE2_CFLAGS = $(STAGE_CFLAGS)
|
|
STAGE2_TFLAGS = $(STAGE_TFLAGS)
|
|
STAGE2_CONFIGURE_FLAGS = $(STAGE_CONFIGURE_FLAGS)
|
|
|
|
# Defaults for stage 3; some are overridden below.
|
|
STAGE3_CFLAGS = $(STAGE_CFLAGS)
|
|
STAGE3_TFLAGS = $(STAGE_TFLAGS)
|
|
STAGE3_CONFIGURE_FLAGS = $(STAGE_CONFIGURE_FLAGS)
|
|
|
|
# Defaults for stage 4; some are overridden below.
|
|
STAGE4_CFLAGS = $(STAGE_CFLAGS)
|
|
STAGE4_TFLAGS = $(STAGE_TFLAGS)
|
|
STAGE4_CONFIGURE_FLAGS = $(STAGE_CONFIGURE_FLAGS)
|
|
|
|
# Defaults for stage profile; some are overridden below.
|
|
STAGEprofile_CFLAGS = $(STAGE_CFLAGS)
|
|
STAGEprofile_TFLAGS = $(STAGE_TFLAGS)
|
|
STAGEprofile_CONFIGURE_FLAGS = $(STAGE_CONFIGURE_FLAGS)
|
|
|
|
# Defaults for stage feedback; some are overridden below.
|
|
STAGEfeedback_CFLAGS = $(STAGE_CFLAGS)
|
|
STAGEfeedback_TFLAGS = $(STAGE_TFLAGS)
|
|
STAGEfeedback_CONFIGURE_FLAGS = $(STAGE_CONFIGURE_FLAGS)
|
|
|
|
|
# Only build the C compiler for stage1, because that is the only one that
|
# Only build the C compiler for stage1, because that is the only one that
|
# we can guarantee will build with the native compiler, and also it is the
|
# we can guarantee will build with the native compiler, and also it is the
|
# only thing useful for building stage2. STAGE1_CFLAGS (via CFLAGS),
|
# only thing useful for building stage2. STAGE1_CFLAGS (via CFLAGS),
|
# MAKEINFO and MAKEINFOFLAGS are explicitly passed here to make them
|
# MAKEINFO and MAKEINFOFLAGS are explicitly passed here to make them
|
# overrideable (for a bootstrap build stage1 also builds gcc.info).
|
# overrideable (for a bootstrap build stage1 also builds gcc.info).
|
|
|
|
STAGE1_CFLAGS = @stage1_cflags@
|
STAGE1_CHECKING=@stage1_checking@
|
STAGE1_CHECKING=@stage1_checking@
|
STAGE1_LANGUAGES=@stage1_languages@
|
STAGE1_LANGUAGES=@stage1_languages@
|
|
# * We force-disable intermodule optimizations, even if
|
|
# --enable-intermodule was passed, since the installed compiler
|
|
# probably can't handle them. Luckily, autoconf always respects
|
|
# the last argument when conflicting --enable arguments are passed.
|
|
# * Likewise, we force-disable coverage flags, since the installed
|
|
# compiler probably has never heard of them.
|
|
STAGE1_CONFIGURE_FLAGS = --disable-intermodule $(STAGE1_CHECKING) \
|
|
--disable-coverage --enable-languages="$(STAGE1_LANGUAGES)"
|
|
|
STAGE1_CFLAGS=@stage1_cflags@
|
STAGEprofile_CFLAGS = $(STAGE2_CFLAGS) -fprofile-generate
|
STAGE2_CFLAGS=$(BOOT_CFLAGS)
|
STAGEprofile_TFLAGS = $(STAGE2_TFLAGS)
|
STAGE3_CFLAGS=$(BOOT_CFLAGS)
|
|
STAGE4_CFLAGS=$(BOOT_CFLAGS)
|
STAGEfeedback_CFLAGS = $(STAGE3_CFLAGS) -fprofile-use
|
|
STAGEfeedback_TFLAGS = $(STAGE3_TFLAGS)
|
STAGE1_LIBCFLAGS=@stage1_cflags@
|
|
STAGE2_LIBCFLAGS=$(CFLAGS_FOR_TARGET)
|
|
STAGE3_LIBCFLAGS=$(CFLAGS_FOR_TARGET)
|
|
STAGE4_LIBCFLAGS=$(CFLAGS_FOR_TARGET)
|
|
|
|
do-compare = @do_compare@
|
do-compare = @do_compare@
|
do-compare3 = $(do-compare)
|
do-compare3 = $(do-compare)
|
do-compare-debug = $(SHELL) $(srcdir)/contrib/compare-debug $$f1 $$f2
|
|
|
|
# -----------------------------------------------
|
# -----------------------------------------------
|
# Programs producing files for the TARGET machine
|
# Programs producing files for the TARGET machine
|
# -----------------------------------------------
|
# -----------------------------------------------
|
|
|
FLAGS_FOR_TARGET = @FLAGS_FOR_TARGET@
|
|
|
|
AR_FOR_TARGET=@AR_FOR_TARGET@
|
AR_FOR_TARGET=@AR_FOR_TARGET@
|
AS_FOR_TARGET=@AS_FOR_TARGET@
|
AS_FOR_TARGET=@AS_FOR_TARGET@
|
CC_FOR_TARGET=$(STAGE_CC_WRAPPER) @CC_FOR_TARGET@ $(FLAGS_FOR_TARGET)
|
CC_FOR_TARGET=$(STAGE_CC_WRAPPER) @CC_FOR_TARGET@
|
|
|
# If GCC_FOR_TARGET is not overriden on the command line, then this
|
# If GCC_FOR_TARGET is not overriden on the command line, then this
|
# variable is passed down to the gcc Makefile, where it is used to
|
# variable is passed down to the gcc Makefile, where it is used to
|
# build libgcc2.a. We define it here so that it can itself be
|
# build libgcc2.a. We define it here so that it can itself be
|
# overridden on the command line.
|
# overridden on the command line.
|
GCC_FOR_TARGET=$(STAGE_CC_WRAPPER) @GCC_FOR_TARGET@ $(FLAGS_FOR_TARGET)
|
GCC_FOR_TARGET=$(STAGE_CC_WRAPPER) @GCC_FOR_TARGET@
|
CXX_FOR_TARGET=$(STAGE_CC_WRAPPER) @CXX_FOR_TARGET@ $(FLAGS_FOR_TARGET)
|
CXX_FOR_TARGET=$(STAGE_CC_WRAPPER) @CXX_FOR_TARGET@
|
RAW_CXX_FOR_TARGET=$(STAGE_CC_WRAPPER) @RAW_CXX_FOR_TARGET@ $(FLAGS_FOR_TARGET)
|
RAW_CXX_FOR_TARGET=$(STAGE_CC_WRAPPER) @RAW_CXX_FOR_TARGET@
|
GCJ_FOR_TARGET=$(STAGE_CC_WRAPPER) @GCJ_FOR_TARGET@ $(FLAGS_FOR_TARGET)
|
GCJ_FOR_TARGET=$(STAGE_CC_WRAPPER) @GCJ_FOR_TARGET@
|
GFORTRAN_FOR_TARGET=$(STAGE_CC_WRAPPER) @GFORTRAN_FOR_TARGET@ $(FLAGS_FOR_TARGET)
|
GFORTRAN_FOR_TARGET=$(STAGE_CC_WRAPPER) @GFORTRAN_FOR_TARGET@
|
DLLTOOL_FOR_TARGET=@DLLTOOL_FOR_TARGET@
|
DLLTOOL_FOR_TARGET=@DLLTOOL_FOR_TARGET@
|
LD_FOR_TARGET=@LD_FOR_TARGET@
|
LD_FOR_TARGET=@LD_FOR_TARGET@
|
|
|
LIPO_FOR_TARGET=@LIPO_FOR_TARGET@
|
LIPO_FOR_TARGET=@LIPO_FOR_TARGET@
|
NM_FOR_TARGET=@NM_FOR_TARGET@
|
NM_FOR_TARGET=@NM_FOR_TARGET@
|
Line 378... |
Line 480... |
COMPILER_LD_FOR_TARGET=@COMPILER_LD_FOR_TARGET@
|
COMPILER_LD_FOR_TARGET=@COMPILER_LD_FOR_TARGET@
|
COMPILER_NM_FOR_TARGET=@COMPILER_NM_FOR_TARGET@
|
COMPILER_NM_FOR_TARGET=@COMPILER_NM_FOR_TARGET@
|
|
|
CFLAGS_FOR_TARGET = @CFLAGS_FOR_TARGET@
|
CFLAGS_FOR_TARGET = @CFLAGS_FOR_TARGET@
|
CXXFLAGS_FOR_TARGET = @CXXFLAGS_FOR_TARGET@
|
CXXFLAGS_FOR_TARGET = @CXXFLAGS_FOR_TARGET@
|
SYSROOT_CFLAGS_FOR_TARGET = @SYSROOT_CFLAGS_FOR_TARGET@
|
|
DEBUG_PREFIX_CFLAGS_FOR_TARGET = @DEBUG_PREFIX_CFLAGS_FOR_TARGET@
|
|
|
|
LIBCFLAGS_FOR_TARGET = $(CFLAGS_FOR_TARGET)
|
LIBCFLAGS_FOR_TARGET = $(CFLAGS_FOR_TARGET)
|
LIBCXXFLAGS_FOR_TARGET = $(CXXFLAGS_FOR_TARGET) -fno-implicit-templates
|
LIBCXXFLAGS_FOR_TARGET = $(CXXFLAGS_FOR_TARGET) -fno-implicit-templates
|
LDFLAGS_FOR_TARGET =
|
LDFLAGS_FOR_TARGET =
|
PICFLAG_FOR_TARGET =
|
|
|
FLAGS_FOR_TARGET = @FLAGS_FOR_TARGET@
|
|
SYSROOT_CFLAGS_FOR_TARGET = @SYSROOT_CFLAGS_FOR_TARGET@
|
|
DEBUG_PREFIX_CFLAGS_FOR_TARGET = @DEBUG_PREFIX_CFLAGS_FOR_TARGET@
|
|
|
|
XGCC_FLAGS_FOR_TARGET = $(FLAGS_FOR_TARGET) $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)
|
|
|
# ------------------------------------
|
# ------------------------------------
|
# Miscellaneous targets and flag lists
|
# Miscellaneous targets and flag lists
|
# ------------------------------------
|
# ------------------------------------
|
|
|
Line 425... |
Line 530... |
|
|
|
|
|
|
# This is the list of directories that may be needed in RPATH_ENVVAR
|
# This is the list of directories that may be needed in RPATH_ENVVAR
|
# so that programs built for the host machine work.
|
# so that programs built for the host machine work.
|
HOST_LIB_PATH = $(HOST_LIB_PATH_bfd)$(HOST_LIB_PATH_opcodes)$(HOST_LIB_PATH_gmp)$(HOST_LIB_PATH_mpfr)
|
HOST_LIB_PATH = $(HOST_LIB_PATH_bfd)$(HOST_LIB_PATH_opcodes)$(HOST_LIB_PATH_gmp)$(HOST_LIB_PATH_mpfr)$(HOST_LIB_PATH_mpc)$(HOST_LIB_PATH_ppl)$(HOST_LIB_PATH_cloog)
|
|
|
# Define HOST_LIB_PATH_gcc here, for the sake of TARGET_LIB_PATH, ouch
|
# Define HOST_LIB_PATH_gcc here, for the sake of TARGET_LIB_PATH, ouch
|
@if gcc
|
@if gcc
|
HOST_LIB_PATH_gcc = $$r/$(HOST_SUBDIR)/gcc:$$r/$(HOST_SUBDIR)/prev-gcc:
|
HOST_LIB_PATH_gcc = $$r/$(HOST_SUBDIR)/gcc$(GCC_SHLIB_SUBDIR):$$r/$(HOST_SUBDIR)/prev-gcc$(GCC_SHLIB_SUBDIR):
|
@endif gcc
|
@endif gcc
|
|
|
|
|
@if bfd
|
@if bfd
|
HOST_LIB_PATH_bfd = \
|
HOST_LIB_PATH_bfd = \
|
Line 453... |
Line 558... |
@if mpfr
|
@if mpfr
|
HOST_LIB_PATH_mpfr = \
|
HOST_LIB_PATH_mpfr = \
|
$$r/$(HOST_SUBDIR)/mpfr/.libs:$$r/$(HOST_SUBDIR)/prev-mpfr/.libs:
|
$$r/$(HOST_SUBDIR)/mpfr/.libs:$$r/$(HOST_SUBDIR)/prev-mpfr/.libs:
|
@endif mpfr
|
@endif mpfr
|
|
|
|
@if mpc
|
|
HOST_LIB_PATH_mpc = \
|
|
$$r/$(HOST_SUBDIR)/mpc/.libs:$$r/$(HOST_SUBDIR)/prev-mpc/.libs:
|
|
@endif mpc
|
|
|
|
@if ppl
|
|
HOST_LIB_PATH_ppl = \
|
|
$$r/$(HOST_SUBDIR)/ppl/.libs:$$r/$(HOST_SUBDIR)/prev-ppl/.libs:
|
|
@endif ppl
|
|
|
|
@if cloog
|
|
HOST_LIB_PATH_cloog = \
|
|
$$r/$(HOST_SUBDIR)/cloog/.libs:$$r/$(HOST_SUBDIR)/prev-cloog/.libs:
|
|
@endif cloog
|
|
|
|
|
# Flags to pass down to all sub-makes.
|
# Flags to pass down to all sub-makes.
|
BASE_FLAGS_TO_PASS = \
|
BASE_FLAGS_TO_PASS = \
|
"DESTDIR=$(DESTDIR)" \
|
"DESTDIR=$(DESTDIR)" \
|
"RPATH_ENVVAR=$(RPATH_ENVVAR)" \
|
"RPATH_ENVVAR=$(RPATH_ENVVAR)" \
|
Line 481... |
Line 601... |
"sharedstatedir=$(sharedstatedir)" \
|
"sharedstatedir=$(sharedstatedir)" \
|
"sysconfdir=$(sysconfdir)" \
|
"sysconfdir=$(sysconfdir)" \
|
"tooldir=$(tooldir)" \
|
"tooldir=$(tooldir)" \
|
"build_tooldir=$(build_tooldir)" \
|
"build_tooldir=$(build_tooldir)" \
|
"target_alias=$(target_alias)" \
|
"target_alias=$(target_alias)" \
|
|
"AWK=$(AWK)" \
|
"BISON=$(BISON)" \
|
"BISON=$(BISON)" \
|
"CC_FOR_BUILD=$(CC_FOR_BUILD)" \
|
"CC_FOR_BUILD=$(CC_FOR_BUILD)" \
|
"CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
|
"CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
|
"CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
|
"CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
|
"EXPECT=$(EXPECT)" \
|
"EXPECT=$(EXPECT)" \
|
"FLEX=$(FLEX)" \
|
"FLEX=$(FLEX)" \
|
"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)" \
|
|
"LDFLAGS_FOR_BUILD=$(LDFLAGS_FOR_BUILD)" \
|
"LEX=$(LEX)" \
|
"LEX=$(LEX)" \
|
"M4=$(M4)" \
|
"M4=$(M4)" \
|
"MAKE=$(MAKE)" \
|
"MAKE=$(MAKE)" \
|
"RUNTEST=$(RUNTEST)" \
|
"RUNTEST=$(RUNTEST)" \
|
"RUNTESTFLAGS=$(RUNTESTFLAGS)" \
|
"RUNTESTFLAGS=$(RUNTESTFLAGS)" \
|
|
"SED=$(SED)" \
|
"SHELL=$(SHELL)" \
|
"SHELL=$(SHELL)" \
|
"YACC=$(YACC)" \
|
"YACC=$(YACC)" \
|
"`echo 'ADAFLAGS=$(ADAFLAGS)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`" \
|
"`echo 'ADAFLAGS=$(ADAFLAGS)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`" \
|
|
"ADA_CFLAGS=$(ADA_CFLAGS)" \
|
"AR_FLAGS=$(AR_FLAGS)" \
|
"AR_FLAGS=$(AR_FLAGS)" \
|
"`echo 'BOOT_ADAFLAGS=$(BOOT_ADAFLAGS)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`" \
|
"`echo 'BOOT_ADAFLAGS=$(BOOT_ADAFLAGS)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`" \
|
"BOOT_CFLAGS=$(BOOT_CFLAGS)" \
|
"BOOT_CFLAGS=$(BOOT_CFLAGS)" \
|
"BOOT_LDFLAGS=$(BOOT_LDFLAGS)" \
|
"BOOT_LDFLAGS=$(BOOT_LDFLAGS)" \
|
"CFLAGS=$(CFLAGS)" \
|
"CFLAGS=$(CFLAGS)" \
|
"CXXFLAGS=$(CXXFLAGS)" \
|
"CXXFLAGS=$(CXXFLAGS)" \
|
"LDFLAGS=$(LDFLAGS)" \
|
"LDFLAGS=$(LDFLAGS)" \
|
"LIBCFLAGS=$(LIBCFLAGS)" \
|
"LIBCFLAGS=$(LIBCFLAGS)" \
|
"LIBCXXFLAGS=$(LIBCXXFLAGS)" \
|
"LIBCXXFLAGS=$(LIBCXXFLAGS)" \
|
"STAGE1_CFLAGS=$(STAGE1_CFLAGS)" \
|
|
"STAGE1_CHECKING=$(STAGE1_CHECKING)" \
|
"STAGE1_CHECKING=$(STAGE1_CHECKING)" \
|
"STAGE1_LANGUAGES=$(STAGE1_LANGUAGES)" \
|
"STAGE1_LANGUAGES=$(STAGE1_LANGUAGES)" \
|
"STAGE2_CFLAGS=$(STAGE2_CFLAGS)" \
|
|
"STAGE3_CFLAGS=$(STAGE3_CFLAGS)" \
|
|
"STAGE4_CFLAGS=$(STAGE4_CFLAGS)" \
|
|
"GNATBIND=$(GNATBIND)" \
|
"GNATBIND=$(GNATBIND)" \
|
"GNATMAKE=$(GNATMAKE)" \
|
"GNATMAKE=$(GNATMAKE)" \
|
"AR_FOR_TARGET=$(AR_FOR_TARGET)" \
|
"AR_FOR_TARGET=$(AR_FOR_TARGET)" \
|
"AS_FOR_TARGET=$(AS_FOR_TARGET)" \
|
"AS_FOR_TARGET=$(AS_FOR_TARGET)" \
|
"CC_FOR_TARGET=$(CC_FOR_TARGET)" \
|
"CC_FOR_TARGET=$(CC_FOR_TARGET)" \
|
"CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
|
"CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
|
"CPPFLAGS_FOR_TARGET=$(CPPFLAGS_FOR_TARGET)" \
|
"CPPFLAGS_FOR_TARGET=$(CPPFLAGS_FOR_TARGET)" \
|
"CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
|
"CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
|
"CXXFLAGS_FOR_TARGET=$(CXXFLAGS_FOR_TARGET)" \
|
"CXXFLAGS_FOR_TARGET=$(CXXFLAGS_FOR_TARGET)" \
|
"DLLTOOL_FOR_TARGET=$(DLLTOOL_FOR_TARGET)" \
|
"DLLTOOL_FOR_TARGET=$(DLLTOOL_FOR_TARGET)" \
|
|
"FLAGS_FOR_TARGET=$(FLAGS_FOR_TARGET)" \
|
"GCJ_FOR_TARGET=$(GCJ_FOR_TARGET)" \
|
"GCJ_FOR_TARGET=$(GCJ_FOR_TARGET)" \
|
"GFORTRAN_FOR_TARGET=$(GFORTRAN_FOR_TARGET)" \
|
"GFORTRAN_FOR_TARGET=$(GFORTRAN_FOR_TARGET)" \
|
"LD_FOR_TARGET=$(LD_FOR_TARGET)" \
|
"LD_FOR_TARGET=$(LD_FOR_TARGET)" \
|
"LIPO_FOR_TARGET=$(LIPO_FOR_TARGET)" \
|
"LIPO_FOR_TARGET=$(LIPO_FOR_TARGET)" \
|
"LDFLAGS_FOR_TARGET=$(LDFLAGS_FOR_TARGET)" \
|
"LDFLAGS_FOR_TARGET=$(LDFLAGS_FOR_TARGET)" \
|
Line 537... |
Line 658... |
"OBJDUMP_FOR_TARGET=$(OBJDUMP_FOR_TARGET)" \
|
"OBJDUMP_FOR_TARGET=$(OBJDUMP_FOR_TARGET)" \
|
"RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
|
"RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
|
"STRIP_FOR_TARGET=$(STRIP_FOR_TARGET)" \
|
"STRIP_FOR_TARGET=$(STRIP_FOR_TARGET)" \
|
"WINDRES_FOR_TARGET=$(WINDRES_FOR_TARGET)" \
|
"WINDRES_FOR_TARGET=$(WINDRES_FOR_TARGET)" \
|
"WINDMC_FOR_TARGET=$(WINDMC_FOR_TARGET)" \
|
"WINDMC_FOR_TARGET=$(WINDMC_FOR_TARGET)" \
|
|
"BUILD_CONFIG=$(BUILD_CONFIG)" \
|
"`echo 'LANGUAGES=$(LANGUAGES)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`" \
|
"`echo 'LANGUAGES=$(LANGUAGES)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`" \
|
"LEAN=$(LEAN)" \
|
"LEAN=$(LEAN)" \
|
|
"STAGE1_CFLAGS=$(STAGE1_CFLAGS)" \
|
|
"STAGE1_TFLAGS=$(STAGE1_TFLAGS)" \
|
|
"STAGE2_CFLAGS=$(STAGE2_CFLAGS)" \
|
|
"STAGE2_TFLAGS=$(STAGE2_TFLAGS)" \
|
|
"STAGE3_CFLAGS=$(STAGE3_CFLAGS)" \
|
|
"STAGE3_TFLAGS=$(STAGE3_TFLAGS)" \
|
|
"STAGE4_CFLAGS=$(STAGE4_CFLAGS)" \
|
|
"STAGE4_TFLAGS=$(STAGE4_TFLAGS)" \
|
|
"STAGEprofile_CFLAGS=$(STAGEprofile_CFLAGS)" \
|
|
"STAGEprofile_TFLAGS=$(STAGEprofile_TFLAGS)" \
|
|
"STAGEfeedback_CFLAGS=$(STAGEfeedback_CFLAGS)" \
|
|
"STAGEfeedback_TFLAGS=$(STAGEfeedback_TFLAGS)" \
|
|
"TFLAGS=$(TFLAGS)" \
|
"CONFIG_SHELL=$(SHELL)" \
|
"CONFIG_SHELL=$(SHELL)" \
|
"MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)"
|
"MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)"
|
|
|
# We leave this in just in case, but it is not needed anymore.
|
# We leave this in just in case, but it is not needed anymore.
|
RECURSE_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS)
|
RECURSE_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS)
|
Line 553... |
Line 688... |
'AR=$(AR)' \
|
'AR=$(AR)' \
|
'AS=$(AS)' \
|
'AS=$(AS)' \
|
'CC=$(CC)' \
|
'CC=$(CC)' \
|
'CXX=$(CXX)' \
|
'CXX=$(CXX)' \
|
'DLLTOOL=$(DLLTOOL)' \
|
'DLLTOOL=$(DLLTOOL)' \
|
|
'GCJ=$(GCJ)' \
|
|
'GFORTRAN=$(GFORTRAN)' \
|
'LD=$(LD)' \
|
'LD=$(LD)' \
|
'LIPO=$(LIPO)' \
|
'LIPO=$(LIPO)' \
|
'NM=$(NM)' \
|
'NM=$(NM)' \
|
'OBJDUMP=$(OBJDUMP)' \
|
'OBJDUMP=$(OBJDUMP)' \
|
'RANLIB=$(RANLIB)' \
|
'RANLIB=$(RANLIB)' \
|
Line 580... |
Line 717... |
|
|
# Flags to pass to stage2 and later makes.
|
# Flags to pass to stage2 and later makes.
|
|
|
POSTSTAGE1_FLAGS_TO_PASS = \
|
POSTSTAGE1_FLAGS_TO_PASS = \
|
CC="$${CC}" CC_FOR_BUILD="$${CC_FOR_BUILD}" \
|
CC="$${CC}" CC_FOR_BUILD="$${CC_FOR_BUILD}" \
|
GNATBIND="$$r/$(HOST_SUBDIR)/prev-gcc/gnatbind" \
|
CXX="$${CXX}" CXX_FOR_BUILD="$${CXX_FOR_BUILD}" \
|
LDFLAGS="$(BOOT_LDFLAGS)" \
|
GNATBIND="$${GNATBIND}" \
|
|
LDFLAGS="$(POSTSTAGE1_LDFLAGS) $(BOOT_LDFLAGS)" \
|
|
HOST_LIBS="$(POSTSTAGE1_LIBS)" \
|
"`echo 'ADAFLAGS=$(BOOT_ADAFLAGS)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`"
|
"`echo 'ADAFLAGS=$(BOOT_ADAFLAGS)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`"
|
|
|
# Flags to pass down to makes which are built with the target environment.
|
# Flags to pass down to makes which are built with the target environment.
|
# The double $ decreases the length of the command line; those variables
|
# The double $ decreases the length of the command line; those variables
|
# are set in BASE_FLAGS_TO_PASS, and the sub-make will expand them. The
|
# are set in BASE_FLAGS_TO_PASS, and the sub-make will expand them. The
|
# *_CFLAGS_FOR_TARGET variables are not passed down and most often empty,
|
# *_CFLAGS_FOR_TARGET variables are not passed down and most often empty,
|
# so we expand them here.
|
# so we expand them here.
|
EXTRA_TARGET_FLAGS = \
|
EXTRA_TARGET_FLAGS = \
|
'AR=$$(AR_FOR_TARGET)' \
|
'AR=$$(AR_FOR_TARGET)' \
|
'AS=$(COMPILER_AS_FOR_TARGET)' \
|
'AS=$(COMPILER_AS_FOR_TARGET)' \
|
'CC=$$(CC_FOR_TARGET)' \
|
'CC=$$(CC_FOR_TARGET) $$(XGCC_FLAGS_FOR_TARGET) $$(TFLAGS)' \
|
'CFLAGS=$$(CFLAGS_FOR_TARGET) $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)' \
|
'CFLAGS=$$(CFLAGS_FOR_TARGET)' \
|
'CXX=$$(CXX_FOR_TARGET)' \
|
'CXX=$$(CXX_FOR_TARGET) $$(XGCC_FLAGS_FOR_TARGET) $$(TFLAGS)' \
|
'CXXFLAGS=$$(CXXFLAGS_FOR_TARGET) $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)' \
|
'CXXFLAGS=$$(CXXFLAGS_FOR_TARGET)' \
|
'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \
|
'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \
|
|
'GCJ=$$(GCJ_FOR_TARGET) $$(XGCC_FLAGS_FOR_TARGET) $$(TFLAGS)' \
|
|
'GFORTRAN=$$(GFORTRAN_FOR_TARGET) $$(XGCC_FLAGS_FOR_TARGET) $$(TFLAGS)' \
|
'LD=$(COMPILER_LD_FOR_TARGET)' \
|
'LD=$(COMPILER_LD_FOR_TARGET)' \
|
'LDFLAGS=$$(LDFLAGS_FOR_TARGET)' \
|
'LDFLAGS=$$(LDFLAGS_FOR_TARGET)' \
|
'LIBCFLAGS=$$(LIBCFLAGS_FOR_TARGET) $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)' \
|
'LIBCFLAGS=$$(LIBCFLAGS_FOR_TARGET)' \
|
'LIBCXXFLAGS=$$(LIBCXXFLAGS_FOR_TARGET) $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)' \
|
'LIBCXXFLAGS=$$(LIBCXXFLAGS_FOR_TARGET)' \
|
'NM=$(COMPILER_NM_FOR_TARGET)' \
|
'NM=$(COMPILER_NM_FOR_TARGET)' \
|
'OBJDUMP=$$(OBJDUMP_FOR_TARGET)' \
|
'OBJDUMP=$$(OBJDUMP_FOR_TARGET)' \
|
'RANLIB=$$(RANLIB_FOR_TARGET)' \
|
'RANLIB=$$(RANLIB_FOR_TARGET)' \
|
'WINDRES=$$(WINDRES_FOR_TARGET)' \
|
'WINDRES=$$(WINDRES_FOR_TARGET)' \
|
'WINDMC=$$(WINDMC_FOR_TARGET)'
|
'WINDMC=$$(WINDMC_FOR_TARGET)' \
|
|
'XGCC_FLAGS_FOR_TARGET=$(XGCC_FLAGS_FOR_TARGET)' \
|
|
"TFLAGS=$$TFLAGS"
|
|
|
TARGET_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS)
|
TARGET_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS)
|
|
|
# Flags to pass down to gcc. gcc builds a library, libgcc.a, so it
|
# Flags to pass down to gcc. gcc builds a library, libgcc.a, so it
|
# unfortunately needs the native compiler and the target ar and
|
# unfortunately needs the native compiler and the target ar and
|
Line 625... |
Line 768... |
"`echo 'LIBGCC2_DEBUG_CFLAGS=$(LIBGCC2_DEBUG_CFLAGS)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`" \
|
"`echo 'LIBGCC2_DEBUG_CFLAGS=$(LIBGCC2_DEBUG_CFLAGS)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`" \
|
"`echo 'LIBGCC2_INCLUDES=$(LIBGCC2_INCLUDES)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`"
|
"`echo 'LIBGCC2_INCLUDES=$(LIBGCC2_INCLUDES)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`"
|
|
|
GCC_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) $(EXTRA_GCC_FLAGS)
|
GCC_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) $(EXTRA_GCC_FLAGS)
|
|
|
|
@if gcc
|
|
BUILD_CONFIG =
|
|
ifneq ($(BUILD_CONFIG),)
|
|
include $(foreach CONFIG, $(BUILD_CONFIG), $(srcdir)/config/$(CONFIG).mk)
|
|
endif
|
|
@endif gcc
|
|
|
.PHONY: configure-host
|
.PHONY: configure-host
|
configure-host: \
|
configure-host: \
|
maybe-configure-ash \
|
maybe-configure-ash \
|
maybe-configure-autoconf \
|
maybe-configure-autoconf \
|
maybe-configure-automake \
|
maybe-configure-automake \
|
Line 637... |
Line 787... |
maybe-configure-opcodes \
|
maybe-configure-opcodes \
|
maybe-configure-binutils \
|
maybe-configure-binutils \
|
maybe-configure-bison \
|
maybe-configure-bison \
|
maybe-configure-byacc \
|
maybe-configure-byacc \
|
maybe-configure-bzip2 \
|
maybe-configure-bzip2 \
|
|
maybe-configure-cgen \
|
maybe-configure-dejagnu \
|
maybe-configure-dejagnu \
|
maybe-configure-diff \
|
maybe-configure-diff \
|
maybe-configure-dosutils \
|
maybe-configure-dosutils \
|
maybe-configure-etc \
|
maybe-configure-etc \
|
maybe-configure-fastjar \
|
maybe-configure-fastjar \
|
Line 653... |
Line 804... |
maybe-configure-gcc \
|
maybe-configure-gcc \
|
maybe-configure-gawk \
|
maybe-configure-gawk \
|
maybe-configure-gettext \
|
maybe-configure-gettext \
|
maybe-configure-gmp \
|
maybe-configure-gmp \
|
maybe-configure-mpfr \
|
maybe-configure-mpfr \
|
|
maybe-configure-mpc \
|
|
maybe-configure-ppl \
|
|
maybe-configure-cloog \
|
maybe-configure-gnuserv \
|
maybe-configure-gnuserv \
|
|
maybe-configure-gold \
|
maybe-configure-gprof \
|
maybe-configure-gprof \
|
maybe-configure-gzip \
|
maybe-configure-gzip \
|
maybe-configure-hello \
|
maybe-configure-hello \
|
maybe-configure-indent \
|
maybe-configure-indent \
|
maybe-configure-intl \
|
maybe-configure-intl \
|
Line 666... |
Line 821... |
maybe-configure-ld \
|
maybe-configure-ld \
|
maybe-configure-libcpp \
|
maybe-configure-libcpp \
|
maybe-configure-libdecnumber \
|
maybe-configure-libdecnumber \
|
maybe-configure-libgui \
|
maybe-configure-libgui \
|
maybe-configure-libiberty \
|
maybe-configure-libiberty \
|
|
maybe-configure-libiconv \
|
maybe-configure-libtool \
|
maybe-configure-libtool \
|
maybe-configure-m4 \
|
maybe-configure-m4 \
|
maybe-configure-make \
|
maybe-configure-make \
|
maybe-configure-mmalloc \
|
maybe-configure-mmalloc \
|
maybe-configure-patch \
|
maybe-configure-patch \
|
Line 733... |
Line 889... |
$(MAKE) $(RECURSE_FLAGS_TO_PASS) `cat stage_final`-bubble
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) `cat stage_final`-bubble
|
@endif gcc-bootstrap
|
@endif gcc-bootstrap
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
@if gcc-bootstrap
|
if [ -f stage_last ]; then \
|
if [ -f stage_last ]; then \
|
|
TFLAGS="$(STAGE$(shell test ! -f stage_last || sed s,^stage,, stage_last)_TFLAGS)"; \
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target; \
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target; \
|
else \
|
else \
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) all-host all-target; \
|
@endif gcc-bootstrap
|
fi
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) all-host all-target \
|
|
@if gcc-bootstrap
|
|
; \
|
|
fi \
|
|
@endif gcc-bootstrap
|
|
&& :
|
|
|
.PHONY: all-build
|
.PHONY: all-build
|
|
|
all-build: maybe-all-build-libiberty
|
all-build: maybe-all-build-libiberty
|
all-build: maybe-all-build-bison
|
all-build: maybe-all-build-bison
|
Line 767... |
Line 930... |
all-host: maybe-all-binutils
|
all-host: maybe-all-binutils
|
@endif binutils-no-bootstrap
|
@endif binutils-no-bootstrap
|
all-host: maybe-all-bison
|
all-host: maybe-all-bison
|
all-host: maybe-all-byacc
|
all-host: maybe-all-byacc
|
all-host: maybe-all-bzip2
|
all-host: maybe-all-bzip2
|
|
all-host: maybe-all-cgen
|
all-host: maybe-all-dejagnu
|
all-host: maybe-all-dejagnu
|
all-host: maybe-all-diff
|
all-host: maybe-all-diff
|
all-host: maybe-all-dosutils
|
all-host: maybe-all-dosutils
|
all-host: maybe-all-etc
|
all-host: maybe-all-etc
|
all-host: maybe-all-fastjar
|
all-host: maybe-all-fastjar
|
Line 791... |
Line 955... |
all-host: maybe-all-gmp
|
all-host: maybe-all-gmp
|
@endif gmp-no-bootstrap
|
@endif gmp-no-bootstrap
|
@if mpfr-no-bootstrap
|
@if mpfr-no-bootstrap
|
all-host: maybe-all-mpfr
|
all-host: maybe-all-mpfr
|
@endif mpfr-no-bootstrap
|
@endif mpfr-no-bootstrap
|
|
@if mpc-no-bootstrap
|
|
all-host: maybe-all-mpc
|
|
@endif mpc-no-bootstrap
|
|
@if ppl-no-bootstrap
|
|
all-host: maybe-all-ppl
|
|
@endif ppl-no-bootstrap
|
|
@if cloog-no-bootstrap
|
|
all-host: maybe-all-cloog
|
|
@endif cloog-no-bootstrap
|
all-host: maybe-all-gnuserv
|
all-host: maybe-all-gnuserv
|
|
@if gold-no-bootstrap
|
|
all-host: maybe-all-gold
|
|
@endif gold-no-bootstrap
|
all-host: maybe-all-gprof
|
all-host: maybe-all-gprof
|
all-host: maybe-all-gzip
|
all-host: maybe-all-gzip
|
all-host: maybe-all-hello
|
all-host: maybe-all-hello
|
all-host: maybe-all-indent
|
all-host: maybe-all-indent
|
@if intl-no-bootstrap
|
@if intl-no-bootstrap
|
Line 814... |
Line 990... |
@endif libdecnumber-no-bootstrap
|
@endif libdecnumber-no-bootstrap
|
all-host: maybe-all-libgui
|
all-host: maybe-all-libgui
|
@if libiberty-no-bootstrap
|
@if libiberty-no-bootstrap
|
all-host: maybe-all-libiberty
|
all-host: maybe-all-libiberty
|
@endif libiberty-no-bootstrap
|
@endif libiberty-no-bootstrap
|
|
all-host: maybe-all-libiconv
|
all-host: maybe-all-libtool
|
all-host: maybe-all-libtool
|
all-host: maybe-all-m4
|
all-host: maybe-all-m4
|
all-host: maybe-all-make
|
all-host: maybe-all-make
|
all-host: maybe-all-mmalloc
|
all-host: maybe-all-mmalloc
|
all-host: maybe-all-patch
|
all-host: maybe-all-patch
|
Line 850... |
Line 1027... |
all-host: maybe-all-utils
|
all-host: maybe-all-utils
|
all-host: maybe-all-gnattools
|
all-host: maybe-all-gnattools
|
|
|
.PHONY: all-target
|
.PHONY: all-target
|
|
|
|
@if target-libstdc++-v3-no-bootstrap
|
all-target: maybe-all-target-libstdc++-v3
|
all-target: maybe-all-target-libstdc++-v3
|
|
@endif target-libstdc++-v3-no-bootstrap
|
all-target: maybe-all-target-libmudflap
|
all-target: maybe-all-target-libmudflap
|
all-target: maybe-all-target-libssp
|
all-target: maybe-all-target-libssp
|
all-target: maybe-all-target-newlib
|
all-target: maybe-all-target-newlib
|
@if target-libgcc-no-bootstrap
|
@if target-libgcc-no-bootstrap
|
all-target: maybe-all-target-libgcc
|
all-target: maybe-all-target-libgcc
|
Line 900... |
Line 1079... |
info-host: maybe-info-opcodes
|
info-host: maybe-info-opcodes
|
info-host: maybe-info-binutils
|
info-host: maybe-info-binutils
|
info-host: maybe-info-bison
|
info-host: maybe-info-bison
|
info-host: maybe-info-byacc
|
info-host: maybe-info-byacc
|
info-host: maybe-info-bzip2
|
info-host: maybe-info-bzip2
|
|
info-host: maybe-info-cgen
|
info-host: maybe-info-dejagnu
|
info-host: maybe-info-dejagnu
|
info-host: maybe-info-diff
|
info-host: maybe-info-diff
|
info-host: maybe-info-dosutils
|
info-host: maybe-info-dosutils
|
info-host: maybe-info-etc
|
info-host: maybe-info-etc
|
info-host: maybe-info-fastjar
|
info-host: maybe-info-fastjar
|
Line 916... |
Line 1096... |
info-host: maybe-info-gcc
|
info-host: maybe-info-gcc
|
info-host: maybe-info-gawk
|
info-host: maybe-info-gawk
|
info-host: maybe-info-gettext
|
info-host: maybe-info-gettext
|
info-host: maybe-info-gmp
|
info-host: maybe-info-gmp
|
info-host: maybe-info-mpfr
|
info-host: maybe-info-mpfr
|
|
info-host: maybe-info-mpc
|
|
info-host: maybe-info-ppl
|
|
info-host: maybe-info-cloog
|
info-host: maybe-info-gnuserv
|
info-host: maybe-info-gnuserv
|
|
info-host: maybe-info-gold
|
info-host: maybe-info-gprof
|
info-host: maybe-info-gprof
|
info-host: maybe-info-gzip
|
info-host: maybe-info-gzip
|
info-host: maybe-info-hello
|
info-host: maybe-info-hello
|
info-host: maybe-info-indent
|
info-host: maybe-info-indent
|
info-host: maybe-info-intl
|
info-host: maybe-info-intl
|
Line 929... |
Line 1113... |
info-host: maybe-info-ld
|
info-host: maybe-info-ld
|
info-host: maybe-info-libcpp
|
info-host: maybe-info-libcpp
|
info-host: maybe-info-libdecnumber
|
info-host: maybe-info-libdecnumber
|
info-host: maybe-info-libgui
|
info-host: maybe-info-libgui
|
info-host: maybe-info-libiberty
|
info-host: maybe-info-libiberty
|
|
info-host: maybe-info-libiconv
|
info-host: maybe-info-libtool
|
info-host: maybe-info-libtool
|
info-host: maybe-info-m4
|
info-host: maybe-info-m4
|
info-host: maybe-info-make
|
info-host: maybe-info-make
|
info-host: maybe-info-mmalloc
|
info-host: maybe-info-mmalloc
|
info-host: maybe-info-patch
|
info-host: maybe-info-patch
|
Line 1006... |
Line 1191... |
dvi-host: maybe-dvi-opcodes
|
dvi-host: maybe-dvi-opcodes
|
dvi-host: maybe-dvi-binutils
|
dvi-host: maybe-dvi-binutils
|
dvi-host: maybe-dvi-bison
|
dvi-host: maybe-dvi-bison
|
dvi-host: maybe-dvi-byacc
|
dvi-host: maybe-dvi-byacc
|
dvi-host: maybe-dvi-bzip2
|
dvi-host: maybe-dvi-bzip2
|
|
dvi-host: maybe-dvi-cgen
|
dvi-host: maybe-dvi-dejagnu
|
dvi-host: maybe-dvi-dejagnu
|
dvi-host: maybe-dvi-diff
|
dvi-host: maybe-dvi-diff
|
dvi-host: maybe-dvi-dosutils
|
dvi-host: maybe-dvi-dosutils
|
dvi-host: maybe-dvi-etc
|
dvi-host: maybe-dvi-etc
|
dvi-host: maybe-dvi-fastjar
|
dvi-host: maybe-dvi-fastjar
|
Line 1022... |
Line 1208... |
dvi-host: maybe-dvi-gcc
|
dvi-host: maybe-dvi-gcc
|
dvi-host: maybe-dvi-gawk
|
dvi-host: maybe-dvi-gawk
|
dvi-host: maybe-dvi-gettext
|
dvi-host: maybe-dvi-gettext
|
dvi-host: maybe-dvi-gmp
|
dvi-host: maybe-dvi-gmp
|
dvi-host: maybe-dvi-mpfr
|
dvi-host: maybe-dvi-mpfr
|
|
dvi-host: maybe-dvi-mpc
|
|
dvi-host: maybe-dvi-ppl
|
|
dvi-host: maybe-dvi-cloog
|
dvi-host: maybe-dvi-gnuserv
|
dvi-host: maybe-dvi-gnuserv
|
|
dvi-host: maybe-dvi-gold
|
dvi-host: maybe-dvi-gprof
|
dvi-host: maybe-dvi-gprof
|
dvi-host: maybe-dvi-gzip
|
dvi-host: maybe-dvi-gzip
|
dvi-host: maybe-dvi-hello
|
dvi-host: maybe-dvi-hello
|
dvi-host: maybe-dvi-indent
|
dvi-host: maybe-dvi-indent
|
dvi-host: maybe-dvi-intl
|
dvi-host: maybe-dvi-intl
|
Line 1035... |
Line 1225... |
dvi-host: maybe-dvi-ld
|
dvi-host: maybe-dvi-ld
|
dvi-host: maybe-dvi-libcpp
|
dvi-host: maybe-dvi-libcpp
|
dvi-host: maybe-dvi-libdecnumber
|
dvi-host: maybe-dvi-libdecnumber
|
dvi-host: maybe-dvi-libgui
|
dvi-host: maybe-dvi-libgui
|
dvi-host: maybe-dvi-libiberty
|
dvi-host: maybe-dvi-libiberty
|
|
dvi-host: maybe-dvi-libiconv
|
dvi-host: maybe-dvi-libtool
|
dvi-host: maybe-dvi-libtool
|
dvi-host: maybe-dvi-m4
|
dvi-host: maybe-dvi-m4
|
dvi-host: maybe-dvi-make
|
dvi-host: maybe-dvi-make
|
dvi-host: maybe-dvi-mmalloc
|
dvi-host: maybe-dvi-mmalloc
|
dvi-host: maybe-dvi-patch
|
dvi-host: maybe-dvi-patch
|
Line 1112... |
Line 1303... |
pdf-host: maybe-pdf-opcodes
|
pdf-host: maybe-pdf-opcodes
|
pdf-host: maybe-pdf-binutils
|
pdf-host: maybe-pdf-binutils
|
pdf-host: maybe-pdf-bison
|
pdf-host: maybe-pdf-bison
|
pdf-host: maybe-pdf-byacc
|
pdf-host: maybe-pdf-byacc
|
pdf-host: maybe-pdf-bzip2
|
pdf-host: maybe-pdf-bzip2
|
|
pdf-host: maybe-pdf-cgen
|
pdf-host: maybe-pdf-dejagnu
|
pdf-host: maybe-pdf-dejagnu
|
pdf-host: maybe-pdf-diff
|
pdf-host: maybe-pdf-diff
|
pdf-host: maybe-pdf-dosutils
|
pdf-host: maybe-pdf-dosutils
|
pdf-host: maybe-pdf-etc
|
pdf-host: maybe-pdf-etc
|
pdf-host: maybe-pdf-fastjar
|
pdf-host: maybe-pdf-fastjar
|
Line 1128... |
Line 1320... |
pdf-host: maybe-pdf-gcc
|
pdf-host: maybe-pdf-gcc
|
pdf-host: maybe-pdf-gawk
|
pdf-host: maybe-pdf-gawk
|
pdf-host: maybe-pdf-gettext
|
pdf-host: maybe-pdf-gettext
|
pdf-host: maybe-pdf-gmp
|
pdf-host: maybe-pdf-gmp
|
pdf-host: maybe-pdf-mpfr
|
pdf-host: maybe-pdf-mpfr
|
|
pdf-host: maybe-pdf-mpc
|
|
pdf-host: maybe-pdf-ppl
|
|
pdf-host: maybe-pdf-cloog
|
pdf-host: maybe-pdf-gnuserv
|
pdf-host: maybe-pdf-gnuserv
|
|
pdf-host: maybe-pdf-gold
|
pdf-host: maybe-pdf-gprof
|
pdf-host: maybe-pdf-gprof
|
pdf-host: maybe-pdf-gzip
|
pdf-host: maybe-pdf-gzip
|
pdf-host: maybe-pdf-hello
|
pdf-host: maybe-pdf-hello
|
pdf-host: maybe-pdf-indent
|
pdf-host: maybe-pdf-indent
|
pdf-host: maybe-pdf-intl
|
pdf-host: maybe-pdf-intl
|
Line 1141... |
Line 1337... |
pdf-host: maybe-pdf-ld
|
pdf-host: maybe-pdf-ld
|
pdf-host: maybe-pdf-libcpp
|
pdf-host: maybe-pdf-libcpp
|
pdf-host: maybe-pdf-libdecnumber
|
pdf-host: maybe-pdf-libdecnumber
|
pdf-host: maybe-pdf-libgui
|
pdf-host: maybe-pdf-libgui
|
pdf-host: maybe-pdf-libiberty
|
pdf-host: maybe-pdf-libiberty
|
|
pdf-host: maybe-pdf-libiconv
|
pdf-host: maybe-pdf-libtool
|
pdf-host: maybe-pdf-libtool
|
pdf-host: maybe-pdf-m4
|
pdf-host: maybe-pdf-m4
|
pdf-host: maybe-pdf-make
|
pdf-host: maybe-pdf-make
|
pdf-host: maybe-pdf-mmalloc
|
pdf-host: maybe-pdf-mmalloc
|
pdf-host: maybe-pdf-patch
|
pdf-host: maybe-pdf-patch
|
Line 1218... |
Line 1415... |
html-host: maybe-html-opcodes
|
html-host: maybe-html-opcodes
|
html-host: maybe-html-binutils
|
html-host: maybe-html-binutils
|
html-host: maybe-html-bison
|
html-host: maybe-html-bison
|
html-host: maybe-html-byacc
|
html-host: maybe-html-byacc
|
html-host: maybe-html-bzip2
|
html-host: maybe-html-bzip2
|
|
html-host: maybe-html-cgen
|
html-host: maybe-html-dejagnu
|
html-host: maybe-html-dejagnu
|
html-host: maybe-html-diff
|
html-host: maybe-html-diff
|
html-host: maybe-html-dosutils
|
html-host: maybe-html-dosutils
|
html-host: maybe-html-etc
|
html-host: maybe-html-etc
|
html-host: maybe-html-fastjar
|
html-host: maybe-html-fastjar
|
Line 1234... |
Line 1432... |
html-host: maybe-html-gcc
|
html-host: maybe-html-gcc
|
html-host: maybe-html-gawk
|
html-host: maybe-html-gawk
|
html-host: maybe-html-gettext
|
html-host: maybe-html-gettext
|
html-host: maybe-html-gmp
|
html-host: maybe-html-gmp
|
html-host: maybe-html-mpfr
|
html-host: maybe-html-mpfr
|
|
html-host: maybe-html-mpc
|
|
html-host: maybe-html-ppl
|
|
html-host: maybe-html-cloog
|
html-host: maybe-html-gnuserv
|
html-host: maybe-html-gnuserv
|
|
html-host: maybe-html-gold
|
html-host: maybe-html-gprof
|
html-host: maybe-html-gprof
|
html-host: maybe-html-gzip
|
html-host: maybe-html-gzip
|
html-host: maybe-html-hello
|
html-host: maybe-html-hello
|
html-host: maybe-html-indent
|
html-host: maybe-html-indent
|
html-host: maybe-html-intl
|
html-host: maybe-html-intl
|
Line 1247... |
Line 1449... |
html-host: maybe-html-ld
|
html-host: maybe-html-ld
|
html-host: maybe-html-libcpp
|
html-host: maybe-html-libcpp
|
html-host: maybe-html-libdecnumber
|
html-host: maybe-html-libdecnumber
|
html-host: maybe-html-libgui
|
html-host: maybe-html-libgui
|
html-host: maybe-html-libiberty
|
html-host: maybe-html-libiberty
|
|
html-host: maybe-html-libiconv
|
html-host: maybe-html-libtool
|
html-host: maybe-html-libtool
|
html-host: maybe-html-m4
|
html-host: maybe-html-m4
|
html-host: maybe-html-make
|
html-host: maybe-html-make
|
html-host: maybe-html-mmalloc
|
html-host: maybe-html-mmalloc
|
html-host: maybe-html-patch
|
html-host: maybe-html-patch
|
Line 1324... |
Line 1527... |
TAGS-host: maybe-TAGS-opcodes
|
TAGS-host: maybe-TAGS-opcodes
|
TAGS-host: maybe-TAGS-binutils
|
TAGS-host: maybe-TAGS-binutils
|
TAGS-host: maybe-TAGS-bison
|
TAGS-host: maybe-TAGS-bison
|
TAGS-host: maybe-TAGS-byacc
|
TAGS-host: maybe-TAGS-byacc
|
TAGS-host: maybe-TAGS-bzip2
|
TAGS-host: maybe-TAGS-bzip2
|
|
TAGS-host: maybe-TAGS-cgen
|
TAGS-host: maybe-TAGS-dejagnu
|
TAGS-host: maybe-TAGS-dejagnu
|
TAGS-host: maybe-TAGS-diff
|
TAGS-host: maybe-TAGS-diff
|
TAGS-host: maybe-TAGS-dosutils
|
TAGS-host: maybe-TAGS-dosutils
|
TAGS-host: maybe-TAGS-etc
|
TAGS-host: maybe-TAGS-etc
|
TAGS-host: maybe-TAGS-fastjar
|
TAGS-host: maybe-TAGS-fastjar
|
Line 1340... |
Line 1544... |
TAGS-host: maybe-TAGS-gcc
|
TAGS-host: maybe-TAGS-gcc
|
TAGS-host: maybe-TAGS-gawk
|
TAGS-host: maybe-TAGS-gawk
|
TAGS-host: maybe-TAGS-gettext
|
TAGS-host: maybe-TAGS-gettext
|
TAGS-host: maybe-TAGS-gmp
|
TAGS-host: maybe-TAGS-gmp
|
TAGS-host: maybe-TAGS-mpfr
|
TAGS-host: maybe-TAGS-mpfr
|
|
TAGS-host: maybe-TAGS-mpc
|
|
TAGS-host: maybe-TAGS-ppl
|
|
TAGS-host: maybe-TAGS-cloog
|
TAGS-host: maybe-TAGS-gnuserv
|
TAGS-host: maybe-TAGS-gnuserv
|
|
TAGS-host: maybe-TAGS-gold
|
TAGS-host: maybe-TAGS-gprof
|
TAGS-host: maybe-TAGS-gprof
|
TAGS-host: maybe-TAGS-gzip
|
TAGS-host: maybe-TAGS-gzip
|
TAGS-host: maybe-TAGS-hello
|
TAGS-host: maybe-TAGS-hello
|
TAGS-host: maybe-TAGS-indent
|
TAGS-host: maybe-TAGS-indent
|
TAGS-host: maybe-TAGS-intl
|
TAGS-host: maybe-TAGS-intl
|
Line 1353... |
Line 1561... |
TAGS-host: maybe-TAGS-ld
|
TAGS-host: maybe-TAGS-ld
|
TAGS-host: maybe-TAGS-libcpp
|
TAGS-host: maybe-TAGS-libcpp
|
TAGS-host: maybe-TAGS-libdecnumber
|
TAGS-host: maybe-TAGS-libdecnumber
|
TAGS-host: maybe-TAGS-libgui
|
TAGS-host: maybe-TAGS-libgui
|
TAGS-host: maybe-TAGS-libiberty
|
TAGS-host: maybe-TAGS-libiberty
|
|
TAGS-host: maybe-TAGS-libiconv
|
TAGS-host: maybe-TAGS-libtool
|
TAGS-host: maybe-TAGS-libtool
|
TAGS-host: maybe-TAGS-m4
|
TAGS-host: maybe-TAGS-m4
|
TAGS-host: maybe-TAGS-make
|
TAGS-host: maybe-TAGS-make
|
TAGS-host: maybe-TAGS-mmalloc
|
TAGS-host: maybe-TAGS-mmalloc
|
TAGS-host: maybe-TAGS-patch
|
TAGS-host: maybe-TAGS-patch
|
Line 1430... |
Line 1639... |
install-info-host: maybe-install-info-opcodes
|
install-info-host: maybe-install-info-opcodes
|
install-info-host: maybe-install-info-binutils
|
install-info-host: maybe-install-info-binutils
|
install-info-host: maybe-install-info-bison
|
install-info-host: maybe-install-info-bison
|
install-info-host: maybe-install-info-byacc
|
install-info-host: maybe-install-info-byacc
|
install-info-host: maybe-install-info-bzip2
|
install-info-host: maybe-install-info-bzip2
|
|
install-info-host: maybe-install-info-cgen
|
install-info-host: maybe-install-info-dejagnu
|
install-info-host: maybe-install-info-dejagnu
|
install-info-host: maybe-install-info-diff
|
install-info-host: maybe-install-info-diff
|
install-info-host: maybe-install-info-dosutils
|
install-info-host: maybe-install-info-dosutils
|
install-info-host: maybe-install-info-etc
|
install-info-host: maybe-install-info-etc
|
install-info-host: maybe-install-info-fastjar
|
install-info-host: maybe-install-info-fastjar
|
Line 1446... |
Line 1656... |
install-info-host: maybe-install-info-gcc
|
install-info-host: maybe-install-info-gcc
|
install-info-host: maybe-install-info-gawk
|
install-info-host: maybe-install-info-gawk
|
install-info-host: maybe-install-info-gettext
|
install-info-host: maybe-install-info-gettext
|
install-info-host: maybe-install-info-gmp
|
install-info-host: maybe-install-info-gmp
|
install-info-host: maybe-install-info-mpfr
|
install-info-host: maybe-install-info-mpfr
|
|
install-info-host: maybe-install-info-mpc
|
|
install-info-host: maybe-install-info-ppl
|
|
install-info-host: maybe-install-info-cloog
|
install-info-host: maybe-install-info-gnuserv
|
install-info-host: maybe-install-info-gnuserv
|
|
install-info-host: maybe-install-info-gold
|
install-info-host: maybe-install-info-gprof
|
install-info-host: maybe-install-info-gprof
|
install-info-host: maybe-install-info-gzip
|
install-info-host: maybe-install-info-gzip
|
install-info-host: maybe-install-info-hello
|
install-info-host: maybe-install-info-hello
|
install-info-host: maybe-install-info-indent
|
install-info-host: maybe-install-info-indent
|
install-info-host: maybe-install-info-intl
|
install-info-host: maybe-install-info-intl
|
Line 1459... |
Line 1673... |
install-info-host: maybe-install-info-ld
|
install-info-host: maybe-install-info-ld
|
install-info-host: maybe-install-info-libcpp
|
install-info-host: maybe-install-info-libcpp
|
install-info-host: maybe-install-info-libdecnumber
|
install-info-host: maybe-install-info-libdecnumber
|
install-info-host: maybe-install-info-libgui
|
install-info-host: maybe-install-info-libgui
|
install-info-host: maybe-install-info-libiberty
|
install-info-host: maybe-install-info-libiberty
|
|
install-info-host: maybe-install-info-libiconv
|
install-info-host: maybe-install-info-libtool
|
install-info-host: maybe-install-info-libtool
|
install-info-host: maybe-install-info-m4
|
install-info-host: maybe-install-info-m4
|
install-info-host: maybe-install-info-make
|
install-info-host: maybe-install-info-make
|
install-info-host: maybe-install-info-mmalloc
|
install-info-host: maybe-install-info-mmalloc
|
install-info-host: maybe-install-info-patch
|
install-info-host: maybe-install-info-patch
|
Line 1536... |
Line 1751... |
install-pdf-host: maybe-install-pdf-opcodes
|
install-pdf-host: maybe-install-pdf-opcodes
|
install-pdf-host: maybe-install-pdf-binutils
|
install-pdf-host: maybe-install-pdf-binutils
|
install-pdf-host: maybe-install-pdf-bison
|
install-pdf-host: maybe-install-pdf-bison
|
install-pdf-host: maybe-install-pdf-byacc
|
install-pdf-host: maybe-install-pdf-byacc
|
install-pdf-host: maybe-install-pdf-bzip2
|
install-pdf-host: maybe-install-pdf-bzip2
|
|
install-pdf-host: maybe-install-pdf-cgen
|
install-pdf-host: maybe-install-pdf-dejagnu
|
install-pdf-host: maybe-install-pdf-dejagnu
|
install-pdf-host: maybe-install-pdf-diff
|
install-pdf-host: maybe-install-pdf-diff
|
install-pdf-host: maybe-install-pdf-dosutils
|
install-pdf-host: maybe-install-pdf-dosutils
|
install-pdf-host: maybe-install-pdf-etc
|
install-pdf-host: maybe-install-pdf-etc
|
install-pdf-host: maybe-install-pdf-fastjar
|
install-pdf-host: maybe-install-pdf-fastjar
|
Line 1552... |
Line 1768... |
install-pdf-host: maybe-install-pdf-gcc
|
install-pdf-host: maybe-install-pdf-gcc
|
install-pdf-host: maybe-install-pdf-gawk
|
install-pdf-host: maybe-install-pdf-gawk
|
install-pdf-host: maybe-install-pdf-gettext
|
install-pdf-host: maybe-install-pdf-gettext
|
install-pdf-host: maybe-install-pdf-gmp
|
install-pdf-host: maybe-install-pdf-gmp
|
install-pdf-host: maybe-install-pdf-mpfr
|
install-pdf-host: maybe-install-pdf-mpfr
|
|
install-pdf-host: maybe-install-pdf-mpc
|
|
install-pdf-host: maybe-install-pdf-ppl
|
|
install-pdf-host: maybe-install-pdf-cloog
|
install-pdf-host: maybe-install-pdf-gnuserv
|
install-pdf-host: maybe-install-pdf-gnuserv
|
|
install-pdf-host: maybe-install-pdf-gold
|
install-pdf-host: maybe-install-pdf-gprof
|
install-pdf-host: maybe-install-pdf-gprof
|
install-pdf-host: maybe-install-pdf-gzip
|
install-pdf-host: maybe-install-pdf-gzip
|
install-pdf-host: maybe-install-pdf-hello
|
install-pdf-host: maybe-install-pdf-hello
|
install-pdf-host: maybe-install-pdf-indent
|
install-pdf-host: maybe-install-pdf-indent
|
install-pdf-host: maybe-install-pdf-intl
|
install-pdf-host: maybe-install-pdf-intl
|
Line 1565... |
Line 1785... |
install-pdf-host: maybe-install-pdf-ld
|
install-pdf-host: maybe-install-pdf-ld
|
install-pdf-host: maybe-install-pdf-libcpp
|
install-pdf-host: maybe-install-pdf-libcpp
|
install-pdf-host: maybe-install-pdf-libdecnumber
|
install-pdf-host: maybe-install-pdf-libdecnumber
|
install-pdf-host: maybe-install-pdf-libgui
|
install-pdf-host: maybe-install-pdf-libgui
|
install-pdf-host: maybe-install-pdf-libiberty
|
install-pdf-host: maybe-install-pdf-libiberty
|
|
install-pdf-host: maybe-install-pdf-libiconv
|
install-pdf-host: maybe-install-pdf-libtool
|
install-pdf-host: maybe-install-pdf-libtool
|
install-pdf-host: maybe-install-pdf-m4
|
install-pdf-host: maybe-install-pdf-m4
|
install-pdf-host: maybe-install-pdf-make
|
install-pdf-host: maybe-install-pdf-make
|
install-pdf-host: maybe-install-pdf-mmalloc
|
install-pdf-host: maybe-install-pdf-mmalloc
|
install-pdf-host: maybe-install-pdf-patch
|
install-pdf-host: maybe-install-pdf-patch
|
Line 1642... |
Line 1863... |
install-html-host: maybe-install-html-opcodes
|
install-html-host: maybe-install-html-opcodes
|
install-html-host: maybe-install-html-binutils
|
install-html-host: maybe-install-html-binutils
|
install-html-host: maybe-install-html-bison
|
install-html-host: maybe-install-html-bison
|
install-html-host: maybe-install-html-byacc
|
install-html-host: maybe-install-html-byacc
|
install-html-host: maybe-install-html-bzip2
|
install-html-host: maybe-install-html-bzip2
|
|
install-html-host: maybe-install-html-cgen
|
install-html-host: maybe-install-html-dejagnu
|
install-html-host: maybe-install-html-dejagnu
|
install-html-host: maybe-install-html-diff
|
install-html-host: maybe-install-html-diff
|
install-html-host: maybe-install-html-dosutils
|
install-html-host: maybe-install-html-dosutils
|
install-html-host: maybe-install-html-etc
|
install-html-host: maybe-install-html-etc
|
install-html-host: maybe-install-html-fastjar
|
install-html-host: maybe-install-html-fastjar
|
Line 1658... |
Line 1880... |
install-html-host: maybe-install-html-gcc
|
install-html-host: maybe-install-html-gcc
|
install-html-host: maybe-install-html-gawk
|
install-html-host: maybe-install-html-gawk
|
install-html-host: maybe-install-html-gettext
|
install-html-host: maybe-install-html-gettext
|
install-html-host: maybe-install-html-gmp
|
install-html-host: maybe-install-html-gmp
|
install-html-host: maybe-install-html-mpfr
|
install-html-host: maybe-install-html-mpfr
|
|
install-html-host: maybe-install-html-mpc
|
|
install-html-host: maybe-install-html-ppl
|
|
install-html-host: maybe-install-html-cloog
|
install-html-host: maybe-install-html-gnuserv
|
install-html-host: maybe-install-html-gnuserv
|
|
install-html-host: maybe-install-html-gold
|
install-html-host: maybe-install-html-gprof
|
install-html-host: maybe-install-html-gprof
|
install-html-host: maybe-install-html-gzip
|
install-html-host: maybe-install-html-gzip
|
install-html-host: maybe-install-html-hello
|
install-html-host: maybe-install-html-hello
|
install-html-host: maybe-install-html-indent
|
install-html-host: maybe-install-html-indent
|
install-html-host: maybe-install-html-intl
|
install-html-host: maybe-install-html-intl
|
Line 1671... |
Line 1897... |
install-html-host: maybe-install-html-ld
|
install-html-host: maybe-install-html-ld
|
install-html-host: maybe-install-html-libcpp
|
install-html-host: maybe-install-html-libcpp
|
install-html-host: maybe-install-html-libdecnumber
|
install-html-host: maybe-install-html-libdecnumber
|
install-html-host: maybe-install-html-libgui
|
install-html-host: maybe-install-html-libgui
|
install-html-host: maybe-install-html-libiberty
|
install-html-host: maybe-install-html-libiberty
|
|
install-html-host: maybe-install-html-libiconv
|
install-html-host: maybe-install-html-libtool
|
install-html-host: maybe-install-html-libtool
|
install-html-host: maybe-install-html-m4
|
install-html-host: maybe-install-html-m4
|
install-html-host: maybe-install-html-make
|
install-html-host: maybe-install-html-make
|
install-html-host: maybe-install-html-mmalloc
|
install-html-host: maybe-install-html-mmalloc
|
install-html-host: maybe-install-html-patch
|
install-html-host: maybe-install-html-patch
|
Line 1748... |
Line 1975... |
installcheck-host: maybe-installcheck-opcodes
|
installcheck-host: maybe-installcheck-opcodes
|
installcheck-host: maybe-installcheck-binutils
|
installcheck-host: maybe-installcheck-binutils
|
installcheck-host: maybe-installcheck-bison
|
installcheck-host: maybe-installcheck-bison
|
installcheck-host: maybe-installcheck-byacc
|
installcheck-host: maybe-installcheck-byacc
|
installcheck-host: maybe-installcheck-bzip2
|
installcheck-host: maybe-installcheck-bzip2
|
|
installcheck-host: maybe-installcheck-cgen
|
installcheck-host: maybe-installcheck-dejagnu
|
installcheck-host: maybe-installcheck-dejagnu
|
installcheck-host: maybe-installcheck-diff
|
installcheck-host: maybe-installcheck-diff
|
installcheck-host: maybe-installcheck-dosutils
|
installcheck-host: maybe-installcheck-dosutils
|
installcheck-host: maybe-installcheck-etc
|
installcheck-host: maybe-installcheck-etc
|
installcheck-host: maybe-installcheck-fastjar
|
installcheck-host: maybe-installcheck-fastjar
|
Line 1764... |
Line 1992... |
installcheck-host: maybe-installcheck-gcc
|
installcheck-host: maybe-installcheck-gcc
|
installcheck-host: maybe-installcheck-gawk
|
installcheck-host: maybe-installcheck-gawk
|
installcheck-host: maybe-installcheck-gettext
|
installcheck-host: maybe-installcheck-gettext
|
installcheck-host: maybe-installcheck-gmp
|
installcheck-host: maybe-installcheck-gmp
|
installcheck-host: maybe-installcheck-mpfr
|
installcheck-host: maybe-installcheck-mpfr
|
|
installcheck-host: maybe-installcheck-mpc
|
|
installcheck-host: maybe-installcheck-ppl
|
|
installcheck-host: maybe-installcheck-cloog
|
installcheck-host: maybe-installcheck-gnuserv
|
installcheck-host: maybe-installcheck-gnuserv
|
|
installcheck-host: maybe-installcheck-gold
|
installcheck-host: maybe-installcheck-gprof
|
installcheck-host: maybe-installcheck-gprof
|
installcheck-host: maybe-installcheck-gzip
|
installcheck-host: maybe-installcheck-gzip
|
installcheck-host: maybe-installcheck-hello
|
installcheck-host: maybe-installcheck-hello
|
installcheck-host: maybe-installcheck-indent
|
installcheck-host: maybe-installcheck-indent
|
installcheck-host: maybe-installcheck-intl
|
installcheck-host: maybe-installcheck-intl
|
Line 1777... |
Line 2009... |
installcheck-host: maybe-installcheck-ld
|
installcheck-host: maybe-installcheck-ld
|
installcheck-host: maybe-installcheck-libcpp
|
installcheck-host: maybe-installcheck-libcpp
|
installcheck-host: maybe-installcheck-libdecnumber
|
installcheck-host: maybe-installcheck-libdecnumber
|
installcheck-host: maybe-installcheck-libgui
|
installcheck-host: maybe-installcheck-libgui
|
installcheck-host: maybe-installcheck-libiberty
|
installcheck-host: maybe-installcheck-libiberty
|
|
installcheck-host: maybe-installcheck-libiconv
|
installcheck-host: maybe-installcheck-libtool
|
installcheck-host: maybe-installcheck-libtool
|
installcheck-host: maybe-installcheck-m4
|
installcheck-host: maybe-installcheck-m4
|
installcheck-host: maybe-installcheck-make
|
installcheck-host: maybe-installcheck-make
|
installcheck-host: maybe-installcheck-mmalloc
|
installcheck-host: maybe-installcheck-mmalloc
|
installcheck-host: maybe-installcheck-patch
|
installcheck-host: maybe-installcheck-patch
|
Line 1854... |
Line 2087... |
mostlyclean-host: maybe-mostlyclean-opcodes
|
mostlyclean-host: maybe-mostlyclean-opcodes
|
mostlyclean-host: maybe-mostlyclean-binutils
|
mostlyclean-host: maybe-mostlyclean-binutils
|
mostlyclean-host: maybe-mostlyclean-bison
|
mostlyclean-host: maybe-mostlyclean-bison
|
mostlyclean-host: maybe-mostlyclean-byacc
|
mostlyclean-host: maybe-mostlyclean-byacc
|
mostlyclean-host: maybe-mostlyclean-bzip2
|
mostlyclean-host: maybe-mostlyclean-bzip2
|
|
mostlyclean-host: maybe-mostlyclean-cgen
|
mostlyclean-host: maybe-mostlyclean-dejagnu
|
mostlyclean-host: maybe-mostlyclean-dejagnu
|
mostlyclean-host: maybe-mostlyclean-diff
|
mostlyclean-host: maybe-mostlyclean-diff
|
mostlyclean-host: maybe-mostlyclean-dosutils
|
mostlyclean-host: maybe-mostlyclean-dosutils
|
mostlyclean-host: maybe-mostlyclean-etc
|
mostlyclean-host: maybe-mostlyclean-etc
|
mostlyclean-host: maybe-mostlyclean-fastjar
|
mostlyclean-host: maybe-mostlyclean-fastjar
|
Line 1870... |
Line 2104... |
mostlyclean-host: maybe-mostlyclean-gcc
|
mostlyclean-host: maybe-mostlyclean-gcc
|
mostlyclean-host: maybe-mostlyclean-gawk
|
mostlyclean-host: maybe-mostlyclean-gawk
|
mostlyclean-host: maybe-mostlyclean-gettext
|
mostlyclean-host: maybe-mostlyclean-gettext
|
mostlyclean-host: maybe-mostlyclean-gmp
|
mostlyclean-host: maybe-mostlyclean-gmp
|
mostlyclean-host: maybe-mostlyclean-mpfr
|
mostlyclean-host: maybe-mostlyclean-mpfr
|
|
mostlyclean-host: maybe-mostlyclean-mpc
|
|
mostlyclean-host: maybe-mostlyclean-ppl
|
|
mostlyclean-host: maybe-mostlyclean-cloog
|
mostlyclean-host: maybe-mostlyclean-gnuserv
|
mostlyclean-host: maybe-mostlyclean-gnuserv
|
|
mostlyclean-host: maybe-mostlyclean-gold
|
mostlyclean-host: maybe-mostlyclean-gprof
|
mostlyclean-host: maybe-mostlyclean-gprof
|
mostlyclean-host: maybe-mostlyclean-gzip
|
mostlyclean-host: maybe-mostlyclean-gzip
|
mostlyclean-host: maybe-mostlyclean-hello
|
mostlyclean-host: maybe-mostlyclean-hello
|
mostlyclean-host: maybe-mostlyclean-indent
|
mostlyclean-host: maybe-mostlyclean-indent
|
mostlyclean-host: maybe-mostlyclean-intl
|
mostlyclean-host: maybe-mostlyclean-intl
|
Line 1883... |
Line 2121... |
mostlyclean-host: maybe-mostlyclean-ld
|
mostlyclean-host: maybe-mostlyclean-ld
|
mostlyclean-host: maybe-mostlyclean-libcpp
|
mostlyclean-host: maybe-mostlyclean-libcpp
|
mostlyclean-host: maybe-mostlyclean-libdecnumber
|
mostlyclean-host: maybe-mostlyclean-libdecnumber
|
mostlyclean-host: maybe-mostlyclean-libgui
|
mostlyclean-host: maybe-mostlyclean-libgui
|
mostlyclean-host: maybe-mostlyclean-libiberty
|
mostlyclean-host: maybe-mostlyclean-libiberty
|
|
mostlyclean-host: maybe-mostlyclean-libiconv
|
mostlyclean-host: maybe-mostlyclean-libtool
|
mostlyclean-host: maybe-mostlyclean-libtool
|
mostlyclean-host: maybe-mostlyclean-m4
|
mostlyclean-host: maybe-mostlyclean-m4
|
mostlyclean-host: maybe-mostlyclean-make
|
mostlyclean-host: maybe-mostlyclean-make
|
mostlyclean-host: maybe-mostlyclean-mmalloc
|
mostlyclean-host: maybe-mostlyclean-mmalloc
|
mostlyclean-host: maybe-mostlyclean-patch
|
mostlyclean-host: maybe-mostlyclean-patch
|
Line 1960... |
Line 2199... |
clean-host: maybe-clean-opcodes
|
clean-host: maybe-clean-opcodes
|
clean-host: maybe-clean-binutils
|
clean-host: maybe-clean-binutils
|
clean-host: maybe-clean-bison
|
clean-host: maybe-clean-bison
|
clean-host: maybe-clean-byacc
|
clean-host: maybe-clean-byacc
|
clean-host: maybe-clean-bzip2
|
clean-host: maybe-clean-bzip2
|
|
clean-host: maybe-clean-cgen
|
clean-host: maybe-clean-dejagnu
|
clean-host: maybe-clean-dejagnu
|
clean-host: maybe-clean-diff
|
clean-host: maybe-clean-diff
|
clean-host: maybe-clean-dosutils
|
clean-host: maybe-clean-dosutils
|
clean-host: maybe-clean-etc
|
clean-host: maybe-clean-etc
|
clean-host: maybe-clean-fastjar
|
clean-host: maybe-clean-fastjar
|
Line 1976... |
Line 2216... |
clean-host: maybe-clean-gcc
|
clean-host: maybe-clean-gcc
|
clean-host: maybe-clean-gawk
|
clean-host: maybe-clean-gawk
|
clean-host: maybe-clean-gettext
|
clean-host: maybe-clean-gettext
|
clean-host: maybe-clean-gmp
|
clean-host: maybe-clean-gmp
|
clean-host: maybe-clean-mpfr
|
clean-host: maybe-clean-mpfr
|
|
clean-host: maybe-clean-mpc
|
|
clean-host: maybe-clean-ppl
|
|
clean-host: maybe-clean-cloog
|
clean-host: maybe-clean-gnuserv
|
clean-host: maybe-clean-gnuserv
|
|
clean-host: maybe-clean-gold
|
clean-host: maybe-clean-gprof
|
clean-host: maybe-clean-gprof
|
clean-host: maybe-clean-gzip
|
clean-host: maybe-clean-gzip
|
clean-host: maybe-clean-hello
|
clean-host: maybe-clean-hello
|
clean-host: maybe-clean-indent
|
clean-host: maybe-clean-indent
|
clean-host: maybe-clean-intl
|
clean-host: maybe-clean-intl
|
Line 1989... |
Line 2233... |
clean-host: maybe-clean-ld
|
clean-host: maybe-clean-ld
|
clean-host: maybe-clean-libcpp
|
clean-host: maybe-clean-libcpp
|
clean-host: maybe-clean-libdecnumber
|
clean-host: maybe-clean-libdecnumber
|
clean-host: maybe-clean-libgui
|
clean-host: maybe-clean-libgui
|
clean-host: maybe-clean-libiberty
|
clean-host: maybe-clean-libiberty
|
|
clean-host: maybe-clean-libiconv
|
clean-host: maybe-clean-libtool
|
clean-host: maybe-clean-libtool
|
clean-host: maybe-clean-m4
|
clean-host: maybe-clean-m4
|
clean-host: maybe-clean-make
|
clean-host: maybe-clean-make
|
clean-host: maybe-clean-mmalloc
|
clean-host: maybe-clean-mmalloc
|
clean-host: maybe-clean-patch
|
clean-host: maybe-clean-patch
|
Line 2066... |
Line 2311... |
distclean-host: maybe-distclean-opcodes
|
distclean-host: maybe-distclean-opcodes
|
distclean-host: maybe-distclean-binutils
|
distclean-host: maybe-distclean-binutils
|
distclean-host: maybe-distclean-bison
|
distclean-host: maybe-distclean-bison
|
distclean-host: maybe-distclean-byacc
|
distclean-host: maybe-distclean-byacc
|
distclean-host: maybe-distclean-bzip2
|
distclean-host: maybe-distclean-bzip2
|
|
distclean-host: maybe-distclean-cgen
|
distclean-host: maybe-distclean-dejagnu
|
distclean-host: maybe-distclean-dejagnu
|
distclean-host: maybe-distclean-diff
|
distclean-host: maybe-distclean-diff
|
distclean-host: maybe-distclean-dosutils
|
distclean-host: maybe-distclean-dosutils
|
distclean-host: maybe-distclean-etc
|
distclean-host: maybe-distclean-etc
|
distclean-host: maybe-distclean-fastjar
|
distclean-host: maybe-distclean-fastjar
|
Line 2082... |
Line 2328... |
distclean-host: maybe-distclean-gcc
|
distclean-host: maybe-distclean-gcc
|
distclean-host: maybe-distclean-gawk
|
distclean-host: maybe-distclean-gawk
|
distclean-host: maybe-distclean-gettext
|
distclean-host: maybe-distclean-gettext
|
distclean-host: maybe-distclean-gmp
|
distclean-host: maybe-distclean-gmp
|
distclean-host: maybe-distclean-mpfr
|
distclean-host: maybe-distclean-mpfr
|
|
distclean-host: maybe-distclean-mpc
|
|
distclean-host: maybe-distclean-ppl
|
|
distclean-host: maybe-distclean-cloog
|
distclean-host: maybe-distclean-gnuserv
|
distclean-host: maybe-distclean-gnuserv
|
|
distclean-host: maybe-distclean-gold
|
distclean-host: maybe-distclean-gprof
|
distclean-host: maybe-distclean-gprof
|
distclean-host: maybe-distclean-gzip
|
distclean-host: maybe-distclean-gzip
|
distclean-host: maybe-distclean-hello
|
distclean-host: maybe-distclean-hello
|
distclean-host: maybe-distclean-indent
|
distclean-host: maybe-distclean-indent
|
distclean-host: maybe-distclean-intl
|
distclean-host: maybe-distclean-intl
|
Line 2095... |
Line 2345... |
distclean-host: maybe-distclean-ld
|
distclean-host: maybe-distclean-ld
|
distclean-host: maybe-distclean-libcpp
|
distclean-host: maybe-distclean-libcpp
|
distclean-host: maybe-distclean-libdecnumber
|
distclean-host: maybe-distclean-libdecnumber
|
distclean-host: maybe-distclean-libgui
|
distclean-host: maybe-distclean-libgui
|
distclean-host: maybe-distclean-libiberty
|
distclean-host: maybe-distclean-libiberty
|
|
distclean-host: maybe-distclean-libiconv
|
distclean-host: maybe-distclean-libtool
|
distclean-host: maybe-distclean-libtool
|
distclean-host: maybe-distclean-m4
|
distclean-host: maybe-distclean-m4
|
distclean-host: maybe-distclean-make
|
distclean-host: maybe-distclean-make
|
distclean-host: maybe-distclean-mmalloc
|
distclean-host: maybe-distclean-mmalloc
|
distclean-host: maybe-distclean-patch
|
distclean-host: maybe-distclean-patch
|
Line 2172... |
Line 2423... |
maintainer-clean-host: maybe-maintainer-clean-opcodes
|
maintainer-clean-host: maybe-maintainer-clean-opcodes
|
maintainer-clean-host: maybe-maintainer-clean-binutils
|
maintainer-clean-host: maybe-maintainer-clean-binutils
|
maintainer-clean-host: maybe-maintainer-clean-bison
|
maintainer-clean-host: maybe-maintainer-clean-bison
|
maintainer-clean-host: maybe-maintainer-clean-byacc
|
maintainer-clean-host: maybe-maintainer-clean-byacc
|
maintainer-clean-host: maybe-maintainer-clean-bzip2
|
maintainer-clean-host: maybe-maintainer-clean-bzip2
|
|
maintainer-clean-host: maybe-maintainer-clean-cgen
|
maintainer-clean-host: maybe-maintainer-clean-dejagnu
|
maintainer-clean-host: maybe-maintainer-clean-dejagnu
|
maintainer-clean-host: maybe-maintainer-clean-diff
|
maintainer-clean-host: maybe-maintainer-clean-diff
|
maintainer-clean-host: maybe-maintainer-clean-dosutils
|
maintainer-clean-host: maybe-maintainer-clean-dosutils
|
maintainer-clean-host: maybe-maintainer-clean-etc
|
maintainer-clean-host: maybe-maintainer-clean-etc
|
maintainer-clean-host: maybe-maintainer-clean-fastjar
|
maintainer-clean-host: maybe-maintainer-clean-fastjar
|
Line 2188... |
Line 2440... |
maintainer-clean-host: maybe-maintainer-clean-gcc
|
maintainer-clean-host: maybe-maintainer-clean-gcc
|
maintainer-clean-host: maybe-maintainer-clean-gawk
|
maintainer-clean-host: maybe-maintainer-clean-gawk
|
maintainer-clean-host: maybe-maintainer-clean-gettext
|
maintainer-clean-host: maybe-maintainer-clean-gettext
|
maintainer-clean-host: maybe-maintainer-clean-gmp
|
maintainer-clean-host: maybe-maintainer-clean-gmp
|
maintainer-clean-host: maybe-maintainer-clean-mpfr
|
maintainer-clean-host: maybe-maintainer-clean-mpfr
|
|
maintainer-clean-host: maybe-maintainer-clean-mpc
|
|
maintainer-clean-host: maybe-maintainer-clean-ppl
|
|
maintainer-clean-host: maybe-maintainer-clean-cloog
|
maintainer-clean-host: maybe-maintainer-clean-gnuserv
|
maintainer-clean-host: maybe-maintainer-clean-gnuserv
|
|
maintainer-clean-host: maybe-maintainer-clean-gold
|
maintainer-clean-host: maybe-maintainer-clean-gprof
|
maintainer-clean-host: maybe-maintainer-clean-gprof
|
maintainer-clean-host: maybe-maintainer-clean-gzip
|
maintainer-clean-host: maybe-maintainer-clean-gzip
|
maintainer-clean-host: maybe-maintainer-clean-hello
|
maintainer-clean-host: maybe-maintainer-clean-hello
|
maintainer-clean-host: maybe-maintainer-clean-indent
|
maintainer-clean-host: maybe-maintainer-clean-indent
|
maintainer-clean-host: maybe-maintainer-clean-intl
|
maintainer-clean-host: maybe-maintainer-clean-intl
|
Line 2201... |
Line 2457... |
maintainer-clean-host: maybe-maintainer-clean-ld
|
maintainer-clean-host: maybe-maintainer-clean-ld
|
maintainer-clean-host: maybe-maintainer-clean-libcpp
|
maintainer-clean-host: maybe-maintainer-clean-libcpp
|
maintainer-clean-host: maybe-maintainer-clean-libdecnumber
|
maintainer-clean-host: maybe-maintainer-clean-libdecnumber
|
maintainer-clean-host: maybe-maintainer-clean-libgui
|
maintainer-clean-host: maybe-maintainer-clean-libgui
|
maintainer-clean-host: maybe-maintainer-clean-libiberty
|
maintainer-clean-host: maybe-maintainer-clean-libiberty
|
|
maintainer-clean-host: maybe-maintainer-clean-libiconv
|
maintainer-clean-host: maybe-maintainer-clean-libtool
|
maintainer-clean-host: maybe-maintainer-clean-libtool
|
maintainer-clean-host: maybe-maintainer-clean-m4
|
maintainer-clean-host: maybe-maintainer-clean-m4
|
maintainer-clean-host: maybe-maintainer-clean-make
|
maintainer-clean-host: maybe-maintainer-clean-make
|
maintainer-clean-host: maybe-maintainer-clean-mmalloc
|
maintainer-clean-host: maybe-maintainer-clean-mmalloc
|
maintainer-clean-host: maybe-maintainer-clean-patch
|
maintainer-clean-host: maybe-maintainer-clean-patch
|
Line 2332... |
Line 2589... |
maybe-check-opcodes \
|
maybe-check-opcodes \
|
maybe-check-binutils \
|
maybe-check-binutils \
|
maybe-check-bison \
|
maybe-check-bison \
|
maybe-check-byacc \
|
maybe-check-byacc \
|
maybe-check-bzip2 \
|
maybe-check-bzip2 \
|
|
maybe-check-cgen \
|
maybe-check-dejagnu \
|
maybe-check-dejagnu \
|
maybe-check-diff \
|
maybe-check-diff \
|
maybe-check-dosutils \
|
maybe-check-dosutils \
|
maybe-check-etc \
|
maybe-check-etc \
|
maybe-check-fastjar \
|
maybe-check-fastjar \
|
Line 2348... |
Line 2606... |
maybe-check-gcc \
|
maybe-check-gcc \
|
maybe-check-gawk \
|
maybe-check-gawk \
|
maybe-check-gettext \
|
maybe-check-gettext \
|
maybe-check-gmp \
|
maybe-check-gmp \
|
maybe-check-mpfr \
|
maybe-check-mpfr \
|
|
maybe-check-mpc \
|
|
maybe-check-ppl \
|
|
maybe-check-cloog \
|
maybe-check-gnuserv \
|
maybe-check-gnuserv \
|
|
maybe-check-gold \
|
maybe-check-gprof \
|
maybe-check-gprof \
|
maybe-check-gzip \
|
maybe-check-gzip \
|
maybe-check-hello \
|
maybe-check-hello \
|
maybe-check-indent \
|
maybe-check-indent \
|
maybe-check-intl \
|
maybe-check-intl \
|
Line 2361... |
Line 2623... |
maybe-check-ld \
|
maybe-check-ld \
|
maybe-check-libcpp \
|
maybe-check-libcpp \
|
maybe-check-libdecnumber \
|
maybe-check-libdecnumber \
|
maybe-check-libgui \
|
maybe-check-libgui \
|
maybe-check-libiberty \
|
maybe-check-libiberty \
|
|
maybe-check-libiconv \
|
maybe-check-libtool \
|
maybe-check-libtool \
|
maybe-check-m4 \
|
maybe-check-m4 \
|
maybe-check-make \
|
maybe-check-make \
|
maybe-check-mmalloc \
|
maybe-check-mmalloc \
|
maybe-check-patch \
|
maybe-check-patch \
|
Line 2465... |
Line 2728... |
maybe-install-opcodes \
|
maybe-install-opcodes \
|
maybe-install-binutils \
|
maybe-install-binutils \
|
maybe-install-bison \
|
maybe-install-bison \
|
maybe-install-byacc \
|
maybe-install-byacc \
|
maybe-install-bzip2 \
|
maybe-install-bzip2 \
|
|
maybe-install-cgen \
|
maybe-install-dejagnu \
|
maybe-install-dejagnu \
|
maybe-install-diff \
|
maybe-install-diff \
|
maybe-install-dosutils \
|
maybe-install-dosutils \
|
maybe-install-etc \
|
maybe-install-etc \
|
maybe-install-fastjar \
|
maybe-install-fastjar \
|
Line 2480... |
Line 2744... |
maybe-install-gas \
|
maybe-install-gas \
|
maybe-install-gawk \
|
maybe-install-gawk \
|
maybe-install-gettext \
|
maybe-install-gettext \
|
maybe-install-gmp \
|
maybe-install-gmp \
|
maybe-install-mpfr \
|
maybe-install-mpfr \
|
|
maybe-install-mpc \
|
|
maybe-install-ppl \
|
|
maybe-install-cloog \
|
maybe-install-gnuserv \
|
maybe-install-gnuserv \
|
|
maybe-install-gold \
|
maybe-install-gprof \
|
maybe-install-gprof \
|
maybe-install-gzip \
|
maybe-install-gzip \
|
maybe-install-hello \
|
maybe-install-hello \
|
maybe-install-indent \
|
maybe-install-indent \
|
maybe-install-intl \
|
maybe-install-intl \
|
Line 2493... |
Line 2761... |
maybe-install-ld \
|
maybe-install-ld \
|
maybe-install-libcpp \
|
maybe-install-libcpp \
|
maybe-install-libdecnumber \
|
maybe-install-libdecnumber \
|
maybe-install-libgui \
|
maybe-install-libgui \
|
maybe-install-libiberty \
|
maybe-install-libiberty \
|
|
maybe-install-libiconv \
|
maybe-install-libtool \
|
maybe-install-libtool \
|
maybe-install-m4 \
|
maybe-install-m4 \
|
maybe-install-make \
|
maybe-install-make \
|
maybe-install-mmalloc \
|
maybe-install-mmalloc \
|
maybe-install-patch \
|
maybe-install-patch \
|
Line 2537... |
Line 2806... |
maybe-install-opcodes \
|
maybe-install-opcodes \
|
maybe-install-binutils \
|
maybe-install-binutils \
|
maybe-install-bison \
|
maybe-install-bison \
|
maybe-install-byacc \
|
maybe-install-byacc \
|
maybe-install-bzip2 \
|
maybe-install-bzip2 \
|
|
maybe-install-cgen \
|
maybe-install-dejagnu \
|
maybe-install-dejagnu \
|
maybe-install-diff \
|
maybe-install-diff \
|
maybe-install-dosutils \
|
maybe-install-dosutils \
|
maybe-install-etc \
|
maybe-install-etc \
|
maybe-install-fastjar \
|
maybe-install-fastjar \
|
Line 2553... |
Line 2823... |
maybe-install-gcc \
|
maybe-install-gcc \
|
maybe-install-gawk \
|
maybe-install-gawk \
|
maybe-install-gettext \
|
maybe-install-gettext \
|
maybe-install-gmp \
|
maybe-install-gmp \
|
maybe-install-mpfr \
|
maybe-install-mpfr \
|
|
maybe-install-mpc \
|
|
maybe-install-ppl \
|
|
maybe-install-cloog \
|
maybe-install-gnuserv \
|
maybe-install-gnuserv \
|
|
maybe-install-gold \
|
maybe-install-gprof \
|
maybe-install-gprof \
|
maybe-install-gzip \
|
maybe-install-gzip \
|
maybe-install-hello \
|
maybe-install-hello \
|
maybe-install-indent \
|
maybe-install-indent \
|
maybe-install-intl \
|
maybe-install-intl \
|
Line 2566... |
Line 2840... |
maybe-install-ld \
|
maybe-install-ld \
|
maybe-install-libcpp \
|
maybe-install-libcpp \
|
maybe-install-libdecnumber \
|
maybe-install-libdecnumber \
|
maybe-install-libgui \
|
maybe-install-libgui \
|
maybe-install-libiberty \
|
maybe-install-libiberty \
|
|
maybe-install-libiconv \
|
maybe-install-libtool \
|
maybe-install-libtool \
|
maybe-install-m4 \
|
maybe-install-m4 \
|
maybe-install-make \
|
maybe-install-make \
|
maybe-install-mmalloc \
|
maybe-install-mmalloc \
|
maybe-install-patch \
|
maybe-install-patch \
|
Line 2734... |
Line 3009... |
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(BUILD_EXPORTS) \
|
$(BUILD_EXPORTS) \
|
(cd $(BUILD_SUBDIR)/libiberty && \
|
(cd $(BUILD_SUBDIR)/libiberty && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_BUILD_FLAGS) \
|
$(TARGET-build-libiberty))
|
$(TARGET-build-libiberty))
|
@endif build-libiberty
|
@endif build-libiberty
|
|
|
|
|
|
|
Line 2790... |
Line 3065... |
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(BUILD_EXPORTS) \
|
$(BUILD_EXPORTS) \
|
(cd $(BUILD_SUBDIR)/bison && \
|
(cd $(BUILD_SUBDIR)/bison && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_BUILD_FLAGS) \
|
$(TARGET-build-bison))
|
$(TARGET-build-bison))
|
@endif build-bison
|
@endif build-bison
|
|
|
|
|
|
|
Line 2846... |
Line 3121... |
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(BUILD_EXPORTS) \
|
$(BUILD_EXPORTS) \
|
(cd $(BUILD_SUBDIR)/byacc && \
|
(cd $(BUILD_SUBDIR)/byacc && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_BUILD_FLAGS) \
|
$(TARGET-build-byacc))
|
$(TARGET-build-byacc))
|
@endif build-byacc
|
@endif build-byacc
|
|
|
|
|
|
|
Line 2902... |
Line 3177... |
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(BUILD_EXPORTS) \
|
$(BUILD_EXPORTS) \
|
(cd $(BUILD_SUBDIR)/flex && \
|
(cd $(BUILD_SUBDIR)/flex && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_BUILD_FLAGS) \
|
$(TARGET-build-flex))
|
$(TARGET-build-flex))
|
@endif build-flex
|
@endif build-flex
|
|
|
|
|
|
|
Line 2958... |
Line 3233... |
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(BUILD_EXPORTS) \
|
$(BUILD_EXPORTS) \
|
(cd $(BUILD_SUBDIR)/m4 && \
|
(cd $(BUILD_SUBDIR)/m4 && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_BUILD_FLAGS) \
|
$(TARGET-build-m4))
|
$(TARGET-build-m4))
|
@endif build-m4
|
@endif build-m4
|
|
|
|
|
|
|
Line 3014... |
Line 3289... |
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(BUILD_EXPORTS) \
|
$(BUILD_EXPORTS) \
|
(cd $(BUILD_SUBDIR)/texinfo && \
|
(cd $(BUILD_SUBDIR)/texinfo && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_BUILD_FLAGS) \
|
$(TARGET-build-texinfo))
|
$(TARGET-build-texinfo))
|
@endif build-texinfo
|
@endif build-texinfo
|
|
|
|
|
|
|
Line 3070... |
Line 3345... |
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(BUILD_EXPORTS) \
|
$(BUILD_EXPORTS) \
|
(cd $(BUILD_SUBDIR)/fixincludes && \
|
(cd $(BUILD_SUBDIR)/fixincludes && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_BUILD_FLAGS) \
|
$(TARGET-build-fixincludes))
|
$(TARGET-build-fixincludes))
|
@endif build-fixincludes
|
@endif build-fixincludes
|
|
|
|
|
|
|
Line 4822... |
Line 5097... |
configure-stage1-bfd:
|
configure-stage1-bfd:
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/bfd/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/bfd/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 1 in $(HOST_SUBDIR)/bfd ; \
|
echo Configuring stage 1 in $(HOST_SUBDIR)/bfd ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd ; \
|
cd $(HOST_SUBDIR)/bfd || exit 1; \
|
cd $(HOST_SUBDIR)/bfd || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 4839... |
Line 5116... |
srcdiroption="--srcdir=$${topdir}/bfd"; \
|
srcdiroption="--srcdir=$${topdir}/bfd"; \
|
libsrcdir="$$s/bfd"; \
|
libsrcdir="$$s/bfd"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
\
|
$(STAGE1_CONFIGURE_FLAGS)
|
--disable-intermodule $(STAGE1_CHECKING) --disable-coverage --enable-languages="$(STAGE1_LANGUAGES)"
|
|
@endif bfd-bootstrap
|
@endif bfd-bootstrap
|
|
|
.PHONY: configure-stage2-bfd maybe-configure-stage2-bfd
|
.PHONY: configure-stage2-bfd maybe-configure-stage2-bfd
|
maybe-configure-stage2-bfd:
|
maybe-configure-stage2-bfd:
|
@if bfd-bootstrap
|
@if bfd-bootstrap
|
Line 4852... |
Line 5128... |
configure-stage2-bfd:
|
configure-stage2-bfd:
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/bfd/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/bfd/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE2_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 2 in $(HOST_SUBDIR)/bfd ; \
|
echo Configuring stage 2 in $(HOST_SUBDIR)/bfd ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd ; \
|
cd $(HOST_SUBDIR)/bfd || exit 1; \
|
cd $(HOST_SUBDIR)/bfd || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 4871... |
Line 5149... |
libsrcdir="$$s/bfd"; \
|
libsrcdir="$$s/bfd"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE2_CONFIGURE_FLAGS)
|
@endif bfd-bootstrap
|
|
|
|
.PHONY: configure-stageb2g0-bfd maybe-configure-stageb2g0-bfd
|
|
maybe-configure-stageb2g0-bfd:
|
|
@if bfd-bootstrap
|
|
maybe-configure-stageb2g0-bfd: configure-stageb2g0-bfd
|
|
configure-stageb2g0-bfd:
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/bfd/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE2_CFLAGS) -g0"; export CXXFLAGS; \
|
|
echo Configuring stage b2g0 in $(HOST_SUBDIR)/bfd ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd ; \
|
|
cd $(HOST_SUBDIR)/bfd || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/bfd/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/bfd"; \
|
|
libsrcdir="$$s/bfd"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@
|
|
@endif bfd-bootstrap
|
@endif bfd-bootstrap
|
|
|
.PHONY: configure-stage3-bfd maybe-configure-stage3-bfd
|
.PHONY: configure-stage3-bfd maybe-configure-stage3-bfd
|
maybe-configure-stage3-bfd:
|
maybe-configure-stage3-bfd:
|
@if bfd-bootstrap
|
@if bfd-bootstrap
|
Line 4914... |
Line 5161... |
configure-stage3-bfd:
|
configure-stage3-bfd:
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/bfd/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/bfd/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE3_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 3 in $(HOST_SUBDIR)/bfd ; \
|
echo Configuring stage 3 in $(HOST_SUBDIR)/bfd ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd ; \
|
cd $(HOST_SUBDIR)/bfd || exit 1; \
|
cd $(HOST_SUBDIR)/bfd || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 4933... |
Line 5182... |
libsrcdir="$$s/bfd"; \
|
libsrcdir="$$s/bfd"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE3_CONFIGURE_FLAGS)
|
@endif bfd-bootstrap
|
|
|
|
.PHONY: configure-stageb3g2-bfd maybe-configure-stageb3g2-bfd
|
|
maybe-configure-stageb3g2-bfd:
|
|
@if bfd-bootstrap
|
|
maybe-configure-stageb3g2-bfd: configure-stageb3g2-bfd
|
|
configure-stageb3g2-bfd:
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/bfd/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE3_CFLAGS) -g2"; export CXXFLAGS; \
|
|
echo Configuring stage b3g2 in $(HOST_SUBDIR)/bfd ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd ; \
|
|
cd $(HOST_SUBDIR)/bfd || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/bfd/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/bfd"; \
|
|
libsrcdir="$$s/bfd"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@
|
|
@endif bfd-bootstrap
|
@endif bfd-bootstrap
|
|
|
.PHONY: configure-stage4-bfd maybe-configure-stage4-bfd
|
.PHONY: configure-stage4-bfd maybe-configure-stage4-bfd
|
maybe-configure-stage4-bfd:
|
maybe-configure-stage4-bfd:
|
@if bfd-bootstrap
|
@if bfd-bootstrap
|
Line 4976... |
Line 5194... |
configure-stage4-bfd:
|
configure-stage4-bfd:
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/bfd/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/bfd/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE4_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 4 in $(HOST_SUBDIR)/bfd ; \
|
echo Configuring stage 4 in $(HOST_SUBDIR)/bfd ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd ; \
|
cd $(HOST_SUBDIR)/bfd || exit 1; \
|
cd $(HOST_SUBDIR)/bfd || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 4995... |
Line 5215... |
libsrcdir="$$s/bfd"; \
|
libsrcdir="$$s/bfd"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE4_CONFIGURE_FLAGS)
|
@endif bfd-bootstrap
|
@endif bfd-bootstrap
|
|
|
.PHONY: configure-stageprofile-bfd maybe-configure-stageprofile-bfd
|
.PHONY: configure-stageprofile-bfd maybe-configure-stageprofile-bfd
|
maybe-configure-stageprofile-bfd:
|
maybe-configure-stageprofile-bfd:
|
@if bfd-bootstrap
|
@if bfd-bootstrap
|
Line 5007... |
Line 5227... |
configure-stageprofile-bfd:
|
configure-stageprofile-bfd:
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/bfd/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/bfd/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate"; export CFLAGS; \
|
CFLAGS="$(STAGEprofile_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGEprofile_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage profile in $(HOST_SUBDIR)/bfd ; \
|
echo Configuring stage profile in $(HOST_SUBDIR)/bfd ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd ; \
|
cd $(HOST_SUBDIR)/bfd || exit 1; \
|
cd $(HOST_SUBDIR)/bfd || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 5026... |
Line 5248... |
libsrcdir="$$s/bfd"; \
|
libsrcdir="$$s/bfd"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGEprofile_CONFIGURE_FLAGS)
|
@endif bfd-bootstrap
|
@endif bfd-bootstrap
|
|
|
.PHONY: configure-stagefeedback-bfd maybe-configure-stagefeedback-bfd
|
.PHONY: configure-stagefeedback-bfd maybe-configure-stagefeedback-bfd
|
maybe-configure-stagefeedback-bfd:
|
maybe-configure-stagefeedback-bfd:
|
@if bfd-bootstrap
|
@if bfd-bootstrap
|
Line 5038... |
Line 5260... |
configure-stagefeedback-bfd:
|
configure-stagefeedback-bfd:
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/bfd/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/bfd/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use"; export CFLAGS; \
|
CFLAGS="$(STAGEfeedback_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage feedback in $(HOST_SUBDIR)/bfd ; \
|
echo Configuring stage feedback in $(HOST_SUBDIR)/bfd ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/bfd ; \
|
cd $(HOST_SUBDIR)/bfd || exit 1; \
|
cd $(HOST_SUBDIR)/bfd || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 5057... |
Line 5281... |
libsrcdir="$$s/bfd"; \
|
libsrcdir="$$s/bfd"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGEfeedback_CONFIGURE_FLAGS)
|
@endif bfd-bootstrap
|
@endif bfd-bootstrap
|
|
|
|
|
|
|
|
|
Line 5095... |
Line 5319... |
TARGET-stage1-bfd = $(TARGET-bfd)
|
TARGET-stage1-bfd = $(TARGET-bfd)
|
all-stage1-bfd: configure-stage1-bfd
|
all-stage1-bfd: configure-stage1-bfd
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/bfd && \
|
cd $(HOST_SUBDIR)/bfd && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE1_CFLAGS)" CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS="$(STAGE1_CFLAGS)" \
|
LIBCFLAGS="$(STAGE1_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" \
|
LIBCFLAGS="$(LIBCFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) \
|
|
TFLAGS="$(STAGE1_TFLAGS)" \
|
$(TARGET-stage1-bfd)
|
$(TARGET-stage1-bfd)
|
|
|
maybe-clean-stage1-bfd: clean-stage1-bfd
|
maybe-clean-stage1-bfd: clean-stage1-bfd
|
clean-stage1: clean-stage1-bfd
|
clean-stage1: clean-stage1-bfd
|
clean-stage1-bfd:
|
clean-stage1-bfd:
|
Line 5131... |
Line 5360... |
TARGET-stage2-bfd = $(TARGET-bfd)
|
TARGET-stage2-bfd = $(TARGET-bfd)
|
all-stage2-bfd: configure-stage2-bfd
|
all-stage2-bfd: configure-stage2-bfd
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/bfd && \
|
cd $(HOST_SUBDIR)/bfd && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS)" CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS="$(STAGE2_CFLAGS)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" \
|
LIBCFLAGS="$(STAGE2_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE2_TFLAGS)" \
|
$(TARGET-stage2-bfd)
|
$(TARGET-stage2-bfd)
|
|
|
maybe-clean-stage2-bfd: clean-stage2-bfd
|
maybe-clean-stage2-bfd: clean-stage2-bfd
|
clean-stage2: clean-stage2-bfd
|
clean-stage2: clean-stage2-bfd
|
clean-stage2-bfd:
|
clean-stage2-bfd:
|
Line 5157... |
Line 5391... |
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
clean
|
clean
|
@endif bfd-bootstrap
|
@endif bfd-bootstrap
|
|
|
|
|
.PHONY: all-stageb2g0-bfd maybe-all-stageb2g0-bfd
|
|
.PHONY: clean-stageb2g0-bfd maybe-clean-stageb2g0-bfd
|
|
maybe-all-stageb2g0-bfd:
|
|
maybe-clean-stageb2g0-bfd:
|
|
@if bfd-bootstrap
|
|
maybe-all-stageb2g0-bfd: all-stageb2g0-bfd
|
|
all-stageb2g0: all-stageb2g0-bfd
|
|
TARGET-stageb2g0-bfd = $(TARGET-bfd)
|
|
all-stageb2g0-bfd: configure-stageb2g0-bfd
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/bfd && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0" CXXFLAGS="$(STAGE2_CFLAGS) -g0" \
|
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
$(TARGET-stageb2g0-bfd)
|
|
|
|
maybe-clean-stageb2g0-bfd: clean-stageb2g0-bfd
|
|
clean-stageb2g0: clean-stageb2g0-bfd
|
|
clean-stageb2g0-bfd:
|
|
@if [ $(current_stage) = stageb2g0 ]; then \
|
|
[ -f $(HOST_SUBDIR)/bfd/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageb2g0-bfd/Makefile ] || exit 0; \
|
|
$(MAKE) stageb2g0-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/bfd && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif bfd-bootstrap
|
|
|
|
|
|
.PHONY: all-stage3-bfd maybe-all-stage3-bfd
|
.PHONY: all-stage3-bfd maybe-all-stage3-bfd
|
.PHONY: clean-stage3-bfd maybe-clean-stage3-bfd
|
.PHONY: clean-stage3-bfd maybe-clean-stage3-bfd
|
maybe-all-stage3-bfd:
|
maybe-all-stage3-bfd:
|
maybe-clean-stage3-bfd:
|
maybe-clean-stage3-bfd:
|
@if bfd-bootstrap
|
@if bfd-bootstrap
|
Line 5207... |
Line 5403... |
TARGET-stage3-bfd = $(TARGET-bfd)
|
TARGET-stage3-bfd = $(TARGET-bfd)
|
all-stage3-bfd: configure-stage3-bfd
|
all-stage3-bfd: configure-stage3-bfd
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/bfd && \
|
cd $(HOST_SUBDIR)/bfd && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS)" CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS="$(STAGE3_CFLAGS)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" \
|
LIBCFLAGS="$(STAGE3_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE3_TFLAGS)" \
|
$(TARGET-stage3-bfd)
|
$(TARGET-stage3-bfd)
|
|
|
maybe-clean-stage3-bfd: clean-stage3-bfd
|
maybe-clean-stage3-bfd: clean-stage3-bfd
|
clean-stage3: clean-stage3-bfd
|
clean-stage3: clean-stage3-bfd
|
clean-stage3-bfd:
|
clean-stage3-bfd:
|
Line 5233... |
Line 5434... |
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
clean
|
clean
|
@endif bfd-bootstrap
|
@endif bfd-bootstrap
|
|
|
|
|
.PHONY: all-stageb3g2-bfd maybe-all-stageb3g2-bfd
|
|
.PHONY: clean-stageb3g2-bfd maybe-clean-stageb3g2-bfd
|
|
maybe-all-stageb3g2-bfd:
|
|
maybe-clean-stageb3g2-bfd:
|
|
@if bfd-bootstrap
|
|
maybe-all-stageb3g2-bfd: all-stageb3g2-bfd
|
|
all-stageb3g2: all-stageb3g2-bfd
|
|
TARGET-stageb3g2-bfd = $(TARGET-bfd)
|
|
all-stageb3g2-bfd: configure-stageb3g2-bfd
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/bfd && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2" CXXFLAGS="$(STAGE3_CFLAGS) -g2" \
|
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
$(TARGET-stageb3g2-bfd)
|
|
|
|
maybe-clean-stageb3g2-bfd: clean-stageb3g2-bfd
|
|
clean-stageb3g2: clean-stageb3g2-bfd
|
|
clean-stageb3g2-bfd:
|
|
@if [ $(current_stage) = stageb3g2 ]; then \
|
|
[ -f $(HOST_SUBDIR)/bfd/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageb3g2-bfd/Makefile ] || exit 0; \
|
|
$(MAKE) stageb3g2-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/bfd && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif bfd-bootstrap
|
|
|
|
|
|
.PHONY: all-stage4-bfd maybe-all-stage4-bfd
|
.PHONY: all-stage4-bfd maybe-all-stage4-bfd
|
.PHONY: clean-stage4-bfd maybe-clean-stage4-bfd
|
.PHONY: clean-stage4-bfd maybe-clean-stage4-bfd
|
maybe-all-stage4-bfd:
|
maybe-all-stage4-bfd:
|
maybe-clean-stage4-bfd:
|
maybe-clean-stage4-bfd:
|
@if bfd-bootstrap
|
@if bfd-bootstrap
|
Line 5283... |
Line 5446... |
TARGET-stage4-bfd = $(TARGET-bfd)
|
TARGET-stage4-bfd = $(TARGET-bfd)
|
all-stage4-bfd: configure-stage4-bfd
|
all-stage4-bfd: configure-stage4-bfd
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/bfd && \
|
cd $(HOST_SUBDIR)/bfd && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE4_CFLAGS)" CXXFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS="$(STAGE4_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE4_TFLAGS)" \
|
$(TARGET-stage4-bfd)
|
$(TARGET-stage4-bfd)
|
|
|
maybe-clean-stage4-bfd: clean-stage4-bfd
|
maybe-clean-stage4-bfd: clean-stage4-bfd
|
clean-stage4: clean-stage4-bfd
|
clean-stage4: clean-stage4-bfd
|
clean-stage4-bfd:
|
clean-stage4-bfd:
|
Line 5321... |
Line 5489... |
TARGET-stageprofile-bfd = $(TARGET-bfd)
|
TARGET-stageprofile-bfd = $(TARGET-bfd)
|
all-stageprofile-bfd: configure-stageprofile-bfd
|
all-stageprofile-bfd: configure-stageprofile-bfd
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/bfd && \
|
cd $(HOST_SUBDIR)/bfd && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" \
|
CFLAGS="$(STAGEprofile_CFLAGS)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
CXXFLAGS="$(STAGEprofile_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)" \
|
$(TARGET-stageprofile-bfd)
|
$(TARGET-stageprofile-bfd)
|
|
|
maybe-clean-stageprofile-bfd: clean-stageprofile-bfd
|
maybe-clean-stageprofile-bfd: clean-stageprofile-bfd
|
clean-stageprofile: clean-stageprofile-bfd
|
clean-stageprofile: clean-stageprofile-bfd
|
clean-stageprofile-bfd:
|
clean-stageprofile-bfd:
|
Line 5359... |
Line 5532... |
TARGET-stagefeedback-bfd = $(TARGET-bfd)
|
TARGET-stagefeedback-bfd = $(TARGET-bfd)
|
all-stagefeedback-bfd: configure-stagefeedback-bfd
|
all-stagefeedback-bfd: configure-stagefeedback-bfd
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/bfd && \
|
cd $(HOST_SUBDIR)/bfd && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use" CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use" \
|
CFLAGS="$(STAGEfeedback_CFLAGS)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)" \
|
$(TARGET-stagefeedback-bfd)
|
$(TARGET-stagefeedback-bfd)
|
|
|
maybe-clean-stagefeedback-bfd: clean-stagefeedback-bfd
|
maybe-clean-stagefeedback-bfd: clean-stagefeedback-bfd
|
clean-stagefeedback: clean-stagefeedback-bfd
|
clean-stagefeedback: clean-stagefeedback-bfd
|
clean-stagefeedback-bfd:
|
clean-stagefeedback-bfd:
|
Line 5785... |
Line 5963... |
configure-stage1-opcodes:
|
configure-stage1-opcodes:
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/opcodes/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/opcodes/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 1 in $(HOST_SUBDIR)/opcodes ; \
|
echo Configuring stage 1 in $(HOST_SUBDIR)/opcodes ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes ; \
|
cd $(HOST_SUBDIR)/opcodes || exit 1; \
|
cd $(HOST_SUBDIR)/opcodes || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 5802... |
Line 5982... |
srcdiroption="--srcdir=$${topdir}/opcodes"; \
|
srcdiroption="--srcdir=$${topdir}/opcodes"; \
|
libsrcdir="$$s/opcodes"; \
|
libsrcdir="$$s/opcodes"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
\
|
$(STAGE1_CONFIGURE_FLAGS)
|
--disable-intermodule $(STAGE1_CHECKING) --disable-coverage --enable-languages="$(STAGE1_LANGUAGES)"
|
|
@endif opcodes-bootstrap
|
@endif opcodes-bootstrap
|
|
|
.PHONY: configure-stage2-opcodes maybe-configure-stage2-opcodes
|
.PHONY: configure-stage2-opcodes maybe-configure-stage2-opcodes
|
maybe-configure-stage2-opcodes:
|
maybe-configure-stage2-opcodes:
|
@if opcodes-bootstrap
|
@if opcodes-bootstrap
|
Line 5815... |
Line 5994... |
configure-stage2-opcodes:
|
configure-stage2-opcodes:
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/opcodes/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/opcodes/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE2_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 2 in $(HOST_SUBDIR)/opcodes ; \
|
echo Configuring stage 2 in $(HOST_SUBDIR)/opcodes ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes ; \
|
cd $(HOST_SUBDIR)/opcodes || exit 1; \
|
cd $(HOST_SUBDIR)/opcodes || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 5834... |
Line 6015... |
libsrcdir="$$s/opcodes"; \
|
libsrcdir="$$s/opcodes"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE2_CONFIGURE_FLAGS)
|
@endif opcodes-bootstrap
|
|
|
|
.PHONY: configure-stageb2g0-opcodes maybe-configure-stageb2g0-opcodes
|
|
maybe-configure-stageb2g0-opcodes:
|
|
@if opcodes-bootstrap
|
|
maybe-configure-stageb2g0-opcodes: configure-stageb2g0-opcodes
|
|
configure-stageb2g0-opcodes:
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/opcodes/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE2_CFLAGS) -g0"; export CXXFLAGS; \
|
|
echo Configuring stage b2g0 in $(HOST_SUBDIR)/opcodes ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes ; \
|
|
cd $(HOST_SUBDIR)/opcodes || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/opcodes/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/opcodes"; \
|
|
libsrcdir="$$s/opcodes"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@
|
|
@endif opcodes-bootstrap
|
@endif opcodes-bootstrap
|
|
|
.PHONY: configure-stage3-opcodes maybe-configure-stage3-opcodes
|
.PHONY: configure-stage3-opcodes maybe-configure-stage3-opcodes
|
maybe-configure-stage3-opcodes:
|
maybe-configure-stage3-opcodes:
|
@if opcodes-bootstrap
|
@if opcodes-bootstrap
|
Line 5877... |
Line 6027... |
configure-stage3-opcodes:
|
configure-stage3-opcodes:
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/opcodes/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/opcodes/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE3_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 3 in $(HOST_SUBDIR)/opcodes ; \
|
echo Configuring stage 3 in $(HOST_SUBDIR)/opcodes ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes ; \
|
cd $(HOST_SUBDIR)/opcodes || exit 1; \
|
cd $(HOST_SUBDIR)/opcodes || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 5896... |
Line 6048... |
libsrcdir="$$s/opcodes"; \
|
libsrcdir="$$s/opcodes"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE3_CONFIGURE_FLAGS)
|
@endif opcodes-bootstrap
|
|
|
|
.PHONY: configure-stageb3g2-opcodes maybe-configure-stageb3g2-opcodes
|
|
maybe-configure-stageb3g2-opcodes:
|
|
@if opcodes-bootstrap
|
|
maybe-configure-stageb3g2-opcodes: configure-stageb3g2-opcodes
|
|
configure-stageb3g2-opcodes:
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/opcodes/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE3_CFLAGS) -g2"; export CXXFLAGS; \
|
|
echo Configuring stage b3g2 in $(HOST_SUBDIR)/opcodes ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes ; \
|
|
cd $(HOST_SUBDIR)/opcodes || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/opcodes/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/opcodes"; \
|
|
libsrcdir="$$s/opcodes"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@
|
|
@endif opcodes-bootstrap
|
@endif opcodes-bootstrap
|
|
|
.PHONY: configure-stage4-opcodes maybe-configure-stage4-opcodes
|
.PHONY: configure-stage4-opcodes maybe-configure-stage4-opcodes
|
maybe-configure-stage4-opcodes:
|
maybe-configure-stage4-opcodes:
|
@if opcodes-bootstrap
|
@if opcodes-bootstrap
|
Line 5939... |
Line 6060... |
configure-stage4-opcodes:
|
configure-stage4-opcodes:
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/opcodes/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/opcodes/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE4_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 4 in $(HOST_SUBDIR)/opcodes ; \
|
echo Configuring stage 4 in $(HOST_SUBDIR)/opcodes ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes ; \
|
cd $(HOST_SUBDIR)/opcodes || exit 1; \
|
cd $(HOST_SUBDIR)/opcodes || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 5958... |
Line 6081... |
libsrcdir="$$s/opcodes"; \
|
libsrcdir="$$s/opcodes"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE4_CONFIGURE_FLAGS)
|
@endif opcodes-bootstrap
|
@endif opcodes-bootstrap
|
|
|
.PHONY: configure-stageprofile-opcodes maybe-configure-stageprofile-opcodes
|
.PHONY: configure-stageprofile-opcodes maybe-configure-stageprofile-opcodes
|
maybe-configure-stageprofile-opcodes:
|
maybe-configure-stageprofile-opcodes:
|
@if opcodes-bootstrap
|
@if opcodes-bootstrap
|
Line 5970... |
Line 6093... |
configure-stageprofile-opcodes:
|
configure-stageprofile-opcodes:
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/opcodes/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/opcodes/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate"; export CFLAGS; \
|
CFLAGS="$(STAGEprofile_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGEprofile_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage profile in $(HOST_SUBDIR)/opcodes ; \
|
echo Configuring stage profile in $(HOST_SUBDIR)/opcodes ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes ; \
|
cd $(HOST_SUBDIR)/opcodes || exit 1; \
|
cd $(HOST_SUBDIR)/opcodes || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 5989... |
Line 6114... |
libsrcdir="$$s/opcodes"; \
|
libsrcdir="$$s/opcodes"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGEprofile_CONFIGURE_FLAGS)
|
@endif opcodes-bootstrap
|
@endif opcodes-bootstrap
|
|
|
.PHONY: configure-stagefeedback-opcodes maybe-configure-stagefeedback-opcodes
|
.PHONY: configure-stagefeedback-opcodes maybe-configure-stagefeedback-opcodes
|
maybe-configure-stagefeedback-opcodes:
|
maybe-configure-stagefeedback-opcodes:
|
@if opcodes-bootstrap
|
@if opcodes-bootstrap
|
Line 6001... |
Line 6126... |
configure-stagefeedback-opcodes:
|
configure-stagefeedback-opcodes:
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/opcodes/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/opcodes/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use"; export CFLAGS; \
|
CFLAGS="$(STAGEfeedback_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage feedback in $(HOST_SUBDIR)/opcodes ; \
|
echo Configuring stage feedback in $(HOST_SUBDIR)/opcodes ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/opcodes ; \
|
cd $(HOST_SUBDIR)/opcodes || exit 1; \
|
cd $(HOST_SUBDIR)/opcodes || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 6020... |
Line 6147... |
libsrcdir="$$s/opcodes"; \
|
libsrcdir="$$s/opcodes"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGEfeedback_CONFIGURE_FLAGS)
|
@endif opcodes-bootstrap
|
@endif opcodes-bootstrap
|
|
|
|
|
|
|
|
|
Line 6058... |
Line 6185... |
TARGET-stage1-opcodes = $(TARGET-opcodes)
|
TARGET-stage1-opcodes = $(TARGET-opcodes)
|
all-stage1-opcodes: configure-stage1-opcodes
|
all-stage1-opcodes: configure-stage1-opcodes
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/opcodes && \
|
cd $(HOST_SUBDIR)/opcodes && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE1_CFLAGS)" CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS="$(STAGE1_CFLAGS)" \
|
LIBCFLAGS="$(STAGE1_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" \
|
LIBCFLAGS="$(LIBCFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) \
|
|
TFLAGS="$(STAGE1_TFLAGS)" \
|
$(TARGET-stage1-opcodes)
|
$(TARGET-stage1-opcodes)
|
|
|
maybe-clean-stage1-opcodes: clean-stage1-opcodes
|
maybe-clean-stage1-opcodes: clean-stage1-opcodes
|
clean-stage1: clean-stage1-opcodes
|
clean-stage1: clean-stage1-opcodes
|
clean-stage1-opcodes:
|
clean-stage1-opcodes:
|
Line 6094... |
Line 6226... |
TARGET-stage2-opcodes = $(TARGET-opcodes)
|
TARGET-stage2-opcodes = $(TARGET-opcodes)
|
all-stage2-opcodes: configure-stage2-opcodes
|
all-stage2-opcodes: configure-stage2-opcodes
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/opcodes && \
|
cd $(HOST_SUBDIR)/opcodes && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS)" CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS="$(STAGE2_CFLAGS)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" \
|
LIBCFLAGS="$(STAGE2_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE2_TFLAGS)" \
|
$(TARGET-stage2-opcodes)
|
$(TARGET-stage2-opcodes)
|
|
|
maybe-clean-stage2-opcodes: clean-stage2-opcodes
|
maybe-clean-stage2-opcodes: clean-stage2-opcodes
|
clean-stage2: clean-stage2-opcodes
|
clean-stage2: clean-stage2-opcodes
|
clean-stage2-opcodes:
|
clean-stage2-opcodes:
|
Line 6120... |
Line 6257... |
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
clean
|
clean
|
@endif opcodes-bootstrap
|
@endif opcodes-bootstrap
|
|
|
|
|
.PHONY: all-stageb2g0-opcodes maybe-all-stageb2g0-opcodes
|
|
.PHONY: clean-stageb2g0-opcodes maybe-clean-stageb2g0-opcodes
|
|
maybe-all-stageb2g0-opcodes:
|
|
maybe-clean-stageb2g0-opcodes:
|
|
@if opcodes-bootstrap
|
|
maybe-all-stageb2g0-opcodes: all-stageb2g0-opcodes
|
|
all-stageb2g0: all-stageb2g0-opcodes
|
|
TARGET-stageb2g0-opcodes = $(TARGET-opcodes)
|
|
all-stageb2g0-opcodes: configure-stageb2g0-opcodes
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/opcodes && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0" CXXFLAGS="$(STAGE2_CFLAGS) -g0" \
|
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
$(TARGET-stageb2g0-opcodes)
|
|
|
|
maybe-clean-stageb2g0-opcodes: clean-stageb2g0-opcodes
|
|
clean-stageb2g0: clean-stageb2g0-opcodes
|
|
clean-stageb2g0-opcodes:
|
|
@if [ $(current_stage) = stageb2g0 ]; then \
|
|
[ -f $(HOST_SUBDIR)/opcodes/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageb2g0-opcodes/Makefile ] || exit 0; \
|
|
$(MAKE) stageb2g0-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/opcodes && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif opcodes-bootstrap
|
|
|
|
|
|
.PHONY: all-stage3-opcodes maybe-all-stage3-opcodes
|
.PHONY: all-stage3-opcodes maybe-all-stage3-opcodes
|
.PHONY: clean-stage3-opcodes maybe-clean-stage3-opcodes
|
.PHONY: clean-stage3-opcodes maybe-clean-stage3-opcodes
|
maybe-all-stage3-opcodes:
|
maybe-all-stage3-opcodes:
|
maybe-clean-stage3-opcodes:
|
maybe-clean-stage3-opcodes:
|
@if opcodes-bootstrap
|
@if opcodes-bootstrap
|
Line 6170... |
Line 6269... |
TARGET-stage3-opcodes = $(TARGET-opcodes)
|
TARGET-stage3-opcodes = $(TARGET-opcodes)
|
all-stage3-opcodes: configure-stage3-opcodes
|
all-stage3-opcodes: configure-stage3-opcodes
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/opcodes && \
|
cd $(HOST_SUBDIR)/opcodes && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS)" CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS="$(STAGE3_CFLAGS)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" \
|
LIBCFLAGS="$(STAGE3_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE3_TFLAGS)" \
|
$(TARGET-stage3-opcodes)
|
$(TARGET-stage3-opcodes)
|
|
|
maybe-clean-stage3-opcodes: clean-stage3-opcodes
|
maybe-clean-stage3-opcodes: clean-stage3-opcodes
|
clean-stage3: clean-stage3-opcodes
|
clean-stage3: clean-stage3-opcodes
|
clean-stage3-opcodes:
|
clean-stage3-opcodes:
|
Line 6196... |
Line 6300... |
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
clean
|
clean
|
@endif opcodes-bootstrap
|
@endif opcodes-bootstrap
|
|
|
|
|
.PHONY: all-stageb3g2-opcodes maybe-all-stageb3g2-opcodes
|
|
.PHONY: clean-stageb3g2-opcodes maybe-clean-stageb3g2-opcodes
|
|
maybe-all-stageb3g2-opcodes:
|
|
maybe-clean-stageb3g2-opcodes:
|
|
@if opcodes-bootstrap
|
|
maybe-all-stageb3g2-opcodes: all-stageb3g2-opcodes
|
|
all-stageb3g2: all-stageb3g2-opcodes
|
|
TARGET-stageb3g2-opcodes = $(TARGET-opcodes)
|
|
all-stageb3g2-opcodes: configure-stageb3g2-opcodes
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/opcodes && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2" CXXFLAGS="$(STAGE3_CFLAGS) -g2" \
|
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
$(TARGET-stageb3g2-opcodes)
|
|
|
|
maybe-clean-stageb3g2-opcodes: clean-stageb3g2-opcodes
|
|
clean-stageb3g2: clean-stageb3g2-opcodes
|
|
clean-stageb3g2-opcodes:
|
|
@if [ $(current_stage) = stageb3g2 ]; then \
|
|
[ -f $(HOST_SUBDIR)/opcodes/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageb3g2-opcodes/Makefile ] || exit 0; \
|
|
$(MAKE) stageb3g2-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/opcodes && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif opcodes-bootstrap
|
|
|
|
|
|
.PHONY: all-stage4-opcodes maybe-all-stage4-opcodes
|
.PHONY: all-stage4-opcodes maybe-all-stage4-opcodes
|
.PHONY: clean-stage4-opcodes maybe-clean-stage4-opcodes
|
.PHONY: clean-stage4-opcodes maybe-clean-stage4-opcodes
|
maybe-all-stage4-opcodes:
|
maybe-all-stage4-opcodes:
|
maybe-clean-stage4-opcodes:
|
maybe-clean-stage4-opcodes:
|
@if opcodes-bootstrap
|
@if opcodes-bootstrap
|
Line 6246... |
Line 6312... |
TARGET-stage4-opcodes = $(TARGET-opcodes)
|
TARGET-stage4-opcodes = $(TARGET-opcodes)
|
all-stage4-opcodes: configure-stage4-opcodes
|
all-stage4-opcodes: configure-stage4-opcodes
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/opcodes && \
|
cd $(HOST_SUBDIR)/opcodes && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE4_CFLAGS)" CXXFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS="$(STAGE4_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE4_TFLAGS)" \
|
$(TARGET-stage4-opcodes)
|
$(TARGET-stage4-opcodes)
|
|
|
maybe-clean-stage4-opcodes: clean-stage4-opcodes
|
maybe-clean-stage4-opcodes: clean-stage4-opcodes
|
clean-stage4: clean-stage4-opcodes
|
clean-stage4: clean-stage4-opcodes
|
clean-stage4-opcodes:
|
clean-stage4-opcodes:
|
Line 6284... |
Line 6355... |
TARGET-stageprofile-opcodes = $(TARGET-opcodes)
|
TARGET-stageprofile-opcodes = $(TARGET-opcodes)
|
all-stageprofile-opcodes: configure-stageprofile-opcodes
|
all-stageprofile-opcodes: configure-stageprofile-opcodes
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/opcodes && \
|
cd $(HOST_SUBDIR)/opcodes && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" \
|
CFLAGS="$(STAGEprofile_CFLAGS)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
CXXFLAGS="$(STAGEprofile_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)" \
|
$(TARGET-stageprofile-opcodes)
|
$(TARGET-stageprofile-opcodes)
|
|
|
maybe-clean-stageprofile-opcodes: clean-stageprofile-opcodes
|
maybe-clean-stageprofile-opcodes: clean-stageprofile-opcodes
|
clean-stageprofile: clean-stageprofile-opcodes
|
clean-stageprofile: clean-stageprofile-opcodes
|
clean-stageprofile-opcodes:
|
clean-stageprofile-opcodes:
|
Line 6322... |
Line 6398... |
TARGET-stagefeedback-opcodes = $(TARGET-opcodes)
|
TARGET-stagefeedback-opcodes = $(TARGET-opcodes)
|
all-stagefeedback-opcodes: configure-stagefeedback-opcodes
|
all-stagefeedback-opcodes: configure-stagefeedback-opcodes
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/opcodes && \
|
cd $(HOST_SUBDIR)/opcodes && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use" CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use" \
|
CFLAGS="$(STAGEfeedback_CFLAGS)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)" \
|
$(TARGET-stagefeedback-opcodes)
|
$(TARGET-stagefeedback-opcodes)
|
|
|
maybe-clean-stagefeedback-opcodes: clean-stagefeedback-opcodes
|
maybe-clean-stagefeedback-opcodes: clean-stagefeedback-opcodes
|
clean-stagefeedback: clean-stagefeedback-opcodes
|
clean-stagefeedback: clean-stagefeedback-opcodes
|
clean-stagefeedback-opcodes:
|
clean-stagefeedback-opcodes:
|
Line 6748... |
Line 6829... |
configure-stage1-binutils:
|
configure-stage1-binutils:
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/binutils/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/binutils/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 1 in $(HOST_SUBDIR)/binutils ; \
|
echo Configuring stage 1 in $(HOST_SUBDIR)/binutils ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils ; \
|
cd $(HOST_SUBDIR)/binutils || exit 1; \
|
cd $(HOST_SUBDIR)/binutils || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 6765... |
Line 6848... |
srcdiroption="--srcdir=$${topdir}/binutils"; \
|
srcdiroption="--srcdir=$${topdir}/binutils"; \
|
libsrcdir="$$s/binutils"; \
|
libsrcdir="$$s/binutils"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
\
|
$(STAGE1_CONFIGURE_FLAGS)
|
--disable-intermodule $(STAGE1_CHECKING) --disable-coverage --enable-languages="$(STAGE1_LANGUAGES)"
|
|
@endif binutils-bootstrap
|
@endif binutils-bootstrap
|
|
|
.PHONY: configure-stage2-binutils maybe-configure-stage2-binutils
|
.PHONY: configure-stage2-binutils maybe-configure-stage2-binutils
|
maybe-configure-stage2-binutils:
|
maybe-configure-stage2-binutils:
|
@if binutils-bootstrap
|
@if binutils-bootstrap
|
Line 6778... |
Line 6860... |
configure-stage2-binutils:
|
configure-stage2-binutils:
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/binutils/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/binutils/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE2_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 2 in $(HOST_SUBDIR)/binutils ; \
|
echo Configuring stage 2 in $(HOST_SUBDIR)/binutils ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils ; \
|
cd $(HOST_SUBDIR)/binutils || exit 1; \
|
cd $(HOST_SUBDIR)/binutils || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 6797... |
Line 6881... |
libsrcdir="$$s/binutils"; \
|
libsrcdir="$$s/binutils"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE2_CONFIGURE_FLAGS)
|
@endif binutils-bootstrap
|
|
|
|
.PHONY: configure-stageb2g0-binutils maybe-configure-stageb2g0-binutils
|
|
maybe-configure-stageb2g0-binutils:
|
|
@if binutils-bootstrap
|
|
maybe-configure-stageb2g0-binutils: configure-stageb2g0-binutils
|
|
configure-stageb2g0-binutils:
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/binutils/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE2_CFLAGS) -g0"; export CXXFLAGS; \
|
|
echo Configuring stage b2g0 in $(HOST_SUBDIR)/binutils ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils ; \
|
|
cd $(HOST_SUBDIR)/binutils || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/binutils/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/binutils"; \
|
|
libsrcdir="$$s/binutils"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@
|
|
@endif binutils-bootstrap
|
@endif binutils-bootstrap
|
|
|
.PHONY: configure-stage3-binutils maybe-configure-stage3-binutils
|
.PHONY: configure-stage3-binutils maybe-configure-stage3-binutils
|
maybe-configure-stage3-binutils:
|
maybe-configure-stage3-binutils:
|
@if binutils-bootstrap
|
@if binutils-bootstrap
|
Line 6840... |
Line 6893... |
configure-stage3-binutils:
|
configure-stage3-binutils:
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/binutils/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/binutils/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE3_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 3 in $(HOST_SUBDIR)/binutils ; \
|
echo Configuring stage 3 in $(HOST_SUBDIR)/binutils ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils ; \
|
cd $(HOST_SUBDIR)/binutils || exit 1; \
|
cd $(HOST_SUBDIR)/binutils || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 6859... |
Line 6914... |
libsrcdir="$$s/binutils"; \
|
libsrcdir="$$s/binutils"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE3_CONFIGURE_FLAGS)
|
@endif binutils-bootstrap
|
|
|
|
.PHONY: configure-stageb3g2-binutils maybe-configure-stageb3g2-binutils
|
|
maybe-configure-stageb3g2-binutils:
|
|
@if binutils-bootstrap
|
|
maybe-configure-stageb3g2-binutils: configure-stageb3g2-binutils
|
|
configure-stageb3g2-binutils:
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/binutils/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE3_CFLAGS) -g2"; export CXXFLAGS; \
|
|
echo Configuring stage b3g2 in $(HOST_SUBDIR)/binutils ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils ; \
|
|
cd $(HOST_SUBDIR)/binutils || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/binutils/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/binutils"; \
|
|
libsrcdir="$$s/binutils"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@
|
|
@endif binutils-bootstrap
|
@endif binutils-bootstrap
|
|
|
.PHONY: configure-stage4-binutils maybe-configure-stage4-binutils
|
.PHONY: configure-stage4-binutils maybe-configure-stage4-binutils
|
maybe-configure-stage4-binutils:
|
maybe-configure-stage4-binutils:
|
@if binutils-bootstrap
|
@if binutils-bootstrap
|
Line 6902... |
Line 6926... |
configure-stage4-binutils:
|
configure-stage4-binutils:
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/binutils/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/binutils/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE4_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 4 in $(HOST_SUBDIR)/binutils ; \
|
echo Configuring stage 4 in $(HOST_SUBDIR)/binutils ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils ; \
|
cd $(HOST_SUBDIR)/binutils || exit 1; \
|
cd $(HOST_SUBDIR)/binutils || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 6921... |
Line 6947... |
libsrcdir="$$s/binutils"; \
|
libsrcdir="$$s/binutils"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE4_CONFIGURE_FLAGS)
|
@endif binutils-bootstrap
|
@endif binutils-bootstrap
|
|
|
.PHONY: configure-stageprofile-binutils maybe-configure-stageprofile-binutils
|
.PHONY: configure-stageprofile-binutils maybe-configure-stageprofile-binutils
|
maybe-configure-stageprofile-binutils:
|
maybe-configure-stageprofile-binutils:
|
@if binutils-bootstrap
|
@if binutils-bootstrap
|
Line 6933... |
Line 6959... |
configure-stageprofile-binutils:
|
configure-stageprofile-binutils:
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/binutils/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/binutils/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate"; export CFLAGS; \
|
CFLAGS="$(STAGEprofile_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGEprofile_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage profile in $(HOST_SUBDIR)/binutils ; \
|
echo Configuring stage profile in $(HOST_SUBDIR)/binutils ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils ; \
|
cd $(HOST_SUBDIR)/binutils || exit 1; \
|
cd $(HOST_SUBDIR)/binutils || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 6952... |
Line 6980... |
libsrcdir="$$s/binutils"; \
|
libsrcdir="$$s/binutils"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGEprofile_CONFIGURE_FLAGS)
|
@endif binutils-bootstrap
|
@endif binutils-bootstrap
|
|
|
.PHONY: configure-stagefeedback-binutils maybe-configure-stagefeedback-binutils
|
.PHONY: configure-stagefeedback-binutils maybe-configure-stagefeedback-binutils
|
maybe-configure-stagefeedback-binutils:
|
maybe-configure-stagefeedback-binutils:
|
@if binutils-bootstrap
|
@if binutils-bootstrap
|
Line 6964... |
Line 6992... |
configure-stagefeedback-binutils:
|
configure-stagefeedback-binutils:
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/binutils/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/binutils/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use"; export CFLAGS; \
|
CFLAGS="$(STAGEfeedback_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage feedback in $(HOST_SUBDIR)/binutils ; \
|
echo Configuring stage feedback in $(HOST_SUBDIR)/binutils ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/binutils ; \
|
cd $(HOST_SUBDIR)/binutils || exit 1; \
|
cd $(HOST_SUBDIR)/binutils || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 6983... |
Line 7013... |
libsrcdir="$$s/binutils"; \
|
libsrcdir="$$s/binutils"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGEfeedback_CONFIGURE_FLAGS)
|
@endif binutils-bootstrap
|
@endif binutils-bootstrap
|
|
|
|
|
|
|
|
|
Line 7021... |
Line 7051... |
TARGET-stage1-binutils = $(TARGET-binutils)
|
TARGET-stage1-binutils = $(TARGET-binutils)
|
all-stage1-binutils: configure-stage1-binutils
|
all-stage1-binutils: configure-stage1-binutils
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/binutils && \
|
cd $(HOST_SUBDIR)/binutils && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE1_CFLAGS)" CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS="$(STAGE1_CFLAGS)" \
|
LIBCFLAGS="$(STAGE1_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" \
|
LIBCFLAGS="$(LIBCFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) \
|
|
TFLAGS="$(STAGE1_TFLAGS)" \
|
$(TARGET-stage1-binutils)
|
$(TARGET-stage1-binutils)
|
|
|
maybe-clean-stage1-binutils: clean-stage1-binutils
|
maybe-clean-stage1-binutils: clean-stage1-binutils
|
clean-stage1: clean-stage1-binutils
|
clean-stage1: clean-stage1-binutils
|
clean-stage1-binutils:
|
clean-stage1-binutils:
|
Line 7057... |
Line 7092... |
TARGET-stage2-binutils = $(TARGET-binutils)
|
TARGET-stage2-binutils = $(TARGET-binutils)
|
all-stage2-binutils: configure-stage2-binutils
|
all-stage2-binutils: configure-stage2-binutils
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/binutils && \
|
cd $(HOST_SUBDIR)/binutils && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS)" CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS="$(STAGE2_CFLAGS)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" \
|
LIBCFLAGS="$(STAGE2_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE2_TFLAGS)" \
|
$(TARGET-stage2-binutils)
|
$(TARGET-stage2-binutils)
|
|
|
maybe-clean-stage2-binutils: clean-stage2-binutils
|
maybe-clean-stage2-binutils: clean-stage2-binutils
|
clean-stage2: clean-stage2-binutils
|
clean-stage2: clean-stage2-binutils
|
clean-stage2-binutils:
|
clean-stage2-binutils:
|
Line 7083... |
Line 7123... |
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
clean
|
clean
|
@endif binutils-bootstrap
|
@endif binutils-bootstrap
|
|
|
|
|
.PHONY: all-stageb2g0-binutils maybe-all-stageb2g0-binutils
|
|
.PHONY: clean-stageb2g0-binutils maybe-clean-stageb2g0-binutils
|
|
maybe-all-stageb2g0-binutils:
|
|
maybe-clean-stageb2g0-binutils:
|
|
@if binutils-bootstrap
|
|
maybe-all-stageb2g0-binutils: all-stageb2g0-binutils
|
|
all-stageb2g0: all-stageb2g0-binutils
|
|
TARGET-stageb2g0-binutils = $(TARGET-binutils)
|
|
all-stageb2g0-binutils: configure-stageb2g0-binutils
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/binutils && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0" CXXFLAGS="$(STAGE2_CFLAGS) -g0" \
|
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
$(TARGET-stageb2g0-binutils)
|
|
|
|
maybe-clean-stageb2g0-binutils: clean-stageb2g0-binutils
|
|
clean-stageb2g0: clean-stageb2g0-binutils
|
|
clean-stageb2g0-binutils:
|
|
@if [ $(current_stage) = stageb2g0 ]; then \
|
|
[ -f $(HOST_SUBDIR)/binutils/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageb2g0-binutils/Makefile ] || exit 0; \
|
|
$(MAKE) stageb2g0-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/binutils && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif binutils-bootstrap
|
|
|
|
|
|
.PHONY: all-stage3-binutils maybe-all-stage3-binutils
|
.PHONY: all-stage3-binutils maybe-all-stage3-binutils
|
.PHONY: clean-stage3-binutils maybe-clean-stage3-binutils
|
.PHONY: clean-stage3-binutils maybe-clean-stage3-binutils
|
maybe-all-stage3-binutils:
|
maybe-all-stage3-binutils:
|
maybe-clean-stage3-binutils:
|
maybe-clean-stage3-binutils:
|
@if binutils-bootstrap
|
@if binutils-bootstrap
|
Line 7133... |
Line 7135... |
TARGET-stage3-binutils = $(TARGET-binutils)
|
TARGET-stage3-binutils = $(TARGET-binutils)
|
all-stage3-binutils: configure-stage3-binutils
|
all-stage3-binutils: configure-stage3-binutils
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/binutils && \
|
cd $(HOST_SUBDIR)/binutils && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS)" CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS="$(STAGE3_CFLAGS)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" \
|
LIBCFLAGS="$(STAGE3_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE3_TFLAGS)" \
|
$(TARGET-stage3-binutils)
|
$(TARGET-stage3-binutils)
|
|
|
maybe-clean-stage3-binutils: clean-stage3-binutils
|
maybe-clean-stage3-binutils: clean-stage3-binutils
|
clean-stage3: clean-stage3-binutils
|
clean-stage3: clean-stage3-binutils
|
clean-stage3-binutils:
|
clean-stage3-binutils:
|
Line 7159... |
Line 7166... |
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
clean
|
clean
|
@endif binutils-bootstrap
|
@endif binutils-bootstrap
|
|
|
|
|
.PHONY: all-stageb3g2-binutils maybe-all-stageb3g2-binutils
|
|
.PHONY: clean-stageb3g2-binutils maybe-clean-stageb3g2-binutils
|
|
maybe-all-stageb3g2-binutils:
|
|
maybe-clean-stageb3g2-binutils:
|
|
@if binutils-bootstrap
|
|
maybe-all-stageb3g2-binutils: all-stageb3g2-binutils
|
|
all-stageb3g2: all-stageb3g2-binutils
|
|
TARGET-stageb3g2-binutils = $(TARGET-binutils)
|
|
all-stageb3g2-binutils: configure-stageb3g2-binutils
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/binutils && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2" CXXFLAGS="$(STAGE3_CFLAGS) -g2" \
|
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
$(TARGET-stageb3g2-binutils)
|
|
|
|
maybe-clean-stageb3g2-binutils: clean-stageb3g2-binutils
|
|
clean-stageb3g2: clean-stageb3g2-binutils
|
|
clean-stageb3g2-binutils:
|
|
@if [ $(current_stage) = stageb3g2 ]; then \
|
|
[ -f $(HOST_SUBDIR)/binutils/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageb3g2-binutils/Makefile ] || exit 0; \
|
|
$(MAKE) stageb3g2-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/binutils && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif binutils-bootstrap
|
|
|
|
|
|
.PHONY: all-stage4-binutils maybe-all-stage4-binutils
|
.PHONY: all-stage4-binutils maybe-all-stage4-binutils
|
.PHONY: clean-stage4-binutils maybe-clean-stage4-binutils
|
.PHONY: clean-stage4-binutils maybe-clean-stage4-binutils
|
maybe-all-stage4-binutils:
|
maybe-all-stage4-binutils:
|
maybe-clean-stage4-binutils:
|
maybe-clean-stage4-binutils:
|
@if binutils-bootstrap
|
@if binutils-bootstrap
|
Line 7209... |
Line 7178... |
TARGET-stage4-binutils = $(TARGET-binutils)
|
TARGET-stage4-binutils = $(TARGET-binutils)
|
all-stage4-binutils: configure-stage4-binutils
|
all-stage4-binutils: configure-stage4-binutils
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/binutils && \
|
cd $(HOST_SUBDIR)/binutils && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE4_CFLAGS)" CXXFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS="$(STAGE4_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE4_TFLAGS)" \
|
$(TARGET-stage4-binutils)
|
$(TARGET-stage4-binutils)
|
|
|
maybe-clean-stage4-binutils: clean-stage4-binutils
|
maybe-clean-stage4-binutils: clean-stage4-binutils
|
clean-stage4: clean-stage4-binutils
|
clean-stage4: clean-stage4-binutils
|
clean-stage4-binutils:
|
clean-stage4-binutils:
|
Line 7247... |
Line 7221... |
TARGET-stageprofile-binutils = $(TARGET-binutils)
|
TARGET-stageprofile-binutils = $(TARGET-binutils)
|
all-stageprofile-binutils: configure-stageprofile-binutils
|
all-stageprofile-binutils: configure-stageprofile-binutils
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/binutils && \
|
cd $(HOST_SUBDIR)/binutils && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" \
|
CFLAGS="$(STAGEprofile_CFLAGS)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
CXXFLAGS="$(STAGEprofile_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)" \
|
$(TARGET-stageprofile-binutils)
|
$(TARGET-stageprofile-binutils)
|
|
|
maybe-clean-stageprofile-binutils: clean-stageprofile-binutils
|
maybe-clean-stageprofile-binutils: clean-stageprofile-binutils
|
clean-stageprofile: clean-stageprofile-binutils
|
clean-stageprofile: clean-stageprofile-binutils
|
clean-stageprofile-binutils:
|
clean-stageprofile-binutils:
|
Line 7285... |
Line 7264... |
TARGET-stagefeedback-binutils = $(TARGET-binutils)
|
TARGET-stagefeedback-binutils = $(TARGET-binutils)
|
all-stagefeedback-binutils: configure-stagefeedback-binutils
|
all-stagefeedback-binutils: configure-stagefeedback-binutils
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/binutils && \
|
cd $(HOST_SUBDIR)/binutils && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use" CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use" \
|
CFLAGS="$(STAGEfeedback_CFLAGS)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)" \
|
$(TARGET-stagefeedback-binutils)
|
$(TARGET-stagefeedback-binutils)
|
|
|
maybe-clean-stagefeedback-binutils: clean-stagefeedback-binutils
|
maybe-clean-stagefeedback-binutils: clean-stagefeedback-binutils
|
clean-stagefeedback: clean-stagefeedback-binutils
|
clean-stagefeedback: clean-stagefeedback-binutils
|
clean-stagefeedback-binutils:
|
clean-stagefeedback-binutils:
|
Line 8953... |
Line 8937... |
|
|
@endif bzip2
|
@endif bzip2
|
|
|
|
|
|
|
.PHONY: configure-dejagnu maybe-configure-dejagnu
|
.PHONY: configure-cgen maybe-configure-cgen
|
maybe-configure-dejagnu:
|
maybe-configure-cgen:
|
@if gcc-bootstrap
|
@if gcc-bootstrap
|
configure-dejagnu: stage_current
|
configure-cgen: stage_current
|
@endif gcc-bootstrap
|
@endif gcc-bootstrap
|
@if dejagnu
|
@if cgen
|
maybe-configure-dejagnu: configure-dejagnu
|
maybe-configure-cgen: configure-cgen
|
configure-dejagnu:
|
configure-cgen:
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
test ! -f $(HOST_SUBDIR)/dejagnu/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/cgen/Makefile || exit 0; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/dejagnu ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/cgen ; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
echo Configuring in $(HOST_SUBDIR)/dejagnu; \
|
echo Configuring in $(HOST_SUBDIR)/cgen; \
|
cd "$(HOST_SUBDIR)/dejagnu" || exit 1; \
|
cd "$(HOST_SUBDIR)/cgen" || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
*) topdir=`echo $(HOST_SUBDIR)/dejagnu/ | \
|
*) topdir=`echo $(HOST_SUBDIR)/cgen/ | \
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
esac; \
|
esac; \
|
srcdiroption="--srcdir=$${topdir}/dejagnu"; \
|
srcdiroption="--srcdir=$${topdir}/cgen"; \
|
libsrcdir="$$s/dejagnu"; \
|
libsrcdir="$$s/cgen"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
|| exit 1
|
|| exit 1
|
@endif dejagnu
|
@endif cgen
|
|
|
|
|
|
|
|
|
|
|
.PHONY: all-dejagnu maybe-all-dejagnu
|
.PHONY: all-cgen maybe-all-cgen
|
maybe-all-dejagnu:
|
maybe-all-cgen:
|
@if gcc-bootstrap
|
@if gcc-bootstrap
|
all-dejagnu: stage_current
|
all-cgen: stage_current
|
@endif gcc-bootstrap
|
@endif gcc-bootstrap
|
@if dejagnu
|
@if cgen
|
TARGET-dejagnu=all
|
TARGET-cgen=all
|
maybe-all-dejagnu: all-dejagnu
|
maybe-all-cgen: all-cgen
|
all-dejagnu: configure-dejagnu
|
all-cgen: configure-cgen
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
(cd $(HOST_SUBDIR)/cgen && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) \
|
$(TARGET-dejagnu))
|
$(TARGET-cgen))
|
@endif dejagnu
|
@endif cgen
|
|
|
|
|
|
|
|
|
.PHONY: check-dejagnu maybe-check-dejagnu
|
.PHONY: check-cgen maybe-check-cgen
|
maybe-check-dejagnu:
|
maybe-check-cgen:
|
@if dejagnu
|
@if cgen
|
maybe-check-dejagnu: check-dejagnu
|
maybe-check-cgen: check-cgen
|
|
|
check-dejagnu:
|
check-cgen:
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
(cd $(HOST_SUBDIR)/cgen && \
|
$(MAKE) $(FLAGS_TO_PASS) check)
|
$(MAKE) $(FLAGS_TO_PASS) check)
|
|
|
@endif dejagnu
|
@endif cgen
|
|
|
.PHONY: install-dejagnu maybe-install-dejagnu
|
.PHONY: install-cgen maybe-install-cgen
|
maybe-install-dejagnu:
|
maybe-install-cgen:
|
@if dejagnu
|
@if cgen
|
maybe-install-dejagnu: install-dejagnu
|
maybe-install-cgen: install-cgen
|
|
|
install-dejagnu: installdirs
|
install-cgen: installdirs
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
(cd $(HOST_SUBDIR)/cgen && \
|
$(MAKE) $(FLAGS_TO_PASS) install)
|
$(MAKE) $(FLAGS_TO_PASS) install)
|
|
|
@endif dejagnu
|
@endif cgen
|
|
|
# Other targets (info, dvi, pdf, etc.)
|
# Other targets (info, dvi, pdf, etc.)
|
|
|
.PHONY: maybe-info-dejagnu info-dejagnu
|
.PHONY: maybe-info-cgen info-cgen
|
maybe-info-dejagnu:
|
maybe-info-cgen:
|
@if dejagnu
|
@if cgen
|
maybe-info-dejagnu: info-dejagnu
|
maybe-info-cgen: info-cgen
|
|
|
info-dejagnu: \
|
info-cgen: \
|
configure-dejagnu
|
configure-cgen
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@[ -f ./dejagnu/Makefile ] || exit 0; \
|
@[ -f ./cgen/Makefile ] || exit 0; \
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing info in dejagnu" ; \
|
echo "Doing info in cgen" ; \
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
(cd $(HOST_SUBDIR)/cgen && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
info) \
|
info) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif dejagnu
|
@endif cgen
|
|
|
.PHONY: maybe-dvi-dejagnu dvi-dejagnu
|
.PHONY: maybe-dvi-cgen dvi-cgen
|
maybe-dvi-dejagnu:
|
maybe-dvi-cgen:
|
@if dejagnu
|
@if cgen
|
maybe-dvi-dejagnu: dvi-dejagnu
|
maybe-dvi-cgen: dvi-cgen
|
|
|
dvi-dejagnu: \
|
dvi-cgen: \
|
configure-dejagnu
|
configure-cgen
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@[ -f ./dejagnu/Makefile ] || exit 0; \
|
@[ -f ./cgen/Makefile ] || exit 0; \
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing dvi in dejagnu" ; \
|
echo "Doing dvi in cgen" ; \
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
(cd $(HOST_SUBDIR)/cgen && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
dvi) \
|
dvi) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif dejagnu
|
@endif cgen
|
|
|
.PHONY: maybe-pdf-dejagnu pdf-dejagnu
|
.PHONY: maybe-pdf-cgen pdf-cgen
|
maybe-pdf-dejagnu:
|
maybe-pdf-cgen:
|
@if dejagnu
|
@if cgen
|
maybe-pdf-dejagnu: pdf-dejagnu
|
maybe-pdf-cgen: pdf-cgen
|
|
|
pdf-dejagnu: \
|
pdf-cgen: \
|
configure-dejagnu
|
configure-cgen
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@[ -f ./dejagnu/Makefile ] || exit 0; \
|
@[ -f ./cgen/Makefile ] || exit 0; \
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing pdf in dejagnu" ; \
|
echo "Doing pdf in cgen" ; \
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
(cd $(HOST_SUBDIR)/cgen && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
pdf) \
|
pdf) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif dejagnu
|
@endif cgen
|
|
|
.PHONY: maybe-html-dejagnu html-dejagnu
|
.PHONY: maybe-html-cgen html-cgen
|
maybe-html-dejagnu:
|
maybe-html-cgen:
|
@if dejagnu
|
@if cgen
|
maybe-html-dejagnu: html-dejagnu
|
maybe-html-cgen: html-cgen
|
|
|
html-dejagnu: \
|
html-cgen: \
|
configure-dejagnu
|
configure-cgen
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@[ -f ./dejagnu/Makefile ] || exit 0; \
|
@[ -f ./cgen/Makefile ] || exit 0; \
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing html in dejagnu" ; \
|
echo "Doing html in cgen" ; \
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
(cd $(HOST_SUBDIR)/cgen && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
html) \
|
html) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif dejagnu
|
@endif cgen
|
|
|
.PHONY: maybe-TAGS-dejagnu TAGS-dejagnu
|
.PHONY: maybe-TAGS-cgen TAGS-cgen
|
maybe-TAGS-dejagnu:
|
maybe-TAGS-cgen:
|
@if dejagnu
|
@if cgen
|
maybe-TAGS-dejagnu: TAGS-dejagnu
|
maybe-TAGS-cgen: TAGS-cgen
|
|
|
TAGS-dejagnu: \
|
TAGS-cgen: \
|
configure-dejagnu
|
configure-cgen
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@[ -f ./dejagnu/Makefile ] || exit 0; \
|
@[ -f ./cgen/Makefile ] || exit 0; \
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing TAGS in dejagnu" ; \
|
echo "Doing TAGS in cgen" ; \
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
(cd $(HOST_SUBDIR)/cgen && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
TAGS) \
|
TAGS) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif dejagnu
|
@endif cgen
|
|
|
.PHONY: maybe-install-info-dejagnu install-info-dejagnu
|
.PHONY: maybe-install-info-cgen install-info-cgen
|
maybe-install-info-dejagnu:
|
maybe-install-info-cgen:
|
@if dejagnu
|
@if cgen
|
maybe-install-info-dejagnu: install-info-dejagnu
|
maybe-install-info-cgen: install-info-cgen
|
|
|
install-info-dejagnu: \
|
install-info-cgen: \
|
configure-dejagnu \
|
configure-cgen \
|
info-dejagnu
|
info-cgen
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@[ -f ./dejagnu/Makefile ] || exit 0; \
|
@[ -f ./cgen/Makefile ] || exit 0; \
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing install-info in dejagnu" ; \
|
echo "Doing install-info in cgen" ; \
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
(cd $(HOST_SUBDIR)/cgen && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
install-info) \
|
install-info) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif dejagnu
|
@endif cgen
|
|
|
.PHONY: maybe-install-pdf-dejagnu install-pdf-dejagnu
|
.PHONY: maybe-install-pdf-cgen install-pdf-cgen
|
maybe-install-pdf-dejagnu:
|
maybe-install-pdf-cgen:
|
@if dejagnu
|
@if cgen
|
maybe-install-pdf-dejagnu: install-pdf-dejagnu
|
maybe-install-pdf-cgen: install-pdf-cgen
|
|
|
install-pdf-dejagnu: \
|
install-pdf-cgen: \
|
configure-dejagnu \
|
configure-cgen \
|
pdf-dejagnu
|
pdf-cgen
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@[ -f ./dejagnu/Makefile ] || exit 0; \
|
@[ -f ./cgen/Makefile ] || exit 0; \
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing install-pdf in dejagnu" ; \
|
echo "Doing install-pdf in cgen" ; \
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
(cd $(HOST_SUBDIR)/cgen && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
install-pdf) \
|
install-pdf) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif dejagnu
|
@endif cgen
|
|
|
.PHONY: maybe-install-html-dejagnu install-html-dejagnu
|
.PHONY: maybe-install-html-cgen install-html-cgen
|
maybe-install-html-dejagnu:
|
maybe-install-html-cgen:
|
@if dejagnu
|
@if cgen
|
maybe-install-html-dejagnu: install-html-dejagnu
|
maybe-install-html-cgen: install-html-cgen
|
|
|
install-html-dejagnu: \
|
install-html-cgen: \
|
configure-dejagnu \
|
configure-cgen \
|
html-dejagnu
|
html-cgen
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@[ -f ./dejagnu/Makefile ] || exit 0; \
|
@[ -f ./cgen/Makefile ] || exit 0; \
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing install-html in dejagnu" ; \
|
echo "Doing install-html in cgen" ; \
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
(cd $(HOST_SUBDIR)/cgen && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
install-html) \
|
install-html) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif dejagnu
|
@endif cgen
|
|
|
.PHONY: maybe-installcheck-dejagnu installcheck-dejagnu
|
.PHONY: maybe-installcheck-cgen installcheck-cgen
|
maybe-installcheck-dejagnu:
|
maybe-installcheck-cgen:
|
@if dejagnu
|
@if cgen
|
maybe-installcheck-dejagnu: installcheck-dejagnu
|
maybe-installcheck-cgen: installcheck-cgen
|
|
|
installcheck-dejagnu: \
|
installcheck-cgen: \
|
configure-dejagnu
|
configure-cgen
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@[ -f ./dejagnu/Makefile ] || exit 0; \
|
@[ -f ./cgen/Makefile ] || exit 0; \
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing installcheck in dejagnu" ; \
|
echo "Doing installcheck in cgen" ; \
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
(cd $(HOST_SUBDIR)/cgen && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
installcheck) \
|
installcheck) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif dejagnu
|
@endif cgen
|
|
|
.PHONY: maybe-mostlyclean-dejagnu mostlyclean-dejagnu
|
.PHONY: maybe-mostlyclean-cgen mostlyclean-cgen
|
maybe-mostlyclean-dejagnu:
|
maybe-mostlyclean-cgen:
|
@if dejagnu
|
@if cgen
|
maybe-mostlyclean-dejagnu: mostlyclean-dejagnu
|
maybe-mostlyclean-cgen: mostlyclean-cgen
|
|
|
mostlyclean-dejagnu:
|
mostlyclean-cgen:
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@[ -f ./dejagnu/Makefile ] || exit 0; \
|
@[ -f ./cgen/Makefile ] || exit 0; \
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing mostlyclean in dejagnu" ; \
|
echo "Doing mostlyclean in cgen" ; \
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
(cd $(HOST_SUBDIR)/cgen && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
mostlyclean) \
|
mostlyclean) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif dejagnu
|
@endif cgen
|
|
|
.PHONY: maybe-clean-dejagnu clean-dejagnu
|
.PHONY: maybe-clean-cgen clean-cgen
|
maybe-clean-dejagnu:
|
maybe-clean-cgen:
|
@if dejagnu
|
@if cgen
|
maybe-clean-dejagnu: clean-dejagnu
|
maybe-clean-cgen: clean-cgen
|
|
|
clean-dejagnu:
|
clean-cgen:
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@[ -f ./dejagnu/Makefile ] || exit 0; \
|
@[ -f ./cgen/Makefile ] || exit 0; \
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing clean in dejagnu" ; \
|
echo "Doing clean in cgen" ; \
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
(cd $(HOST_SUBDIR)/cgen && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
clean) \
|
clean) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif dejagnu
|
@endif cgen
|
|
|
.PHONY: maybe-distclean-dejagnu distclean-dejagnu
|
.PHONY: maybe-distclean-cgen distclean-cgen
|
maybe-distclean-dejagnu:
|
maybe-distclean-cgen:
|
@if dejagnu
|
@if cgen
|
maybe-distclean-dejagnu: distclean-dejagnu
|
maybe-distclean-cgen: distclean-cgen
|
|
|
distclean-dejagnu:
|
distclean-cgen:
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@[ -f ./dejagnu/Makefile ] || exit 0; \
|
@[ -f ./cgen/Makefile ] || exit 0; \
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing distclean in dejagnu" ; \
|
echo "Doing distclean in cgen" ; \
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
(cd $(HOST_SUBDIR)/cgen && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
distclean) \
|
distclean) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif dejagnu
|
@endif cgen
|
|
|
.PHONY: maybe-maintainer-clean-dejagnu maintainer-clean-dejagnu
|
.PHONY: maybe-maintainer-clean-cgen maintainer-clean-cgen
|
maybe-maintainer-clean-dejagnu:
|
maybe-maintainer-clean-cgen:
|
@if dejagnu
|
@if cgen
|
maybe-maintainer-clean-dejagnu: maintainer-clean-dejagnu
|
maybe-maintainer-clean-cgen: maintainer-clean-cgen
|
|
|
maintainer-clean-dejagnu:
|
maintainer-clean-cgen:
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@[ -f ./dejagnu/Makefile ] || exit 0; \
|
@[ -f ./cgen/Makefile ] || exit 0; \
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing maintainer-clean in dejagnu" ; \
|
echo "Doing maintainer-clean in cgen" ; \
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
(cd $(HOST_SUBDIR)/cgen && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
maintainer-clean) \
|
maintainer-clean) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif dejagnu
|
@endif cgen
|
|
|
|
|
|
|
.PHONY: configure-diff maybe-configure-diff
|
.PHONY: configure-dejagnu maybe-configure-dejagnu
|
maybe-configure-diff:
|
maybe-configure-dejagnu:
|
@if gcc-bootstrap
|
@if gcc-bootstrap
|
configure-diff: stage_current
|
configure-dejagnu: stage_current
|
@endif gcc-bootstrap
|
@endif gcc-bootstrap
|
@if diff
|
@if dejagnu
|
maybe-configure-diff: configure-diff
|
maybe-configure-dejagnu: configure-dejagnu
|
configure-diff:
|
configure-dejagnu:
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
test ! -f $(HOST_SUBDIR)/diff/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/dejagnu/Makefile || exit 0; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/diff ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/dejagnu ; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
echo Configuring in $(HOST_SUBDIR)/diff; \
|
echo Configuring in $(HOST_SUBDIR)/dejagnu; \
|
cd "$(HOST_SUBDIR)/diff" || exit 1; \
|
cd "$(HOST_SUBDIR)/dejagnu" || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
*) topdir=`echo $(HOST_SUBDIR)/diff/ | \
|
*) topdir=`echo $(HOST_SUBDIR)/dejagnu/ | \
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
esac; \
|
esac; \
|
srcdiroption="--srcdir=$${topdir}/diff"; \
|
srcdiroption="--srcdir=$${topdir}/dejagnu"; \
|
libsrcdir="$$s/diff"; \
|
libsrcdir="$$s/dejagnu"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
|| exit 1
|
|| exit 1
|
@endif diff
|
@endif dejagnu
|
|
|
|
|
|
|
|
|
|
|
.PHONY: all-diff maybe-all-diff
|
.PHONY: all-dejagnu maybe-all-dejagnu
|
maybe-all-diff:
|
maybe-all-dejagnu:
|
@if gcc-bootstrap
|
@if gcc-bootstrap
|
all-diff: stage_current
|
all-dejagnu: stage_current
|
@endif gcc-bootstrap
|
@endif gcc-bootstrap
|
@if diff
|
@if dejagnu
|
TARGET-diff=all
|
TARGET-dejagnu=all
|
maybe-all-diff: all-diff
|
maybe-all-dejagnu: all-dejagnu
|
all-diff: configure-diff
|
all-dejagnu: configure-dejagnu
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
(cd $(HOST_SUBDIR)/diff && \
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) \
|
$(TARGET-diff))
|
$(TARGET-dejagnu))
|
@endif diff
|
@endif dejagnu
|
|
|
|
|
|
|
|
|
.PHONY: check-diff maybe-check-diff
|
.PHONY: check-dejagnu maybe-check-dejagnu
|
maybe-check-diff:
|
maybe-check-dejagnu:
|
@if diff
|
@if dejagnu
|
maybe-check-diff: check-diff
|
maybe-check-dejagnu: check-dejagnu
|
|
|
check-diff:
|
check-dejagnu:
|
|
@: $(MAKE); $(unstage)
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
|
$(MAKE) $(FLAGS_TO_PASS) check)
|
|
|
|
@endif dejagnu
|
|
|
|
.PHONY: install-dejagnu maybe-install-dejagnu
|
|
maybe-install-dejagnu:
|
|
@if dejagnu
|
|
maybe-install-dejagnu: install-dejagnu
|
|
|
|
install-dejagnu: installdirs
|
|
@: $(MAKE); $(unstage)
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
|
$(MAKE) $(FLAGS_TO_PASS) install)
|
|
|
|
@endif dejagnu
|
|
|
|
# Other targets (info, dvi, pdf, etc.)
|
|
|
|
.PHONY: maybe-info-dejagnu info-dejagnu
|
|
maybe-info-dejagnu:
|
|
@if dejagnu
|
|
maybe-info-dejagnu: info-dejagnu
|
|
|
|
info-dejagnu: \
|
|
configure-dejagnu
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./dejagnu/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing info in dejagnu" ; \
|
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
info) \
|
|
|| exit 1
|
|
|
|
@endif dejagnu
|
|
|
|
.PHONY: maybe-dvi-dejagnu dvi-dejagnu
|
|
maybe-dvi-dejagnu:
|
|
@if dejagnu
|
|
maybe-dvi-dejagnu: dvi-dejagnu
|
|
|
|
dvi-dejagnu: \
|
|
configure-dejagnu
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./dejagnu/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing dvi in dejagnu" ; \
|
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
dvi) \
|
|
|| exit 1
|
|
|
|
@endif dejagnu
|
|
|
|
.PHONY: maybe-pdf-dejagnu pdf-dejagnu
|
|
maybe-pdf-dejagnu:
|
|
@if dejagnu
|
|
maybe-pdf-dejagnu: pdf-dejagnu
|
|
|
|
pdf-dejagnu: \
|
|
configure-dejagnu
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./dejagnu/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing pdf in dejagnu" ; \
|
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
pdf) \
|
|
|| exit 1
|
|
|
|
@endif dejagnu
|
|
|
|
.PHONY: maybe-html-dejagnu html-dejagnu
|
|
maybe-html-dejagnu:
|
|
@if dejagnu
|
|
maybe-html-dejagnu: html-dejagnu
|
|
|
|
html-dejagnu: \
|
|
configure-dejagnu
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./dejagnu/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing html in dejagnu" ; \
|
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
html) \
|
|
|| exit 1
|
|
|
|
@endif dejagnu
|
|
|
|
.PHONY: maybe-TAGS-dejagnu TAGS-dejagnu
|
|
maybe-TAGS-dejagnu:
|
|
@if dejagnu
|
|
maybe-TAGS-dejagnu: TAGS-dejagnu
|
|
|
|
TAGS-dejagnu: \
|
|
configure-dejagnu
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./dejagnu/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing TAGS in dejagnu" ; \
|
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
TAGS) \
|
|
|| exit 1
|
|
|
|
@endif dejagnu
|
|
|
|
.PHONY: maybe-install-info-dejagnu install-info-dejagnu
|
|
maybe-install-info-dejagnu:
|
|
@if dejagnu
|
|
maybe-install-info-dejagnu: install-info-dejagnu
|
|
|
|
install-info-dejagnu: \
|
|
configure-dejagnu \
|
|
info-dejagnu
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./dejagnu/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing install-info in dejagnu" ; \
|
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
install-info) \
|
|
|| exit 1
|
|
|
|
@endif dejagnu
|
|
|
|
.PHONY: maybe-install-pdf-dejagnu install-pdf-dejagnu
|
|
maybe-install-pdf-dejagnu:
|
|
@if dejagnu
|
|
maybe-install-pdf-dejagnu: install-pdf-dejagnu
|
|
|
|
install-pdf-dejagnu: \
|
|
configure-dejagnu \
|
|
pdf-dejagnu
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./dejagnu/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing install-pdf in dejagnu" ; \
|
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
install-pdf) \
|
|
|| exit 1
|
|
|
|
@endif dejagnu
|
|
|
|
.PHONY: maybe-install-html-dejagnu install-html-dejagnu
|
|
maybe-install-html-dejagnu:
|
|
@if dejagnu
|
|
maybe-install-html-dejagnu: install-html-dejagnu
|
|
|
|
install-html-dejagnu: \
|
|
configure-dejagnu \
|
|
html-dejagnu
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./dejagnu/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing install-html in dejagnu" ; \
|
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
install-html) \
|
|
|| exit 1
|
|
|
|
@endif dejagnu
|
|
|
|
.PHONY: maybe-installcheck-dejagnu installcheck-dejagnu
|
|
maybe-installcheck-dejagnu:
|
|
@if dejagnu
|
|
maybe-installcheck-dejagnu: installcheck-dejagnu
|
|
|
|
installcheck-dejagnu: \
|
|
configure-dejagnu
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./dejagnu/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing installcheck in dejagnu" ; \
|
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
installcheck) \
|
|
|| exit 1
|
|
|
|
@endif dejagnu
|
|
|
|
.PHONY: maybe-mostlyclean-dejagnu mostlyclean-dejagnu
|
|
maybe-mostlyclean-dejagnu:
|
|
@if dejagnu
|
|
maybe-mostlyclean-dejagnu: mostlyclean-dejagnu
|
|
|
|
mostlyclean-dejagnu:
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./dejagnu/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing mostlyclean in dejagnu" ; \
|
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
mostlyclean) \
|
|
|| exit 1
|
|
|
|
@endif dejagnu
|
|
|
|
.PHONY: maybe-clean-dejagnu clean-dejagnu
|
|
maybe-clean-dejagnu:
|
|
@if dejagnu
|
|
maybe-clean-dejagnu: clean-dejagnu
|
|
|
|
clean-dejagnu:
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./dejagnu/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing clean in dejagnu" ; \
|
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
clean) \
|
|
|| exit 1
|
|
|
|
@endif dejagnu
|
|
|
|
.PHONY: maybe-distclean-dejagnu distclean-dejagnu
|
|
maybe-distclean-dejagnu:
|
|
@if dejagnu
|
|
maybe-distclean-dejagnu: distclean-dejagnu
|
|
|
|
distclean-dejagnu:
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./dejagnu/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing distclean in dejagnu" ; \
|
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
distclean) \
|
|
|| exit 1
|
|
|
|
@endif dejagnu
|
|
|
|
.PHONY: maybe-maintainer-clean-dejagnu maintainer-clean-dejagnu
|
|
maybe-maintainer-clean-dejagnu:
|
|
@if dejagnu
|
|
maybe-maintainer-clean-dejagnu: maintainer-clean-dejagnu
|
|
|
|
maintainer-clean-dejagnu:
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./dejagnu/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing maintainer-clean in dejagnu" ; \
|
|
(cd $(HOST_SUBDIR)/dejagnu && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
maintainer-clean) \
|
|
|| exit 1
|
|
|
|
@endif dejagnu
|
|
|
|
|
|
|
|
.PHONY: configure-diff maybe-configure-diff
|
|
maybe-configure-diff:
|
|
@if gcc-bootstrap
|
|
configure-diff: stage_current
|
|
@endif gcc-bootstrap
|
|
@if diff
|
|
maybe-configure-diff: configure-diff
|
|
configure-diff:
|
|
@: $(MAKE); $(unstage)
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/diff/Makefile || exit 0; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/diff ; \
|
|
$(HOST_EXPORTS) \
|
|
echo Configuring in $(HOST_SUBDIR)/diff; \
|
|
cd "$(HOST_SUBDIR)/diff" || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/diff/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/diff"; \
|
|
libsrcdir="$$s/diff"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
|| exit 1
|
|
@endif diff
|
|
|
|
|
|
|
|
|
|
|
|
.PHONY: all-diff maybe-all-diff
|
|
maybe-all-diff:
|
|
@if gcc-bootstrap
|
|
all-diff: stage_current
|
|
@endif gcc-bootstrap
|
|
@if diff
|
|
TARGET-diff=all
|
|
maybe-all-diff: all-diff
|
|
all-diff: configure-diff
|
|
@: $(MAKE); $(unstage)
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
(cd $(HOST_SUBDIR)/diff && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) \
|
|
$(TARGET-diff))
|
|
@endif diff
|
|
|
|
|
|
|
|
|
|
.PHONY: check-diff maybe-check-diff
|
|
maybe-check-diff:
|
|
@if diff
|
|
maybe-check-diff: check-diff
|
|
|
|
check-diff:
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
(cd $(HOST_SUBDIR)/diff && \
|
(cd $(HOST_SUBDIR)/diff && \
|
Line 13226... |
Line 13635... |
configure-stage1-gas:
|
configure-stage1-gas:
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/gas/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/gas/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 1 in $(HOST_SUBDIR)/gas ; \
|
echo Configuring stage 1 in $(HOST_SUBDIR)/gas ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas ; \
|
cd $(HOST_SUBDIR)/gas || exit 1; \
|
cd $(HOST_SUBDIR)/gas || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 13243... |
Line 13654... |
srcdiroption="--srcdir=$${topdir}/gas"; \
|
srcdiroption="--srcdir=$${topdir}/gas"; \
|
libsrcdir="$$s/gas"; \
|
libsrcdir="$$s/gas"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
\
|
$(STAGE1_CONFIGURE_FLAGS)
|
--disable-intermodule $(STAGE1_CHECKING) --disable-coverage --enable-languages="$(STAGE1_LANGUAGES)"
|
|
@endif gas-bootstrap
|
@endif gas-bootstrap
|
|
|
.PHONY: configure-stage2-gas maybe-configure-stage2-gas
|
.PHONY: configure-stage2-gas maybe-configure-stage2-gas
|
maybe-configure-stage2-gas:
|
maybe-configure-stage2-gas:
|
@if gas-bootstrap
|
@if gas-bootstrap
|
Line 13256... |
Line 13666... |
configure-stage2-gas:
|
configure-stage2-gas:
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/gas/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/gas/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE2_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 2 in $(HOST_SUBDIR)/gas ; \
|
echo Configuring stage 2 in $(HOST_SUBDIR)/gas ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas ; \
|
cd $(HOST_SUBDIR)/gas || exit 1; \
|
cd $(HOST_SUBDIR)/gas || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 13275... |
Line 13687... |
libsrcdir="$$s/gas"; \
|
libsrcdir="$$s/gas"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE2_CONFIGURE_FLAGS)
|
@endif gas-bootstrap
|
|
|
|
.PHONY: configure-stageb2g0-gas maybe-configure-stageb2g0-gas
|
|
maybe-configure-stageb2g0-gas:
|
|
@if gas-bootstrap
|
|
maybe-configure-stageb2g0-gas: configure-stageb2g0-gas
|
|
configure-stageb2g0-gas:
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/gas/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE2_CFLAGS) -g0"; export CXXFLAGS; \
|
|
echo Configuring stage b2g0 in $(HOST_SUBDIR)/gas ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas ; \
|
|
cd $(HOST_SUBDIR)/gas || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/gas/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/gas"; \
|
|
libsrcdir="$$s/gas"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@
|
|
@endif gas-bootstrap
|
@endif gas-bootstrap
|
|
|
.PHONY: configure-stage3-gas maybe-configure-stage3-gas
|
.PHONY: configure-stage3-gas maybe-configure-stage3-gas
|
maybe-configure-stage3-gas:
|
maybe-configure-stage3-gas:
|
@if gas-bootstrap
|
@if gas-bootstrap
|
Line 13318... |
Line 13699... |
configure-stage3-gas:
|
configure-stage3-gas:
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/gas/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/gas/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE3_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 3 in $(HOST_SUBDIR)/gas ; \
|
echo Configuring stage 3 in $(HOST_SUBDIR)/gas ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas ; \
|
cd $(HOST_SUBDIR)/gas || exit 1; \
|
cd $(HOST_SUBDIR)/gas || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 13337... |
Line 13720... |
libsrcdir="$$s/gas"; \
|
libsrcdir="$$s/gas"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE3_CONFIGURE_FLAGS)
|
@endif gas-bootstrap
|
|
|
|
.PHONY: configure-stageb3g2-gas maybe-configure-stageb3g2-gas
|
|
maybe-configure-stageb3g2-gas:
|
|
@if gas-bootstrap
|
|
maybe-configure-stageb3g2-gas: configure-stageb3g2-gas
|
|
configure-stageb3g2-gas:
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/gas/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE3_CFLAGS) -g2"; export CXXFLAGS; \
|
|
echo Configuring stage b3g2 in $(HOST_SUBDIR)/gas ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas ; \
|
|
cd $(HOST_SUBDIR)/gas || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/gas/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/gas"; \
|
|
libsrcdir="$$s/gas"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@
|
|
@endif gas-bootstrap
|
@endif gas-bootstrap
|
|
|
.PHONY: configure-stage4-gas maybe-configure-stage4-gas
|
.PHONY: configure-stage4-gas maybe-configure-stage4-gas
|
maybe-configure-stage4-gas:
|
maybe-configure-stage4-gas:
|
@if gas-bootstrap
|
@if gas-bootstrap
|
Line 13380... |
Line 13732... |
configure-stage4-gas:
|
configure-stage4-gas:
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/gas/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/gas/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE4_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 4 in $(HOST_SUBDIR)/gas ; \
|
echo Configuring stage 4 in $(HOST_SUBDIR)/gas ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas ; \
|
cd $(HOST_SUBDIR)/gas || exit 1; \
|
cd $(HOST_SUBDIR)/gas || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 13399... |
Line 13753... |
libsrcdir="$$s/gas"; \
|
libsrcdir="$$s/gas"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE4_CONFIGURE_FLAGS)
|
@endif gas-bootstrap
|
@endif gas-bootstrap
|
|
|
.PHONY: configure-stageprofile-gas maybe-configure-stageprofile-gas
|
.PHONY: configure-stageprofile-gas maybe-configure-stageprofile-gas
|
maybe-configure-stageprofile-gas:
|
maybe-configure-stageprofile-gas:
|
@if gas-bootstrap
|
@if gas-bootstrap
|
Line 13411... |
Line 13765... |
configure-stageprofile-gas:
|
configure-stageprofile-gas:
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/gas/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/gas/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate"; export CFLAGS; \
|
CFLAGS="$(STAGEprofile_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGEprofile_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage profile in $(HOST_SUBDIR)/gas ; \
|
echo Configuring stage profile in $(HOST_SUBDIR)/gas ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas ; \
|
cd $(HOST_SUBDIR)/gas || exit 1; \
|
cd $(HOST_SUBDIR)/gas || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 13430... |
Line 13786... |
libsrcdir="$$s/gas"; \
|
libsrcdir="$$s/gas"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGEprofile_CONFIGURE_FLAGS)
|
@endif gas-bootstrap
|
@endif gas-bootstrap
|
|
|
.PHONY: configure-stagefeedback-gas maybe-configure-stagefeedback-gas
|
.PHONY: configure-stagefeedback-gas maybe-configure-stagefeedback-gas
|
maybe-configure-stagefeedback-gas:
|
maybe-configure-stagefeedback-gas:
|
@if gas-bootstrap
|
@if gas-bootstrap
|
Line 13442... |
Line 13798... |
configure-stagefeedback-gas:
|
configure-stagefeedback-gas:
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/gas/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/gas/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use"; export CFLAGS; \
|
CFLAGS="$(STAGEfeedback_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage feedback in $(HOST_SUBDIR)/gas ; \
|
echo Configuring stage feedback in $(HOST_SUBDIR)/gas ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gas ; \
|
cd $(HOST_SUBDIR)/gas || exit 1; \
|
cd $(HOST_SUBDIR)/gas || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 13461... |
Line 13819... |
libsrcdir="$$s/gas"; \
|
libsrcdir="$$s/gas"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGEfeedback_CONFIGURE_FLAGS)
|
@endif gas-bootstrap
|
@endif gas-bootstrap
|
|
|
|
|
|
|
|
|
Line 13499... |
Line 13857... |
TARGET-stage1-gas = $(TARGET-gas)
|
TARGET-stage1-gas = $(TARGET-gas)
|
all-stage1-gas: configure-stage1-gas
|
all-stage1-gas: configure-stage1-gas
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/gas && \
|
cd $(HOST_SUBDIR)/gas && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE1_CFLAGS)" CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS="$(STAGE1_CFLAGS)" \
|
LIBCFLAGS="$(STAGE1_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" \
|
LIBCFLAGS="$(LIBCFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) \
|
|
TFLAGS="$(STAGE1_TFLAGS)" \
|
$(TARGET-stage1-gas)
|
$(TARGET-stage1-gas)
|
|
|
maybe-clean-stage1-gas: clean-stage1-gas
|
maybe-clean-stage1-gas: clean-stage1-gas
|
clean-stage1: clean-stage1-gas
|
clean-stage1: clean-stage1-gas
|
clean-stage1-gas:
|
clean-stage1-gas:
|
Line 13535... |
Line 13898... |
TARGET-stage2-gas = $(TARGET-gas)
|
TARGET-stage2-gas = $(TARGET-gas)
|
all-stage2-gas: configure-stage2-gas
|
all-stage2-gas: configure-stage2-gas
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/gas && \
|
cd $(HOST_SUBDIR)/gas && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS)" CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS="$(STAGE2_CFLAGS)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" \
|
LIBCFLAGS="$(STAGE2_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE2_TFLAGS)" \
|
$(TARGET-stage2-gas)
|
$(TARGET-stage2-gas)
|
|
|
maybe-clean-stage2-gas: clean-stage2-gas
|
maybe-clean-stage2-gas: clean-stage2-gas
|
clean-stage2: clean-stage2-gas
|
clean-stage2: clean-stage2-gas
|
clean-stage2-gas:
|
clean-stage2-gas:
|
Line 13561... |
Line 13929... |
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
clean
|
clean
|
@endif gas-bootstrap
|
@endif gas-bootstrap
|
|
|
|
|
.PHONY: all-stageb2g0-gas maybe-all-stageb2g0-gas
|
|
.PHONY: clean-stageb2g0-gas maybe-clean-stageb2g0-gas
|
|
maybe-all-stageb2g0-gas:
|
|
maybe-clean-stageb2g0-gas:
|
|
@if gas-bootstrap
|
|
maybe-all-stageb2g0-gas: all-stageb2g0-gas
|
|
all-stageb2g0: all-stageb2g0-gas
|
|
TARGET-stageb2g0-gas = $(TARGET-gas)
|
|
all-stageb2g0-gas: configure-stageb2g0-gas
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/gas && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0" CXXFLAGS="$(STAGE2_CFLAGS) -g0" \
|
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
$(TARGET-stageb2g0-gas)
|
|
|
|
maybe-clean-stageb2g0-gas: clean-stageb2g0-gas
|
|
clean-stageb2g0: clean-stageb2g0-gas
|
|
clean-stageb2g0-gas:
|
|
@if [ $(current_stage) = stageb2g0 ]; then \
|
|
[ -f $(HOST_SUBDIR)/gas/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageb2g0-gas/Makefile ] || exit 0; \
|
|
$(MAKE) stageb2g0-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/gas && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif gas-bootstrap
|
|
|
|
|
|
.PHONY: all-stage3-gas maybe-all-stage3-gas
|
.PHONY: all-stage3-gas maybe-all-stage3-gas
|
.PHONY: clean-stage3-gas maybe-clean-stage3-gas
|
.PHONY: clean-stage3-gas maybe-clean-stage3-gas
|
maybe-all-stage3-gas:
|
maybe-all-stage3-gas:
|
maybe-clean-stage3-gas:
|
maybe-clean-stage3-gas:
|
@if gas-bootstrap
|
@if gas-bootstrap
|
Line 13611... |
Line 13941... |
TARGET-stage3-gas = $(TARGET-gas)
|
TARGET-stage3-gas = $(TARGET-gas)
|
all-stage3-gas: configure-stage3-gas
|
all-stage3-gas: configure-stage3-gas
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/gas && \
|
cd $(HOST_SUBDIR)/gas && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS)" CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS="$(STAGE3_CFLAGS)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" \
|
LIBCFLAGS="$(STAGE3_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE3_TFLAGS)" \
|
$(TARGET-stage3-gas)
|
$(TARGET-stage3-gas)
|
|
|
maybe-clean-stage3-gas: clean-stage3-gas
|
maybe-clean-stage3-gas: clean-stage3-gas
|
clean-stage3: clean-stage3-gas
|
clean-stage3: clean-stage3-gas
|
clean-stage3-gas:
|
clean-stage3-gas:
|
Line 13637... |
Line 13972... |
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
clean
|
clean
|
@endif gas-bootstrap
|
@endif gas-bootstrap
|
|
|
|
|
.PHONY: all-stageb3g2-gas maybe-all-stageb3g2-gas
|
|
.PHONY: clean-stageb3g2-gas maybe-clean-stageb3g2-gas
|
|
maybe-all-stageb3g2-gas:
|
|
maybe-clean-stageb3g2-gas:
|
|
@if gas-bootstrap
|
|
maybe-all-stageb3g2-gas: all-stageb3g2-gas
|
|
all-stageb3g2: all-stageb3g2-gas
|
|
TARGET-stageb3g2-gas = $(TARGET-gas)
|
|
all-stageb3g2-gas: configure-stageb3g2-gas
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/gas && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2" CXXFLAGS="$(STAGE3_CFLAGS) -g2" \
|
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
$(TARGET-stageb3g2-gas)
|
|
|
|
maybe-clean-stageb3g2-gas: clean-stageb3g2-gas
|
|
clean-stageb3g2: clean-stageb3g2-gas
|
|
clean-stageb3g2-gas:
|
|
@if [ $(current_stage) = stageb3g2 ]; then \
|
|
[ -f $(HOST_SUBDIR)/gas/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageb3g2-gas/Makefile ] || exit 0; \
|
|
$(MAKE) stageb3g2-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/gas && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif gas-bootstrap
|
|
|
|
|
|
.PHONY: all-stage4-gas maybe-all-stage4-gas
|
.PHONY: all-stage4-gas maybe-all-stage4-gas
|
.PHONY: clean-stage4-gas maybe-clean-stage4-gas
|
.PHONY: clean-stage4-gas maybe-clean-stage4-gas
|
maybe-all-stage4-gas:
|
maybe-all-stage4-gas:
|
maybe-clean-stage4-gas:
|
maybe-clean-stage4-gas:
|
@if gas-bootstrap
|
@if gas-bootstrap
|
Line 13687... |
Line 13984... |
TARGET-stage4-gas = $(TARGET-gas)
|
TARGET-stage4-gas = $(TARGET-gas)
|
all-stage4-gas: configure-stage4-gas
|
all-stage4-gas: configure-stage4-gas
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/gas && \
|
cd $(HOST_SUBDIR)/gas && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE4_CFLAGS)" CXXFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS="$(STAGE4_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE4_TFLAGS)" \
|
$(TARGET-stage4-gas)
|
$(TARGET-stage4-gas)
|
|
|
maybe-clean-stage4-gas: clean-stage4-gas
|
maybe-clean-stage4-gas: clean-stage4-gas
|
clean-stage4: clean-stage4-gas
|
clean-stage4: clean-stage4-gas
|
clean-stage4-gas:
|
clean-stage4-gas:
|
Line 13725... |
Line 14027... |
TARGET-stageprofile-gas = $(TARGET-gas)
|
TARGET-stageprofile-gas = $(TARGET-gas)
|
all-stageprofile-gas: configure-stageprofile-gas
|
all-stageprofile-gas: configure-stageprofile-gas
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/gas && \
|
cd $(HOST_SUBDIR)/gas && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" \
|
CFLAGS="$(STAGEprofile_CFLAGS)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
CXXFLAGS="$(STAGEprofile_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)" \
|
$(TARGET-stageprofile-gas)
|
$(TARGET-stageprofile-gas)
|
|
|
maybe-clean-stageprofile-gas: clean-stageprofile-gas
|
maybe-clean-stageprofile-gas: clean-stageprofile-gas
|
clean-stageprofile: clean-stageprofile-gas
|
clean-stageprofile: clean-stageprofile-gas
|
clean-stageprofile-gas:
|
clean-stageprofile-gas:
|
Line 13763... |
Line 14070... |
TARGET-stagefeedback-gas = $(TARGET-gas)
|
TARGET-stagefeedback-gas = $(TARGET-gas)
|
all-stagefeedback-gas: configure-stagefeedback-gas
|
all-stagefeedback-gas: configure-stagefeedback-gas
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/gas && \
|
cd $(HOST_SUBDIR)/gas && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use" CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use" \
|
CFLAGS="$(STAGEfeedback_CFLAGS)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)" \
|
$(TARGET-stagefeedback-gas)
|
$(TARGET-stagefeedback-gas)
|
|
|
maybe-clean-stagefeedback-gas: clean-stagefeedback-gas
|
maybe-clean-stagefeedback-gas: clean-stagefeedback-gas
|
clean-stagefeedback: clean-stagefeedback-gas
|
clean-stagefeedback: clean-stagefeedback-gas
|
clean-stagefeedback-gas:
|
clean-stagefeedback-gas:
|
Line 14189... |
Line 14501... |
configure-stage1-gcc:
|
configure-stage1-gcc:
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/gcc/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/gcc/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 1 in $(HOST_SUBDIR)/gcc ; \
|
echo Configuring stage 1 in $(HOST_SUBDIR)/gcc ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc ; \
|
cd $(HOST_SUBDIR)/gcc || exit 1; \
|
cd $(HOST_SUBDIR)/gcc || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 14206... |
Line 14520... |
srcdiroption="--srcdir=$${topdir}/gcc"; \
|
srcdiroption="--srcdir=$${topdir}/gcc"; \
|
libsrcdir="$$s/gcc"; \
|
libsrcdir="$$s/gcc"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
\
|
$(STAGE1_CONFIGURE_FLAGS)
|
--disable-intermodule $(STAGE1_CHECKING) --disable-coverage --enable-languages="$(STAGE1_LANGUAGES)"
|
|
@endif gcc-bootstrap
|
@endif gcc-bootstrap
|
|
|
.PHONY: configure-stage2-gcc maybe-configure-stage2-gcc
|
.PHONY: configure-stage2-gcc maybe-configure-stage2-gcc
|
maybe-configure-stage2-gcc:
|
maybe-configure-stage2-gcc:
|
@if gcc-bootstrap
|
@if gcc-bootstrap
|
Line 14219... |
Line 14532... |
configure-stage2-gcc:
|
configure-stage2-gcc:
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/gcc/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/gcc/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE2_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 2 in $(HOST_SUBDIR)/gcc ; \
|
echo Configuring stage 2 in $(HOST_SUBDIR)/gcc ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc ; \
|
cd $(HOST_SUBDIR)/gcc || exit 1; \
|
cd $(HOST_SUBDIR)/gcc || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 14238... |
Line 14553... |
libsrcdir="$$s/gcc"; \
|
libsrcdir="$$s/gcc"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE2_CONFIGURE_FLAGS)
|
@endif gcc-bootstrap
|
@endif gcc-bootstrap
|
|
|
.PHONY: configure-stageb2g0-gcc maybe-configure-stageb2g0-gcc
|
.PHONY: configure-stage3-gcc maybe-configure-stage3-gcc
|
maybe-configure-stageb2g0-gcc:
|
maybe-configure-stage3-gcc:
|
@if gcc-bootstrap
|
@if gcc-bootstrap
|
maybe-configure-stageb2g0-gcc: configure-stageb2g0-gcc
|
maybe-configure-stage3-gcc: configure-stage3-gcc
|
configure-stageb2g0-gcc:
|
configure-stage3-gcc:
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/gcc/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE2_CFLAGS) -g0"; export CXXFLAGS; \
|
|
echo Configuring stage b2g0 in $(HOST_SUBDIR)/gcc ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc ; \
|
|
cd $(HOST_SUBDIR)/gcc || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/gcc/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/gcc"; \
|
|
libsrcdir="$$s/gcc"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@
|
|
@endif gcc-bootstrap
|
|
|
|
.PHONY: configure-stage3-gcc maybe-configure-stage3-gcc
|
|
maybe-configure-stage3-gcc:
|
|
@if gcc-bootstrap
|
|
maybe-configure-stage3-gcc: configure-stage3-gcc
|
|
configure-stage3-gcc:
|
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/gcc/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/gcc/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE3_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 3 in $(HOST_SUBDIR)/gcc ; \
|
echo Configuring stage 3 in $(HOST_SUBDIR)/gcc ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc ; \
|
cd $(HOST_SUBDIR)/gcc || exit 1; \
|
cd $(HOST_SUBDIR)/gcc || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 14300... |
Line 14586... |
libsrcdir="$$s/gcc"; \
|
libsrcdir="$$s/gcc"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE3_CONFIGURE_FLAGS)
|
@endif gcc-bootstrap
|
|
|
|
.PHONY: configure-stageb3g2-gcc maybe-configure-stageb3g2-gcc
|
|
maybe-configure-stageb3g2-gcc:
|
|
@if gcc-bootstrap
|
|
maybe-configure-stageb3g2-gcc: configure-stageb3g2-gcc
|
|
configure-stageb3g2-gcc:
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/gcc/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE3_CFLAGS) -g2"; export CXXFLAGS; \
|
|
echo Configuring stage b3g2 in $(HOST_SUBDIR)/gcc ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc ; \
|
|
cd $(HOST_SUBDIR)/gcc || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/gcc/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/gcc"; \
|
|
libsrcdir="$$s/gcc"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@
|
|
@endif gcc-bootstrap
|
@endif gcc-bootstrap
|
|
|
.PHONY: configure-stage4-gcc maybe-configure-stage4-gcc
|
.PHONY: configure-stage4-gcc maybe-configure-stage4-gcc
|
maybe-configure-stage4-gcc:
|
maybe-configure-stage4-gcc:
|
@if gcc-bootstrap
|
@if gcc-bootstrap
|
Line 14343... |
Line 14598... |
configure-stage4-gcc:
|
configure-stage4-gcc:
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/gcc/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/gcc/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE4_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 4 in $(HOST_SUBDIR)/gcc ; \
|
echo Configuring stage 4 in $(HOST_SUBDIR)/gcc ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc ; \
|
cd $(HOST_SUBDIR)/gcc || exit 1; \
|
cd $(HOST_SUBDIR)/gcc || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 14362... |
Line 14619... |
libsrcdir="$$s/gcc"; \
|
libsrcdir="$$s/gcc"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE4_CONFIGURE_FLAGS)
|
@endif gcc-bootstrap
|
@endif gcc-bootstrap
|
|
|
.PHONY: configure-stageprofile-gcc maybe-configure-stageprofile-gcc
|
.PHONY: configure-stageprofile-gcc maybe-configure-stageprofile-gcc
|
maybe-configure-stageprofile-gcc:
|
maybe-configure-stageprofile-gcc:
|
@if gcc-bootstrap
|
@if gcc-bootstrap
|
Line 14374... |
Line 14631... |
configure-stageprofile-gcc:
|
configure-stageprofile-gcc:
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/gcc/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/gcc/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate"; export CFLAGS; \
|
CFLAGS="$(STAGEprofile_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGEprofile_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage profile in $(HOST_SUBDIR)/gcc ; \
|
echo Configuring stage profile in $(HOST_SUBDIR)/gcc ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc ; \
|
cd $(HOST_SUBDIR)/gcc || exit 1; \
|
cd $(HOST_SUBDIR)/gcc || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 14393... |
Line 14652... |
libsrcdir="$$s/gcc"; \
|
libsrcdir="$$s/gcc"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGEprofile_CONFIGURE_FLAGS)
|
@endif gcc-bootstrap
|
@endif gcc-bootstrap
|
|
|
.PHONY: configure-stagefeedback-gcc maybe-configure-stagefeedback-gcc
|
.PHONY: configure-stagefeedback-gcc maybe-configure-stagefeedback-gcc
|
maybe-configure-stagefeedback-gcc:
|
maybe-configure-stagefeedback-gcc:
|
@if gcc-bootstrap
|
@if gcc-bootstrap
|
Line 14405... |
Line 14664... |
configure-stagefeedback-gcc:
|
configure-stagefeedback-gcc:
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/gcc/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/gcc/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use"; export CFLAGS; \
|
CFLAGS="$(STAGEfeedback_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage feedback in $(HOST_SUBDIR)/gcc ; \
|
echo Configuring stage feedback in $(HOST_SUBDIR)/gcc ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gcc ; \
|
cd $(HOST_SUBDIR)/gcc || exit 1; \
|
cd $(HOST_SUBDIR)/gcc || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 14424... |
Line 14685... |
libsrcdir="$$s/gcc"; \
|
libsrcdir="$$s/gcc"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGEfeedback_CONFIGURE_FLAGS)
|
@endif gcc-bootstrap
|
@endif gcc-bootstrap
|
|
|
|
|
|
|
|
|
Line 14462... |
Line 14723... |
TARGET-stage1-gcc = $(TARGET-gcc)
|
TARGET-stage1-gcc = $(TARGET-gcc)
|
all-stage1-gcc: configure-stage1-gcc
|
all-stage1-gcc: configure-stage1-gcc
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/gcc && \
|
cd $(HOST_SUBDIR)/gcc && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE1_CFLAGS)" CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS="$(STAGE1_CFLAGS)" \
|
LIBCFLAGS="$(STAGE1_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" \
|
LIBCFLAGS="$(LIBCFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(EXTRA_GCC_FLAGS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(EXTRA_GCC_FLAGS) \
|
|
TFLAGS="$(STAGE1_TFLAGS)" \
|
$(TARGET-stage1-gcc)
|
$(TARGET-stage1-gcc)
|
|
|
maybe-clean-stage1-gcc: clean-stage1-gcc
|
maybe-clean-stage1-gcc: clean-stage1-gcc
|
clean-stage1: clean-stage1-gcc
|
clean-stage1: clean-stage1-gcc
|
clean-stage1-gcc:
|
clean-stage1-gcc:
|
Line 14498... |
Line 14764... |
TARGET-stage2-gcc = $(TARGET-gcc)
|
TARGET-stage2-gcc = $(TARGET-gcc)
|
all-stage2-gcc: configure-stage2-gcc
|
all-stage2-gcc: configure-stage2-gcc
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/gcc && \
|
cd $(HOST_SUBDIR)/gcc && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS)" CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS="$(STAGE2_CFLAGS)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" \
|
LIBCFLAGS="$(STAGE2_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS) \
|
|
TFLAGS="$(STAGE2_TFLAGS)" \
|
$(TARGET-stage2-gcc)
|
$(TARGET-stage2-gcc)
|
|
|
maybe-clean-stage2-gcc: clean-stage2-gcc
|
maybe-clean-stage2-gcc: clean-stage2-gcc
|
clean-stage2: clean-stage2-gcc
|
clean-stage2: clean-stage2-gcc
|
clean-stage2-gcc:
|
clean-stage2-gcc:
|
Line 14524... |
Line 14795... |
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(EXTRA_GCC_FLAGS) clean
|
$(EXTRA_GCC_FLAGS) clean
|
@endif gcc-bootstrap
|
@endif gcc-bootstrap
|
|
|
|
|
.PHONY: all-stageb2g0-gcc maybe-all-stageb2g0-gcc
|
|
.PHONY: clean-stageb2g0-gcc maybe-clean-stageb2g0-gcc
|
|
maybe-all-stageb2g0-gcc:
|
|
maybe-clean-stageb2g0-gcc:
|
|
@if gcc-bootstrap
|
|
maybe-all-stageb2g0-gcc: all-stageb2g0-gcc
|
|
all-stageb2g0: all-stageb2g0-gcc
|
|
TARGET-stageb2g0-gcc = $(TARGET-gcc)
|
|
all-stageb2g0-gcc: configure-stageb2g0-gcc
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/gcc && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0" CXXFLAGS="$(STAGE2_CFLAGS) -g0" \
|
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS) \
|
|
$(TARGET-stageb2g0-gcc)
|
|
|
|
maybe-clean-stageb2g0-gcc: clean-stageb2g0-gcc
|
|
clean-stageb2g0: clean-stageb2g0-gcc
|
|
clean-stageb2g0-gcc:
|
|
@if [ $(current_stage) = stageb2g0 ]; then \
|
|
[ -f $(HOST_SUBDIR)/gcc/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageb2g0-gcc/Makefile ] || exit 0; \
|
|
$(MAKE) stageb2g0-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/gcc && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
$(EXTRA_GCC_FLAGS) clean
|
|
@endif gcc-bootstrap
|
|
|
|
|
|
.PHONY: all-stage3-gcc maybe-all-stage3-gcc
|
.PHONY: all-stage3-gcc maybe-all-stage3-gcc
|
.PHONY: clean-stage3-gcc maybe-clean-stage3-gcc
|
.PHONY: clean-stage3-gcc maybe-clean-stage3-gcc
|
maybe-all-stage3-gcc:
|
maybe-all-stage3-gcc:
|
maybe-clean-stage3-gcc:
|
maybe-clean-stage3-gcc:
|
@if gcc-bootstrap
|
@if gcc-bootstrap
|
Line 14574... |
Line 14807... |
TARGET-stage3-gcc = $(TARGET-gcc)
|
TARGET-stage3-gcc = $(TARGET-gcc)
|
all-stage3-gcc: configure-stage3-gcc
|
all-stage3-gcc: configure-stage3-gcc
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/gcc && \
|
cd $(HOST_SUBDIR)/gcc && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS)" CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS="$(STAGE3_CFLAGS)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" \
|
LIBCFLAGS="$(STAGE3_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS) \
|
|
TFLAGS="$(STAGE3_TFLAGS)" \
|
$(TARGET-stage3-gcc)
|
$(TARGET-stage3-gcc)
|
|
|
maybe-clean-stage3-gcc: clean-stage3-gcc
|
maybe-clean-stage3-gcc: clean-stage3-gcc
|
clean-stage3: clean-stage3-gcc
|
clean-stage3: clean-stage3-gcc
|
clean-stage3-gcc:
|
clean-stage3-gcc:
|
Line 14600... |
Line 14838... |
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(EXTRA_GCC_FLAGS) clean
|
$(EXTRA_GCC_FLAGS) clean
|
@endif gcc-bootstrap
|
@endif gcc-bootstrap
|
|
|
|
|
.PHONY: all-stageb3g2-gcc maybe-all-stageb3g2-gcc
|
|
.PHONY: clean-stageb3g2-gcc maybe-clean-stageb3g2-gcc
|
|
maybe-all-stageb3g2-gcc:
|
|
maybe-clean-stageb3g2-gcc:
|
|
@if gcc-bootstrap
|
|
maybe-all-stageb3g2-gcc: all-stageb3g2-gcc
|
|
all-stageb3g2: all-stageb3g2-gcc
|
|
TARGET-stageb3g2-gcc = $(TARGET-gcc)
|
|
all-stageb3g2-gcc: configure-stageb3g2-gcc
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/gcc && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2" CXXFLAGS="$(STAGE3_CFLAGS) -g2" \
|
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS) \
|
|
$(TARGET-stageb3g2-gcc)
|
|
|
|
maybe-clean-stageb3g2-gcc: clean-stageb3g2-gcc
|
|
clean-stageb3g2: clean-stageb3g2-gcc
|
|
clean-stageb3g2-gcc:
|
|
@if [ $(current_stage) = stageb3g2 ]; then \
|
|
[ -f $(HOST_SUBDIR)/gcc/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageb3g2-gcc/Makefile ] || exit 0; \
|
|
$(MAKE) stageb3g2-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/gcc && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
$(EXTRA_GCC_FLAGS) clean
|
|
@endif gcc-bootstrap
|
|
|
|
|
|
.PHONY: all-stage4-gcc maybe-all-stage4-gcc
|
.PHONY: all-stage4-gcc maybe-all-stage4-gcc
|
.PHONY: clean-stage4-gcc maybe-clean-stage4-gcc
|
.PHONY: clean-stage4-gcc maybe-clean-stage4-gcc
|
maybe-all-stage4-gcc:
|
maybe-all-stage4-gcc:
|
maybe-clean-stage4-gcc:
|
maybe-clean-stage4-gcc:
|
@if gcc-bootstrap
|
@if gcc-bootstrap
|
Line 14650... |
Line 14850... |
TARGET-stage4-gcc = $(TARGET-gcc)
|
TARGET-stage4-gcc = $(TARGET-gcc)
|
all-stage4-gcc: configure-stage4-gcc
|
all-stage4-gcc: configure-stage4-gcc
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/gcc && \
|
cd $(HOST_SUBDIR)/gcc && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE4_CFLAGS)" CXXFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS="$(STAGE4_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS) \
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS) \
|
|
TFLAGS="$(STAGE4_TFLAGS)" \
|
$(TARGET-stage4-gcc)
|
$(TARGET-stage4-gcc)
|
|
|
maybe-clean-stage4-gcc: clean-stage4-gcc
|
maybe-clean-stage4-gcc: clean-stage4-gcc
|
clean-stage4: clean-stage4-gcc
|
clean-stage4: clean-stage4-gcc
|
clean-stage4-gcc:
|
clean-stage4-gcc:
|
Line 14688... |
Line 14893... |
TARGET-stageprofile-gcc = $(TARGET-gcc)
|
TARGET-stageprofile-gcc = $(TARGET-gcc)
|
all-stageprofile-gcc: configure-stageprofile-gcc
|
all-stageprofile-gcc: configure-stageprofile-gcc
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/gcc && \
|
cd $(HOST_SUBDIR)/gcc && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" \
|
CFLAGS="$(STAGEprofile_CFLAGS)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
CXXFLAGS="$(STAGEprofile_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS) \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)" \
|
$(TARGET-stageprofile-gcc)
|
$(TARGET-stageprofile-gcc)
|
|
|
maybe-clean-stageprofile-gcc: clean-stageprofile-gcc
|
maybe-clean-stageprofile-gcc: clean-stageprofile-gcc
|
clean-stageprofile: clean-stageprofile-gcc
|
clean-stageprofile: clean-stageprofile-gcc
|
clean-stageprofile-gcc:
|
clean-stageprofile-gcc:
|
Line 14726... |
Line 14936... |
TARGET-stagefeedback-gcc = $(TARGET-gcc)
|
TARGET-stagefeedback-gcc = $(TARGET-gcc)
|
all-stagefeedback-gcc: configure-stagefeedback-gcc
|
all-stagefeedback-gcc: configure-stagefeedback-gcc
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/gcc && \
|
cd $(HOST_SUBDIR)/gcc && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use" CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use" \
|
CFLAGS="$(STAGEfeedback_CFLAGS)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS) \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)" \
|
$(TARGET-stagefeedback-gcc)
|
$(TARGET-stagefeedback-gcc)
|
|
|
maybe-clean-stagefeedback-gcc: clean-stagefeedback-gcc
|
maybe-clean-stagefeedback-gcc: clean-stagefeedback-gcc
|
clean-stagefeedback: clean-stagefeedback-gcc
|
clean-stagefeedback: clean-stagefeedback-gcc
|
clean-stagefeedback-gcc:
|
clean-stagefeedback-gcc:
|
Line 16002... |
Line 16217... |
configure-stage1-gmp:
|
configure-stage1-gmp:
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/gmp/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/gmp/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 1 in $(HOST_SUBDIR)/gmp ; \
|
echo Configuring stage 1 in $(HOST_SUBDIR)/gmp ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp ; \
|
cd $(HOST_SUBDIR)/gmp || exit 1; \
|
cd $(HOST_SUBDIR)/gmp || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 16019... |
Line 16236... |
srcdiroption="--srcdir=$${topdir}/gmp"; \
|
srcdiroption="--srcdir=$${topdir}/gmp"; \
|
libsrcdir="$$s/gmp"; \
|
libsrcdir="$$s/gmp"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
\
|
$(STAGE1_CONFIGURE_FLAGS) \
|
--disable-intermodule $(STAGE1_CHECKING) --disable-coverage --enable-languages="$(STAGE1_LANGUAGES)" --disable-shared
|
--disable-shared
|
@endif gmp-bootstrap
|
@endif gmp-bootstrap
|
|
|
.PHONY: configure-stage2-gmp maybe-configure-stage2-gmp
|
.PHONY: configure-stage2-gmp maybe-configure-stage2-gmp
|
maybe-configure-stage2-gmp:
|
maybe-configure-stage2-gmp:
|
@if gmp-bootstrap
|
@if gmp-bootstrap
|
Line 16032... |
Line 16249... |
configure-stage2-gmp:
|
configure-stage2-gmp:
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/gmp/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/gmp/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE2_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 2 in $(HOST_SUBDIR)/gmp ; \
|
echo Configuring stage 2 in $(HOST_SUBDIR)/gmp ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp ; \
|
cd $(HOST_SUBDIR)/gmp || exit 1; \
|
cd $(HOST_SUBDIR)/gmp || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 16051... |
Line 16270... |
libsrcdir="$$s/gmp"; \
|
libsrcdir="$$s/gmp"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@ --disable-shared
|
$(STAGE2_CONFIGURE_FLAGS) \
|
@endif gmp-bootstrap
|
--disable-shared
|
|
|
.PHONY: configure-stageb2g0-gmp maybe-configure-stageb2g0-gmp
|
|
maybe-configure-stageb2g0-gmp:
|
|
@if gmp-bootstrap
|
|
maybe-configure-stageb2g0-gmp: configure-stageb2g0-gmp
|
|
configure-stageb2g0-gmp:
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/gmp/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE2_CFLAGS) -g0"; export CXXFLAGS; \
|
|
echo Configuring stage b2g0 in $(HOST_SUBDIR)/gmp ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp ; \
|
|
cd $(HOST_SUBDIR)/gmp || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/gmp/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/gmp"; \
|
|
libsrcdir="$$s/gmp"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@ --disable-shared
|
|
@endif gmp-bootstrap
|
@endif gmp-bootstrap
|
|
|
.PHONY: configure-stage3-gmp maybe-configure-stage3-gmp
|
.PHONY: configure-stage3-gmp maybe-configure-stage3-gmp
|
maybe-configure-stage3-gmp:
|
maybe-configure-stage3-gmp:
|
@if gmp-bootstrap
|
@if gmp-bootstrap
|
Line 16094... |
Line 16283... |
configure-stage3-gmp:
|
configure-stage3-gmp:
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/gmp/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/gmp/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE3_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 3 in $(HOST_SUBDIR)/gmp ; \
|
echo Configuring stage 3 in $(HOST_SUBDIR)/gmp ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp ; \
|
cd $(HOST_SUBDIR)/gmp || exit 1; \
|
cd $(HOST_SUBDIR)/gmp || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 16113... |
Line 16304... |
libsrcdir="$$s/gmp"; \
|
libsrcdir="$$s/gmp"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@ --disable-shared
|
$(STAGE3_CONFIGURE_FLAGS) \
|
@endif gmp-bootstrap
|
--disable-shared
|
|
|
.PHONY: configure-stageb3g2-gmp maybe-configure-stageb3g2-gmp
|
|
maybe-configure-stageb3g2-gmp:
|
|
@if gmp-bootstrap
|
|
maybe-configure-stageb3g2-gmp: configure-stageb3g2-gmp
|
|
configure-stageb3g2-gmp:
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/gmp/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE3_CFLAGS) -g2"; export CXXFLAGS; \
|
|
echo Configuring stage b3g2 in $(HOST_SUBDIR)/gmp ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp ; \
|
|
cd $(HOST_SUBDIR)/gmp || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/gmp/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/gmp"; \
|
|
libsrcdir="$$s/gmp"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@ --disable-shared
|
|
@endif gmp-bootstrap
|
@endif gmp-bootstrap
|
|
|
.PHONY: configure-stage4-gmp maybe-configure-stage4-gmp
|
.PHONY: configure-stage4-gmp maybe-configure-stage4-gmp
|
maybe-configure-stage4-gmp:
|
maybe-configure-stage4-gmp:
|
@if gmp-bootstrap
|
@if gmp-bootstrap
|
Line 16156... |
Line 16317... |
configure-stage4-gmp:
|
configure-stage4-gmp:
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/gmp/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/gmp/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE4_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 4 in $(HOST_SUBDIR)/gmp ; \
|
echo Configuring stage 4 in $(HOST_SUBDIR)/gmp ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp ; \
|
cd $(HOST_SUBDIR)/gmp || exit 1; \
|
cd $(HOST_SUBDIR)/gmp || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 16175... |
Line 16338... |
libsrcdir="$$s/gmp"; \
|
libsrcdir="$$s/gmp"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@ --disable-shared
|
$(STAGE4_CONFIGURE_FLAGS) \
|
|
--disable-shared
|
@endif gmp-bootstrap
|
@endif gmp-bootstrap
|
|
|
.PHONY: configure-stageprofile-gmp maybe-configure-stageprofile-gmp
|
.PHONY: configure-stageprofile-gmp maybe-configure-stageprofile-gmp
|
maybe-configure-stageprofile-gmp:
|
maybe-configure-stageprofile-gmp:
|
@if gmp-bootstrap
|
@if gmp-bootstrap
|
Line 16187... |
Line 16351... |
configure-stageprofile-gmp:
|
configure-stageprofile-gmp:
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/gmp/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/gmp/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate"; export CFLAGS; \
|
CFLAGS="$(STAGEprofile_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGEprofile_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage profile in $(HOST_SUBDIR)/gmp ; \
|
echo Configuring stage profile in $(HOST_SUBDIR)/gmp ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp ; \
|
cd $(HOST_SUBDIR)/gmp || exit 1; \
|
cd $(HOST_SUBDIR)/gmp || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 16206... |
Line 16372... |
libsrcdir="$$s/gmp"; \
|
libsrcdir="$$s/gmp"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@ --disable-shared
|
$(STAGEprofile_CONFIGURE_FLAGS) \
|
|
--disable-shared
|
@endif gmp-bootstrap
|
@endif gmp-bootstrap
|
|
|
.PHONY: configure-stagefeedback-gmp maybe-configure-stagefeedback-gmp
|
.PHONY: configure-stagefeedback-gmp maybe-configure-stagefeedback-gmp
|
maybe-configure-stagefeedback-gmp:
|
maybe-configure-stagefeedback-gmp:
|
@if gmp-bootstrap
|
@if gmp-bootstrap
|
Line 16218... |
Line 16385... |
configure-stagefeedback-gmp:
|
configure-stagefeedback-gmp:
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/gmp/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/gmp/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use"; export CFLAGS; \
|
CFLAGS="$(STAGEfeedback_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage feedback in $(HOST_SUBDIR)/gmp ; \
|
echo Configuring stage feedback in $(HOST_SUBDIR)/gmp ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gmp ; \
|
cd $(HOST_SUBDIR)/gmp || exit 1; \
|
cd $(HOST_SUBDIR)/gmp || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 16237... |
Line 16406... |
libsrcdir="$$s/gmp"; \
|
libsrcdir="$$s/gmp"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@ --disable-shared
|
$(STAGEfeedback_CONFIGURE_FLAGS) \
|
|
--disable-shared
|
@endif gmp-bootstrap
|
@endif gmp-bootstrap
|
|
|
|
|
|
|
|
|
Line 16275... |
Line 16445... |
TARGET-stage1-gmp = $(TARGET-gmp)
|
TARGET-stage1-gmp = $(TARGET-gmp)
|
all-stage1-gmp: configure-stage1-gmp
|
all-stage1-gmp: configure-stage1-gmp
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/gmp && \
|
cd $(HOST_SUBDIR)/gmp && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE1_CFLAGS)" CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS="$(STAGE1_CFLAGS)" \
|
LIBCFLAGS="$(STAGE1_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" \
|
LIBCFLAGS="$(LIBCFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) \
|
|
TFLAGS="$(STAGE1_TFLAGS)" \
|
$(TARGET-stage1-gmp)
|
$(TARGET-stage1-gmp)
|
|
|
maybe-clean-stage1-gmp: clean-stage1-gmp
|
maybe-clean-stage1-gmp: clean-stage1-gmp
|
clean-stage1: clean-stage1-gmp
|
clean-stage1: clean-stage1-gmp
|
clean-stage1-gmp:
|
clean-stage1-gmp:
|
Line 16311... |
Line 16486... |
TARGET-stage2-gmp = $(TARGET-gmp)
|
TARGET-stage2-gmp = $(TARGET-gmp)
|
all-stage2-gmp: configure-stage2-gmp
|
all-stage2-gmp: configure-stage2-gmp
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/gmp && \
|
cd $(HOST_SUBDIR)/gmp && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS)" CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS="$(STAGE2_CFLAGS)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" \
|
LIBCFLAGS="$(STAGE2_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE2_TFLAGS)" \
|
$(TARGET-stage2-gmp)
|
$(TARGET-stage2-gmp)
|
|
|
maybe-clean-stage2-gmp: clean-stage2-gmp
|
maybe-clean-stage2-gmp: clean-stage2-gmp
|
clean-stage2: clean-stage2-gmp
|
clean-stage2: clean-stage2-gmp
|
clean-stage2-gmp:
|
clean-stage2-gmp:
|
Line 16337... |
Line 16517... |
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
clean
|
clean
|
@endif gmp-bootstrap
|
@endif gmp-bootstrap
|
|
|
|
|
.PHONY: all-stageb2g0-gmp maybe-all-stageb2g0-gmp
|
|
.PHONY: clean-stageb2g0-gmp maybe-clean-stageb2g0-gmp
|
|
maybe-all-stageb2g0-gmp:
|
|
maybe-clean-stageb2g0-gmp:
|
|
@if gmp-bootstrap
|
|
maybe-all-stageb2g0-gmp: all-stageb2g0-gmp
|
|
all-stageb2g0: all-stageb2g0-gmp
|
|
TARGET-stageb2g0-gmp = $(TARGET-gmp)
|
|
all-stageb2g0-gmp: configure-stageb2g0-gmp
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/gmp && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0" CXXFLAGS="$(STAGE2_CFLAGS) -g0" \
|
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
$(TARGET-stageb2g0-gmp)
|
|
|
|
maybe-clean-stageb2g0-gmp: clean-stageb2g0-gmp
|
|
clean-stageb2g0: clean-stageb2g0-gmp
|
|
clean-stageb2g0-gmp:
|
|
@if [ $(current_stage) = stageb2g0 ]; then \
|
|
[ -f $(HOST_SUBDIR)/gmp/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageb2g0-gmp/Makefile ] || exit 0; \
|
|
$(MAKE) stageb2g0-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/gmp && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif gmp-bootstrap
|
|
|
|
|
|
.PHONY: all-stage3-gmp maybe-all-stage3-gmp
|
.PHONY: all-stage3-gmp maybe-all-stage3-gmp
|
.PHONY: clean-stage3-gmp maybe-clean-stage3-gmp
|
.PHONY: clean-stage3-gmp maybe-clean-stage3-gmp
|
maybe-all-stage3-gmp:
|
maybe-all-stage3-gmp:
|
maybe-clean-stage3-gmp:
|
maybe-clean-stage3-gmp:
|
@if gmp-bootstrap
|
@if gmp-bootstrap
|
Line 16387... |
Line 16529... |
TARGET-stage3-gmp = $(TARGET-gmp)
|
TARGET-stage3-gmp = $(TARGET-gmp)
|
all-stage3-gmp: configure-stage3-gmp
|
all-stage3-gmp: configure-stage3-gmp
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/gmp && \
|
cd $(HOST_SUBDIR)/gmp && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS)" CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS="$(STAGE3_CFLAGS)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" \
|
LIBCFLAGS="$(STAGE3_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE3_TFLAGS)" \
|
$(TARGET-stage3-gmp)
|
$(TARGET-stage3-gmp)
|
|
|
maybe-clean-stage3-gmp: clean-stage3-gmp
|
maybe-clean-stage3-gmp: clean-stage3-gmp
|
clean-stage3: clean-stage3-gmp
|
clean-stage3: clean-stage3-gmp
|
clean-stage3-gmp:
|
clean-stage3-gmp:
|
Line 16413... |
Line 16560... |
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
clean
|
clean
|
@endif gmp-bootstrap
|
@endif gmp-bootstrap
|
|
|
|
|
.PHONY: all-stageb3g2-gmp maybe-all-stageb3g2-gmp
|
|
.PHONY: clean-stageb3g2-gmp maybe-clean-stageb3g2-gmp
|
|
maybe-all-stageb3g2-gmp:
|
|
maybe-clean-stageb3g2-gmp:
|
|
@if gmp-bootstrap
|
|
maybe-all-stageb3g2-gmp: all-stageb3g2-gmp
|
|
all-stageb3g2: all-stageb3g2-gmp
|
|
TARGET-stageb3g2-gmp = $(TARGET-gmp)
|
|
all-stageb3g2-gmp: configure-stageb3g2-gmp
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/gmp && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2" CXXFLAGS="$(STAGE3_CFLAGS) -g2" \
|
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
$(TARGET-stageb3g2-gmp)
|
|
|
|
maybe-clean-stageb3g2-gmp: clean-stageb3g2-gmp
|
|
clean-stageb3g2: clean-stageb3g2-gmp
|
|
clean-stageb3g2-gmp:
|
|
@if [ $(current_stage) = stageb3g2 ]; then \
|
|
[ -f $(HOST_SUBDIR)/gmp/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageb3g2-gmp/Makefile ] || exit 0; \
|
|
$(MAKE) stageb3g2-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/gmp && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif gmp-bootstrap
|
|
|
|
|
|
.PHONY: all-stage4-gmp maybe-all-stage4-gmp
|
.PHONY: all-stage4-gmp maybe-all-stage4-gmp
|
.PHONY: clean-stage4-gmp maybe-clean-stage4-gmp
|
.PHONY: clean-stage4-gmp maybe-clean-stage4-gmp
|
maybe-all-stage4-gmp:
|
maybe-all-stage4-gmp:
|
maybe-clean-stage4-gmp:
|
maybe-clean-stage4-gmp:
|
@if gmp-bootstrap
|
@if gmp-bootstrap
|
Line 16463... |
Line 16572... |
TARGET-stage4-gmp = $(TARGET-gmp)
|
TARGET-stage4-gmp = $(TARGET-gmp)
|
all-stage4-gmp: configure-stage4-gmp
|
all-stage4-gmp: configure-stage4-gmp
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/gmp && \
|
cd $(HOST_SUBDIR)/gmp && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE4_CFLAGS)" CXXFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS="$(STAGE4_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE4_TFLAGS)" \
|
$(TARGET-stage4-gmp)
|
$(TARGET-stage4-gmp)
|
|
|
maybe-clean-stage4-gmp: clean-stage4-gmp
|
maybe-clean-stage4-gmp: clean-stage4-gmp
|
clean-stage4: clean-stage4-gmp
|
clean-stage4: clean-stage4-gmp
|
clean-stage4-gmp:
|
clean-stage4-gmp:
|
Line 16501... |
Line 16615... |
TARGET-stageprofile-gmp = $(TARGET-gmp)
|
TARGET-stageprofile-gmp = $(TARGET-gmp)
|
all-stageprofile-gmp: configure-stageprofile-gmp
|
all-stageprofile-gmp: configure-stageprofile-gmp
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/gmp && \
|
cd $(HOST_SUBDIR)/gmp && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" \
|
CFLAGS="$(STAGEprofile_CFLAGS)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
CXXFLAGS="$(STAGEprofile_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)" \
|
$(TARGET-stageprofile-gmp)
|
$(TARGET-stageprofile-gmp)
|
|
|
maybe-clean-stageprofile-gmp: clean-stageprofile-gmp
|
maybe-clean-stageprofile-gmp: clean-stageprofile-gmp
|
clean-stageprofile: clean-stageprofile-gmp
|
clean-stageprofile: clean-stageprofile-gmp
|
clean-stageprofile-gmp:
|
clean-stageprofile-gmp:
|
Line 16539... |
Line 16658... |
TARGET-stagefeedback-gmp = $(TARGET-gmp)
|
TARGET-stagefeedback-gmp = $(TARGET-gmp)
|
all-stagefeedback-gmp: configure-stagefeedback-gmp
|
all-stagefeedback-gmp: configure-stagefeedback-gmp
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/gmp && \
|
cd $(HOST_SUBDIR)/gmp && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use" CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use" \
|
CFLAGS="$(STAGEfeedback_CFLAGS)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)" \
|
$(TARGET-stagefeedback-gmp)
|
$(TARGET-stagefeedback-gmp)
|
|
|
maybe-clean-stagefeedback-gmp: clean-stagefeedback-gmp
|
maybe-clean-stagefeedback-gmp: clean-stagefeedback-gmp
|
clean-stagefeedback: clean-stagefeedback-gmp
|
clean-stagefeedback: clean-stagefeedback-gmp
|
clean-stagefeedback-gmp:
|
clean-stagefeedback-gmp:
|
Line 16944... |
Line 17068... |
esac; \
|
esac; \
|
srcdiroption="--srcdir=$${topdir}/mpfr"; \
|
srcdiroption="--srcdir=$${topdir}/mpfr"; \
|
libsrcdir="$$s/mpfr"; \
|
libsrcdir="$$s/mpfr"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} --disable-shared --with-gmp-build=$$r/$(HOST_SUBDIR)/gmp \
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} --disable-shared @extra_mpfr_configure_flags@ \
|
|| exit 1
|
|| exit 1
|
@endif mpfr
|
@endif mpfr
|
|
|
|
|
|
|
Line 16959... |
Line 17083... |
configure-stage1-mpfr:
|
configure-stage1-mpfr:
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/mpfr/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/mpfr/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 1 in $(HOST_SUBDIR)/mpfr ; \
|
echo Configuring stage 1 in $(HOST_SUBDIR)/mpfr ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr ; \
|
cd $(HOST_SUBDIR)/mpfr || exit 1; \
|
cd $(HOST_SUBDIR)/mpfr || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 16976... |
Line 17102... |
srcdiroption="--srcdir=$${topdir}/mpfr"; \
|
srcdiroption="--srcdir=$${topdir}/mpfr"; \
|
libsrcdir="$$s/mpfr"; \
|
libsrcdir="$$s/mpfr"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
\
|
$(STAGE1_CONFIGURE_FLAGS) \
|
--disable-intermodule $(STAGE1_CHECKING) --disable-coverage --enable-languages="$(STAGE1_LANGUAGES)" --disable-shared --with-gmp-build=$$r/$(HOST_SUBDIR)/gmp
|
--disable-shared @extra_mpfr_configure_flags@
|
@endif mpfr-bootstrap
|
@endif mpfr-bootstrap
|
|
|
.PHONY: configure-stage2-mpfr maybe-configure-stage2-mpfr
|
.PHONY: configure-stage2-mpfr maybe-configure-stage2-mpfr
|
maybe-configure-stage2-mpfr:
|
maybe-configure-stage2-mpfr:
|
@if mpfr-bootstrap
|
@if mpfr-bootstrap
|
Line 16989... |
Line 17115... |
configure-stage2-mpfr:
|
configure-stage2-mpfr:
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/mpfr/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/mpfr/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE2_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 2 in $(HOST_SUBDIR)/mpfr ; \
|
echo Configuring stage 2 in $(HOST_SUBDIR)/mpfr ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr ; \
|
cd $(HOST_SUBDIR)/mpfr || exit 1; \
|
cd $(HOST_SUBDIR)/mpfr || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 17008... |
Line 17136... |
libsrcdir="$$s/mpfr"; \
|
libsrcdir="$$s/mpfr"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@ --disable-shared --with-gmp-build=$$r/$(HOST_SUBDIR)/gmp
|
$(STAGE2_CONFIGURE_FLAGS) \
|
@endif mpfr-bootstrap
|
--disable-shared @extra_mpfr_configure_flags@
|
|
|
.PHONY: configure-stageb2g0-mpfr maybe-configure-stageb2g0-mpfr
|
|
maybe-configure-stageb2g0-mpfr:
|
|
@if mpfr-bootstrap
|
|
maybe-configure-stageb2g0-mpfr: configure-stageb2g0-mpfr
|
|
configure-stageb2g0-mpfr:
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/mpfr/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE2_CFLAGS) -g0"; export CXXFLAGS; \
|
|
echo Configuring stage b2g0 in $(HOST_SUBDIR)/mpfr ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr ; \
|
|
cd $(HOST_SUBDIR)/mpfr || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/mpfr/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/mpfr"; \
|
|
libsrcdir="$$s/mpfr"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@ --disable-shared --with-gmp-build=$$r/$(HOST_SUBDIR)/gmp
|
|
@endif mpfr-bootstrap
|
@endif mpfr-bootstrap
|
|
|
.PHONY: configure-stage3-mpfr maybe-configure-stage3-mpfr
|
.PHONY: configure-stage3-mpfr maybe-configure-stage3-mpfr
|
maybe-configure-stage3-mpfr:
|
maybe-configure-stage3-mpfr:
|
@if mpfr-bootstrap
|
@if mpfr-bootstrap
|
Line 17051... |
Line 17149... |
configure-stage3-mpfr:
|
configure-stage3-mpfr:
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/mpfr/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/mpfr/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE3_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 3 in $(HOST_SUBDIR)/mpfr ; \
|
echo Configuring stage 3 in $(HOST_SUBDIR)/mpfr ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr ; \
|
cd $(HOST_SUBDIR)/mpfr || exit 1; \
|
cd $(HOST_SUBDIR)/mpfr || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 17070... |
Line 17170... |
libsrcdir="$$s/mpfr"; \
|
libsrcdir="$$s/mpfr"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@ --disable-shared --with-gmp-build=$$r/$(HOST_SUBDIR)/gmp
|
$(STAGE3_CONFIGURE_FLAGS) \
|
@endif mpfr-bootstrap
|
--disable-shared @extra_mpfr_configure_flags@
|
|
|
.PHONY: configure-stageb3g2-mpfr maybe-configure-stageb3g2-mpfr
|
|
maybe-configure-stageb3g2-mpfr:
|
|
@if mpfr-bootstrap
|
|
maybe-configure-stageb3g2-mpfr: configure-stageb3g2-mpfr
|
|
configure-stageb3g2-mpfr:
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/mpfr/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE3_CFLAGS) -g2"; export CXXFLAGS; \
|
|
echo Configuring stage b3g2 in $(HOST_SUBDIR)/mpfr ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr ; \
|
|
cd $(HOST_SUBDIR)/mpfr || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/mpfr/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/mpfr"; \
|
|
libsrcdir="$$s/mpfr"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@ --disable-shared --with-gmp-build=$$r/$(HOST_SUBDIR)/gmp
|
|
@endif mpfr-bootstrap
|
@endif mpfr-bootstrap
|
|
|
.PHONY: configure-stage4-mpfr maybe-configure-stage4-mpfr
|
.PHONY: configure-stage4-mpfr maybe-configure-stage4-mpfr
|
maybe-configure-stage4-mpfr:
|
maybe-configure-stage4-mpfr:
|
@if mpfr-bootstrap
|
@if mpfr-bootstrap
|
Line 17113... |
Line 17183... |
configure-stage4-mpfr:
|
configure-stage4-mpfr:
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/mpfr/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/mpfr/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE4_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 4 in $(HOST_SUBDIR)/mpfr ; \
|
echo Configuring stage 4 in $(HOST_SUBDIR)/mpfr ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr ; \
|
cd $(HOST_SUBDIR)/mpfr || exit 1; \
|
cd $(HOST_SUBDIR)/mpfr || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 17132... |
Line 17204... |
libsrcdir="$$s/mpfr"; \
|
libsrcdir="$$s/mpfr"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@ --disable-shared --with-gmp-build=$$r/$(HOST_SUBDIR)/gmp
|
$(STAGE4_CONFIGURE_FLAGS) \
|
|
--disable-shared @extra_mpfr_configure_flags@
|
@endif mpfr-bootstrap
|
@endif mpfr-bootstrap
|
|
|
.PHONY: configure-stageprofile-mpfr maybe-configure-stageprofile-mpfr
|
.PHONY: configure-stageprofile-mpfr maybe-configure-stageprofile-mpfr
|
maybe-configure-stageprofile-mpfr:
|
maybe-configure-stageprofile-mpfr:
|
@if mpfr-bootstrap
|
@if mpfr-bootstrap
|
Line 17144... |
Line 17217... |
configure-stageprofile-mpfr:
|
configure-stageprofile-mpfr:
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/mpfr/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/mpfr/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate"; export CFLAGS; \
|
CFLAGS="$(STAGEprofile_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGEprofile_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage profile in $(HOST_SUBDIR)/mpfr ; \
|
echo Configuring stage profile in $(HOST_SUBDIR)/mpfr ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr ; \
|
cd $(HOST_SUBDIR)/mpfr || exit 1; \
|
cd $(HOST_SUBDIR)/mpfr || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 17163... |
Line 17238... |
libsrcdir="$$s/mpfr"; \
|
libsrcdir="$$s/mpfr"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@ --disable-shared --with-gmp-build=$$r/$(HOST_SUBDIR)/gmp
|
$(STAGEprofile_CONFIGURE_FLAGS) \
|
|
--disable-shared @extra_mpfr_configure_flags@
|
@endif mpfr-bootstrap
|
@endif mpfr-bootstrap
|
|
|
.PHONY: configure-stagefeedback-mpfr maybe-configure-stagefeedback-mpfr
|
.PHONY: configure-stagefeedback-mpfr maybe-configure-stagefeedback-mpfr
|
maybe-configure-stagefeedback-mpfr:
|
maybe-configure-stagefeedback-mpfr:
|
@if mpfr-bootstrap
|
@if mpfr-bootstrap
|
Line 17175... |
Line 17251... |
configure-stagefeedback-mpfr:
|
configure-stagefeedback-mpfr:
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/mpfr/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/mpfr/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use"; export CFLAGS; \
|
CFLAGS="$(STAGEfeedback_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage feedback in $(HOST_SUBDIR)/mpfr ; \
|
echo Configuring stage feedback in $(HOST_SUBDIR)/mpfr ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpfr ; \
|
cd $(HOST_SUBDIR)/mpfr || exit 1; \
|
cd $(HOST_SUBDIR)/mpfr || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 17194... |
Line 17272... |
libsrcdir="$$s/mpfr"; \
|
libsrcdir="$$s/mpfr"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@ --disable-shared --with-gmp-build=$$r/$(HOST_SUBDIR)/gmp
|
$(STAGEfeedback_CONFIGURE_FLAGS) \
|
|
--disable-shared @extra_mpfr_configure_flags@
|
@endif mpfr-bootstrap
|
@endif mpfr-bootstrap
|
|
|
|
|
|
|
|
|
Line 17232... |
Line 17311... |
TARGET-stage1-mpfr = $(TARGET-mpfr)
|
TARGET-stage1-mpfr = $(TARGET-mpfr)
|
all-stage1-mpfr: configure-stage1-mpfr
|
all-stage1-mpfr: configure-stage1-mpfr
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/mpfr && \
|
cd $(HOST_SUBDIR)/mpfr && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE1_CFLAGS)" CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS="$(STAGE1_CFLAGS)" \
|
LIBCFLAGS="$(STAGE1_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" \
|
LIBCFLAGS="$(LIBCFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) \
|
|
TFLAGS="$(STAGE1_TFLAGS)" \
|
$(TARGET-stage1-mpfr)
|
$(TARGET-stage1-mpfr)
|
|
|
maybe-clean-stage1-mpfr: clean-stage1-mpfr
|
maybe-clean-stage1-mpfr: clean-stage1-mpfr
|
clean-stage1: clean-stage1-mpfr
|
clean-stage1: clean-stage1-mpfr
|
clean-stage1-mpfr:
|
clean-stage1-mpfr:
|
Line 17268... |
Line 17352... |
TARGET-stage2-mpfr = $(TARGET-mpfr)
|
TARGET-stage2-mpfr = $(TARGET-mpfr)
|
all-stage2-mpfr: configure-stage2-mpfr
|
all-stage2-mpfr: configure-stage2-mpfr
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/mpfr && \
|
cd $(HOST_SUBDIR)/mpfr && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS)" CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS="$(STAGE2_CFLAGS)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" \
|
LIBCFLAGS="$(STAGE2_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE2_TFLAGS)" \
|
$(TARGET-stage2-mpfr)
|
$(TARGET-stage2-mpfr)
|
|
|
maybe-clean-stage2-mpfr: clean-stage2-mpfr
|
maybe-clean-stage2-mpfr: clean-stage2-mpfr
|
clean-stage2: clean-stage2-mpfr
|
clean-stage2: clean-stage2-mpfr
|
clean-stage2-mpfr:
|
clean-stage2-mpfr:
|
Line 17294... |
Line 17383... |
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
clean
|
clean
|
@endif mpfr-bootstrap
|
@endif mpfr-bootstrap
|
|
|
|
|
.PHONY: all-stageb2g0-mpfr maybe-all-stageb2g0-mpfr
|
|
.PHONY: clean-stageb2g0-mpfr maybe-clean-stageb2g0-mpfr
|
|
maybe-all-stageb2g0-mpfr:
|
|
maybe-clean-stageb2g0-mpfr:
|
|
@if mpfr-bootstrap
|
|
maybe-all-stageb2g0-mpfr: all-stageb2g0-mpfr
|
|
all-stageb2g0: all-stageb2g0-mpfr
|
|
TARGET-stageb2g0-mpfr = $(TARGET-mpfr)
|
|
all-stageb2g0-mpfr: configure-stageb2g0-mpfr
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/mpfr && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0" CXXFLAGS="$(STAGE2_CFLAGS) -g0" \
|
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
$(TARGET-stageb2g0-mpfr)
|
|
|
|
maybe-clean-stageb2g0-mpfr: clean-stageb2g0-mpfr
|
|
clean-stageb2g0: clean-stageb2g0-mpfr
|
|
clean-stageb2g0-mpfr:
|
|
@if [ $(current_stage) = stageb2g0 ]; then \
|
|
[ -f $(HOST_SUBDIR)/mpfr/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageb2g0-mpfr/Makefile ] || exit 0; \
|
|
$(MAKE) stageb2g0-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/mpfr && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif mpfr-bootstrap
|
|
|
|
|
|
.PHONY: all-stage3-mpfr maybe-all-stage3-mpfr
|
.PHONY: all-stage3-mpfr maybe-all-stage3-mpfr
|
.PHONY: clean-stage3-mpfr maybe-clean-stage3-mpfr
|
.PHONY: clean-stage3-mpfr maybe-clean-stage3-mpfr
|
maybe-all-stage3-mpfr:
|
maybe-all-stage3-mpfr:
|
maybe-clean-stage3-mpfr:
|
maybe-clean-stage3-mpfr:
|
@if mpfr-bootstrap
|
@if mpfr-bootstrap
|
Line 17344... |
Line 17395... |
TARGET-stage3-mpfr = $(TARGET-mpfr)
|
TARGET-stage3-mpfr = $(TARGET-mpfr)
|
all-stage3-mpfr: configure-stage3-mpfr
|
all-stage3-mpfr: configure-stage3-mpfr
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/mpfr && \
|
cd $(HOST_SUBDIR)/mpfr && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS)" CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS="$(STAGE3_CFLAGS)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" \
|
LIBCFLAGS="$(STAGE3_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE3_TFLAGS)" \
|
$(TARGET-stage3-mpfr)
|
$(TARGET-stage3-mpfr)
|
|
|
maybe-clean-stage3-mpfr: clean-stage3-mpfr
|
maybe-clean-stage3-mpfr: clean-stage3-mpfr
|
clean-stage3: clean-stage3-mpfr
|
clean-stage3: clean-stage3-mpfr
|
clean-stage3-mpfr:
|
clean-stage3-mpfr:
|
Line 17370... |
Line 17426... |
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
clean
|
clean
|
@endif mpfr-bootstrap
|
@endif mpfr-bootstrap
|
|
|
|
|
.PHONY: all-stageb3g2-mpfr maybe-all-stageb3g2-mpfr
|
|
.PHONY: clean-stageb3g2-mpfr maybe-clean-stageb3g2-mpfr
|
|
maybe-all-stageb3g2-mpfr:
|
|
maybe-clean-stageb3g2-mpfr:
|
|
@if mpfr-bootstrap
|
|
maybe-all-stageb3g2-mpfr: all-stageb3g2-mpfr
|
|
all-stageb3g2: all-stageb3g2-mpfr
|
|
TARGET-stageb3g2-mpfr = $(TARGET-mpfr)
|
|
all-stageb3g2-mpfr: configure-stageb3g2-mpfr
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/mpfr && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2" CXXFLAGS="$(STAGE3_CFLAGS) -g2" \
|
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
$(TARGET-stageb3g2-mpfr)
|
|
|
|
maybe-clean-stageb3g2-mpfr: clean-stageb3g2-mpfr
|
|
clean-stageb3g2: clean-stageb3g2-mpfr
|
|
clean-stageb3g2-mpfr:
|
|
@if [ $(current_stage) = stageb3g2 ]; then \
|
|
[ -f $(HOST_SUBDIR)/mpfr/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageb3g2-mpfr/Makefile ] || exit 0; \
|
|
$(MAKE) stageb3g2-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/mpfr && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif mpfr-bootstrap
|
|
|
|
|
|
.PHONY: all-stage4-mpfr maybe-all-stage4-mpfr
|
.PHONY: all-stage4-mpfr maybe-all-stage4-mpfr
|
.PHONY: clean-stage4-mpfr maybe-clean-stage4-mpfr
|
.PHONY: clean-stage4-mpfr maybe-clean-stage4-mpfr
|
maybe-all-stage4-mpfr:
|
maybe-all-stage4-mpfr:
|
maybe-clean-stage4-mpfr:
|
maybe-clean-stage4-mpfr:
|
@if mpfr-bootstrap
|
@if mpfr-bootstrap
|
Line 17420... |
Line 17438... |
TARGET-stage4-mpfr = $(TARGET-mpfr)
|
TARGET-stage4-mpfr = $(TARGET-mpfr)
|
all-stage4-mpfr: configure-stage4-mpfr
|
all-stage4-mpfr: configure-stage4-mpfr
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/mpfr && \
|
cd $(HOST_SUBDIR)/mpfr && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE4_CFLAGS)" CXXFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS="$(STAGE4_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE4_TFLAGS)" \
|
$(TARGET-stage4-mpfr)
|
$(TARGET-stage4-mpfr)
|
|
|
maybe-clean-stage4-mpfr: clean-stage4-mpfr
|
maybe-clean-stage4-mpfr: clean-stage4-mpfr
|
clean-stage4: clean-stage4-mpfr
|
clean-stage4: clean-stage4-mpfr
|
clean-stage4-mpfr:
|
clean-stage4-mpfr:
|
Line 17458... |
Line 17481... |
TARGET-stageprofile-mpfr = $(TARGET-mpfr)
|
TARGET-stageprofile-mpfr = $(TARGET-mpfr)
|
all-stageprofile-mpfr: configure-stageprofile-mpfr
|
all-stageprofile-mpfr: configure-stageprofile-mpfr
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/mpfr && \
|
cd $(HOST_SUBDIR)/mpfr && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" \
|
CFLAGS="$(STAGEprofile_CFLAGS)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
CXXFLAGS="$(STAGEprofile_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)" \
|
$(TARGET-stageprofile-mpfr)
|
$(TARGET-stageprofile-mpfr)
|
|
|
maybe-clean-stageprofile-mpfr: clean-stageprofile-mpfr
|
maybe-clean-stageprofile-mpfr: clean-stageprofile-mpfr
|
clean-stageprofile: clean-stageprofile-mpfr
|
clean-stageprofile: clean-stageprofile-mpfr
|
clean-stageprofile-mpfr:
|
clean-stageprofile-mpfr:
|
Line 17496... |
Line 17524... |
TARGET-stagefeedback-mpfr = $(TARGET-mpfr)
|
TARGET-stagefeedback-mpfr = $(TARGET-mpfr)
|
all-stagefeedback-mpfr: configure-stagefeedback-mpfr
|
all-stagefeedback-mpfr: configure-stagefeedback-mpfr
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/mpfr && \
|
cd $(HOST_SUBDIR)/mpfr && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use" CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use" \
|
CFLAGS="$(STAGEfeedback_CFLAGS)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)" \
|
$(TARGET-stagefeedback-mpfr)
|
$(TARGET-stagefeedback-mpfr)
|
|
|
maybe-clean-stagefeedback-mpfr: clean-stagefeedback-mpfr
|
maybe-clean-stagefeedback-mpfr: clean-stagefeedback-mpfr
|
clean-stagefeedback: clean-stagefeedback-mpfr
|
clean-stagefeedback: clean-stagefeedback-mpfr
|
clean-stagefeedback-mpfr:
|
clean-stagefeedback-mpfr:
|
Line 17877... |
Line 17910... |
|
|
@endif mpfr
|
@endif mpfr
|
|
|
|
|
|
|
.PHONY: configure-gnuserv maybe-configure-gnuserv
|
.PHONY: configure-mpc maybe-configure-mpc
|
maybe-configure-gnuserv:
|
maybe-configure-mpc:
|
@if gcc-bootstrap
|
@if gcc-bootstrap
|
configure-gnuserv: stage_current
|
configure-mpc: stage_current
|
@endif gcc-bootstrap
|
@endif gcc-bootstrap
|
@if gnuserv
|
@if mpc
|
maybe-configure-gnuserv: configure-gnuserv
|
maybe-configure-mpc: configure-mpc
|
configure-gnuserv:
|
configure-mpc:
|
@: $(MAKE); $(unstage)
|
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
test ! -f $(HOST_SUBDIR)/gnuserv/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/mpc/Makefile || exit 0; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gnuserv ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpc ; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
echo Configuring in $(HOST_SUBDIR)/gnuserv; \
|
echo Configuring in $(HOST_SUBDIR)/mpc; \
|
cd "$(HOST_SUBDIR)/gnuserv" || exit 1; \
|
cd "$(HOST_SUBDIR)/mpc" || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
*) topdir=`echo $(HOST_SUBDIR)/gnuserv/ | \
|
*) topdir=`echo $(HOST_SUBDIR)/mpc/ | \
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
esac; \
|
esac; \
|
srcdiroption="--srcdir=$${topdir}/gnuserv"; \
|
srcdiroption="--srcdir=$${topdir}/mpc"; \
|
libsrcdir="$$s/gnuserv"; \
|
libsrcdir="$$s/mpc"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} --disable-shared @extra_mpc_gmp_configure_flags@ @extra_mpc_mpfr_configure_flags@ \
|
|| exit 1
|
|| exit 1
|
@endif gnuserv
|
@endif mpc
|
|
|
|
|
|
|
|
.PHONY: configure-stage1-mpc maybe-configure-stage1-mpc
|
|
maybe-configure-stage1-mpc:
|
|
@if mpc-bootstrap
|
|
maybe-configure-stage1-mpc: configure-stage1-mpc
|
|
configure-stage1-mpc:
|
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpc
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
|
test ! -f $(HOST_SUBDIR)/mpc/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS)"; export LIBCFLAGS; \
|
|
echo Configuring stage 1 in $(HOST_SUBDIR)/mpc ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpc ; \
|
|
cd $(HOST_SUBDIR)/mpc || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/mpc/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/mpc"; \
|
|
libsrcdir="$$s/mpc"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
$(STAGE1_CONFIGURE_FLAGS) \
|
|
--disable-shared @extra_mpc_gmp_configure_flags@ @extra_mpc_mpfr_configure_flags@
|
|
@endif mpc-bootstrap
|
|
|
|
.PHONY: configure-stage2-mpc maybe-configure-stage2-mpc
|
|
maybe-configure-stage2-mpc:
|
|
@if mpc-bootstrap
|
|
maybe-configure-stage2-mpc: configure-stage2-mpc
|
|
configure-stage2-mpc:
|
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpc
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
|
test ! -f $(HOST_SUBDIR)/mpc/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE2_CFLAGS)"; export LIBCFLAGS; \
|
|
echo Configuring stage 2 in $(HOST_SUBDIR)/mpc ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpc ; \
|
|
cd $(HOST_SUBDIR)/mpc || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/mpc/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/mpc"; \
|
|
libsrcdir="$$s/mpc"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
$(STAGE2_CONFIGURE_FLAGS) \
|
|
--disable-shared @extra_mpc_gmp_configure_flags@ @extra_mpc_mpfr_configure_flags@
|
|
@endif mpc-bootstrap
|
|
|
|
.PHONY: configure-stage3-mpc maybe-configure-stage3-mpc
|
|
maybe-configure-stage3-mpc:
|
|
@if mpc-bootstrap
|
|
maybe-configure-stage3-mpc: configure-stage3-mpc
|
|
configure-stage3-mpc:
|
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpc
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
|
test ! -f $(HOST_SUBDIR)/mpc/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE3_CFLAGS)"; export LIBCFLAGS; \
|
|
echo Configuring stage 3 in $(HOST_SUBDIR)/mpc ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpc ; \
|
|
cd $(HOST_SUBDIR)/mpc || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/mpc/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/mpc"; \
|
|
libsrcdir="$$s/mpc"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
$(STAGE3_CONFIGURE_FLAGS) \
|
|
--disable-shared @extra_mpc_gmp_configure_flags@ @extra_mpc_mpfr_configure_flags@
|
|
@endif mpc-bootstrap
|
|
|
|
.PHONY: configure-stage4-mpc maybe-configure-stage4-mpc
|
|
maybe-configure-stage4-mpc:
|
|
@if mpc-bootstrap
|
|
maybe-configure-stage4-mpc: configure-stage4-mpc
|
|
configure-stage4-mpc:
|
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpc
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
|
test ! -f $(HOST_SUBDIR)/mpc/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE4_CFLAGS)"; export LIBCFLAGS; \
|
|
echo Configuring stage 4 in $(HOST_SUBDIR)/mpc ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpc ; \
|
|
cd $(HOST_SUBDIR)/mpc || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/mpc/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/mpc"; \
|
|
libsrcdir="$$s/mpc"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
$(STAGE4_CONFIGURE_FLAGS) \
|
|
--disable-shared @extra_mpc_gmp_configure_flags@ @extra_mpc_mpfr_configure_flags@
|
|
@endif mpc-bootstrap
|
|
|
.PHONY: all-gnuserv maybe-all-gnuserv
|
.PHONY: configure-stageprofile-mpc maybe-configure-stageprofile-mpc
|
maybe-all-gnuserv:
|
maybe-configure-stageprofile-mpc:
|
|
@if mpc-bootstrap
|
|
maybe-configure-stageprofile-mpc: configure-stageprofile-mpc
|
|
configure-stageprofile-mpc:
|
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpc
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
|
test ! -f $(HOST_SUBDIR)/mpc/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGEprofile_CFLAGS)"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGEprofile_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)"; export LIBCFLAGS; \
|
|
echo Configuring stage profile in $(HOST_SUBDIR)/mpc ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpc ; \
|
|
cd $(HOST_SUBDIR)/mpc || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/mpc/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/mpc"; \
|
|
libsrcdir="$$s/mpc"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
$(STAGEprofile_CONFIGURE_FLAGS) \
|
|
--disable-shared @extra_mpc_gmp_configure_flags@ @extra_mpc_mpfr_configure_flags@
|
|
@endif mpc-bootstrap
|
|
|
|
.PHONY: configure-stagefeedback-mpc maybe-configure-stagefeedback-mpc
|
|
maybe-configure-stagefeedback-mpc:
|
|
@if mpc-bootstrap
|
|
maybe-configure-stagefeedback-mpc: configure-stagefeedback-mpc
|
|
configure-stagefeedback-mpc:
|
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpc
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
|
test ! -f $(HOST_SUBDIR)/mpc/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGEfeedback_CFLAGS)"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)"; export LIBCFLAGS; \
|
|
echo Configuring stage feedback in $(HOST_SUBDIR)/mpc ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/mpc ; \
|
|
cd $(HOST_SUBDIR)/mpc || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/mpc/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/mpc"; \
|
|
libsrcdir="$$s/mpc"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
$(STAGEfeedback_CONFIGURE_FLAGS) \
|
|
--disable-shared @extra_mpc_gmp_configure_flags@ @extra_mpc_mpfr_configure_flags@
|
|
@endif mpc-bootstrap
|
|
|
|
|
|
|
|
|
|
|
|
.PHONY: all-mpc maybe-all-mpc
|
|
maybe-all-mpc:
|
@if gcc-bootstrap
|
@if gcc-bootstrap
|
all-gnuserv: stage_current
|
all-mpc: stage_current
|
@endif gcc-bootstrap
|
@endif gcc-bootstrap
|
@if gnuserv
|
@if mpc
|
TARGET-gnuserv=all
|
TARGET-mpc=all
|
maybe-all-gnuserv: all-gnuserv
|
maybe-all-mpc: all-mpc
|
all-gnuserv: configure-gnuserv
|
all-mpc: configure-mpc
|
@: $(MAKE); $(unstage)
|
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
(cd $(HOST_SUBDIR)/mpc && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) \
|
$(TARGET-gnuserv))
|
$(TARGET-mpc))
|
@endif gnuserv
|
@endif mpc
|
|
|
|
|
|
|
|
.PHONY: all-stage1-mpc maybe-all-stage1-mpc
|
|
.PHONY: clean-stage1-mpc maybe-clean-stage1-mpc
|
|
maybe-all-stage1-mpc:
|
|
maybe-clean-stage1-mpc:
|
|
@if mpc-bootstrap
|
|
maybe-all-stage1-mpc: all-stage1-mpc
|
|
all-stage1: all-stage1-mpc
|
|
TARGET-stage1-mpc = $(TARGET-mpc)
|
|
all-stage1-mpc: configure-stage1-mpc
|
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
|
$(HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/mpc && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE1_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE1_CFLAGS)" \
|
|
LIBCFLAGS="$(LIBCFLAGS)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) \
|
|
TFLAGS="$(STAGE1_TFLAGS)" \
|
|
$(TARGET-stage1-mpc)
|
|
|
|
maybe-clean-stage1-mpc: clean-stage1-mpc
|
|
clean-stage1: clean-stage1-mpc
|
|
clean-stage1-mpc:
|
|
@if [ $(current_stage) = stage1 ]; then \
|
|
[ -f $(HOST_SUBDIR)/mpc/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stage1-mpc/Makefile ] || exit 0; \
|
|
$(MAKE) stage1-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/mpc && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
clean
|
|
@endif mpc-bootstrap
|
|
|
.PHONY: check-gnuserv maybe-check-gnuserv
|
|
maybe-check-gnuserv:
|
|
@if gnuserv
|
|
maybe-check-gnuserv: check-gnuserv
|
|
|
|
check-gnuserv:
|
.PHONY: all-stage2-mpc maybe-all-stage2-mpc
|
@: $(MAKE); $(unstage)
|
.PHONY: clean-stage2-mpc maybe-clean-stage2-mpc
|
|
maybe-all-stage2-mpc:
|
|
maybe-clean-stage2-mpc:
|
|
@if mpc-bootstrap
|
|
maybe-all-stage2-mpc: all-stage2-mpc
|
|
all-stage2: all-stage2-mpc
|
|
TARGET-stage2-mpc = $(TARGET-mpc)
|
|
all-stage2-mpc: configure-stage2-mpc
|
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(MAKE) $(FLAGS_TO_PASS) check)
|
cd $(HOST_SUBDIR)/mpc && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE2_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE2_CFLAGS)" \
|
|
LIBCFLAGS="$(STAGE2_CFLAGS)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE2_TFLAGS)" \
|
|
$(TARGET-stage2-mpc)
|
|
|
|
maybe-clean-stage2-mpc: clean-stage2-mpc
|
|
clean-stage2: clean-stage2-mpc
|
|
clean-stage2-mpc:
|
|
@if [ $(current_stage) = stage2 ]; then \
|
|
[ -f $(HOST_SUBDIR)/mpc/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stage2-mpc/Makefile ] || exit 0; \
|
|
$(MAKE) stage2-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/mpc && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif mpc-bootstrap
|
|
|
@endif gnuserv
|
|
|
|
.PHONY: install-gnuserv maybe-install-gnuserv
|
.PHONY: all-stage3-mpc maybe-all-stage3-mpc
|
maybe-install-gnuserv:
|
.PHONY: clean-stage3-mpc maybe-clean-stage3-mpc
|
@if gnuserv
|
maybe-all-stage3-mpc:
|
maybe-install-gnuserv: install-gnuserv
|
maybe-clean-stage3-mpc:
|
|
@if mpc-bootstrap
|
|
maybe-all-stage3-mpc: all-stage3-mpc
|
|
all-stage3: all-stage3-mpc
|
|
TARGET-stage3-mpc = $(TARGET-mpc)
|
|
all-stage3-mpc: configure-stage3-mpc
|
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/mpc && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE3_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE3_CFLAGS)" \
|
|
LIBCFLAGS="$(STAGE3_CFLAGS)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE3_TFLAGS)" \
|
|
$(TARGET-stage3-mpc)
|
|
|
|
maybe-clean-stage3-mpc: clean-stage3-mpc
|
|
clean-stage3: clean-stage3-mpc
|
|
clean-stage3-mpc:
|
|
@if [ $(current_stage) = stage3 ]; then \
|
|
[ -f $(HOST_SUBDIR)/mpc/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stage3-mpc/Makefile ] || exit 0; \
|
|
$(MAKE) stage3-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/mpc && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif mpc-bootstrap
|
|
|
install-gnuserv: installdirs
|
|
|
.PHONY: all-stage4-mpc maybe-all-stage4-mpc
|
|
.PHONY: clean-stage4-mpc maybe-clean-stage4-mpc
|
|
maybe-all-stage4-mpc:
|
|
maybe-clean-stage4-mpc:
|
|
@if mpc-bootstrap
|
|
maybe-all-stage4-mpc: all-stage4-mpc
|
|
all-stage4: all-stage4-mpc
|
|
TARGET-stage4-mpc = $(TARGET-mpc)
|
|
all-stage4-mpc: configure-stage4-mpc
|
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/mpc && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE4_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE4_CFLAGS)" \
|
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE4_TFLAGS)" \
|
|
$(TARGET-stage4-mpc)
|
|
|
|
maybe-clean-stage4-mpc: clean-stage4-mpc
|
|
clean-stage4: clean-stage4-mpc
|
|
clean-stage4-mpc:
|
|
@if [ $(current_stage) = stage4 ]; then \
|
|
[ -f $(HOST_SUBDIR)/mpc/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stage4-mpc/Makefile ] || exit 0; \
|
|
$(MAKE) stage4-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/mpc && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif mpc-bootstrap
|
|
|
|
|
|
.PHONY: all-stageprofile-mpc maybe-all-stageprofile-mpc
|
|
.PHONY: clean-stageprofile-mpc maybe-clean-stageprofile-mpc
|
|
maybe-all-stageprofile-mpc:
|
|
maybe-clean-stageprofile-mpc:
|
|
@if mpc-bootstrap
|
|
maybe-all-stageprofile-mpc: all-stageprofile-mpc
|
|
all-stageprofile: all-stageprofile-mpc
|
|
TARGET-stageprofile-mpc = $(TARGET-mpc)
|
|
all-stageprofile-mpc: configure-stageprofile-mpc
|
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/mpc && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGEprofile_CFLAGS)" \
|
|
CXXFLAGS="$(STAGEprofile_CFLAGS)" \
|
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)" \
|
|
$(TARGET-stageprofile-mpc)
|
|
|
|
maybe-clean-stageprofile-mpc: clean-stageprofile-mpc
|
|
clean-stageprofile: clean-stageprofile-mpc
|
|
clean-stageprofile-mpc:
|
|
@if [ $(current_stage) = stageprofile ]; then \
|
|
[ -f $(HOST_SUBDIR)/mpc/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageprofile-mpc/Makefile ] || exit 0; \
|
|
$(MAKE) stageprofile-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/mpc && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif mpc-bootstrap
|
|
|
|
|
|
.PHONY: all-stagefeedback-mpc maybe-all-stagefeedback-mpc
|
|
.PHONY: clean-stagefeedback-mpc maybe-clean-stagefeedback-mpc
|
|
maybe-all-stagefeedback-mpc:
|
|
maybe-clean-stagefeedback-mpc:
|
|
@if mpc-bootstrap
|
|
maybe-all-stagefeedback-mpc: all-stagefeedback-mpc
|
|
all-stagefeedback: all-stagefeedback-mpc
|
|
TARGET-stagefeedback-mpc = $(TARGET-mpc)
|
|
all-stagefeedback-mpc: configure-stagefeedback-mpc
|
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/mpc && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGEfeedback_CFLAGS)" \
|
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)" \
|
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)" \
|
|
$(TARGET-stagefeedback-mpc)
|
|
|
|
maybe-clean-stagefeedback-mpc: clean-stagefeedback-mpc
|
|
clean-stagefeedback: clean-stagefeedback-mpc
|
|
clean-stagefeedback-mpc:
|
|
@if [ $(current_stage) = stagefeedback ]; then \
|
|
[ -f $(HOST_SUBDIR)/mpc/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stagefeedback-mpc/Makefile ] || exit 0; \
|
|
$(MAKE) stagefeedback-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/mpc && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif mpc-bootstrap
|
|
|
|
|
|
|
|
|
|
|
|
.PHONY: check-mpc maybe-check-mpc
|
|
maybe-check-mpc:
|
|
@if mpc
|
|
maybe-check-mpc: check-mpc
|
|
|
|
check-mpc:
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
(cd $(HOST_SUBDIR)/mpc && \
|
$(MAKE) $(FLAGS_TO_PASS) install)
|
$(MAKE) $(FLAGS_TO_PASS) check)
|
|
|
@endif gnuserv
|
@endif mpc
|
|
|
|
.PHONY: install-mpc maybe-install-mpc
|
|
maybe-install-mpc:
|
|
@if mpc
|
|
maybe-install-mpc: install-mpc
|
|
|
|
install-mpc:
|
|
|
|
@endif mpc
|
|
|
# Other targets (info, dvi, pdf, etc.)
|
# Other targets (info, dvi, pdf, etc.)
|
|
|
.PHONY: maybe-info-gnuserv info-gnuserv
|
.PHONY: maybe-info-mpc info-mpc
|
maybe-info-gnuserv:
|
maybe-info-mpc:
|
@if gnuserv
|
@if mpc
|
maybe-info-gnuserv: info-gnuserv
|
maybe-info-mpc: info-mpc
|
|
|
info-gnuserv: \
|
info-mpc: \
|
configure-gnuserv
|
configure-mpc
|
@: $(MAKE); $(unstage)
|
@[ -f ./mpc/Makefile ] || exit 0; \
|
@[ -f ./gnuserv/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing info in gnuserv" ; \
|
echo "Doing info in mpc" ; \
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
(cd $(HOST_SUBDIR)/mpc && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
info) \
|
info) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif gnuserv
|
@endif mpc
|
|
|
.PHONY: maybe-dvi-gnuserv dvi-gnuserv
|
.PHONY: maybe-dvi-mpc dvi-mpc
|
maybe-dvi-gnuserv:
|
maybe-dvi-mpc:
|
@if gnuserv
|
@if mpc
|
maybe-dvi-gnuserv: dvi-gnuserv
|
maybe-dvi-mpc: dvi-mpc
|
|
|
dvi-gnuserv: \
|
dvi-mpc: \
|
configure-gnuserv
|
configure-mpc
|
@: $(MAKE); $(unstage)
|
@[ -f ./mpc/Makefile ] || exit 0; \
|
@[ -f ./gnuserv/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing dvi in gnuserv" ; \
|
echo "Doing dvi in mpc" ; \
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
(cd $(HOST_SUBDIR)/mpc && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
dvi) \
|
dvi) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif gnuserv
|
@endif mpc
|
|
|
.PHONY: maybe-pdf-gnuserv pdf-gnuserv
|
.PHONY: maybe-pdf-mpc pdf-mpc
|
maybe-pdf-gnuserv:
|
maybe-pdf-mpc:
|
@if gnuserv
|
@if mpc
|
maybe-pdf-gnuserv: pdf-gnuserv
|
maybe-pdf-mpc: pdf-mpc
|
|
|
pdf-gnuserv: \
|
pdf-mpc: \
|
configure-gnuserv
|
configure-mpc
|
@: $(MAKE); $(unstage)
|
@[ -f ./mpc/Makefile ] || exit 0; \
|
@[ -f ./gnuserv/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing pdf in gnuserv" ; \
|
echo "Doing pdf in mpc" ; \
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
(cd $(HOST_SUBDIR)/mpc && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
pdf) \
|
pdf) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif gnuserv
|
@endif mpc
|
|
|
.PHONY: maybe-html-gnuserv html-gnuserv
|
.PHONY: maybe-html-mpc html-mpc
|
maybe-html-gnuserv:
|
maybe-html-mpc:
|
@if gnuserv
|
@if mpc
|
maybe-html-gnuserv: html-gnuserv
|
maybe-html-mpc: html-mpc
|
|
|
html-gnuserv: \
|
html-mpc: \
|
configure-gnuserv
|
configure-mpc
|
@: $(MAKE); $(unstage)
|
@[ -f ./mpc/Makefile ] || exit 0; \
|
@[ -f ./gnuserv/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing html in gnuserv" ; \
|
echo "Doing html in mpc" ; \
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
(cd $(HOST_SUBDIR)/mpc && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
html) \
|
html) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif gnuserv
|
@endif mpc
|
|
|
.PHONY: maybe-TAGS-gnuserv TAGS-gnuserv
|
.PHONY: maybe-TAGS-mpc TAGS-mpc
|
maybe-TAGS-gnuserv:
|
maybe-TAGS-mpc:
|
@if gnuserv
|
@if mpc
|
maybe-TAGS-gnuserv: TAGS-gnuserv
|
maybe-TAGS-mpc: TAGS-mpc
|
|
|
TAGS-gnuserv: \
|
TAGS-mpc: \
|
|
configure-mpc
|
|
@[ -f ./mpc/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing TAGS in mpc" ; \
|
|
(cd $(HOST_SUBDIR)/mpc && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
TAGS) \
|
|
|| exit 1
|
|
|
|
@endif mpc
|
|
|
|
.PHONY: maybe-install-info-mpc install-info-mpc
|
|
maybe-install-info-mpc:
|
|
@if mpc
|
|
maybe-install-info-mpc: install-info-mpc
|
|
|
|
install-info-mpc: \
|
|
configure-mpc \
|
|
info-mpc
|
|
@[ -f ./mpc/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing install-info in mpc" ; \
|
|
(cd $(HOST_SUBDIR)/mpc && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
install-info) \
|
|
|| exit 1
|
|
|
|
@endif mpc
|
|
|
|
.PHONY: maybe-install-pdf-mpc install-pdf-mpc
|
|
maybe-install-pdf-mpc:
|
|
@if mpc
|
|
maybe-install-pdf-mpc: install-pdf-mpc
|
|
|
|
install-pdf-mpc: \
|
|
configure-mpc \
|
|
pdf-mpc
|
|
@[ -f ./mpc/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing install-pdf in mpc" ; \
|
|
(cd $(HOST_SUBDIR)/mpc && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
install-pdf) \
|
|
|| exit 1
|
|
|
|
@endif mpc
|
|
|
|
.PHONY: maybe-install-html-mpc install-html-mpc
|
|
maybe-install-html-mpc:
|
|
@if mpc
|
|
maybe-install-html-mpc: install-html-mpc
|
|
|
|
install-html-mpc: \
|
|
configure-mpc \
|
|
html-mpc
|
|
@[ -f ./mpc/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing install-html in mpc" ; \
|
|
(cd $(HOST_SUBDIR)/mpc && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
install-html) \
|
|
|| exit 1
|
|
|
|
@endif mpc
|
|
|
|
.PHONY: maybe-installcheck-mpc installcheck-mpc
|
|
maybe-installcheck-mpc:
|
|
@if mpc
|
|
maybe-installcheck-mpc: installcheck-mpc
|
|
|
|
installcheck-mpc: \
|
|
configure-mpc
|
|
@[ -f ./mpc/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing installcheck in mpc" ; \
|
|
(cd $(HOST_SUBDIR)/mpc && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
installcheck) \
|
|
|| exit 1
|
|
|
|
@endif mpc
|
|
|
|
.PHONY: maybe-mostlyclean-mpc mostlyclean-mpc
|
|
maybe-mostlyclean-mpc:
|
|
@if mpc
|
|
maybe-mostlyclean-mpc: mostlyclean-mpc
|
|
|
|
mostlyclean-mpc:
|
|
@[ -f ./mpc/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing mostlyclean in mpc" ; \
|
|
(cd $(HOST_SUBDIR)/mpc && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
mostlyclean) \
|
|
|| exit 1
|
|
|
|
@endif mpc
|
|
|
|
.PHONY: maybe-clean-mpc clean-mpc
|
|
maybe-clean-mpc:
|
|
@if mpc
|
|
maybe-clean-mpc: clean-mpc
|
|
|
|
clean-mpc:
|
|
@[ -f ./mpc/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing clean in mpc" ; \
|
|
(cd $(HOST_SUBDIR)/mpc && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
clean) \
|
|
|| exit 1
|
|
|
|
@endif mpc
|
|
|
|
.PHONY: maybe-distclean-mpc distclean-mpc
|
|
maybe-distclean-mpc:
|
|
@if mpc
|
|
maybe-distclean-mpc: distclean-mpc
|
|
|
|
distclean-mpc:
|
|
@[ -f ./mpc/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing distclean in mpc" ; \
|
|
(cd $(HOST_SUBDIR)/mpc && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
distclean) \
|
|
|| exit 1
|
|
|
|
@endif mpc
|
|
|
|
.PHONY: maybe-maintainer-clean-mpc maintainer-clean-mpc
|
|
maybe-maintainer-clean-mpc:
|
|
@if mpc
|
|
maybe-maintainer-clean-mpc: maintainer-clean-mpc
|
|
|
|
maintainer-clean-mpc:
|
|
@[ -f ./mpc/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing maintainer-clean in mpc" ; \
|
|
(cd $(HOST_SUBDIR)/mpc && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
maintainer-clean) \
|
|
|| exit 1
|
|
|
|
@endif mpc
|
|
|
|
|
|
|
|
.PHONY: configure-ppl maybe-configure-ppl
|
|
maybe-configure-ppl:
|
|
@if gcc-bootstrap
|
|
configure-ppl: stage_current
|
|
@endif gcc-bootstrap
|
|
@if ppl
|
|
maybe-configure-ppl: configure-ppl
|
|
configure-ppl:
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/ppl/Makefile || exit 0; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ppl ; \
|
|
$(HOST_EXPORTS) \
|
|
echo Configuring in $(HOST_SUBDIR)/ppl; \
|
|
cd "$(HOST_SUBDIR)/ppl" || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/ppl/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/ppl"; \
|
|
libsrcdir="$$s/ppl"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} --disable-shared --with-libgmp-prefix=$$r/$(HOST_SUBDIR)/gmp/ --with-libgmpxx-prefix=$$r/$(HOST_SUBDIR)/gmp/ \
|
|
|| exit 1
|
|
@endif ppl
|
|
|
|
|
|
|
|
.PHONY: configure-stage1-ppl maybe-configure-stage1-ppl
|
|
maybe-configure-stage1-ppl:
|
|
@if ppl-bootstrap
|
|
maybe-configure-stage1-ppl: configure-stage1-ppl
|
|
configure-stage1-ppl:
|
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ppl
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
|
test ! -f $(HOST_SUBDIR)/ppl/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS)"; export LIBCFLAGS; \
|
|
echo Configuring stage 1 in $(HOST_SUBDIR)/ppl ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ppl ; \
|
|
cd $(HOST_SUBDIR)/ppl || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/ppl/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/ppl"; \
|
|
libsrcdir="$$s/ppl"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
|
$(STAGE1_CONFIGURE_FLAGS) \
|
|
--disable-shared --with-libgmp-prefix=$$r/$(HOST_SUBDIR)/gmp/ --with-libgmpxx-prefix=$$r/$(HOST_SUBDIR)/gmp/
|
|
@endif ppl-bootstrap
|
|
|
|
.PHONY: configure-stage2-ppl maybe-configure-stage2-ppl
|
|
maybe-configure-stage2-ppl:
|
|
@if ppl-bootstrap
|
|
maybe-configure-stage2-ppl: configure-stage2-ppl
|
|
configure-stage2-ppl:
|
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ppl
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
|
test ! -f $(HOST_SUBDIR)/ppl/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE2_CFLAGS)"; export LIBCFLAGS; \
|
|
echo Configuring stage 2 in $(HOST_SUBDIR)/ppl ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ppl ; \
|
|
cd $(HOST_SUBDIR)/ppl || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/ppl/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/ppl"; \
|
|
libsrcdir="$$s/ppl"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
$(STAGE2_CONFIGURE_FLAGS) \
|
|
--disable-shared --with-libgmp-prefix=$$r/$(HOST_SUBDIR)/gmp/ --with-libgmpxx-prefix=$$r/$(HOST_SUBDIR)/gmp/
|
|
@endif ppl-bootstrap
|
|
|
|
.PHONY: configure-stage3-ppl maybe-configure-stage3-ppl
|
|
maybe-configure-stage3-ppl:
|
|
@if ppl-bootstrap
|
|
maybe-configure-stage3-ppl: configure-stage3-ppl
|
|
configure-stage3-ppl:
|
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ppl
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
|
test ! -f $(HOST_SUBDIR)/ppl/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE3_CFLAGS)"; export LIBCFLAGS; \
|
|
echo Configuring stage 3 in $(HOST_SUBDIR)/ppl ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ppl ; \
|
|
cd $(HOST_SUBDIR)/ppl || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/ppl/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/ppl"; \
|
|
libsrcdir="$$s/ppl"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
$(STAGE3_CONFIGURE_FLAGS) \
|
|
--disable-shared --with-libgmp-prefix=$$r/$(HOST_SUBDIR)/gmp/ --with-libgmpxx-prefix=$$r/$(HOST_SUBDIR)/gmp/
|
|
@endif ppl-bootstrap
|
|
|
|
.PHONY: configure-stage4-ppl maybe-configure-stage4-ppl
|
|
maybe-configure-stage4-ppl:
|
|
@if ppl-bootstrap
|
|
maybe-configure-stage4-ppl: configure-stage4-ppl
|
|
configure-stage4-ppl:
|
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ppl
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
|
test ! -f $(HOST_SUBDIR)/ppl/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE4_CFLAGS)"; export LIBCFLAGS; \
|
|
echo Configuring stage 4 in $(HOST_SUBDIR)/ppl ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ppl ; \
|
|
cd $(HOST_SUBDIR)/ppl || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/ppl/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/ppl"; \
|
|
libsrcdir="$$s/ppl"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
$(STAGE4_CONFIGURE_FLAGS) \
|
|
--disable-shared --with-libgmp-prefix=$$r/$(HOST_SUBDIR)/gmp/ --with-libgmpxx-prefix=$$r/$(HOST_SUBDIR)/gmp/
|
|
@endif ppl-bootstrap
|
|
|
|
.PHONY: configure-stageprofile-ppl maybe-configure-stageprofile-ppl
|
|
maybe-configure-stageprofile-ppl:
|
|
@if ppl-bootstrap
|
|
maybe-configure-stageprofile-ppl: configure-stageprofile-ppl
|
|
configure-stageprofile-ppl:
|
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ppl
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
|
test ! -f $(HOST_SUBDIR)/ppl/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGEprofile_CFLAGS)"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGEprofile_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)"; export LIBCFLAGS; \
|
|
echo Configuring stage profile in $(HOST_SUBDIR)/ppl ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ppl ; \
|
|
cd $(HOST_SUBDIR)/ppl || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/ppl/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/ppl"; \
|
|
libsrcdir="$$s/ppl"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
$(STAGEprofile_CONFIGURE_FLAGS) \
|
|
--disable-shared --with-libgmp-prefix=$$r/$(HOST_SUBDIR)/gmp/ --with-libgmpxx-prefix=$$r/$(HOST_SUBDIR)/gmp/
|
|
@endif ppl-bootstrap
|
|
|
|
.PHONY: configure-stagefeedback-ppl maybe-configure-stagefeedback-ppl
|
|
maybe-configure-stagefeedback-ppl:
|
|
@if ppl-bootstrap
|
|
maybe-configure-stagefeedback-ppl: configure-stagefeedback-ppl
|
|
configure-stagefeedback-ppl:
|
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ppl
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
|
test ! -f $(HOST_SUBDIR)/ppl/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGEfeedback_CFLAGS)"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)"; export LIBCFLAGS; \
|
|
echo Configuring stage feedback in $(HOST_SUBDIR)/ppl ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ppl ; \
|
|
cd $(HOST_SUBDIR)/ppl || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/ppl/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/ppl"; \
|
|
libsrcdir="$$s/ppl"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
$(STAGEfeedback_CONFIGURE_FLAGS) \
|
|
--disable-shared --with-libgmp-prefix=$$r/$(HOST_SUBDIR)/gmp/ --with-libgmpxx-prefix=$$r/$(HOST_SUBDIR)/gmp/
|
|
@endif ppl-bootstrap
|
|
|
|
|
|
|
|
|
|
|
|
.PHONY: all-ppl maybe-all-ppl
|
|
maybe-all-ppl:
|
|
@if gcc-bootstrap
|
|
all-ppl: stage_current
|
|
@endif gcc-bootstrap
|
|
@if ppl
|
|
TARGET-ppl=all
|
|
maybe-all-ppl: all-ppl
|
|
all-ppl: configure-ppl
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
(cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) \
|
|
$(TARGET-ppl))
|
|
@endif ppl
|
|
|
|
|
|
|
|
.PHONY: all-stage1-ppl maybe-all-stage1-ppl
|
|
.PHONY: clean-stage1-ppl maybe-clean-stage1-ppl
|
|
maybe-all-stage1-ppl:
|
|
maybe-clean-stage1-ppl:
|
|
@if ppl-bootstrap
|
|
maybe-all-stage1-ppl: all-stage1-ppl
|
|
all-stage1: all-stage1-ppl
|
|
TARGET-stage1-ppl = $(TARGET-ppl)
|
|
all-stage1-ppl: configure-stage1-ppl
|
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
|
$(HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE1_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE1_CFLAGS)" \
|
|
LIBCFLAGS="$(LIBCFLAGS)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) \
|
|
TFLAGS="$(STAGE1_TFLAGS)" \
|
|
$(TARGET-stage1-ppl)
|
|
|
|
maybe-clean-stage1-ppl: clean-stage1-ppl
|
|
clean-stage1: clean-stage1-ppl
|
|
clean-stage1-ppl:
|
|
@if [ $(current_stage) = stage1 ]; then \
|
|
[ -f $(HOST_SUBDIR)/ppl/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stage1-ppl/Makefile ] || exit 0; \
|
|
$(MAKE) stage1-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
clean
|
|
@endif ppl-bootstrap
|
|
|
|
|
|
.PHONY: all-stage2-ppl maybe-all-stage2-ppl
|
|
.PHONY: clean-stage2-ppl maybe-clean-stage2-ppl
|
|
maybe-all-stage2-ppl:
|
|
maybe-clean-stage2-ppl:
|
|
@if ppl-bootstrap
|
|
maybe-all-stage2-ppl: all-stage2-ppl
|
|
all-stage2: all-stage2-ppl
|
|
TARGET-stage2-ppl = $(TARGET-ppl)
|
|
all-stage2-ppl: configure-stage2-ppl
|
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE2_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE2_CFLAGS)" \
|
|
LIBCFLAGS="$(STAGE2_CFLAGS)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE2_TFLAGS)" \
|
|
$(TARGET-stage2-ppl)
|
|
|
|
maybe-clean-stage2-ppl: clean-stage2-ppl
|
|
clean-stage2: clean-stage2-ppl
|
|
clean-stage2-ppl:
|
|
@if [ $(current_stage) = stage2 ]; then \
|
|
[ -f $(HOST_SUBDIR)/ppl/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stage2-ppl/Makefile ] || exit 0; \
|
|
$(MAKE) stage2-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif ppl-bootstrap
|
|
|
|
|
|
.PHONY: all-stage3-ppl maybe-all-stage3-ppl
|
|
.PHONY: clean-stage3-ppl maybe-clean-stage3-ppl
|
|
maybe-all-stage3-ppl:
|
|
maybe-clean-stage3-ppl:
|
|
@if ppl-bootstrap
|
|
maybe-all-stage3-ppl: all-stage3-ppl
|
|
all-stage3: all-stage3-ppl
|
|
TARGET-stage3-ppl = $(TARGET-ppl)
|
|
all-stage3-ppl: configure-stage3-ppl
|
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE3_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE3_CFLAGS)" \
|
|
LIBCFLAGS="$(STAGE3_CFLAGS)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE3_TFLAGS)" \
|
|
$(TARGET-stage3-ppl)
|
|
|
|
maybe-clean-stage3-ppl: clean-stage3-ppl
|
|
clean-stage3: clean-stage3-ppl
|
|
clean-stage3-ppl:
|
|
@if [ $(current_stage) = stage3 ]; then \
|
|
[ -f $(HOST_SUBDIR)/ppl/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stage3-ppl/Makefile ] || exit 0; \
|
|
$(MAKE) stage3-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif ppl-bootstrap
|
|
|
|
|
|
.PHONY: all-stage4-ppl maybe-all-stage4-ppl
|
|
.PHONY: clean-stage4-ppl maybe-clean-stage4-ppl
|
|
maybe-all-stage4-ppl:
|
|
maybe-clean-stage4-ppl:
|
|
@if ppl-bootstrap
|
|
maybe-all-stage4-ppl: all-stage4-ppl
|
|
all-stage4: all-stage4-ppl
|
|
TARGET-stage4-ppl = $(TARGET-ppl)
|
|
all-stage4-ppl: configure-stage4-ppl
|
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE4_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE4_CFLAGS)" \
|
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE4_TFLAGS)" \
|
|
$(TARGET-stage4-ppl)
|
|
|
|
maybe-clean-stage4-ppl: clean-stage4-ppl
|
|
clean-stage4: clean-stage4-ppl
|
|
clean-stage4-ppl:
|
|
@if [ $(current_stage) = stage4 ]; then \
|
|
[ -f $(HOST_SUBDIR)/ppl/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stage4-ppl/Makefile ] || exit 0; \
|
|
$(MAKE) stage4-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif ppl-bootstrap
|
|
|
|
|
|
.PHONY: all-stageprofile-ppl maybe-all-stageprofile-ppl
|
|
.PHONY: clean-stageprofile-ppl maybe-clean-stageprofile-ppl
|
|
maybe-all-stageprofile-ppl:
|
|
maybe-clean-stageprofile-ppl:
|
|
@if ppl-bootstrap
|
|
maybe-all-stageprofile-ppl: all-stageprofile-ppl
|
|
all-stageprofile: all-stageprofile-ppl
|
|
TARGET-stageprofile-ppl = $(TARGET-ppl)
|
|
all-stageprofile-ppl: configure-stageprofile-ppl
|
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGEprofile_CFLAGS)" \
|
|
CXXFLAGS="$(STAGEprofile_CFLAGS)" \
|
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)" \
|
|
$(TARGET-stageprofile-ppl)
|
|
|
|
maybe-clean-stageprofile-ppl: clean-stageprofile-ppl
|
|
clean-stageprofile: clean-stageprofile-ppl
|
|
clean-stageprofile-ppl:
|
|
@if [ $(current_stage) = stageprofile ]; then \
|
|
[ -f $(HOST_SUBDIR)/ppl/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageprofile-ppl/Makefile ] || exit 0; \
|
|
$(MAKE) stageprofile-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif ppl-bootstrap
|
|
|
|
|
|
.PHONY: all-stagefeedback-ppl maybe-all-stagefeedback-ppl
|
|
.PHONY: clean-stagefeedback-ppl maybe-clean-stagefeedback-ppl
|
|
maybe-all-stagefeedback-ppl:
|
|
maybe-clean-stagefeedback-ppl:
|
|
@if ppl-bootstrap
|
|
maybe-all-stagefeedback-ppl: all-stagefeedback-ppl
|
|
all-stagefeedback: all-stagefeedback-ppl
|
|
TARGET-stagefeedback-ppl = $(TARGET-ppl)
|
|
all-stagefeedback-ppl: configure-stagefeedback-ppl
|
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGEfeedback_CFLAGS)" \
|
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)" \
|
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)" \
|
|
$(TARGET-stagefeedback-ppl)
|
|
|
|
maybe-clean-stagefeedback-ppl: clean-stagefeedback-ppl
|
|
clean-stagefeedback: clean-stagefeedback-ppl
|
|
clean-stagefeedback-ppl:
|
|
@if [ $(current_stage) = stagefeedback ]; then \
|
|
[ -f $(HOST_SUBDIR)/ppl/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stagefeedback-ppl/Makefile ] || exit 0; \
|
|
$(MAKE) stagefeedback-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif ppl-bootstrap
|
|
|
|
|
|
|
|
|
|
|
|
.PHONY: check-ppl maybe-check-ppl
|
|
maybe-check-ppl:
|
|
@if ppl
|
|
maybe-check-ppl: check-ppl
|
|
|
|
check-ppl:
|
|
@: $(MAKE); $(unstage)
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
(cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(FLAGS_TO_PASS) check)
|
|
|
|
@endif ppl
|
|
|
|
.PHONY: install-ppl maybe-install-ppl
|
|
maybe-install-ppl:
|
|
@if ppl
|
|
maybe-install-ppl: install-ppl
|
|
|
|
install-ppl:
|
|
|
|
@endif ppl
|
|
|
|
# Other targets (info, dvi, pdf, etc.)
|
|
|
|
.PHONY: maybe-info-ppl info-ppl
|
|
maybe-info-ppl:
|
|
@if ppl
|
|
maybe-info-ppl: info-ppl
|
|
|
|
info-ppl: \
|
|
configure-ppl
|
|
@[ -f ./ppl/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing info in ppl" ; \
|
|
(cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
info) \
|
|
|| exit 1
|
|
|
|
@endif ppl
|
|
|
|
.PHONY: maybe-dvi-ppl dvi-ppl
|
|
maybe-dvi-ppl:
|
|
@if ppl
|
|
maybe-dvi-ppl: dvi-ppl
|
|
|
|
dvi-ppl: \
|
|
configure-ppl
|
|
@[ -f ./ppl/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing dvi in ppl" ; \
|
|
(cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
dvi) \
|
|
|| exit 1
|
|
|
|
@endif ppl
|
|
|
|
.PHONY: maybe-pdf-ppl pdf-ppl
|
|
maybe-pdf-ppl:
|
|
@if ppl
|
|
maybe-pdf-ppl: pdf-ppl
|
|
|
|
pdf-ppl: \
|
|
configure-ppl
|
|
@[ -f ./ppl/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing pdf in ppl" ; \
|
|
(cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
pdf) \
|
|
|| exit 1
|
|
|
|
@endif ppl
|
|
|
|
.PHONY: maybe-html-ppl html-ppl
|
|
maybe-html-ppl:
|
|
@if ppl
|
|
maybe-html-ppl: html-ppl
|
|
|
|
html-ppl: \
|
|
configure-ppl
|
|
@[ -f ./ppl/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing html in ppl" ; \
|
|
(cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
html) \
|
|
|| exit 1
|
|
|
|
@endif ppl
|
|
|
|
.PHONY: maybe-TAGS-ppl TAGS-ppl
|
|
maybe-TAGS-ppl:
|
|
@if ppl
|
|
maybe-TAGS-ppl: TAGS-ppl
|
|
|
|
TAGS-ppl: \
|
|
configure-ppl
|
|
@[ -f ./ppl/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing TAGS in ppl" ; \
|
|
(cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
TAGS) \
|
|
|| exit 1
|
|
|
|
@endif ppl
|
|
|
|
.PHONY: maybe-install-info-ppl install-info-ppl
|
|
maybe-install-info-ppl:
|
|
@if ppl
|
|
maybe-install-info-ppl: install-info-ppl
|
|
|
|
install-info-ppl: \
|
|
configure-ppl \
|
|
info-ppl
|
|
@[ -f ./ppl/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing install-info in ppl" ; \
|
|
(cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
install-info) \
|
|
|| exit 1
|
|
|
|
@endif ppl
|
|
|
|
.PHONY: maybe-install-pdf-ppl install-pdf-ppl
|
|
maybe-install-pdf-ppl:
|
|
@if ppl
|
|
maybe-install-pdf-ppl: install-pdf-ppl
|
|
|
|
install-pdf-ppl: \
|
|
configure-ppl \
|
|
pdf-ppl
|
|
@[ -f ./ppl/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing install-pdf in ppl" ; \
|
|
(cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
install-pdf) \
|
|
|| exit 1
|
|
|
|
@endif ppl
|
|
|
|
.PHONY: maybe-install-html-ppl install-html-ppl
|
|
maybe-install-html-ppl:
|
|
@if ppl
|
|
maybe-install-html-ppl: install-html-ppl
|
|
|
|
install-html-ppl: \
|
|
configure-ppl \
|
|
html-ppl
|
|
@[ -f ./ppl/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing install-html in ppl" ; \
|
|
(cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
install-html) \
|
|
|| exit 1
|
|
|
|
@endif ppl
|
|
|
|
.PHONY: maybe-installcheck-ppl installcheck-ppl
|
|
maybe-installcheck-ppl:
|
|
@if ppl
|
|
maybe-installcheck-ppl: installcheck-ppl
|
|
|
|
installcheck-ppl: \
|
|
configure-ppl
|
|
@[ -f ./ppl/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing installcheck in ppl" ; \
|
|
(cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
installcheck) \
|
|
|| exit 1
|
|
|
|
@endif ppl
|
|
|
|
.PHONY: maybe-mostlyclean-ppl mostlyclean-ppl
|
|
maybe-mostlyclean-ppl:
|
|
@if ppl
|
|
maybe-mostlyclean-ppl: mostlyclean-ppl
|
|
|
|
mostlyclean-ppl:
|
|
@[ -f ./ppl/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing mostlyclean in ppl" ; \
|
|
(cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
mostlyclean) \
|
|
|| exit 1
|
|
|
|
@endif ppl
|
|
|
|
.PHONY: maybe-clean-ppl clean-ppl
|
|
maybe-clean-ppl:
|
|
@if ppl
|
|
maybe-clean-ppl: clean-ppl
|
|
|
|
clean-ppl:
|
|
@[ -f ./ppl/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing clean in ppl" ; \
|
|
(cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
clean) \
|
|
|| exit 1
|
|
|
|
@endif ppl
|
|
|
|
.PHONY: maybe-distclean-ppl distclean-ppl
|
|
maybe-distclean-ppl:
|
|
@if ppl
|
|
maybe-distclean-ppl: distclean-ppl
|
|
|
|
distclean-ppl:
|
|
@[ -f ./ppl/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing distclean in ppl" ; \
|
|
(cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
distclean) \
|
|
|| exit 1
|
|
|
|
@endif ppl
|
|
|
|
.PHONY: maybe-maintainer-clean-ppl maintainer-clean-ppl
|
|
maybe-maintainer-clean-ppl:
|
|
@if ppl
|
|
maybe-maintainer-clean-ppl: maintainer-clean-ppl
|
|
|
|
maintainer-clean-ppl:
|
|
@[ -f ./ppl/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing maintainer-clean in ppl" ; \
|
|
(cd $(HOST_SUBDIR)/ppl && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
maintainer-clean) \
|
|
|| exit 1
|
|
|
|
@endif ppl
|
|
|
|
|
|
|
|
.PHONY: configure-cloog maybe-configure-cloog
|
|
maybe-configure-cloog:
|
|
@if gcc-bootstrap
|
|
configure-cloog: stage_current
|
|
@endif gcc-bootstrap
|
|
@if cloog
|
|
maybe-configure-cloog: configure-cloog
|
|
configure-cloog:
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/cloog/Makefile || exit 0; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/cloog ; \
|
|
$(HOST_EXPORTS) \
|
|
echo Configuring in $(HOST_SUBDIR)/cloog; \
|
|
cd "$(HOST_SUBDIR)/cloog" || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/cloog/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/cloog"; \
|
|
libsrcdir="$$s/cloog"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} --disable-shared --with-gmp-library=$$r/$(HOST_SUBDIR)/gmp/.libs --with-gmp-include=$$r/$(HOST_SUBDIR)/gmp --with-ppl=$$r/$(HOST_SUBDIR)/ppl/ --with-bits=gmp \
|
|
|| exit 1
|
|
@endif cloog
|
|
|
|
|
|
|
|
.PHONY: configure-stage1-cloog maybe-configure-stage1-cloog
|
|
maybe-configure-stage1-cloog:
|
|
@if cloog-bootstrap
|
|
maybe-configure-stage1-cloog: configure-stage1-cloog
|
|
configure-stage1-cloog:
|
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/cloog
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
|
test ! -f $(HOST_SUBDIR)/cloog/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS)"; export LIBCFLAGS; \
|
|
echo Configuring stage 1 in $(HOST_SUBDIR)/cloog ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/cloog ; \
|
|
cd $(HOST_SUBDIR)/cloog || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/cloog/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/cloog"; \
|
|
libsrcdir="$$s/cloog"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
|
$(STAGE1_CONFIGURE_FLAGS) \
|
|
--disable-shared --with-gmp-library=$$r/$(HOST_SUBDIR)/gmp/.libs --with-gmp-include=$$r/$(HOST_SUBDIR)/gmp --with-ppl=$$r/$(HOST_SUBDIR)/ppl/ --with-bits=gmp
|
|
@endif cloog-bootstrap
|
|
|
|
.PHONY: configure-stage2-cloog maybe-configure-stage2-cloog
|
|
maybe-configure-stage2-cloog:
|
|
@if cloog-bootstrap
|
|
maybe-configure-stage2-cloog: configure-stage2-cloog
|
|
configure-stage2-cloog:
|
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/cloog
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
|
test ! -f $(HOST_SUBDIR)/cloog/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE2_CFLAGS)"; export LIBCFLAGS; \
|
|
echo Configuring stage 2 in $(HOST_SUBDIR)/cloog ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/cloog ; \
|
|
cd $(HOST_SUBDIR)/cloog || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/cloog/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/cloog"; \
|
|
libsrcdir="$$s/cloog"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
$(STAGE2_CONFIGURE_FLAGS) \
|
|
--disable-shared --with-gmp-library=$$r/$(HOST_SUBDIR)/gmp/.libs --with-gmp-include=$$r/$(HOST_SUBDIR)/gmp --with-ppl=$$r/$(HOST_SUBDIR)/ppl/ --with-bits=gmp
|
|
@endif cloog-bootstrap
|
|
|
|
.PHONY: configure-stage3-cloog maybe-configure-stage3-cloog
|
|
maybe-configure-stage3-cloog:
|
|
@if cloog-bootstrap
|
|
maybe-configure-stage3-cloog: configure-stage3-cloog
|
|
configure-stage3-cloog:
|
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/cloog
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
|
test ! -f $(HOST_SUBDIR)/cloog/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE3_CFLAGS)"; export LIBCFLAGS; \
|
|
echo Configuring stage 3 in $(HOST_SUBDIR)/cloog ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/cloog ; \
|
|
cd $(HOST_SUBDIR)/cloog || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/cloog/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/cloog"; \
|
|
libsrcdir="$$s/cloog"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
$(STAGE3_CONFIGURE_FLAGS) \
|
|
--disable-shared --with-gmp-library=$$r/$(HOST_SUBDIR)/gmp/.libs --with-gmp-include=$$r/$(HOST_SUBDIR)/gmp --with-ppl=$$r/$(HOST_SUBDIR)/ppl/ --with-bits=gmp
|
|
@endif cloog-bootstrap
|
|
|
|
.PHONY: configure-stage4-cloog maybe-configure-stage4-cloog
|
|
maybe-configure-stage4-cloog:
|
|
@if cloog-bootstrap
|
|
maybe-configure-stage4-cloog: configure-stage4-cloog
|
|
configure-stage4-cloog:
|
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/cloog
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
|
test ! -f $(HOST_SUBDIR)/cloog/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE4_CFLAGS)"; export LIBCFLAGS; \
|
|
echo Configuring stage 4 in $(HOST_SUBDIR)/cloog ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/cloog ; \
|
|
cd $(HOST_SUBDIR)/cloog || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/cloog/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/cloog"; \
|
|
libsrcdir="$$s/cloog"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
$(STAGE4_CONFIGURE_FLAGS) \
|
|
--disable-shared --with-gmp-library=$$r/$(HOST_SUBDIR)/gmp/.libs --with-gmp-include=$$r/$(HOST_SUBDIR)/gmp --with-ppl=$$r/$(HOST_SUBDIR)/ppl/ --with-bits=gmp
|
|
@endif cloog-bootstrap
|
|
|
|
.PHONY: configure-stageprofile-cloog maybe-configure-stageprofile-cloog
|
|
maybe-configure-stageprofile-cloog:
|
|
@if cloog-bootstrap
|
|
maybe-configure-stageprofile-cloog: configure-stageprofile-cloog
|
|
configure-stageprofile-cloog:
|
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/cloog
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
|
test ! -f $(HOST_SUBDIR)/cloog/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGEprofile_CFLAGS)"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGEprofile_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)"; export LIBCFLAGS; \
|
|
echo Configuring stage profile in $(HOST_SUBDIR)/cloog ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/cloog ; \
|
|
cd $(HOST_SUBDIR)/cloog || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/cloog/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/cloog"; \
|
|
libsrcdir="$$s/cloog"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
$(STAGEprofile_CONFIGURE_FLAGS) \
|
|
--disable-shared --with-gmp-library=$$r/$(HOST_SUBDIR)/gmp/.libs --with-gmp-include=$$r/$(HOST_SUBDIR)/gmp --with-ppl=$$r/$(HOST_SUBDIR)/ppl/ --with-bits=gmp
|
|
@endif cloog-bootstrap
|
|
|
|
.PHONY: configure-stagefeedback-cloog maybe-configure-stagefeedback-cloog
|
|
maybe-configure-stagefeedback-cloog:
|
|
@if cloog-bootstrap
|
|
maybe-configure-stagefeedback-cloog: configure-stagefeedback-cloog
|
|
configure-stagefeedback-cloog:
|
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/cloog
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
|
test ! -f $(HOST_SUBDIR)/cloog/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGEfeedback_CFLAGS)"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)"; export LIBCFLAGS; \
|
|
echo Configuring stage feedback in $(HOST_SUBDIR)/cloog ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/cloog ; \
|
|
cd $(HOST_SUBDIR)/cloog || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/cloog/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/cloog"; \
|
|
libsrcdir="$$s/cloog"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=none-${host_vendor}-${host_os} \
|
|
--target=none-${host_vendor}-${host_os} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
$(STAGEfeedback_CONFIGURE_FLAGS) \
|
|
--disable-shared --with-gmp-library=$$r/$(HOST_SUBDIR)/gmp/.libs --with-gmp-include=$$r/$(HOST_SUBDIR)/gmp --with-ppl=$$r/$(HOST_SUBDIR)/ppl/ --with-bits=gmp
|
|
@endif cloog-bootstrap
|
|
|
|
|
|
|
|
|
|
|
|
.PHONY: all-cloog maybe-all-cloog
|
|
maybe-all-cloog:
|
|
@if gcc-bootstrap
|
|
all-cloog: stage_current
|
|
@endif gcc-bootstrap
|
|
@if cloog
|
|
TARGET-cloog=all
|
|
maybe-all-cloog: all-cloog
|
|
all-cloog: configure-cloog
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
(cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) \
|
|
$(TARGET-cloog))
|
|
@endif cloog
|
|
|
|
|
|
|
|
.PHONY: all-stage1-cloog maybe-all-stage1-cloog
|
|
.PHONY: clean-stage1-cloog maybe-clean-stage1-cloog
|
|
maybe-all-stage1-cloog:
|
|
maybe-clean-stage1-cloog:
|
|
@if cloog-bootstrap
|
|
maybe-all-stage1-cloog: all-stage1-cloog
|
|
all-stage1: all-stage1-cloog
|
|
TARGET-stage1-cloog = $(TARGET-cloog)
|
|
all-stage1-cloog: configure-stage1-cloog
|
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
|
$(HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE1_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE1_CFLAGS)" \
|
|
LIBCFLAGS="$(LIBCFLAGS)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) \
|
|
TFLAGS="$(STAGE1_TFLAGS)" \
|
|
$(TARGET-stage1-cloog)
|
|
|
|
maybe-clean-stage1-cloog: clean-stage1-cloog
|
|
clean-stage1: clean-stage1-cloog
|
|
clean-stage1-cloog:
|
|
@if [ $(current_stage) = stage1 ]; then \
|
|
[ -f $(HOST_SUBDIR)/cloog/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stage1-cloog/Makefile ] || exit 0; \
|
|
$(MAKE) stage1-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
clean
|
|
@endif cloog-bootstrap
|
|
|
|
|
|
.PHONY: all-stage2-cloog maybe-all-stage2-cloog
|
|
.PHONY: clean-stage2-cloog maybe-clean-stage2-cloog
|
|
maybe-all-stage2-cloog:
|
|
maybe-clean-stage2-cloog:
|
|
@if cloog-bootstrap
|
|
maybe-all-stage2-cloog: all-stage2-cloog
|
|
all-stage2: all-stage2-cloog
|
|
TARGET-stage2-cloog = $(TARGET-cloog)
|
|
all-stage2-cloog: configure-stage2-cloog
|
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE2_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE2_CFLAGS)" \
|
|
LIBCFLAGS="$(STAGE2_CFLAGS)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE2_TFLAGS)" \
|
|
$(TARGET-stage2-cloog)
|
|
|
|
maybe-clean-stage2-cloog: clean-stage2-cloog
|
|
clean-stage2: clean-stage2-cloog
|
|
clean-stage2-cloog:
|
|
@if [ $(current_stage) = stage2 ]; then \
|
|
[ -f $(HOST_SUBDIR)/cloog/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stage2-cloog/Makefile ] || exit 0; \
|
|
$(MAKE) stage2-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif cloog-bootstrap
|
|
|
|
|
|
.PHONY: all-stage3-cloog maybe-all-stage3-cloog
|
|
.PHONY: clean-stage3-cloog maybe-clean-stage3-cloog
|
|
maybe-all-stage3-cloog:
|
|
maybe-clean-stage3-cloog:
|
|
@if cloog-bootstrap
|
|
maybe-all-stage3-cloog: all-stage3-cloog
|
|
all-stage3: all-stage3-cloog
|
|
TARGET-stage3-cloog = $(TARGET-cloog)
|
|
all-stage3-cloog: configure-stage3-cloog
|
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE3_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE3_CFLAGS)" \
|
|
LIBCFLAGS="$(STAGE3_CFLAGS)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE3_TFLAGS)" \
|
|
$(TARGET-stage3-cloog)
|
|
|
|
maybe-clean-stage3-cloog: clean-stage3-cloog
|
|
clean-stage3: clean-stage3-cloog
|
|
clean-stage3-cloog:
|
|
@if [ $(current_stage) = stage3 ]; then \
|
|
[ -f $(HOST_SUBDIR)/cloog/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stage3-cloog/Makefile ] || exit 0; \
|
|
$(MAKE) stage3-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif cloog-bootstrap
|
|
|
|
|
|
.PHONY: all-stage4-cloog maybe-all-stage4-cloog
|
|
.PHONY: clean-stage4-cloog maybe-clean-stage4-cloog
|
|
maybe-all-stage4-cloog:
|
|
maybe-clean-stage4-cloog:
|
|
@if cloog-bootstrap
|
|
maybe-all-stage4-cloog: all-stage4-cloog
|
|
all-stage4: all-stage4-cloog
|
|
TARGET-stage4-cloog = $(TARGET-cloog)
|
|
all-stage4-cloog: configure-stage4-cloog
|
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE4_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE4_CFLAGS)" \
|
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE4_TFLAGS)" \
|
|
$(TARGET-stage4-cloog)
|
|
|
|
maybe-clean-stage4-cloog: clean-stage4-cloog
|
|
clean-stage4: clean-stage4-cloog
|
|
clean-stage4-cloog:
|
|
@if [ $(current_stage) = stage4 ]; then \
|
|
[ -f $(HOST_SUBDIR)/cloog/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stage4-cloog/Makefile ] || exit 0; \
|
|
$(MAKE) stage4-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif cloog-bootstrap
|
|
|
|
|
|
.PHONY: all-stageprofile-cloog maybe-all-stageprofile-cloog
|
|
.PHONY: clean-stageprofile-cloog maybe-clean-stageprofile-cloog
|
|
maybe-all-stageprofile-cloog:
|
|
maybe-clean-stageprofile-cloog:
|
|
@if cloog-bootstrap
|
|
maybe-all-stageprofile-cloog: all-stageprofile-cloog
|
|
all-stageprofile: all-stageprofile-cloog
|
|
TARGET-stageprofile-cloog = $(TARGET-cloog)
|
|
all-stageprofile-cloog: configure-stageprofile-cloog
|
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGEprofile_CFLAGS)" \
|
|
CXXFLAGS="$(STAGEprofile_CFLAGS)" \
|
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)" \
|
|
$(TARGET-stageprofile-cloog)
|
|
|
|
maybe-clean-stageprofile-cloog: clean-stageprofile-cloog
|
|
clean-stageprofile: clean-stageprofile-cloog
|
|
clean-stageprofile-cloog:
|
|
@if [ $(current_stage) = stageprofile ]; then \
|
|
[ -f $(HOST_SUBDIR)/cloog/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageprofile-cloog/Makefile ] || exit 0; \
|
|
$(MAKE) stageprofile-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif cloog-bootstrap
|
|
|
|
|
|
.PHONY: all-stagefeedback-cloog maybe-all-stagefeedback-cloog
|
|
.PHONY: clean-stagefeedback-cloog maybe-clean-stagefeedback-cloog
|
|
maybe-all-stagefeedback-cloog:
|
|
maybe-clean-stagefeedback-cloog:
|
|
@if cloog-bootstrap
|
|
maybe-all-stagefeedback-cloog: all-stagefeedback-cloog
|
|
all-stagefeedback: all-stagefeedback-cloog
|
|
TARGET-stagefeedback-cloog = $(TARGET-cloog)
|
|
all-stagefeedback-cloog: configure-stagefeedback-cloog
|
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGEfeedback_CFLAGS)" \
|
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)" \
|
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)" \
|
|
$(TARGET-stagefeedback-cloog)
|
|
|
|
maybe-clean-stagefeedback-cloog: clean-stagefeedback-cloog
|
|
clean-stagefeedback: clean-stagefeedback-cloog
|
|
clean-stagefeedback-cloog:
|
|
@if [ $(current_stage) = stagefeedback ]; then \
|
|
[ -f $(HOST_SUBDIR)/cloog/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stagefeedback-cloog/Makefile ] || exit 0; \
|
|
$(MAKE) stagefeedback-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif cloog-bootstrap
|
|
|
|
|
|
|
|
|
|
|
|
.PHONY: check-cloog maybe-check-cloog
|
|
maybe-check-cloog:
|
|
@if cloog
|
|
maybe-check-cloog: check-cloog
|
|
|
|
check-cloog:
|
|
@: $(MAKE); $(unstage)
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
(cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(FLAGS_TO_PASS) check)
|
|
|
|
@endif cloog
|
|
|
|
.PHONY: install-cloog maybe-install-cloog
|
|
maybe-install-cloog:
|
|
@if cloog
|
|
maybe-install-cloog: install-cloog
|
|
|
|
install-cloog:
|
|
|
|
@endif cloog
|
|
|
|
# Other targets (info, dvi, pdf, etc.)
|
|
|
|
.PHONY: maybe-info-cloog info-cloog
|
|
maybe-info-cloog:
|
|
@if cloog
|
|
maybe-info-cloog: info-cloog
|
|
|
|
info-cloog: \
|
|
configure-cloog
|
|
@[ -f ./cloog/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing info in cloog" ; \
|
|
(cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
info) \
|
|
|| exit 1
|
|
|
|
@endif cloog
|
|
|
|
.PHONY: maybe-dvi-cloog dvi-cloog
|
|
maybe-dvi-cloog:
|
|
@if cloog
|
|
maybe-dvi-cloog: dvi-cloog
|
|
|
|
dvi-cloog: \
|
|
configure-cloog
|
|
@[ -f ./cloog/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing dvi in cloog" ; \
|
|
(cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
dvi) \
|
|
|| exit 1
|
|
|
|
@endif cloog
|
|
|
|
.PHONY: maybe-pdf-cloog pdf-cloog
|
|
maybe-pdf-cloog:
|
|
@if cloog
|
|
maybe-pdf-cloog: pdf-cloog
|
|
|
|
pdf-cloog: \
|
|
configure-cloog
|
|
@[ -f ./cloog/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing pdf in cloog" ; \
|
|
(cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
pdf) \
|
|
|| exit 1
|
|
|
|
@endif cloog
|
|
|
|
.PHONY: maybe-html-cloog html-cloog
|
|
maybe-html-cloog:
|
|
@if cloog
|
|
maybe-html-cloog: html-cloog
|
|
|
|
html-cloog: \
|
|
configure-cloog
|
|
@[ -f ./cloog/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing html in cloog" ; \
|
|
(cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
html) \
|
|
|| exit 1
|
|
|
|
@endif cloog
|
|
|
|
.PHONY: maybe-TAGS-cloog TAGS-cloog
|
|
maybe-TAGS-cloog:
|
|
@if cloog
|
|
maybe-TAGS-cloog: TAGS-cloog
|
|
|
|
TAGS-cloog: \
|
|
configure-cloog
|
|
@[ -f ./cloog/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing TAGS in cloog" ; \
|
|
(cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
TAGS) \
|
|
|| exit 1
|
|
|
|
@endif cloog
|
|
|
|
.PHONY: maybe-install-info-cloog install-info-cloog
|
|
maybe-install-info-cloog:
|
|
@if cloog
|
|
maybe-install-info-cloog: install-info-cloog
|
|
|
|
install-info-cloog: \
|
|
configure-cloog \
|
|
info-cloog
|
|
@[ -f ./cloog/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing install-info in cloog" ; \
|
|
(cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
install-info) \
|
|
|| exit 1
|
|
|
|
@endif cloog
|
|
|
|
.PHONY: maybe-install-pdf-cloog install-pdf-cloog
|
|
maybe-install-pdf-cloog:
|
|
@if cloog
|
|
maybe-install-pdf-cloog: install-pdf-cloog
|
|
|
|
install-pdf-cloog: \
|
|
configure-cloog \
|
|
pdf-cloog
|
|
@[ -f ./cloog/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing install-pdf in cloog" ; \
|
|
(cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
install-pdf) \
|
|
|| exit 1
|
|
|
|
@endif cloog
|
|
|
|
.PHONY: maybe-install-html-cloog install-html-cloog
|
|
maybe-install-html-cloog:
|
|
@if cloog
|
|
maybe-install-html-cloog: install-html-cloog
|
|
|
|
install-html-cloog: \
|
|
configure-cloog \
|
|
html-cloog
|
|
@[ -f ./cloog/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing install-html in cloog" ; \
|
|
(cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
install-html) \
|
|
|| exit 1
|
|
|
|
@endif cloog
|
|
|
|
.PHONY: maybe-installcheck-cloog installcheck-cloog
|
|
maybe-installcheck-cloog:
|
|
@if cloog
|
|
maybe-installcheck-cloog: installcheck-cloog
|
|
|
|
installcheck-cloog: \
|
|
configure-cloog
|
|
@[ -f ./cloog/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing installcheck in cloog" ; \
|
|
(cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
installcheck) \
|
|
|| exit 1
|
|
|
|
@endif cloog
|
|
|
|
.PHONY: maybe-mostlyclean-cloog mostlyclean-cloog
|
|
maybe-mostlyclean-cloog:
|
|
@if cloog
|
|
maybe-mostlyclean-cloog: mostlyclean-cloog
|
|
|
|
mostlyclean-cloog:
|
|
@[ -f ./cloog/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing mostlyclean in cloog" ; \
|
|
(cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
mostlyclean) \
|
|
|| exit 1
|
|
|
|
@endif cloog
|
|
|
|
.PHONY: maybe-clean-cloog clean-cloog
|
|
maybe-clean-cloog:
|
|
@if cloog
|
|
maybe-clean-cloog: clean-cloog
|
|
|
|
clean-cloog:
|
|
@[ -f ./cloog/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing clean in cloog" ; \
|
|
(cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
clean) \
|
|
|| exit 1
|
|
|
|
@endif cloog
|
|
|
|
.PHONY: maybe-distclean-cloog distclean-cloog
|
|
maybe-distclean-cloog:
|
|
@if cloog
|
|
maybe-distclean-cloog: distclean-cloog
|
|
|
|
distclean-cloog:
|
|
@[ -f ./cloog/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing distclean in cloog" ; \
|
|
(cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
distclean) \
|
|
|| exit 1
|
|
|
|
@endif cloog
|
|
|
|
.PHONY: maybe-maintainer-clean-cloog maintainer-clean-cloog
|
|
maybe-maintainer-clean-cloog:
|
|
@if cloog
|
|
maybe-maintainer-clean-cloog: maintainer-clean-cloog
|
|
|
|
maintainer-clean-cloog:
|
|
@[ -f ./cloog/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing maintainer-clean in cloog" ; \
|
|
(cd $(HOST_SUBDIR)/cloog && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
maintainer-clean) \
|
|
|| exit 1
|
|
|
|
@endif cloog
|
|
|
|
|
|
|
|
.PHONY: configure-gnuserv maybe-configure-gnuserv
|
|
maybe-configure-gnuserv:
|
|
@if gcc-bootstrap
|
|
configure-gnuserv: stage_current
|
|
@endif gcc-bootstrap
|
|
@if gnuserv
|
|
maybe-configure-gnuserv: configure-gnuserv
|
|
configure-gnuserv:
|
|
@: $(MAKE); $(unstage)
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/gnuserv/Makefile || exit 0; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gnuserv ; \
|
|
$(HOST_EXPORTS) \
|
|
echo Configuring in $(HOST_SUBDIR)/gnuserv; \
|
|
cd "$(HOST_SUBDIR)/gnuserv" || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/gnuserv/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/gnuserv"; \
|
|
libsrcdir="$$s/gnuserv"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
|| exit 1
|
|
@endif gnuserv
|
|
|
|
|
|
|
|
|
|
|
|
.PHONY: all-gnuserv maybe-all-gnuserv
|
|
maybe-all-gnuserv:
|
|
@if gcc-bootstrap
|
|
all-gnuserv: stage_current
|
|
@endif gcc-bootstrap
|
|
@if gnuserv
|
|
TARGET-gnuserv=all
|
|
maybe-all-gnuserv: all-gnuserv
|
|
all-gnuserv: configure-gnuserv
|
|
@: $(MAKE); $(unstage)
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) \
|
|
$(TARGET-gnuserv))
|
|
@endif gnuserv
|
|
|
|
|
|
|
|
|
|
.PHONY: check-gnuserv maybe-check-gnuserv
|
|
maybe-check-gnuserv:
|
|
@if gnuserv
|
|
maybe-check-gnuserv: check-gnuserv
|
|
|
|
check-gnuserv:
|
|
@: $(MAKE); $(unstage)
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
|
$(MAKE) $(FLAGS_TO_PASS) check)
|
|
|
|
@endif gnuserv
|
|
|
|
.PHONY: install-gnuserv maybe-install-gnuserv
|
|
maybe-install-gnuserv:
|
|
@if gnuserv
|
|
maybe-install-gnuserv: install-gnuserv
|
|
|
|
install-gnuserv: installdirs
|
|
@: $(MAKE); $(unstage)
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
|
$(MAKE) $(FLAGS_TO_PASS) install)
|
|
|
|
@endif gnuserv
|
|
|
|
# Other targets (info, dvi, pdf, etc.)
|
|
|
|
.PHONY: maybe-info-gnuserv info-gnuserv
|
|
maybe-info-gnuserv:
|
|
@if gnuserv
|
|
maybe-info-gnuserv: info-gnuserv
|
|
|
|
info-gnuserv: \
|
|
configure-gnuserv
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./gnuserv/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing info in gnuserv" ; \
|
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
info) \
|
|
|| exit 1
|
|
|
|
@endif gnuserv
|
|
|
|
.PHONY: maybe-dvi-gnuserv dvi-gnuserv
|
|
maybe-dvi-gnuserv:
|
|
@if gnuserv
|
|
maybe-dvi-gnuserv: dvi-gnuserv
|
|
|
|
dvi-gnuserv: \
|
|
configure-gnuserv
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./gnuserv/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing dvi in gnuserv" ; \
|
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
dvi) \
|
|
|| exit 1
|
|
|
|
@endif gnuserv
|
|
|
|
.PHONY: maybe-pdf-gnuserv pdf-gnuserv
|
|
maybe-pdf-gnuserv:
|
|
@if gnuserv
|
|
maybe-pdf-gnuserv: pdf-gnuserv
|
|
|
|
pdf-gnuserv: \
|
|
configure-gnuserv
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./gnuserv/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing pdf in gnuserv" ; \
|
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
pdf) \
|
|
|| exit 1
|
|
|
|
@endif gnuserv
|
|
|
|
.PHONY: maybe-html-gnuserv html-gnuserv
|
|
maybe-html-gnuserv:
|
|
@if gnuserv
|
|
maybe-html-gnuserv: html-gnuserv
|
|
|
|
html-gnuserv: \
|
|
configure-gnuserv
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./gnuserv/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing html in gnuserv" ; \
|
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
html) \
|
|
|| exit 1
|
|
|
|
@endif gnuserv
|
|
|
|
.PHONY: maybe-TAGS-gnuserv TAGS-gnuserv
|
|
maybe-TAGS-gnuserv:
|
|
@if gnuserv
|
|
maybe-TAGS-gnuserv: TAGS-gnuserv
|
|
|
|
TAGS-gnuserv: \
|
|
configure-gnuserv
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./gnuserv/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing TAGS in gnuserv" ; \
|
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
TAGS) \
|
|
|| exit 1
|
|
|
|
@endif gnuserv
|
|
|
|
.PHONY: maybe-install-info-gnuserv install-info-gnuserv
|
|
maybe-install-info-gnuserv:
|
|
@if gnuserv
|
|
maybe-install-info-gnuserv: install-info-gnuserv
|
|
|
|
install-info-gnuserv: \
|
|
configure-gnuserv \
|
|
info-gnuserv
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./gnuserv/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing install-info in gnuserv" ; \
|
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
install-info) \
|
|
|| exit 1
|
|
|
|
@endif gnuserv
|
|
|
|
.PHONY: maybe-install-pdf-gnuserv install-pdf-gnuserv
|
|
maybe-install-pdf-gnuserv:
|
|
@if gnuserv
|
|
maybe-install-pdf-gnuserv: install-pdf-gnuserv
|
|
|
|
install-pdf-gnuserv: \
|
|
configure-gnuserv \
|
|
pdf-gnuserv
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./gnuserv/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing install-pdf in gnuserv" ; \
|
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
install-pdf) \
|
|
|| exit 1
|
|
|
|
@endif gnuserv
|
|
|
|
.PHONY: maybe-install-html-gnuserv install-html-gnuserv
|
|
maybe-install-html-gnuserv:
|
|
@if gnuserv
|
|
maybe-install-html-gnuserv: install-html-gnuserv
|
|
|
|
install-html-gnuserv: \
|
|
configure-gnuserv \
|
|
html-gnuserv
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./gnuserv/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing install-html in gnuserv" ; \
|
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
install-html) \
|
|
|| exit 1
|
|
|
|
@endif gnuserv
|
|
|
|
.PHONY: maybe-installcheck-gnuserv installcheck-gnuserv
|
|
maybe-installcheck-gnuserv:
|
|
@if gnuserv
|
|
maybe-installcheck-gnuserv: installcheck-gnuserv
|
|
|
|
installcheck-gnuserv: \
|
configure-gnuserv
|
configure-gnuserv
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@[ -f ./gnuserv/Makefile ] || exit 0; \
|
@[ -f ./gnuserv/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing installcheck in gnuserv" ; \
|
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
installcheck) \
|
|
|| exit 1
|
|
|
|
@endif gnuserv
|
|
|
|
.PHONY: maybe-mostlyclean-gnuserv mostlyclean-gnuserv
|
|
maybe-mostlyclean-gnuserv:
|
|
@if gnuserv
|
|
maybe-mostlyclean-gnuserv: mostlyclean-gnuserv
|
|
|
|
mostlyclean-gnuserv:
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./gnuserv/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing mostlyclean in gnuserv" ; \
|
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
mostlyclean) \
|
|
|| exit 1
|
|
|
|
@endif gnuserv
|
|
|
|
.PHONY: maybe-clean-gnuserv clean-gnuserv
|
|
maybe-clean-gnuserv:
|
|
@if gnuserv
|
|
maybe-clean-gnuserv: clean-gnuserv
|
|
|
|
clean-gnuserv:
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./gnuserv/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing clean in gnuserv" ; \
|
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
clean) \
|
|
|| exit 1
|
|
|
|
@endif gnuserv
|
|
|
|
.PHONY: maybe-distclean-gnuserv distclean-gnuserv
|
|
maybe-distclean-gnuserv:
|
|
@if gnuserv
|
|
maybe-distclean-gnuserv: distclean-gnuserv
|
|
|
|
distclean-gnuserv:
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./gnuserv/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing distclean in gnuserv" ; \
|
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
distclean) \
|
|
|| exit 1
|
|
|
|
@endif gnuserv
|
|
|
|
.PHONY: maybe-maintainer-clean-gnuserv maintainer-clean-gnuserv
|
|
maybe-maintainer-clean-gnuserv:
|
|
@if gnuserv
|
|
maybe-maintainer-clean-gnuserv: maintainer-clean-gnuserv
|
|
|
|
maintainer-clean-gnuserv:
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./gnuserv/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing maintainer-clean in gnuserv" ; \
|
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
maintainer-clean) \
|
|
|| exit 1
|
|
|
|
@endif gnuserv
|
|
|
|
|
|
|
|
.PHONY: configure-gold maybe-configure-gold
|
|
maybe-configure-gold:
|
|
@if gcc-bootstrap
|
|
configure-gold: stage_current
|
|
@endif gcc-bootstrap
|
|
@if gold
|
|
maybe-configure-gold: configure-gold
|
|
configure-gold:
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/gold/Makefile || exit 0; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gold ; \
|
|
$(HOST_EXPORTS) \
|
|
echo Configuring in $(HOST_SUBDIR)/gold; \
|
|
cd "$(HOST_SUBDIR)/gold" || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/gold/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/gold"; \
|
|
libsrcdir="$$s/gold"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
|| exit 1
|
|
@endif gold
|
|
|
|
|
|
|
|
.PHONY: configure-stage1-gold maybe-configure-stage1-gold
|
|
maybe-configure-stage1-gold:
|
|
@if gold-bootstrap
|
|
maybe-configure-stage1-gold: configure-stage1-gold
|
|
configure-stage1-gold:
|
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gold
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
|
test ! -f $(HOST_SUBDIR)/gold/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS)"; export LIBCFLAGS; \
|
|
echo Configuring stage 1 in $(HOST_SUBDIR)/gold ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gold ; \
|
|
cd $(HOST_SUBDIR)/gold || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/gold/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/gold"; \
|
|
libsrcdir="$$s/gold"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
$(STAGE1_CONFIGURE_FLAGS)
|
|
@endif gold-bootstrap
|
|
|
|
.PHONY: configure-stage2-gold maybe-configure-stage2-gold
|
|
maybe-configure-stage2-gold:
|
|
@if gold-bootstrap
|
|
maybe-configure-stage2-gold: configure-stage2-gold
|
|
configure-stage2-gold:
|
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gold
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
|
test ! -f $(HOST_SUBDIR)/gold/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE2_CFLAGS)"; export LIBCFLAGS; \
|
|
echo Configuring stage 2 in $(HOST_SUBDIR)/gold ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gold ; \
|
|
cd $(HOST_SUBDIR)/gold || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/gold/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/gold"; \
|
|
libsrcdir="$$s/gold"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
$(STAGE2_CONFIGURE_FLAGS)
|
|
@endif gold-bootstrap
|
|
|
|
.PHONY: configure-stage3-gold maybe-configure-stage3-gold
|
|
maybe-configure-stage3-gold:
|
|
@if gold-bootstrap
|
|
maybe-configure-stage3-gold: configure-stage3-gold
|
|
configure-stage3-gold:
|
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gold
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
|
test ! -f $(HOST_SUBDIR)/gold/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE3_CFLAGS)"; export LIBCFLAGS; \
|
|
echo Configuring stage 3 in $(HOST_SUBDIR)/gold ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gold ; \
|
|
cd $(HOST_SUBDIR)/gold || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/gold/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/gold"; \
|
|
libsrcdir="$$s/gold"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
$(STAGE3_CONFIGURE_FLAGS)
|
|
@endif gold-bootstrap
|
|
|
|
.PHONY: configure-stage4-gold maybe-configure-stage4-gold
|
|
maybe-configure-stage4-gold:
|
|
@if gold-bootstrap
|
|
maybe-configure-stage4-gold: configure-stage4-gold
|
|
configure-stage4-gold:
|
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gold
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
|
test ! -f $(HOST_SUBDIR)/gold/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE4_CFLAGS)"; export LIBCFLAGS; \
|
|
echo Configuring stage 4 in $(HOST_SUBDIR)/gold ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gold ; \
|
|
cd $(HOST_SUBDIR)/gold || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/gold/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/gold"; \
|
|
libsrcdir="$$s/gold"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
$(STAGE4_CONFIGURE_FLAGS)
|
|
@endif gold-bootstrap
|
|
|
|
.PHONY: configure-stageprofile-gold maybe-configure-stageprofile-gold
|
|
maybe-configure-stageprofile-gold:
|
|
@if gold-bootstrap
|
|
maybe-configure-stageprofile-gold: configure-stageprofile-gold
|
|
configure-stageprofile-gold:
|
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gold
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
|
test ! -f $(HOST_SUBDIR)/gold/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGEprofile_CFLAGS)"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGEprofile_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)"; export LIBCFLAGS; \
|
|
echo Configuring stage profile in $(HOST_SUBDIR)/gold ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gold ; \
|
|
cd $(HOST_SUBDIR)/gold || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/gold/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/gold"; \
|
|
libsrcdir="$$s/gold"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
$(STAGEprofile_CONFIGURE_FLAGS)
|
|
@endif gold-bootstrap
|
|
|
|
.PHONY: configure-stagefeedback-gold maybe-configure-stagefeedback-gold
|
|
maybe-configure-stagefeedback-gold:
|
|
@if gold-bootstrap
|
|
maybe-configure-stagefeedback-gold: configure-stagefeedback-gold
|
|
configure-stagefeedback-gold:
|
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gold
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
|
test ! -f $(HOST_SUBDIR)/gold/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGEfeedback_CFLAGS)"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)"; export LIBCFLAGS; \
|
|
echo Configuring stage feedback in $(HOST_SUBDIR)/gold ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/gold ; \
|
|
cd $(HOST_SUBDIR)/gold || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/gold/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/gold"; \
|
|
libsrcdir="$$s/gold"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
$(STAGEfeedback_CONFIGURE_FLAGS)
|
|
@endif gold-bootstrap
|
|
|
|
|
|
|
|
|
|
|
|
.PHONY: all-gold maybe-all-gold
|
|
maybe-all-gold:
|
|
@if gcc-bootstrap
|
|
all-gold: stage_current
|
|
@endif gcc-bootstrap
|
|
@if gold
|
|
TARGET-gold=all
|
|
maybe-all-gold: all-gold
|
|
all-gold: configure-gold
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
(cd $(HOST_SUBDIR)/gold && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) \
|
|
$(TARGET-gold))
|
|
@endif gold
|
|
|
|
|
|
|
|
.PHONY: all-stage1-gold maybe-all-stage1-gold
|
|
.PHONY: clean-stage1-gold maybe-clean-stage1-gold
|
|
maybe-all-stage1-gold:
|
|
maybe-clean-stage1-gold:
|
|
@if gold-bootstrap
|
|
maybe-all-stage1-gold: all-stage1-gold
|
|
all-stage1: all-stage1-gold
|
|
TARGET-stage1-gold = $(TARGET-gold)
|
|
all-stage1-gold: configure-stage1-gold
|
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
|
$(HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/gold && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE1_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE1_CFLAGS)" \
|
|
LIBCFLAGS="$(LIBCFLAGS)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) \
|
|
TFLAGS="$(STAGE1_TFLAGS)" \
|
|
$(TARGET-stage1-gold)
|
|
|
|
maybe-clean-stage1-gold: clean-stage1-gold
|
|
clean-stage1: clean-stage1-gold
|
|
clean-stage1-gold:
|
|
@if [ $(current_stage) = stage1 ]; then \
|
|
[ -f $(HOST_SUBDIR)/gold/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stage1-gold/Makefile ] || exit 0; \
|
|
$(MAKE) stage1-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/gold && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
clean
|
|
@endif gold-bootstrap
|
|
|
|
|
|
.PHONY: all-stage2-gold maybe-all-stage2-gold
|
|
.PHONY: clean-stage2-gold maybe-clean-stage2-gold
|
|
maybe-all-stage2-gold:
|
|
maybe-clean-stage2-gold:
|
|
@if gold-bootstrap
|
|
maybe-all-stage2-gold: all-stage2-gold
|
|
all-stage2: all-stage2-gold
|
|
TARGET-stage2-gold = $(TARGET-gold)
|
|
all-stage2-gold: configure-stage2-gold
|
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/gold && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE2_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE2_CFLAGS)" \
|
|
LIBCFLAGS="$(STAGE2_CFLAGS)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE2_TFLAGS)" \
|
|
$(TARGET-stage2-gold)
|
|
|
|
maybe-clean-stage2-gold: clean-stage2-gold
|
|
clean-stage2: clean-stage2-gold
|
|
clean-stage2-gold:
|
|
@if [ $(current_stage) = stage2 ]; then \
|
|
[ -f $(HOST_SUBDIR)/gold/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stage2-gold/Makefile ] || exit 0; \
|
|
$(MAKE) stage2-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/gold && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif gold-bootstrap
|
|
|
|
|
|
.PHONY: all-stage3-gold maybe-all-stage3-gold
|
|
.PHONY: clean-stage3-gold maybe-clean-stage3-gold
|
|
maybe-all-stage3-gold:
|
|
maybe-clean-stage3-gold:
|
|
@if gold-bootstrap
|
|
maybe-all-stage3-gold: all-stage3-gold
|
|
all-stage3: all-stage3-gold
|
|
TARGET-stage3-gold = $(TARGET-gold)
|
|
all-stage3-gold: configure-stage3-gold
|
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/gold && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE3_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE3_CFLAGS)" \
|
|
LIBCFLAGS="$(STAGE3_CFLAGS)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE3_TFLAGS)" \
|
|
$(TARGET-stage3-gold)
|
|
|
|
maybe-clean-stage3-gold: clean-stage3-gold
|
|
clean-stage3: clean-stage3-gold
|
|
clean-stage3-gold:
|
|
@if [ $(current_stage) = stage3 ]; then \
|
|
[ -f $(HOST_SUBDIR)/gold/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stage3-gold/Makefile ] || exit 0; \
|
|
$(MAKE) stage3-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/gold && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif gold-bootstrap
|
|
|
|
|
|
.PHONY: all-stage4-gold maybe-all-stage4-gold
|
|
.PHONY: clean-stage4-gold maybe-clean-stage4-gold
|
|
maybe-all-stage4-gold:
|
|
maybe-clean-stage4-gold:
|
|
@if gold-bootstrap
|
|
maybe-all-stage4-gold: all-stage4-gold
|
|
all-stage4: all-stage4-gold
|
|
TARGET-stage4-gold = $(TARGET-gold)
|
|
all-stage4-gold: configure-stage4-gold
|
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/gold && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE4_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE4_CFLAGS)" \
|
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE4_TFLAGS)" \
|
|
$(TARGET-stage4-gold)
|
|
|
|
maybe-clean-stage4-gold: clean-stage4-gold
|
|
clean-stage4: clean-stage4-gold
|
|
clean-stage4-gold:
|
|
@if [ $(current_stage) = stage4 ]; then \
|
|
[ -f $(HOST_SUBDIR)/gold/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stage4-gold/Makefile ] || exit 0; \
|
|
$(MAKE) stage4-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/gold && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif gold-bootstrap
|
|
|
|
|
|
.PHONY: all-stageprofile-gold maybe-all-stageprofile-gold
|
|
.PHONY: clean-stageprofile-gold maybe-clean-stageprofile-gold
|
|
maybe-all-stageprofile-gold:
|
|
maybe-clean-stageprofile-gold:
|
|
@if gold-bootstrap
|
|
maybe-all-stageprofile-gold: all-stageprofile-gold
|
|
all-stageprofile: all-stageprofile-gold
|
|
TARGET-stageprofile-gold = $(TARGET-gold)
|
|
all-stageprofile-gold: configure-stageprofile-gold
|
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/gold && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGEprofile_CFLAGS)" \
|
|
CXXFLAGS="$(STAGEprofile_CFLAGS)" \
|
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)" \
|
|
$(TARGET-stageprofile-gold)
|
|
|
|
maybe-clean-stageprofile-gold: clean-stageprofile-gold
|
|
clean-stageprofile: clean-stageprofile-gold
|
|
clean-stageprofile-gold:
|
|
@if [ $(current_stage) = stageprofile ]; then \
|
|
[ -f $(HOST_SUBDIR)/gold/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageprofile-gold/Makefile ] || exit 0; \
|
|
$(MAKE) stageprofile-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/gold && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif gold-bootstrap
|
|
|
|
|
|
.PHONY: all-stagefeedback-gold maybe-all-stagefeedback-gold
|
|
.PHONY: clean-stagefeedback-gold maybe-clean-stagefeedback-gold
|
|
maybe-all-stagefeedback-gold:
|
|
maybe-clean-stagefeedback-gold:
|
|
@if gold-bootstrap
|
|
maybe-all-stagefeedback-gold: all-stagefeedback-gold
|
|
all-stagefeedback: all-stagefeedback-gold
|
|
TARGET-stagefeedback-gold = $(TARGET-gold)
|
|
all-stagefeedback-gold: configure-stagefeedback-gold
|
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/gold && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGEfeedback_CFLAGS)" \
|
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)" \
|
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)" \
|
|
$(TARGET-stagefeedback-gold)
|
|
|
|
maybe-clean-stagefeedback-gold: clean-stagefeedback-gold
|
|
clean-stagefeedback: clean-stagefeedback-gold
|
|
clean-stagefeedback-gold:
|
|
@if [ $(current_stage) = stagefeedback ]; then \
|
|
[ -f $(HOST_SUBDIR)/gold/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stagefeedback-gold/Makefile ] || exit 0; \
|
|
$(MAKE) stagefeedback-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/gold && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif gold-bootstrap
|
|
|
|
|
|
|
|
|
|
|
|
.PHONY: check-gold maybe-check-gold
|
|
maybe-check-gold:
|
|
@if gold
|
|
maybe-check-gold: check-gold
|
|
|
|
check-gold:
|
|
@: $(MAKE); $(unstage)
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
(cd $(HOST_SUBDIR)/gold && \
|
|
$(MAKE) $(FLAGS_TO_PASS) check)
|
|
|
|
@endif gold
|
|
|
|
.PHONY: install-gold maybe-install-gold
|
|
maybe-install-gold:
|
|
@if gold
|
|
maybe-install-gold: install-gold
|
|
|
|
install-gold: installdirs
|
|
@: $(MAKE); $(unstage)
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
(cd $(HOST_SUBDIR)/gold && \
|
|
$(MAKE) $(FLAGS_TO_PASS) install)
|
|
|
|
@endif gold
|
|
|
|
# Other targets (info, dvi, pdf, etc.)
|
|
|
|
.PHONY: maybe-info-gold info-gold
|
|
maybe-info-gold:
|
|
@if gold
|
|
maybe-info-gold: info-gold
|
|
|
|
info-gold: \
|
|
configure-gold
|
|
@[ -f ./gold/Makefile ] || exit 0; \
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing TAGS in gnuserv" ; \
|
echo "Doing info in gold" ; \
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
(cd $(HOST_SUBDIR)/gold && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
info) \
|
|
|| exit 1
|
|
|
|
@endif gold
|
|
|
|
.PHONY: maybe-dvi-gold dvi-gold
|
|
maybe-dvi-gold:
|
|
@if gold
|
|
maybe-dvi-gold: dvi-gold
|
|
|
|
dvi-gold: \
|
|
configure-gold
|
|
@[ -f ./gold/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing dvi in gold" ; \
|
|
(cd $(HOST_SUBDIR)/gold && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
dvi) \
|
|
|| exit 1
|
|
|
|
@endif gold
|
|
|
|
.PHONY: maybe-pdf-gold pdf-gold
|
|
maybe-pdf-gold:
|
|
@if gold
|
|
maybe-pdf-gold: pdf-gold
|
|
|
|
pdf-gold: \
|
|
configure-gold
|
|
@[ -f ./gold/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing pdf in gold" ; \
|
|
(cd $(HOST_SUBDIR)/gold && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
pdf) \
|
|
|| exit 1
|
|
|
|
@endif gold
|
|
|
|
.PHONY: maybe-html-gold html-gold
|
|
maybe-html-gold:
|
|
@if gold
|
|
maybe-html-gold: html-gold
|
|
|
|
html-gold: \
|
|
configure-gold
|
|
@[ -f ./gold/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing html in gold" ; \
|
|
(cd $(HOST_SUBDIR)/gold && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
html) \
|
|
|| exit 1
|
|
|
|
@endif gold
|
|
|
|
.PHONY: maybe-TAGS-gold TAGS-gold
|
|
maybe-TAGS-gold:
|
|
@if gold
|
|
maybe-TAGS-gold: TAGS-gold
|
|
|
|
TAGS-gold: \
|
|
configure-gold
|
|
@[ -f ./gold/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing TAGS in gold" ; \
|
|
(cd $(HOST_SUBDIR)/gold && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
TAGS) \
|
TAGS) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif gnuserv
|
@endif gold
|
|
|
.PHONY: maybe-install-info-gnuserv install-info-gnuserv
|
.PHONY: maybe-install-info-gold install-info-gold
|
maybe-install-info-gnuserv:
|
maybe-install-info-gold:
|
@if gnuserv
|
@if gold
|
maybe-install-info-gnuserv: install-info-gnuserv
|
maybe-install-info-gold: install-info-gold
|
|
|
install-info-gnuserv: \
|
install-info-gold: \
|
configure-gnuserv \
|
configure-gold \
|
info-gnuserv
|
info-gold
|
@: $(MAKE); $(unstage)
|
@[ -f ./gold/Makefile ] || exit 0; \
|
@[ -f ./gnuserv/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing install-info in gnuserv" ; \
|
echo "Doing install-info in gold" ; \
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
(cd $(HOST_SUBDIR)/gold && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
install-info) \
|
install-info) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif gnuserv
|
@endif gold
|
|
|
.PHONY: maybe-install-pdf-gnuserv install-pdf-gnuserv
|
.PHONY: maybe-install-pdf-gold install-pdf-gold
|
maybe-install-pdf-gnuserv:
|
maybe-install-pdf-gold:
|
@if gnuserv
|
@if gold
|
maybe-install-pdf-gnuserv: install-pdf-gnuserv
|
maybe-install-pdf-gold: install-pdf-gold
|
|
|
install-pdf-gnuserv: \
|
install-pdf-gold: \
|
configure-gnuserv \
|
configure-gold \
|
pdf-gnuserv
|
pdf-gold
|
@: $(MAKE); $(unstage)
|
@[ -f ./gold/Makefile ] || exit 0; \
|
@[ -f ./gnuserv/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing install-pdf in gnuserv" ; \
|
echo "Doing install-pdf in gold" ; \
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
(cd $(HOST_SUBDIR)/gold && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
install-pdf) \
|
install-pdf) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif gnuserv
|
@endif gold
|
|
|
.PHONY: maybe-install-html-gnuserv install-html-gnuserv
|
.PHONY: maybe-install-html-gold install-html-gold
|
maybe-install-html-gnuserv:
|
maybe-install-html-gold:
|
@if gnuserv
|
@if gold
|
maybe-install-html-gnuserv: install-html-gnuserv
|
maybe-install-html-gold: install-html-gold
|
|
|
install-html-gnuserv: \
|
install-html-gold: \
|
configure-gnuserv \
|
configure-gold \
|
html-gnuserv
|
html-gold
|
@: $(MAKE); $(unstage)
|
@[ -f ./gold/Makefile ] || exit 0; \
|
@[ -f ./gnuserv/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing install-html in gnuserv" ; \
|
echo "Doing install-html in gold" ; \
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
(cd $(HOST_SUBDIR)/gold && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
install-html) \
|
install-html) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif gnuserv
|
@endif gold
|
|
|
.PHONY: maybe-installcheck-gnuserv installcheck-gnuserv
|
.PHONY: maybe-installcheck-gold installcheck-gold
|
maybe-installcheck-gnuserv:
|
maybe-installcheck-gold:
|
@if gnuserv
|
@if gold
|
maybe-installcheck-gnuserv: installcheck-gnuserv
|
maybe-installcheck-gold: installcheck-gold
|
|
|
installcheck-gnuserv: \
|
installcheck-gold: \
|
configure-gnuserv
|
configure-gold
|
@: $(MAKE); $(unstage)
|
@[ -f ./gold/Makefile ] || exit 0; \
|
@[ -f ./gnuserv/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing installcheck in gnuserv" ; \
|
echo "Doing installcheck in gold" ; \
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
(cd $(HOST_SUBDIR)/gold && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
installcheck) \
|
installcheck) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif gnuserv
|
@endif gold
|
|
|
.PHONY: maybe-mostlyclean-gnuserv mostlyclean-gnuserv
|
.PHONY: maybe-mostlyclean-gold mostlyclean-gold
|
maybe-mostlyclean-gnuserv:
|
maybe-mostlyclean-gold:
|
@if gnuserv
|
@if gold
|
maybe-mostlyclean-gnuserv: mostlyclean-gnuserv
|
maybe-mostlyclean-gold: mostlyclean-gold
|
|
|
mostlyclean-gnuserv:
|
mostlyclean-gold:
|
@: $(MAKE); $(unstage)
|
@[ -f ./gold/Makefile ] || exit 0; \
|
@[ -f ./gnuserv/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing mostlyclean in gnuserv" ; \
|
echo "Doing mostlyclean in gold" ; \
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
(cd $(HOST_SUBDIR)/gold && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
mostlyclean) \
|
mostlyclean) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif gnuserv
|
@endif gold
|
|
|
.PHONY: maybe-clean-gnuserv clean-gnuserv
|
.PHONY: maybe-clean-gold clean-gold
|
maybe-clean-gnuserv:
|
maybe-clean-gold:
|
@if gnuserv
|
@if gold
|
maybe-clean-gnuserv: clean-gnuserv
|
maybe-clean-gold: clean-gold
|
|
|
clean-gnuserv:
|
clean-gold:
|
@: $(MAKE); $(unstage)
|
@[ -f ./gold/Makefile ] || exit 0; \
|
@[ -f ./gnuserv/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing clean in gnuserv" ; \
|
echo "Doing clean in gold" ; \
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
(cd $(HOST_SUBDIR)/gold && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
clean) \
|
clean) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif gnuserv
|
@endif gold
|
|
|
.PHONY: maybe-distclean-gnuserv distclean-gnuserv
|
.PHONY: maybe-distclean-gold distclean-gold
|
maybe-distclean-gnuserv:
|
maybe-distclean-gold:
|
@if gnuserv
|
@if gold
|
maybe-distclean-gnuserv: distclean-gnuserv
|
maybe-distclean-gold: distclean-gold
|
|
|
distclean-gnuserv:
|
distclean-gold:
|
@: $(MAKE); $(unstage)
|
@[ -f ./gold/Makefile ] || exit 0; \
|
@[ -f ./gnuserv/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing distclean in gnuserv" ; \
|
echo "Doing distclean in gold" ; \
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
(cd $(HOST_SUBDIR)/gold && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
distclean) \
|
distclean) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif gnuserv
|
@endif gold
|
|
|
.PHONY: maybe-maintainer-clean-gnuserv maintainer-clean-gnuserv
|
.PHONY: maybe-maintainer-clean-gold maintainer-clean-gold
|
maybe-maintainer-clean-gnuserv:
|
maybe-maintainer-clean-gold:
|
@if gnuserv
|
@if gold
|
maybe-maintainer-clean-gnuserv: maintainer-clean-gnuserv
|
maybe-maintainer-clean-gold: maintainer-clean-gold
|
|
|
maintainer-clean-gnuserv:
|
maintainer-clean-gold:
|
@: $(MAKE); $(unstage)
|
@[ -f ./gold/Makefile ] || exit 0; \
|
@[ -f ./gnuserv/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing maintainer-clean in gnuserv" ; \
|
echo "Doing maintainer-clean in gold" ; \
|
(cd $(HOST_SUBDIR)/gnuserv && \
|
(cd $(HOST_SUBDIR)/gold && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
maintainer-clean) \
|
maintainer-clean) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif gnuserv
|
@endif gold
|
|
|
|
|
|
|
.PHONY: configure-gprof maybe-configure-gprof
|
.PHONY: configure-gprof maybe-configure-gprof
|
maybe-configure-gprof:
|
maybe-configure-gprof:
|
Line 20041... |
Line 23538... |
configure-stage1-intl:
|
configure-stage1-intl:
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/intl/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/intl/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 1 in $(HOST_SUBDIR)/intl ; \
|
echo Configuring stage 1 in $(HOST_SUBDIR)/intl ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl ; \
|
cd $(HOST_SUBDIR)/intl || exit 1; \
|
cd $(HOST_SUBDIR)/intl || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 20058... |
Line 23557... |
srcdiroption="--srcdir=$${topdir}/intl"; \
|
srcdiroption="--srcdir=$${topdir}/intl"; \
|
libsrcdir="$$s/intl"; \
|
libsrcdir="$$s/intl"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
\
|
$(STAGE1_CONFIGURE_FLAGS)
|
--disable-intermodule $(STAGE1_CHECKING) --disable-coverage --enable-languages="$(STAGE1_LANGUAGES)"
|
|
@endif intl-bootstrap
|
@endif intl-bootstrap
|
|
|
.PHONY: configure-stage2-intl maybe-configure-stage2-intl
|
.PHONY: configure-stage2-intl maybe-configure-stage2-intl
|
maybe-configure-stage2-intl:
|
maybe-configure-stage2-intl:
|
@if intl-bootstrap
|
@if intl-bootstrap
|
Line 20071... |
Line 23569... |
configure-stage2-intl:
|
configure-stage2-intl:
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/intl/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/intl/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE2_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 2 in $(HOST_SUBDIR)/intl ; \
|
echo Configuring stage 2 in $(HOST_SUBDIR)/intl ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl ; \
|
cd $(HOST_SUBDIR)/intl || exit 1; \
|
cd $(HOST_SUBDIR)/intl || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 20090... |
Line 23590... |
libsrcdir="$$s/intl"; \
|
libsrcdir="$$s/intl"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE2_CONFIGURE_FLAGS)
|
@endif intl-bootstrap
|
|
|
|
.PHONY: configure-stageb2g0-intl maybe-configure-stageb2g0-intl
|
|
maybe-configure-stageb2g0-intl:
|
|
@if intl-bootstrap
|
|
maybe-configure-stageb2g0-intl: configure-stageb2g0-intl
|
|
configure-stageb2g0-intl:
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/intl/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE2_CFLAGS) -g0"; export CXXFLAGS; \
|
|
echo Configuring stage b2g0 in $(HOST_SUBDIR)/intl ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl ; \
|
|
cd $(HOST_SUBDIR)/intl || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/intl/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/intl"; \
|
|
libsrcdir="$$s/intl"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@
|
|
@endif intl-bootstrap
|
@endif intl-bootstrap
|
|
|
.PHONY: configure-stage3-intl maybe-configure-stage3-intl
|
.PHONY: configure-stage3-intl maybe-configure-stage3-intl
|
maybe-configure-stage3-intl:
|
maybe-configure-stage3-intl:
|
@if intl-bootstrap
|
@if intl-bootstrap
|
Line 20133... |
Line 23602... |
configure-stage3-intl:
|
configure-stage3-intl:
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/intl/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/intl/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE3_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 3 in $(HOST_SUBDIR)/intl ; \
|
echo Configuring stage 3 in $(HOST_SUBDIR)/intl ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl ; \
|
cd $(HOST_SUBDIR)/intl || exit 1; \
|
cd $(HOST_SUBDIR)/intl || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 20152... |
Line 23623... |
libsrcdir="$$s/intl"; \
|
libsrcdir="$$s/intl"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE3_CONFIGURE_FLAGS)
|
@endif intl-bootstrap
|
|
|
|
.PHONY: configure-stageb3g2-intl maybe-configure-stageb3g2-intl
|
|
maybe-configure-stageb3g2-intl:
|
|
@if intl-bootstrap
|
|
maybe-configure-stageb3g2-intl: configure-stageb3g2-intl
|
|
configure-stageb3g2-intl:
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/intl/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE3_CFLAGS) -g2"; export CXXFLAGS; \
|
|
echo Configuring stage b3g2 in $(HOST_SUBDIR)/intl ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl ; \
|
|
cd $(HOST_SUBDIR)/intl || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/intl/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/intl"; \
|
|
libsrcdir="$$s/intl"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@
|
|
@endif intl-bootstrap
|
@endif intl-bootstrap
|
|
|
.PHONY: configure-stage4-intl maybe-configure-stage4-intl
|
.PHONY: configure-stage4-intl maybe-configure-stage4-intl
|
maybe-configure-stage4-intl:
|
maybe-configure-stage4-intl:
|
@if intl-bootstrap
|
@if intl-bootstrap
|
Line 20195... |
Line 23635... |
configure-stage4-intl:
|
configure-stage4-intl:
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/intl/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/intl/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE4_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 4 in $(HOST_SUBDIR)/intl ; \
|
echo Configuring stage 4 in $(HOST_SUBDIR)/intl ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl ; \
|
cd $(HOST_SUBDIR)/intl || exit 1; \
|
cd $(HOST_SUBDIR)/intl || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 20214... |
Line 23656... |
libsrcdir="$$s/intl"; \
|
libsrcdir="$$s/intl"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE4_CONFIGURE_FLAGS)
|
@endif intl-bootstrap
|
@endif intl-bootstrap
|
|
|
.PHONY: configure-stageprofile-intl maybe-configure-stageprofile-intl
|
.PHONY: configure-stageprofile-intl maybe-configure-stageprofile-intl
|
maybe-configure-stageprofile-intl:
|
maybe-configure-stageprofile-intl:
|
@if intl-bootstrap
|
@if intl-bootstrap
|
Line 20226... |
Line 23668... |
configure-stageprofile-intl:
|
configure-stageprofile-intl:
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/intl/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/intl/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate"; export CFLAGS; \
|
CFLAGS="$(STAGEprofile_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGEprofile_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage profile in $(HOST_SUBDIR)/intl ; \
|
echo Configuring stage profile in $(HOST_SUBDIR)/intl ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl ; \
|
cd $(HOST_SUBDIR)/intl || exit 1; \
|
cd $(HOST_SUBDIR)/intl || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 20245... |
Line 23689... |
libsrcdir="$$s/intl"; \
|
libsrcdir="$$s/intl"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGEprofile_CONFIGURE_FLAGS)
|
@endif intl-bootstrap
|
@endif intl-bootstrap
|
|
|
.PHONY: configure-stagefeedback-intl maybe-configure-stagefeedback-intl
|
.PHONY: configure-stagefeedback-intl maybe-configure-stagefeedback-intl
|
maybe-configure-stagefeedback-intl:
|
maybe-configure-stagefeedback-intl:
|
@if intl-bootstrap
|
@if intl-bootstrap
|
Line 20257... |
Line 23701... |
configure-stagefeedback-intl:
|
configure-stagefeedback-intl:
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/intl/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/intl/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use"; export CFLAGS; \
|
CFLAGS="$(STAGEfeedback_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage feedback in $(HOST_SUBDIR)/intl ; \
|
echo Configuring stage feedback in $(HOST_SUBDIR)/intl ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/intl ; \
|
cd $(HOST_SUBDIR)/intl || exit 1; \
|
cd $(HOST_SUBDIR)/intl || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 20276... |
Line 23722... |
libsrcdir="$$s/intl"; \
|
libsrcdir="$$s/intl"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGEfeedback_CONFIGURE_FLAGS)
|
@endif intl-bootstrap
|
@endif intl-bootstrap
|
|
|
|
|
|
|
|
|
Line 20314... |
Line 23760... |
TARGET-stage1-intl = $(TARGET-intl)
|
TARGET-stage1-intl = $(TARGET-intl)
|
all-stage1-intl: configure-stage1-intl
|
all-stage1-intl: configure-stage1-intl
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/intl && \
|
cd $(HOST_SUBDIR)/intl && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE1_CFLAGS)" CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS="$(STAGE1_CFLAGS)" \
|
LIBCFLAGS="$(STAGE1_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" \
|
LIBCFLAGS="$(LIBCFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) \
|
|
TFLAGS="$(STAGE1_TFLAGS)" \
|
$(TARGET-stage1-intl)
|
$(TARGET-stage1-intl)
|
|
|
maybe-clean-stage1-intl: clean-stage1-intl
|
maybe-clean-stage1-intl: clean-stage1-intl
|
clean-stage1: clean-stage1-intl
|
clean-stage1: clean-stage1-intl
|
clean-stage1-intl:
|
clean-stage1-intl:
|
Line 20350... |
Line 23801... |
TARGET-stage2-intl = $(TARGET-intl)
|
TARGET-stage2-intl = $(TARGET-intl)
|
all-stage2-intl: configure-stage2-intl
|
all-stage2-intl: configure-stage2-intl
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/intl && \
|
cd $(HOST_SUBDIR)/intl && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS)" CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS="$(STAGE2_CFLAGS)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" \
|
LIBCFLAGS="$(STAGE2_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE2_TFLAGS)" \
|
$(TARGET-stage2-intl)
|
$(TARGET-stage2-intl)
|
|
|
maybe-clean-stage2-intl: clean-stage2-intl
|
maybe-clean-stage2-intl: clean-stage2-intl
|
clean-stage2: clean-stage2-intl
|
clean-stage2: clean-stage2-intl
|
clean-stage2-intl:
|
clean-stage2-intl:
|
Line 20376... |
Line 23832... |
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
clean
|
clean
|
@endif intl-bootstrap
|
@endif intl-bootstrap
|
|
|
|
|
.PHONY: all-stageb2g0-intl maybe-all-stageb2g0-intl
|
|
.PHONY: clean-stageb2g0-intl maybe-clean-stageb2g0-intl
|
|
maybe-all-stageb2g0-intl:
|
|
maybe-clean-stageb2g0-intl:
|
|
@if intl-bootstrap
|
|
maybe-all-stageb2g0-intl: all-stageb2g0-intl
|
|
all-stageb2g0: all-stageb2g0-intl
|
|
TARGET-stageb2g0-intl = $(TARGET-intl)
|
|
all-stageb2g0-intl: configure-stageb2g0-intl
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/intl && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0" CXXFLAGS="$(STAGE2_CFLAGS) -g0" \
|
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
$(TARGET-stageb2g0-intl)
|
|
|
|
maybe-clean-stageb2g0-intl: clean-stageb2g0-intl
|
|
clean-stageb2g0: clean-stageb2g0-intl
|
|
clean-stageb2g0-intl:
|
|
@if [ $(current_stage) = stageb2g0 ]; then \
|
|
[ -f $(HOST_SUBDIR)/intl/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageb2g0-intl/Makefile ] || exit 0; \
|
|
$(MAKE) stageb2g0-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/intl && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif intl-bootstrap
|
|
|
|
|
|
.PHONY: all-stage3-intl maybe-all-stage3-intl
|
.PHONY: all-stage3-intl maybe-all-stage3-intl
|
.PHONY: clean-stage3-intl maybe-clean-stage3-intl
|
.PHONY: clean-stage3-intl maybe-clean-stage3-intl
|
maybe-all-stage3-intl:
|
maybe-all-stage3-intl:
|
maybe-clean-stage3-intl:
|
maybe-clean-stage3-intl:
|
@if intl-bootstrap
|
@if intl-bootstrap
|
Line 20426... |
Line 23844... |
TARGET-stage3-intl = $(TARGET-intl)
|
TARGET-stage3-intl = $(TARGET-intl)
|
all-stage3-intl: configure-stage3-intl
|
all-stage3-intl: configure-stage3-intl
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/intl && \
|
cd $(HOST_SUBDIR)/intl && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS)" CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS="$(STAGE3_CFLAGS)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" \
|
LIBCFLAGS="$(STAGE3_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE3_TFLAGS)" \
|
$(TARGET-stage3-intl)
|
$(TARGET-stage3-intl)
|
|
|
maybe-clean-stage3-intl: clean-stage3-intl
|
maybe-clean-stage3-intl: clean-stage3-intl
|
clean-stage3: clean-stage3-intl
|
clean-stage3: clean-stage3-intl
|
clean-stage3-intl:
|
clean-stage3-intl:
|
Line 20452... |
Line 23875... |
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
clean
|
clean
|
@endif intl-bootstrap
|
@endif intl-bootstrap
|
|
|
|
|
.PHONY: all-stageb3g2-intl maybe-all-stageb3g2-intl
|
|
.PHONY: clean-stageb3g2-intl maybe-clean-stageb3g2-intl
|
|
maybe-all-stageb3g2-intl:
|
|
maybe-clean-stageb3g2-intl:
|
|
@if intl-bootstrap
|
|
maybe-all-stageb3g2-intl: all-stageb3g2-intl
|
|
all-stageb3g2: all-stageb3g2-intl
|
|
TARGET-stageb3g2-intl = $(TARGET-intl)
|
|
all-stageb3g2-intl: configure-stageb3g2-intl
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/intl && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2" CXXFLAGS="$(STAGE3_CFLAGS) -g2" \
|
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
$(TARGET-stageb3g2-intl)
|
|
|
|
maybe-clean-stageb3g2-intl: clean-stageb3g2-intl
|
|
clean-stageb3g2: clean-stageb3g2-intl
|
|
clean-stageb3g2-intl:
|
|
@if [ $(current_stage) = stageb3g2 ]; then \
|
|
[ -f $(HOST_SUBDIR)/intl/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageb3g2-intl/Makefile ] || exit 0; \
|
|
$(MAKE) stageb3g2-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/intl && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif intl-bootstrap
|
|
|
|
|
|
.PHONY: all-stage4-intl maybe-all-stage4-intl
|
.PHONY: all-stage4-intl maybe-all-stage4-intl
|
.PHONY: clean-stage4-intl maybe-clean-stage4-intl
|
.PHONY: clean-stage4-intl maybe-clean-stage4-intl
|
maybe-all-stage4-intl:
|
maybe-all-stage4-intl:
|
maybe-clean-stage4-intl:
|
maybe-clean-stage4-intl:
|
@if intl-bootstrap
|
@if intl-bootstrap
|
Line 20502... |
Line 23887... |
TARGET-stage4-intl = $(TARGET-intl)
|
TARGET-stage4-intl = $(TARGET-intl)
|
all-stage4-intl: configure-stage4-intl
|
all-stage4-intl: configure-stage4-intl
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/intl && \
|
cd $(HOST_SUBDIR)/intl && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE4_CFLAGS)" CXXFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS="$(STAGE4_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE4_TFLAGS)" \
|
$(TARGET-stage4-intl)
|
$(TARGET-stage4-intl)
|
|
|
maybe-clean-stage4-intl: clean-stage4-intl
|
maybe-clean-stage4-intl: clean-stage4-intl
|
clean-stage4: clean-stage4-intl
|
clean-stage4: clean-stage4-intl
|
clean-stage4-intl:
|
clean-stage4-intl:
|
Line 20540... |
Line 23930... |
TARGET-stageprofile-intl = $(TARGET-intl)
|
TARGET-stageprofile-intl = $(TARGET-intl)
|
all-stageprofile-intl: configure-stageprofile-intl
|
all-stageprofile-intl: configure-stageprofile-intl
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/intl && \
|
cd $(HOST_SUBDIR)/intl && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" \
|
CFLAGS="$(STAGEprofile_CFLAGS)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
CXXFLAGS="$(STAGEprofile_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)" \
|
$(TARGET-stageprofile-intl)
|
$(TARGET-stageprofile-intl)
|
|
|
maybe-clean-stageprofile-intl: clean-stageprofile-intl
|
maybe-clean-stageprofile-intl: clean-stageprofile-intl
|
clean-stageprofile: clean-stageprofile-intl
|
clean-stageprofile: clean-stageprofile-intl
|
clean-stageprofile-intl:
|
clean-stageprofile-intl:
|
Line 20578... |
Line 23973... |
TARGET-stagefeedback-intl = $(TARGET-intl)
|
TARGET-stagefeedback-intl = $(TARGET-intl)
|
all-stagefeedback-intl: configure-stagefeedback-intl
|
all-stagefeedback-intl: configure-stagefeedback-intl
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/intl && \
|
cd $(HOST_SUBDIR)/intl && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use" CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use" \
|
CFLAGS="$(STAGEfeedback_CFLAGS)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)" \
|
$(TARGET-stagefeedback-intl)
|
$(TARGET-stagefeedback-intl)
|
|
|
maybe-clean-stagefeedback-intl: clean-stagefeedback-intl
|
maybe-clean-stagefeedback-intl: clean-stagefeedback-intl
|
clean-stagefeedback: clean-stagefeedback-intl
|
clean-stagefeedback: clean-stagefeedback-intl
|
clean-stagefeedback-intl:
|
clean-stagefeedback-intl:
|
Line 21839... |
Line 25239... |
configure-stage1-ld:
|
configure-stage1-ld:
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/ld/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/ld/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 1 in $(HOST_SUBDIR)/ld ; \
|
echo Configuring stage 1 in $(HOST_SUBDIR)/ld ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld ; \
|
cd $(HOST_SUBDIR)/ld || exit 1; \
|
cd $(HOST_SUBDIR)/ld || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 21856... |
Line 25258... |
srcdiroption="--srcdir=$${topdir}/ld"; \
|
srcdiroption="--srcdir=$${topdir}/ld"; \
|
libsrcdir="$$s/ld"; \
|
libsrcdir="$$s/ld"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
\
|
$(STAGE1_CONFIGURE_FLAGS)
|
--disable-intermodule $(STAGE1_CHECKING) --disable-coverage --enable-languages="$(STAGE1_LANGUAGES)"
|
|
@endif ld-bootstrap
|
@endif ld-bootstrap
|
|
|
.PHONY: configure-stage2-ld maybe-configure-stage2-ld
|
.PHONY: configure-stage2-ld maybe-configure-stage2-ld
|
maybe-configure-stage2-ld:
|
maybe-configure-stage2-ld:
|
@if ld-bootstrap
|
@if ld-bootstrap
|
Line 21869... |
Line 25270... |
configure-stage2-ld:
|
configure-stage2-ld:
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/ld/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/ld/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE2_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 2 in $(HOST_SUBDIR)/ld ; \
|
echo Configuring stage 2 in $(HOST_SUBDIR)/ld ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld ; \
|
cd $(HOST_SUBDIR)/ld || exit 1; \
|
cd $(HOST_SUBDIR)/ld || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 21888... |
Line 25291... |
libsrcdir="$$s/ld"; \
|
libsrcdir="$$s/ld"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE2_CONFIGURE_FLAGS)
|
@endif ld-bootstrap
|
|
|
|
.PHONY: configure-stageb2g0-ld maybe-configure-stageb2g0-ld
|
|
maybe-configure-stageb2g0-ld:
|
|
@if ld-bootstrap
|
|
maybe-configure-stageb2g0-ld: configure-stageb2g0-ld
|
|
configure-stageb2g0-ld:
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/ld/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE2_CFLAGS) -g0"; export CXXFLAGS; \
|
|
echo Configuring stage b2g0 in $(HOST_SUBDIR)/ld ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld ; \
|
|
cd $(HOST_SUBDIR)/ld || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/ld/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/ld"; \
|
|
libsrcdir="$$s/ld"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@
|
|
@endif ld-bootstrap
|
@endif ld-bootstrap
|
|
|
.PHONY: configure-stage3-ld maybe-configure-stage3-ld
|
.PHONY: configure-stage3-ld maybe-configure-stage3-ld
|
maybe-configure-stage3-ld:
|
maybe-configure-stage3-ld:
|
@if ld-bootstrap
|
@if ld-bootstrap
|
Line 21931... |
Line 25303... |
configure-stage3-ld:
|
configure-stage3-ld:
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/ld/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/ld/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE3_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 3 in $(HOST_SUBDIR)/ld ; \
|
echo Configuring stage 3 in $(HOST_SUBDIR)/ld ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld ; \
|
cd $(HOST_SUBDIR)/ld || exit 1; \
|
cd $(HOST_SUBDIR)/ld || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 21950... |
Line 25324... |
libsrcdir="$$s/ld"; \
|
libsrcdir="$$s/ld"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE3_CONFIGURE_FLAGS)
|
@endif ld-bootstrap
|
|
|
|
.PHONY: configure-stageb3g2-ld maybe-configure-stageb3g2-ld
|
|
maybe-configure-stageb3g2-ld:
|
|
@if ld-bootstrap
|
|
maybe-configure-stageb3g2-ld: configure-stageb3g2-ld
|
|
configure-stageb3g2-ld:
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/ld/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE3_CFLAGS) -g2"; export CXXFLAGS; \
|
|
echo Configuring stage b3g2 in $(HOST_SUBDIR)/ld ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld ; \
|
|
cd $(HOST_SUBDIR)/ld || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/ld/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/ld"; \
|
|
libsrcdir="$$s/ld"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@
|
|
@endif ld-bootstrap
|
@endif ld-bootstrap
|
|
|
.PHONY: configure-stage4-ld maybe-configure-stage4-ld
|
.PHONY: configure-stage4-ld maybe-configure-stage4-ld
|
maybe-configure-stage4-ld:
|
maybe-configure-stage4-ld:
|
@if ld-bootstrap
|
@if ld-bootstrap
|
Line 21993... |
Line 25336... |
configure-stage4-ld:
|
configure-stage4-ld:
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/ld/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/ld/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE4_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 4 in $(HOST_SUBDIR)/ld ; \
|
echo Configuring stage 4 in $(HOST_SUBDIR)/ld ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld ; \
|
cd $(HOST_SUBDIR)/ld || exit 1; \
|
cd $(HOST_SUBDIR)/ld || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 22012... |
Line 25357... |
libsrcdir="$$s/ld"; \
|
libsrcdir="$$s/ld"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE4_CONFIGURE_FLAGS)
|
@endif ld-bootstrap
|
@endif ld-bootstrap
|
|
|
.PHONY: configure-stageprofile-ld maybe-configure-stageprofile-ld
|
.PHONY: configure-stageprofile-ld maybe-configure-stageprofile-ld
|
maybe-configure-stageprofile-ld:
|
maybe-configure-stageprofile-ld:
|
@if ld-bootstrap
|
@if ld-bootstrap
|
Line 22024... |
Line 25369... |
configure-stageprofile-ld:
|
configure-stageprofile-ld:
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/ld/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/ld/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate"; export CFLAGS; \
|
CFLAGS="$(STAGEprofile_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGEprofile_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage profile in $(HOST_SUBDIR)/ld ; \
|
echo Configuring stage profile in $(HOST_SUBDIR)/ld ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld ; \
|
cd $(HOST_SUBDIR)/ld || exit 1; \
|
cd $(HOST_SUBDIR)/ld || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 22043... |
Line 25390... |
libsrcdir="$$s/ld"; \
|
libsrcdir="$$s/ld"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGEprofile_CONFIGURE_FLAGS)
|
@endif ld-bootstrap
|
@endif ld-bootstrap
|
|
|
.PHONY: configure-stagefeedback-ld maybe-configure-stagefeedback-ld
|
.PHONY: configure-stagefeedback-ld maybe-configure-stagefeedback-ld
|
maybe-configure-stagefeedback-ld:
|
maybe-configure-stagefeedback-ld:
|
@if ld-bootstrap
|
@if ld-bootstrap
|
Line 22055... |
Line 25402... |
configure-stagefeedback-ld:
|
configure-stagefeedback-ld:
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/ld/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/ld/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use"; export CFLAGS; \
|
CFLAGS="$(STAGEfeedback_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage feedback in $(HOST_SUBDIR)/ld ; \
|
echo Configuring stage feedback in $(HOST_SUBDIR)/ld ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/ld ; \
|
cd $(HOST_SUBDIR)/ld || exit 1; \
|
cd $(HOST_SUBDIR)/ld || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 22074... |
Line 25423... |
libsrcdir="$$s/ld"; \
|
libsrcdir="$$s/ld"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGEfeedback_CONFIGURE_FLAGS)
|
@endif ld-bootstrap
|
@endif ld-bootstrap
|
|
|
|
|
|
|
|
|
Line 22112... |
Line 25461... |
TARGET-stage1-ld = $(TARGET-ld)
|
TARGET-stage1-ld = $(TARGET-ld)
|
all-stage1-ld: configure-stage1-ld
|
all-stage1-ld: configure-stage1-ld
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/ld && \
|
cd $(HOST_SUBDIR)/ld && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE1_CFLAGS)" CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS="$(STAGE1_CFLAGS)" \
|
LIBCFLAGS="$(STAGE1_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" \
|
LIBCFLAGS="$(LIBCFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) \
|
|
TFLAGS="$(STAGE1_TFLAGS)" \
|
$(TARGET-stage1-ld)
|
$(TARGET-stage1-ld)
|
|
|
maybe-clean-stage1-ld: clean-stage1-ld
|
maybe-clean-stage1-ld: clean-stage1-ld
|
clean-stage1: clean-stage1-ld
|
clean-stage1: clean-stage1-ld
|
clean-stage1-ld:
|
clean-stage1-ld:
|
Line 22148... |
Line 25502... |
TARGET-stage2-ld = $(TARGET-ld)
|
TARGET-stage2-ld = $(TARGET-ld)
|
all-stage2-ld: configure-stage2-ld
|
all-stage2-ld: configure-stage2-ld
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/ld && \
|
cd $(HOST_SUBDIR)/ld && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS)" CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS="$(STAGE2_CFLAGS)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" \
|
LIBCFLAGS="$(STAGE2_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
$(TARGET-stage2-ld)
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
maybe-clean-stage2-ld: clean-stage2-ld
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
clean-stage2: clean-stage2-ld
|
TFLAGS="$(STAGE2_TFLAGS)" \
|
clean-stage2-ld:
|
$(TARGET-stage2-ld)
|
@if [ $(current_stage) = stage2 ]; then \
|
|
[ -f $(HOST_SUBDIR)/ld/Makefile ] || exit 0; \
|
maybe-clean-stage2-ld: clean-stage2-ld
|
else \
|
clean-stage2: clean-stage2-ld
|
[ -f $(HOST_SUBDIR)/stage2-ld/Makefile ] || exit 0; \
|
clean-stage2-ld:
|
$(MAKE) stage2-start; \
|
@if [ $(current_stage) = stage2 ]; then \
|
fi; \
|
|
cd $(HOST_SUBDIR)/ld && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif ld-bootstrap
|
|
|
|
|
|
.PHONY: all-stageb2g0-ld maybe-all-stageb2g0-ld
|
|
.PHONY: clean-stageb2g0-ld maybe-clean-stageb2g0-ld
|
|
maybe-all-stageb2g0-ld:
|
|
maybe-clean-stageb2g0-ld:
|
|
@if ld-bootstrap
|
|
maybe-all-stageb2g0-ld: all-stageb2g0-ld
|
|
all-stageb2g0: all-stageb2g0-ld
|
|
TARGET-stageb2g0-ld = $(TARGET-ld)
|
|
all-stageb2g0-ld: configure-stageb2g0-ld
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/ld && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0" CXXFLAGS="$(STAGE2_CFLAGS) -g0" \
|
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
$(TARGET-stageb2g0-ld)
|
|
|
|
maybe-clean-stageb2g0-ld: clean-stageb2g0-ld
|
|
clean-stageb2g0: clean-stageb2g0-ld
|
|
clean-stageb2g0-ld:
|
|
@if [ $(current_stage) = stageb2g0 ]; then \
|
|
[ -f $(HOST_SUBDIR)/ld/Makefile ] || exit 0; \
|
[ -f $(HOST_SUBDIR)/ld/Makefile ] || exit 0; \
|
else \
|
else \
|
[ -f $(HOST_SUBDIR)/stageb2g0-ld/Makefile ] || exit 0; \
|
[ -f $(HOST_SUBDIR)/stage2-ld/Makefile ] || exit 0; \
|
$(MAKE) stageb2g0-start; \
|
$(MAKE) stage2-start; \
|
fi; \
|
fi; \
|
cd $(HOST_SUBDIR)/ld && \
|
cd $(HOST_SUBDIR)/ld && \
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
clean
|
clean
|
Line 22224... |
Line 25545... |
TARGET-stage3-ld = $(TARGET-ld)
|
TARGET-stage3-ld = $(TARGET-ld)
|
all-stage3-ld: configure-stage3-ld
|
all-stage3-ld: configure-stage3-ld
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/ld && \
|
cd $(HOST_SUBDIR)/ld && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS)" CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS="$(STAGE3_CFLAGS)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" \
|
LIBCFLAGS="$(STAGE3_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE3_TFLAGS)" \
|
$(TARGET-stage3-ld)
|
$(TARGET-stage3-ld)
|
|
|
maybe-clean-stage3-ld: clean-stage3-ld
|
maybe-clean-stage3-ld: clean-stage3-ld
|
clean-stage3: clean-stage3-ld
|
clean-stage3: clean-stage3-ld
|
clean-stage3-ld:
|
clean-stage3-ld:
|
Line 22250... |
Line 25576... |
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
clean
|
clean
|
@endif ld-bootstrap
|
@endif ld-bootstrap
|
|
|
|
|
.PHONY: all-stageb3g2-ld maybe-all-stageb3g2-ld
|
|
.PHONY: clean-stageb3g2-ld maybe-clean-stageb3g2-ld
|
|
maybe-all-stageb3g2-ld:
|
|
maybe-clean-stageb3g2-ld:
|
|
@if ld-bootstrap
|
|
maybe-all-stageb3g2-ld: all-stageb3g2-ld
|
|
all-stageb3g2: all-stageb3g2-ld
|
|
TARGET-stageb3g2-ld = $(TARGET-ld)
|
|
all-stageb3g2-ld: configure-stageb3g2-ld
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/ld && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2" CXXFLAGS="$(STAGE3_CFLAGS) -g2" \
|
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
$(TARGET-stageb3g2-ld)
|
|
|
|
maybe-clean-stageb3g2-ld: clean-stageb3g2-ld
|
|
clean-stageb3g2: clean-stageb3g2-ld
|
|
clean-stageb3g2-ld:
|
|
@if [ $(current_stage) = stageb3g2 ]; then \
|
|
[ -f $(HOST_SUBDIR)/ld/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageb3g2-ld/Makefile ] || exit 0; \
|
|
$(MAKE) stageb3g2-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/ld && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif ld-bootstrap
|
|
|
|
|
|
.PHONY: all-stage4-ld maybe-all-stage4-ld
|
.PHONY: all-stage4-ld maybe-all-stage4-ld
|
.PHONY: clean-stage4-ld maybe-clean-stage4-ld
|
.PHONY: clean-stage4-ld maybe-clean-stage4-ld
|
maybe-all-stage4-ld:
|
maybe-all-stage4-ld:
|
maybe-clean-stage4-ld:
|
maybe-clean-stage4-ld:
|
@if ld-bootstrap
|
@if ld-bootstrap
|
Line 22300... |
Line 25588... |
TARGET-stage4-ld = $(TARGET-ld)
|
TARGET-stage4-ld = $(TARGET-ld)
|
all-stage4-ld: configure-stage4-ld
|
all-stage4-ld: configure-stage4-ld
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/ld && \
|
cd $(HOST_SUBDIR)/ld && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE4_CFLAGS)" CXXFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS="$(STAGE4_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE4_TFLAGS)" \
|
$(TARGET-stage4-ld)
|
$(TARGET-stage4-ld)
|
|
|
maybe-clean-stage4-ld: clean-stage4-ld
|
maybe-clean-stage4-ld: clean-stage4-ld
|
clean-stage4: clean-stage4-ld
|
clean-stage4: clean-stage4-ld
|
clean-stage4-ld:
|
clean-stage4-ld:
|
Line 22338... |
Line 25631... |
TARGET-stageprofile-ld = $(TARGET-ld)
|
TARGET-stageprofile-ld = $(TARGET-ld)
|
all-stageprofile-ld: configure-stageprofile-ld
|
all-stageprofile-ld: configure-stageprofile-ld
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/ld && \
|
cd $(HOST_SUBDIR)/ld && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" \
|
CFLAGS="$(STAGEprofile_CFLAGS)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
CXXFLAGS="$(STAGEprofile_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)" \
|
$(TARGET-stageprofile-ld)
|
$(TARGET-stageprofile-ld)
|
|
|
maybe-clean-stageprofile-ld: clean-stageprofile-ld
|
maybe-clean-stageprofile-ld: clean-stageprofile-ld
|
clean-stageprofile: clean-stageprofile-ld
|
clean-stageprofile: clean-stageprofile-ld
|
clean-stageprofile-ld:
|
clean-stageprofile-ld:
|
Line 22376... |
Line 25674... |
TARGET-stagefeedback-ld = $(TARGET-ld)
|
TARGET-stagefeedback-ld = $(TARGET-ld)
|
all-stagefeedback-ld: configure-stagefeedback-ld
|
all-stagefeedback-ld: configure-stagefeedback-ld
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/ld && \
|
cd $(HOST_SUBDIR)/ld && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use" CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use" \
|
CFLAGS="$(STAGEfeedback_CFLAGS)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)" \
|
$(TARGET-stagefeedback-ld)
|
$(TARGET-stagefeedback-ld)
|
|
|
maybe-clean-stagefeedback-ld: clean-stagefeedback-ld
|
maybe-clean-stagefeedback-ld: clean-stagefeedback-ld
|
clean-stagefeedback: clean-stagefeedback-ld
|
clean-stagefeedback: clean-stagefeedback-ld
|
clean-stagefeedback-ld:
|
clean-stagefeedback-ld:
|
Line 22802... |
Line 26105... |
configure-stage1-libcpp:
|
configure-stage1-libcpp:
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/libcpp/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/libcpp/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 1 in $(HOST_SUBDIR)/libcpp ; \
|
echo Configuring stage 1 in $(HOST_SUBDIR)/libcpp ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp ; \
|
cd $(HOST_SUBDIR)/libcpp || exit 1; \
|
cd $(HOST_SUBDIR)/libcpp || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 22819... |
Line 26124... |
srcdiroption="--srcdir=$${topdir}/libcpp"; \
|
srcdiroption="--srcdir=$${topdir}/libcpp"; \
|
libsrcdir="$$s/libcpp"; \
|
libsrcdir="$$s/libcpp"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
\
|
$(STAGE1_CONFIGURE_FLAGS)
|
--disable-intermodule $(STAGE1_CHECKING) --disable-coverage --enable-languages="$(STAGE1_LANGUAGES)"
|
|
@endif libcpp-bootstrap
|
@endif libcpp-bootstrap
|
|
|
.PHONY: configure-stage2-libcpp maybe-configure-stage2-libcpp
|
.PHONY: configure-stage2-libcpp maybe-configure-stage2-libcpp
|
maybe-configure-stage2-libcpp:
|
maybe-configure-stage2-libcpp:
|
@if libcpp-bootstrap
|
@if libcpp-bootstrap
|
Line 22832... |
Line 26136... |
configure-stage2-libcpp:
|
configure-stage2-libcpp:
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/libcpp/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/libcpp/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE2_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 2 in $(HOST_SUBDIR)/libcpp ; \
|
echo Configuring stage 2 in $(HOST_SUBDIR)/libcpp ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp ; \
|
cd $(HOST_SUBDIR)/libcpp || exit 1; \
|
cd $(HOST_SUBDIR)/libcpp || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 22851... |
Line 26157... |
libsrcdir="$$s/libcpp"; \
|
libsrcdir="$$s/libcpp"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE2_CONFIGURE_FLAGS)
|
@endif libcpp-bootstrap
|
|
|
|
.PHONY: configure-stageb2g0-libcpp maybe-configure-stageb2g0-libcpp
|
|
maybe-configure-stageb2g0-libcpp:
|
|
@if libcpp-bootstrap
|
|
maybe-configure-stageb2g0-libcpp: configure-stageb2g0-libcpp
|
|
configure-stageb2g0-libcpp:
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/libcpp/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE2_CFLAGS) -g0"; export CXXFLAGS; \
|
|
echo Configuring stage b2g0 in $(HOST_SUBDIR)/libcpp ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp ; \
|
|
cd $(HOST_SUBDIR)/libcpp || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/libcpp/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/libcpp"; \
|
|
libsrcdir="$$s/libcpp"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@
|
|
@endif libcpp-bootstrap
|
@endif libcpp-bootstrap
|
|
|
.PHONY: configure-stage3-libcpp maybe-configure-stage3-libcpp
|
.PHONY: configure-stage3-libcpp maybe-configure-stage3-libcpp
|
maybe-configure-stage3-libcpp:
|
maybe-configure-stage3-libcpp:
|
@if libcpp-bootstrap
|
@if libcpp-bootstrap
|
Line 22894... |
Line 26169... |
configure-stage3-libcpp:
|
configure-stage3-libcpp:
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/libcpp/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/libcpp/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE3_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 3 in $(HOST_SUBDIR)/libcpp ; \
|
echo Configuring stage 3 in $(HOST_SUBDIR)/libcpp ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp ; \
|
cd $(HOST_SUBDIR)/libcpp || exit 1; \
|
cd $(HOST_SUBDIR)/libcpp || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 22913... |
Line 26190... |
libsrcdir="$$s/libcpp"; \
|
libsrcdir="$$s/libcpp"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE3_CONFIGURE_FLAGS)
|
@endif libcpp-bootstrap
|
|
|
|
.PHONY: configure-stageb3g2-libcpp maybe-configure-stageb3g2-libcpp
|
|
maybe-configure-stageb3g2-libcpp:
|
|
@if libcpp-bootstrap
|
|
maybe-configure-stageb3g2-libcpp: configure-stageb3g2-libcpp
|
|
configure-stageb3g2-libcpp:
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/libcpp/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE3_CFLAGS) -g2"; export CXXFLAGS; \
|
|
echo Configuring stage b3g2 in $(HOST_SUBDIR)/libcpp ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp ; \
|
|
cd $(HOST_SUBDIR)/libcpp || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/libcpp/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/libcpp"; \
|
|
libsrcdir="$$s/libcpp"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@
|
|
@endif libcpp-bootstrap
|
@endif libcpp-bootstrap
|
|
|
.PHONY: configure-stage4-libcpp maybe-configure-stage4-libcpp
|
.PHONY: configure-stage4-libcpp maybe-configure-stage4-libcpp
|
maybe-configure-stage4-libcpp:
|
maybe-configure-stage4-libcpp:
|
@if libcpp-bootstrap
|
@if libcpp-bootstrap
|
Line 22956... |
Line 26202... |
configure-stage4-libcpp:
|
configure-stage4-libcpp:
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/libcpp/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/libcpp/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE4_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 4 in $(HOST_SUBDIR)/libcpp ; \
|
echo Configuring stage 4 in $(HOST_SUBDIR)/libcpp ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp ; \
|
cd $(HOST_SUBDIR)/libcpp || exit 1; \
|
cd $(HOST_SUBDIR)/libcpp || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 22975... |
Line 26223... |
libsrcdir="$$s/libcpp"; \
|
libsrcdir="$$s/libcpp"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE4_CONFIGURE_FLAGS)
|
@endif libcpp-bootstrap
|
@endif libcpp-bootstrap
|
|
|
.PHONY: configure-stageprofile-libcpp maybe-configure-stageprofile-libcpp
|
.PHONY: configure-stageprofile-libcpp maybe-configure-stageprofile-libcpp
|
maybe-configure-stageprofile-libcpp:
|
maybe-configure-stageprofile-libcpp:
|
@if libcpp-bootstrap
|
@if libcpp-bootstrap
|
Line 22987... |
Line 26235... |
configure-stageprofile-libcpp:
|
configure-stageprofile-libcpp:
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/libcpp/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/libcpp/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate"; export CFLAGS; \
|
CFLAGS="$(STAGEprofile_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGEprofile_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage profile in $(HOST_SUBDIR)/libcpp ; \
|
echo Configuring stage profile in $(HOST_SUBDIR)/libcpp ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp ; \
|
cd $(HOST_SUBDIR)/libcpp || exit 1; \
|
cd $(HOST_SUBDIR)/libcpp || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 23006... |
Line 26256... |
libsrcdir="$$s/libcpp"; \
|
libsrcdir="$$s/libcpp"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGEprofile_CONFIGURE_FLAGS)
|
@endif libcpp-bootstrap
|
@endif libcpp-bootstrap
|
|
|
.PHONY: configure-stagefeedback-libcpp maybe-configure-stagefeedback-libcpp
|
.PHONY: configure-stagefeedback-libcpp maybe-configure-stagefeedback-libcpp
|
maybe-configure-stagefeedback-libcpp:
|
maybe-configure-stagefeedback-libcpp:
|
@if libcpp-bootstrap
|
@if libcpp-bootstrap
|
Line 23018... |
Line 26268... |
configure-stagefeedback-libcpp:
|
configure-stagefeedback-libcpp:
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/libcpp/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/libcpp/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use"; export CFLAGS; \
|
CFLAGS="$(STAGEfeedback_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage feedback in $(HOST_SUBDIR)/libcpp ; \
|
echo Configuring stage feedback in $(HOST_SUBDIR)/libcpp ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libcpp ; \
|
cd $(HOST_SUBDIR)/libcpp || exit 1; \
|
cd $(HOST_SUBDIR)/libcpp || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 23037... |
Line 26289... |
libsrcdir="$$s/libcpp"; \
|
libsrcdir="$$s/libcpp"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGEfeedback_CONFIGURE_FLAGS)
|
@endif libcpp-bootstrap
|
@endif libcpp-bootstrap
|
|
|
|
|
|
|
|
|
Line 23075... |
Line 26327... |
TARGET-stage1-libcpp = $(TARGET-libcpp)
|
TARGET-stage1-libcpp = $(TARGET-libcpp)
|
all-stage1-libcpp: configure-stage1-libcpp
|
all-stage1-libcpp: configure-stage1-libcpp
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/libcpp && \
|
cd $(HOST_SUBDIR)/libcpp && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE1_CFLAGS)" CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS="$(STAGE1_CFLAGS)" \
|
LIBCFLAGS="$(STAGE1_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" \
|
LIBCFLAGS="$(LIBCFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) \
|
|
TFLAGS="$(STAGE1_TFLAGS)" \
|
$(TARGET-stage1-libcpp)
|
$(TARGET-stage1-libcpp)
|
|
|
maybe-clean-stage1-libcpp: clean-stage1-libcpp
|
maybe-clean-stage1-libcpp: clean-stage1-libcpp
|
clean-stage1: clean-stage1-libcpp
|
clean-stage1: clean-stage1-libcpp
|
clean-stage1-libcpp:
|
clean-stage1-libcpp:
|
Line 23111... |
Line 26368... |
TARGET-stage2-libcpp = $(TARGET-libcpp)
|
TARGET-stage2-libcpp = $(TARGET-libcpp)
|
all-stage2-libcpp: configure-stage2-libcpp
|
all-stage2-libcpp: configure-stage2-libcpp
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/libcpp && \
|
cd $(HOST_SUBDIR)/libcpp && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS)" CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS="$(STAGE2_CFLAGS)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" \
|
LIBCFLAGS="$(STAGE2_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE2_TFLAGS)" \
|
$(TARGET-stage2-libcpp)
|
$(TARGET-stage2-libcpp)
|
|
|
maybe-clean-stage2-libcpp: clean-stage2-libcpp
|
maybe-clean-stage2-libcpp: clean-stage2-libcpp
|
clean-stage2: clean-stage2-libcpp
|
clean-stage2: clean-stage2-libcpp
|
clean-stage2-libcpp:
|
clean-stage2-libcpp:
|
Line 23137... |
Line 26399... |
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
clean
|
clean
|
@endif libcpp-bootstrap
|
@endif libcpp-bootstrap
|
|
|
|
|
.PHONY: all-stageb2g0-libcpp maybe-all-stageb2g0-libcpp
|
|
.PHONY: clean-stageb2g0-libcpp maybe-clean-stageb2g0-libcpp
|
|
maybe-all-stageb2g0-libcpp:
|
|
maybe-clean-stageb2g0-libcpp:
|
|
@if libcpp-bootstrap
|
|
maybe-all-stageb2g0-libcpp: all-stageb2g0-libcpp
|
|
all-stageb2g0: all-stageb2g0-libcpp
|
|
TARGET-stageb2g0-libcpp = $(TARGET-libcpp)
|
|
all-stageb2g0-libcpp: configure-stageb2g0-libcpp
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/libcpp && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0" CXXFLAGS="$(STAGE2_CFLAGS) -g0" \
|
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
$(TARGET-stageb2g0-libcpp)
|
|
|
|
maybe-clean-stageb2g0-libcpp: clean-stageb2g0-libcpp
|
|
clean-stageb2g0: clean-stageb2g0-libcpp
|
|
clean-stageb2g0-libcpp:
|
|
@if [ $(current_stage) = stageb2g0 ]; then \
|
|
[ -f $(HOST_SUBDIR)/libcpp/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageb2g0-libcpp/Makefile ] || exit 0; \
|
|
$(MAKE) stageb2g0-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/libcpp && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif libcpp-bootstrap
|
|
|
|
|
|
.PHONY: all-stage3-libcpp maybe-all-stage3-libcpp
|
.PHONY: all-stage3-libcpp maybe-all-stage3-libcpp
|
.PHONY: clean-stage3-libcpp maybe-clean-stage3-libcpp
|
.PHONY: clean-stage3-libcpp maybe-clean-stage3-libcpp
|
maybe-all-stage3-libcpp:
|
maybe-all-stage3-libcpp:
|
maybe-clean-stage3-libcpp:
|
maybe-clean-stage3-libcpp:
|
@if libcpp-bootstrap
|
@if libcpp-bootstrap
|
Line 23187... |
Line 26411... |
TARGET-stage3-libcpp = $(TARGET-libcpp)
|
TARGET-stage3-libcpp = $(TARGET-libcpp)
|
all-stage3-libcpp: configure-stage3-libcpp
|
all-stage3-libcpp: configure-stage3-libcpp
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/libcpp && \
|
cd $(HOST_SUBDIR)/libcpp && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS)" CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS="$(STAGE3_CFLAGS)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" \
|
LIBCFLAGS="$(STAGE3_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE3_TFLAGS)" \
|
$(TARGET-stage3-libcpp)
|
$(TARGET-stage3-libcpp)
|
|
|
maybe-clean-stage3-libcpp: clean-stage3-libcpp
|
maybe-clean-stage3-libcpp: clean-stage3-libcpp
|
clean-stage3: clean-stage3-libcpp
|
clean-stage3: clean-stage3-libcpp
|
clean-stage3-libcpp:
|
clean-stage3-libcpp:
|
Line 23213... |
Line 26442... |
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
clean
|
clean
|
@endif libcpp-bootstrap
|
@endif libcpp-bootstrap
|
|
|
|
|
.PHONY: all-stageb3g2-libcpp maybe-all-stageb3g2-libcpp
|
|
.PHONY: clean-stageb3g2-libcpp maybe-clean-stageb3g2-libcpp
|
|
maybe-all-stageb3g2-libcpp:
|
|
maybe-clean-stageb3g2-libcpp:
|
|
@if libcpp-bootstrap
|
|
maybe-all-stageb3g2-libcpp: all-stageb3g2-libcpp
|
|
all-stageb3g2: all-stageb3g2-libcpp
|
|
TARGET-stageb3g2-libcpp = $(TARGET-libcpp)
|
|
all-stageb3g2-libcpp: configure-stageb3g2-libcpp
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/libcpp && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2" CXXFLAGS="$(STAGE3_CFLAGS) -g2" \
|
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
$(TARGET-stageb3g2-libcpp)
|
|
|
|
maybe-clean-stageb3g2-libcpp: clean-stageb3g2-libcpp
|
|
clean-stageb3g2: clean-stageb3g2-libcpp
|
|
clean-stageb3g2-libcpp:
|
|
@if [ $(current_stage) = stageb3g2 ]; then \
|
|
[ -f $(HOST_SUBDIR)/libcpp/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageb3g2-libcpp/Makefile ] || exit 0; \
|
|
$(MAKE) stageb3g2-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/libcpp && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif libcpp-bootstrap
|
|
|
|
|
|
.PHONY: all-stage4-libcpp maybe-all-stage4-libcpp
|
.PHONY: all-stage4-libcpp maybe-all-stage4-libcpp
|
.PHONY: clean-stage4-libcpp maybe-clean-stage4-libcpp
|
.PHONY: clean-stage4-libcpp maybe-clean-stage4-libcpp
|
maybe-all-stage4-libcpp:
|
maybe-all-stage4-libcpp:
|
maybe-clean-stage4-libcpp:
|
maybe-clean-stage4-libcpp:
|
@if libcpp-bootstrap
|
@if libcpp-bootstrap
|
Line 23263... |
Line 26454... |
TARGET-stage4-libcpp = $(TARGET-libcpp)
|
TARGET-stage4-libcpp = $(TARGET-libcpp)
|
all-stage4-libcpp: configure-stage4-libcpp
|
all-stage4-libcpp: configure-stage4-libcpp
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/libcpp && \
|
cd $(HOST_SUBDIR)/libcpp && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE4_CFLAGS)" CXXFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS="$(STAGE4_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE4_TFLAGS)" \
|
$(TARGET-stage4-libcpp)
|
$(TARGET-stage4-libcpp)
|
|
|
maybe-clean-stage4-libcpp: clean-stage4-libcpp
|
maybe-clean-stage4-libcpp: clean-stage4-libcpp
|
clean-stage4: clean-stage4-libcpp
|
clean-stage4: clean-stage4-libcpp
|
clean-stage4-libcpp:
|
clean-stage4-libcpp:
|
Line 23301... |
Line 26497... |
TARGET-stageprofile-libcpp = $(TARGET-libcpp)
|
TARGET-stageprofile-libcpp = $(TARGET-libcpp)
|
all-stageprofile-libcpp: configure-stageprofile-libcpp
|
all-stageprofile-libcpp: configure-stageprofile-libcpp
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/libcpp && \
|
cd $(HOST_SUBDIR)/libcpp && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" \
|
CFLAGS="$(STAGEprofile_CFLAGS)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
CXXFLAGS="$(STAGEprofile_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)" \
|
$(TARGET-stageprofile-libcpp)
|
$(TARGET-stageprofile-libcpp)
|
|
|
maybe-clean-stageprofile-libcpp: clean-stageprofile-libcpp
|
maybe-clean-stageprofile-libcpp: clean-stageprofile-libcpp
|
clean-stageprofile: clean-stageprofile-libcpp
|
clean-stageprofile: clean-stageprofile-libcpp
|
clean-stageprofile-libcpp:
|
clean-stageprofile-libcpp:
|
Line 23339... |
Line 26540... |
TARGET-stagefeedback-libcpp = $(TARGET-libcpp)
|
TARGET-stagefeedback-libcpp = $(TARGET-libcpp)
|
all-stagefeedback-libcpp: configure-stagefeedback-libcpp
|
all-stagefeedback-libcpp: configure-stagefeedback-libcpp
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/libcpp && \
|
cd $(HOST_SUBDIR)/libcpp && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use" CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use" \
|
CFLAGS="$(STAGEfeedback_CFLAGS)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)" \
|
$(TARGET-stagefeedback-libcpp)
|
$(TARGET-stagefeedback-libcpp)
|
|
|
maybe-clean-stagefeedback-libcpp: clean-stagefeedback-libcpp
|
maybe-clean-stagefeedback-libcpp: clean-stagefeedback-libcpp
|
clean-stagefeedback: clean-stagefeedback-libcpp
|
clean-stagefeedback: clean-stagefeedback-libcpp
|
clean-stagefeedback-libcpp:
|
clean-stagefeedback-libcpp:
|
Line 23765... |
Line 26971... |
configure-stage1-libdecnumber:
|
configure-stage1-libdecnumber:
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/libdecnumber/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/libdecnumber/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 1 in $(HOST_SUBDIR)/libdecnumber ; \
|
echo Configuring stage 1 in $(HOST_SUBDIR)/libdecnumber ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber ; \
|
cd $(HOST_SUBDIR)/libdecnumber || exit 1; \
|
cd $(HOST_SUBDIR)/libdecnumber || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 23782... |
Line 26990... |
srcdiroption="--srcdir=$${topdir}/libdecnumber"; \
|
srcdiroption="--srcdir=$${topdir}/libdecnumber"; \
|
libsrcdir="$$s/libdecnumber"; \
|
libsrcdir="$$s/libdecnumber"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
\
|
$(STAGE1_CONFIGURE_FLAGS)
|
--disable-intermodule $(STAGE1_CHECKING) --disable-coverage --enable-languages="$(STAGE1_LANGUAGES)"
|
|
@endif libdecnumber-bootstrap
|
@endif libdecnumber-bootstrap
|
|
|
.PHONY: configure-stage2-libdecnumber maybe-configure-stage2-libdecnumber
|
.PHONY: configure-stage2-libdecnumber maybe-configure-stage2-libdecnumber
|
maybe-configure-stage2-libdecnumber:
|
maybe-configure-stage2-libdecnumber:
|
@if libdecnumber-bootstrap
|
@if libdecnumber-bootstrap
|
Line 23795... |
Line 27002... |
configure-stage2-libdecnumber:
|
configure-stage2-libdecnumber:
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/libdecnumber/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/libdecnumber/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE2_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 2 in $(HOST_SUBDIR)/libdecnumber ; \
|
echo Configuring stage 2 in $(HOST_SUBDIR)/libdecnumber ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber ; \
|
cd $(HOST_SUBDIR)/libdecnumber || exit 1; \
|
cd $(HOST_SUBDIR)/libdecnumber || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 23814... |
Line 27023... |
libsrcdir="$$s/libdecnumber"; \
|
libsrcdir="$$s/libdecnumber"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE2_CONFIGURE_FLAGS)
|
@endif libdecnumber-bootstrap
|
|
|
|
.PHONY: configure-stageb2g0-libdecnumber maybe-configure-stageb2g0-libdecnumber
|
|
maybe-configure-stageb2g0-libdecnumber:
|
|
@if libdecnumber-bootstrap
|
|
maybe-configure-stageb2g0-libdecnumber: configure-stageb2g0-libdecnumber
|
|
configure-stageb2g0-libdecnumber:
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/libdecnumber/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE2_CFLAGS) -g0"; export CXXFLAGS; \
|
|
echo Configuring stage b2g0 in $(HOST_SUBDIR)/libdecnumber ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber ; \
|
|
cd $(HOST_SUBDIR)/libdecnumber || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/libdecnumber/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/libdecnumber"; \
|
|
libsrcdir="$$s/libdecnumber"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@
|
|
@endif libdecnumber-bootstrap
|
@endif libdecnumber-bootstrap
|
|
|
.PHONY: configure-stage3-libdecnumber maybe-configure-stage3-libdecnumber
|
.PHONY: configure-stage3-libdecnumber maybe-configure-stage3-libdecnumber
|
maybe-configure-stage3-libdecnumber:
|
maybe-configure-stage3-libdecnumber:
|
@if libdecnumber-bootstrap
|
@if libdecnumber-bootstrap
|
Line 23857... |
Line 27035... |
configure-stage3-libdecnumber:
|
configure-stage3-libdecnumber:
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/libdecnumber/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/libdecnumber/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE3_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 3 in $(HOST_SUBDIR)/libdecnumber ; \
|
echo Configuring stage 3 in $(HOST_SUBDIR)/libdecnumber ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber ; \
|
cd $(HOST_SUBDIR)/libdecnumber || exit 1; \
|
cd $(HOST_SUBDIR)/libdecnumber || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 23876... |
Line 27056... |
libsrcdir="$$s/libdecnumber"; \
|
libsrcdir="$$s/libdecnumber"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE3_CONFIGURE_FLAGS)
|
@endif libdecnumber-bootstrap
|
|
|
|
.PHONY: configure-stageb3g2-libdecnumber maybe-configure-stageb3g2-libdecnumber
|
|
maybe-configure-stageb3g2-libdecnumber:
|
|
@if libdecnumber-bootstrap
|
|
maybe-configure-stageb3g2-libdecnumber: configure-stageb3g2-libdecnumber
|
|
configure-stageb3g2-libdecnumber:
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/libdecnumber/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE3_CFLAGS) -g2"; export CXXFLAGS; \
|
|
echo Configuring stage b3g2 in $(HOST_SUBDIR)/libdecnumber ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber ; \
|
|
cd $(HOST_SUBDIR)/libdecnumber || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/libdecnumber/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/libdecnumber"; \
|
|
libsrcdir="$$s/libdecnumber"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@
|
|
@endif libdecnumber-bootstrap
|
@endif libdecnumber-bootstrap
|
|
|
.PHONY: configure-stage4-libdecnumber maybe-configure-stage4-libdecnumber
|
.PHONY: configure-stage4-libdecnumber maybe-configure-stage4-libdecnumber
|
maybe-configure-stage4-libdecnumber:
|
maybe-configure-stage4-libdecnumber:
|
@if libdecnumber-bootstrap
|
@if libdecnumber-bootstrap
|
Line 23919... |
Line 27068... |
configure-stage4-libdecnumber:
|
configure-stage4-libdecnumber:
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/libdecnumber/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/libdecnumber/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE4_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 4 in $(HOST_SUBDIR)/libdecnumber ; \
|
echo Configuring stage 4 in $(HOST_SUBDIR)/libdecnumber ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber ; \
|
cd $(HOST_SUBDIR)/libdecnumber || exit 1; \
|
cd $(HOST_SUBDIR)/libdecnumber || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 23938... |
Line 27089... |
libsrcdir="$$s/libdecnumber"; \
|
libsrcdir="$$s/libdecnumber"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE4_CONFIGURE_FLAGS)
|
@endif libdecnumber-bootstrap
|
@endif libdecnumber-bootstrap
|
|
|
.PHONY: configure-stageprofile-libdecnumber maybe-configure-stageprofile-libdecnumber
|
.PHONY: configure-stageprofile-libdecnumber maybe-configure-stageprofile-libdecnumber
|
maybe-configure-stageprofile-libdecnumber:
|
maybe-configure-stageprofile-libdecnumber:
|
@if libdecnumber-bootstrap
|
@if libdecnumber-bootstrap
|
Line 23950... |
Line 27101... |
configure-stageprofile-libdecnumber:
|
configure-stageprofile-libdecnumber:
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/libdecnumber/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/libdecnumber/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate"; export CFLAGS; \
|
CFLAGS="$(STAGEprofile_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGEprofile_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage profile in $(HOST_SUBDIR)/libdecnumber ; \
|
echo Configuring stage profile in $(HOST_SUBDIR)/libdecnumber ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber ; \
|
cd $(HOST_SUBDIR)/libdecnumber || exit 1; \
|
cd $(HOST_SUBDIR)/libdecnumber || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 23969... |
Line 27122... |
libsrcdir="$$s/libdecnumber"; \
|
libsrcdir="$$s/libdecnumber"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGEprofile_CONFIGURE_FLAGS)
|
@endif libdecnumber-bootstrap
|
@endif libdecnumber-bootstrap
|
|
|
.PHONY: configure-stagefeedback-libdecnumber maybe-configure-stagefeedback-libdecnumber
|
.PHONY: configure-stagefeedback-libdecnumber maybe-configure-stagefeedback-libdecnumber
|
maybe-configure-stagefeedback-libdecnumber:
|
maybe-configure-stagefeedback-libdecnumber:
|
@if libdecnumber-bootstrap
|
@if libdecnumber-bootstrap
|
Line 23981... |
Line 27134... |
configure-stagefeedback-libdecnumber:
|
configure-stagefeedback-libdecnumber:
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/libdecnumber/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/libdecnumber/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use"; export CFLAGS; \
|
CFLAGS="$(STAGEfeedback_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage feedback in $(HOST_SUBDIR)/libdecnumber ; \
|
echo Configuring stage feedback in $(HOST_SUBDIR)/libdecnumber ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libdecnumber ; \
|
cd $(HOST_SUBDIR)/libdecnumber || exit 1; \
|
cd $(HOST_SUBDIR)/libdecnumber || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 24000... |
Line 27155... |
libsrcdir="$$s/libdecnumber"; \
|
libsrcdir="$$s/libdecnumber"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGEfeedback_CONFIGURE_FLAGS)
|
@endif libdecnumber-bootstrap
|
@endif libdecnumber-bootstrap
|
|
|
|
|
|
|
|
|
Line 24038... |
Line 27193... |
TARGET-stage1-libdecnumber = $(TARGET-libdecnumber)
|
TARGET-stage1-libdecnumber = $(TARGET-libdecnumber)
|
all-stage1-libdecnumber: configure-stage1-libdecnumber
|
all-stage1-libdecnumber: configure-stage1-libdecnumber
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/libdecnumber && \
|
cd $(HOST_SUBDIR)/libdecnumber && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE1_CFLAGS)" CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS="$(STAGE1_CFLAGS)" \
|
LIBCFLAGS="$(STAGE1_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" \
|
LIBCFLAGS="$(LIBCFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) \
|
|
TFLAGS="$(STAGE1_TFLAGS)" \
|
$(TARGET-stage1-libdecnumber)
|
$(TARGET-stage1-libdecnumber)
|
|
|
maybe-clean-stage1-libdecnumber: clean-stage1-libdecnumber
|
maybe-clean-stage1-libdecnumber: clean-stage1-libdecnumber
|
clean-stage1: clean-stage1-libdecnumber
|
clean-stage1: clean-stage1-libdecnumber
|
clean-stage1-libdecnumber:
|
clean-stage1-libdecnumber:
|
Line 24074... |
Line 27234... |
TARGET-stage2-libdecnumber = $(TARGET-libdecnumber)
|
TARGET-stage2-libdecnumber = $(TARGET-libdecnumber)
|
all-stage2-libdecnumber: configure-stage2-libdecnumber
|
all-stage2-libdecnumber: configure-stage2-libdecnumber
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/libdecnumber && \
|
cd $(HOST_SUBDIR)/libdecnumber && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS)" CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS="$(STAGE2_CFLAGS)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" \
|
LIBCFLAGS="$(STAGE2_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE2_TFLAGS)" \
|
$(TARGET-stage2-libdecnumber)
|
$(TARGET-stage2-libdecnumber)
|
|
|
maybe-clean-stage2-libdecnumber: clean-stage2-libdecnumber
|
maybe-clean-stage2-libdecnumber: clean-stage2-libdecnumber
|
clean-stage2: clean-stage2-libdecnumber
|
clean-stage2: clean-stage2-libdecnumber
|
clean-stage2-libdecnumber:
|
clean-stage2-libdecnumber:
|
Line 24100... |
Line 27265... |
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
clean
|
clean
|
@endif libdecnumber-bootstrap
|
@endif libdecnumber-bootstrap
|
|
|
|
|
.PHONY: all-stageb2g0-libdecnumber maybe-all-stageb2g0-libdecnumber
|
|
.PHONY: clean-stageb2g0-libdecnumber maybe-clean-stageb2g0-libdecnumber
|
|
maybe-all-stageb2g0-libdecnumber:
|
|
maybe-clean-stageb2g0-libdecnumber:
|
|
@if libdecnumber-bootstrap
|
|
maybe-all-stageb2g0-libdecnumber: all-stageb2g0-libdecnumber
|
|
all-stageb2g0: all-stageb2g0-libdecnumber
|
|
TARGET-stageb2g0-libdecnumber = $(TARGET-libdecnumber)
|
|
all-stageb2g0-libdecnumber: configure-stageb2g0-libdecnumber
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/libdecnumber && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0" CXXFLAGS="$(STAGE2_CFLAGS) -g0" \
|
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
$(TARGET-stageb2g0-libdecnumber)
|
|
|
|
maybe-clean-stageb2g0-libdecnumber: clean-stageb2g0-libdecnumber
|
|
clean-stageb2g0: clean-stageb2g0-libdecnumber
|
|
clean-stageb2g0-libdecnumber:
|
|
@if [ $(current_stage) = stageb2g0 ]; then \
|
|
[ -f $(HOST_SUBDIR)/libdecnumber/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageb2g0-libdecnumber/Makefile ] || exit 0; \
|
|
$(MAKE) stageb2g0-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/libdecnumber && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif libdecnumber-bootstrap
|
|
|
|
|
|
.PHONY: all-stage3-libdecnumber maybe-all-stage3-libdecnumber
|
.PHONY: all-stage3-libdecnumber maybe-all-stage3-libdecnumber
|
.PHONY: clean-stage3-libdecnumber maybe-clean-stage3-libdecnumber
|
.PHONY: clean-stage3-libdecnumber maybe-clean-stage3-libdecnumber
|
maybe-all-stage3-libdecnumber:
|
maybe-all-stage3-libdecnumber:
|
maybe-clean-stage3-libdecnumber:
|
maybe-clean-stage3-libdecnumber:
|
@if libdecnumber-bootstrap
|
@if libdecnumber-bootstrap
|
Line 24150... |
Line 27277... |
TARGET-stage3-libdecnumber = $(TARGET-libdecnumber)
|
TARGET-stage3-libdecnumber = $(TARGET-libdecnumber)
|
all-stage3-libdecnumber: configure-stage3-libdecnumber
|
all-stage3-libdecnumber: configure-stage3-libdecnumber
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/libdecnumber && \
|
cd $(HOST_SUBDIR)/libdecnumber && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS)" CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS="$(STAGE3_CFLAGS)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" \
|
LIBCFLAGS="$(STAGE3_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE3_TFLAGS)" \
|
$(TARGET-stage3-libdecnumber)
|
$(TARGET-stage3-libdecnumber)
|
|
|
maybe-clean-stage3-libdecnumber: clean-stage3-libdecnumber
|
maybe-clean-stage3-libdecnumber: clean-stage3-libdecnumber
|
clean-stage3: clean-stage3-libdecnumber
|
clean-stage3: clean-stage3-libdecnumber
|
clean-stage3-libdecnumber:
|
clean-stage3-libdecnumber:
|
Line 24176... |
Line 27308... |
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
clean
|
clean
|
@endif libdecnumber-bootstrap
|
@endif libdecnumber-bootstrap
|
|
|
|
|
.PHONY: all-stageb3g2-libdecnumber maybe-all-stageb3g2-libdecnumber
|
|
.PHONY: clean-stageb3g2-libdecnumber maybe-clean-stageb3g2-libdecnumber
|
|
maybe-all-stageb3g2-libdecnumber:
|
|
maybe-clean-stageb3g2-libdecnumber:
|
|
@if libdecnumber-bootstrap
|
|
maybe-all-stageb3g2-libdecnumber: all-stageb3g2-libdecnumber
|
|
all-stageb3g2: all-stageb3g2-libdecnumber
|
|
TARGET-stageb3g2-libdecnumber = $(TARGET-libdecnumber)
|
|
all-stageb3g2-libdecnumber: configure-stageb3g2-libdecnumber
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/libdecnumber && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2" CXXFLAGS="$(STAGE3_CFLAGS) -g2" \
|
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
$(TARGET-stageb3g2-libdecnumber)
|
|
|
|
maybe-clean-stageb3g2-libdecnumber: clean-stageb3g2-libdecnumber
|
|
clean-stageb3g2: clean-stageb3g2-libdecnumber
|
|
clean-stageb3g2-libdecnumber:
|
|
@if [ $(current_stage) = stageb3g2 ]; then \
|
|
[ -f $(HOST_SUBDIR)/libdecnumber/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageb3g2-libdecnumber/Makefile ] || exit 0; \
|
|
$(MAKE) stageb3g2-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/libdecnumber && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif libdecnumber-bootstrap
|
|
|
|
|
|
.PHONY: all-stage4-libdecnumber maybe-all-stage4-libdecnumber
|
.PHONY: all-stage4-libdecnumber maybe-all-stage4-libdecnumber
|
.PHONY: clean-stage4-libdecnumber maybe-clean-stage4-libdecnumber
|
.PHONY: clean-stage4-libdecnumber maybe-clean-stage4-libdecnumber
|
maybe-all-stage4-libdecnumber:
|
maybe-all-stage4-libdecnumber:
|
maybe-clean-stage4-libdecnumber:
|
maybe-clean-stage4-libdecnumber:
|
@if libdecnumber-bootstrap
|
@if libdecnumber-bootstrap
|
Line 24226... |
Line 27320... |
TARGET-stage4-libdecnumber = $(TARGET-libdecnumber)
|
TARGET-stage4-libdecnumber = $(TARGET-libdecnumber)
|
all-stage4-libdecnumber: configure-stage4-libdecnumber
|
all-stage4-libdecnumber: configure-stage4-libdecnumber
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/libdecnumber && \
|
cd $(HOST_SUBDIR)/libdecnumber && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE4_CFLAGS)" CXXFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS="$(STAGE4_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE4_TFLAGS)" \
|
$(TARGET-stage4-libdecnumber)
|
$(TARGET-stage4-libdecnumber)
|
|
|
maybe-clean-stage4-libdecnumber: clean-stage4-libdecnumber
|
maybe-clean-stage4-libdecnumber: clean-stage4-libdecnumber
|
clean-stage4: clean-stage4-libdecnumber
|
clean-stage4: clean-stage4-libdecnumber
|
clean-stage4-libdecnumber:
|
clean-stage4-libdecnumber:
|
Line 24264... |
Line 27363... |
TARGET-stageprofile-libdecnumber = $(TARGET-libdecnumber)
|
TARGET-stageprofile-libdecnumber = $(TARGET-libdecnumber)
|
all-stageprofile-libdecnumber: configure-stageprofile-libdecnumber
|
all-stageprofile-libdecnumber: configure-stageprofile-libdecnumber
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/libdecnumber && \
|
cd $(HOST_SUBDIR)/libdecnumber && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" \
|
CFLAGS="$(STAGEprofile_CFLAGS)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
CXXFLAGS="$(STAGEprofile_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)" \
|
$(TARGET-stageprofile-libdecnumber)
|
$(TARGET-stageprofile-libdecnumber)
|
|
|
maybe-clean-stageprofile-libdecnumber: clean-stageprofile-libdecnumber
|
maybe-clean-stageprofile-libdecnumber: clean-stageprofile-libdecnumber
|
clean-stageprofile: clean-stageprofile-libdecnumber
|
clean-stageprofile: clean-stageprofile-libdecnumber
|
clean-stageprofile-libdecnumber:
|
clean-stageprofile-libdecnumber:
|
Line 24302... |
Line 27406... |
TARGET-stagefeedback-libdecnumber = $(TARGET-libdecnumber)
|
TARGET-stagefeedback-libdecnumber = $(TARGET-libdecnumber)
|
all-stagefeedback-libdecnumber: configure-stagefeedback-libdecnumber
|
all-stagefeedback-libdecnumber: configure-stagefeedback-libdecnumber
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/libdecnumber && \
|
cd $(HOST_SUBDIR)/libdecnumber && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use" CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use" \
|
CFLAGS="$(STAGEfeedback_CFLAGS)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)" \
|
$(TARGET-stagefeedback-libdecnumber)
|
$(TARGET-stagefeedback-libdecnumber)
|
|
|
maybe-clean-stagefeedback-libdecnumber: clean-stagefeedback-libdecnumber
|
maybe-clean-stagefeedback-libdecnumber: clean-stagefeedback-libdecnumber
|
clean-stagefeedback: clean-stagefeedback-libdecnumber
|
clean-stagefeedback: clean-stagefeedback-libdecnumber
|
clean-stagefeedback-libdecnumber:
|
clean-stagefeedback-libdecnumber:
|
Line 25153... |
Line 28262... |
configure-stage1-libiberty:
|
configure-stage1-libiberty:
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/libiberty/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/libiberty/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 1 in $(HOST_SUBDIR)/libiberty ; \
|
echo Configuring stage 1 in $(HOST_SUBDIR)/libiberty ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty ; \
|
cd $(HOST_SUBDIR)/libiberty || exit 1; \
|
cd $(HOST_SUBDIR)/libiberty || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 25170... |
Line 28281... |
srcdiroption="--srcdir=$${topdir}/libiberty"; \
|
srcdiroption="--srcdir=$${topdir}/libiberty"; \
|
libsrcdir="$$s/libiberty"; \
|
libsrcdir="$$s/libiberty"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
\
|
$(STAGE1_CONFIGURE_FLAGS)
|
--disable-intermodule $(STAGE1_CHECKING) --disable-coverage --enable-languages="$(STAGE1_LANGUAGES)"
|
|
@endif libiberty-bootstrap
|
@endif libiberty-bootstrap
|
|
|
.PHONY: configure-stage2-libiberty maybe-configure-stage2-libiberty
|
.PHONY: configure-stage2-libiberty maybe-configure-stage2-libiberty
|
maybe-configure-stage2-libiberty:
|
maybe-configure-stage2-libiberty:
|
@if libiberty-bootstrap
|
@if libiberty-bootstrap
|
Line 25183... |
Line 28293... |
configure-stage2-libiberty:
|
configure-stage2-libiberty:
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/libiberty/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/libiberty/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE2_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 2 in $(HOST_SUBDIR)/libiberty ; \
|
echo Configuring stage 2 in $(HOST_SUBDIR)/libiberty ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty ; \
|
cd $(HOST_SUBDIR)/libiberty || exit 1; \
|
cd $(HOST_SUBDIR)/libiberty || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 25202... |
Line 28314... |
libsrcdir="$$s/libiberty"; \
|
libsrcdir="$$s/libiberty"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE2_CONFIGURE_FLAGS)
|
@endif libiberty-bootstrap
|
|
|
|
.PHONY: configure-stageb2g0-libiberty maybe-configure-stageb2g0-libiberty
|
|
maybe-configure-stageb2g0-libiberty:
|
|
@if libiberty-bootstrap
|
|
maybe-configure-stageb2g0-libiberty: configure-stageb2g0-libiberty
|
|
configure-stageb2g0-libiberty:
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/libiberty/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE2_CFLAGS) -g0"; export CXXFLAGS; \
|
|
echo Configuring stage b2g0 in $(HOST_SUBDIR)/libiberty ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty ; \
|
|
cd $(HOST_SUBDIR)/libiberty || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/libiberty/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/libiberty"; \
|
|
libsrcdir="$$s/libiberty"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@
|
|
@endif libiberty-bootstrap
|
@endif libiberty-bootstrap
|
|
|
.PHONY: configure-stage3-libiberty maybe-configure-stage3-libiberty
|
.PHONY: configure-stage3-libiberty maybe-configure-stage3-libiberty
|
maybe-configure-stage3-libiberty:
|
maybe-configure-stage3-libiberty:
|
@if libiberty-bootstrap
|
@if libiberty-bootstrap
|
Line 25245... |
Line 28326... |
configure-stage3-libiberty:
|
configure-stage3-libiberty:
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/libiberty/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/libiberty/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE3_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 3 in $(HOST_SUBDIR)/libiberty ; \
|
echo Configuring stage 3 in $(HOST_SUBDIR)/libiberty ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty ; \
|
cd $(HOST_SUBDIR)/libiberty || exit 1; \
|
cd $(HOST_SUBDIR)/libiberty || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 25264... |
Line 28347... |
libsrcdir="$$s/libiberty"; \
|
libsrcdir="$$s/libiberty"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE3_CONFIGURE_FLAGS)
|
@endif libiberty-bootstrap
|
|
|
|
.PHONY: configure-stageb3g2-libiberty maybe-configure-stageb3g2-libiberty
|
|
maybe-configure-stageb3g2-libiberty:
|
|
@if libiberty-bootstrap
|
|
maybe-configure-stageb3g2-libiberty: configure-stageb3g2-libiberty
|
|
configure-stageb3g2-libiberty:
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/libiberty/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE3_CFLAGS) -g2"; export CXXFLAGS; \
|
|
echo Configuring stage b3g2 in $(HOST_SUBDIR)/libiberty ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty ; \
|
|
cd $(HOST_SUBDIR)/libiberty || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/libiberty/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/libiberty"; \
|
|
libsrcdir="$$s/libiberty"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@
|
|
@endif libiberty-bootstrap
|
@endif libiberty-bootstrap
|
|
|
.PHONY: configure-stage4-libiberty maybe-configure-stage4-libiberty
|
.PHONY: configure-stage4-libiberty maybe-configure-stage4-libiberty
|
maybe-configure-stage4-libiberty:
|
maybe-configure-stage4-libiberty:
|
@if libiberty-bootstrap
|
@if libiberty-bootstrap
|
Line 25307... |
Line 28359... |
configure-stage4-libiberty:
|
configure-stage4-libiberty:
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/libiberty/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/libiberty/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE4_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 4 in $(HOST_SUBDIR)/libiberty ; \
|
echo Configuring stage 4 in $(HOST_SUBDIR)/libiberty ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty ; \
|
cd $(HOST_SUBDIR)/libiberty || exit 1; \
|
cd $(HOST_SUBDIR)/libiberty || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 25326... |
Line 28380... |
libsrcdir="$$s/libiberty"; \
|
libsrcdir="$$s/libiberty"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE4_CONFIGURE_FLAGS)
|
@endif libiberty-bootstrap
|
@endif libiberty-bootstrap
|
|
|
.PHONY: configure-stageprofile-libiberty maybe-configure-stageprofile-libiberty
|
.PHONY: configure-stageprofile-libiberty maybe-configure-stageprofile-libiberty
|
maybe-configure-stageprofile-libiberty:
|
maybe-configure-stageprofile-libiberty:
|
@if libiberty-bootstrap
|
@if libiberty-bootstrap
|
Line 25338... |
Line 28392... |
configure-stageprofile-libiberty:
|
configure-stageprofile-libiberty:
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/libiberty/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/libiberty/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate"; export CFLAGS; \
|
CFLAGS="$(STAGEprofile_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGEprofile_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage profile in $(HOST_SUBDIR)/libiberty ; \
|
echo Configuring stage profile in $(HOST_SUBDIR)/libiberty ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty ; \
|
cd $(HOST_SUBDIR)/libiberty || exit 1; \
|
cd $(HOST_SUBDIR)/libiberty || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 25357... |
Line 28413... |
libsrcdir="$$s/libiberty"; \
|
libsrcdir="$$s/libiberty"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGEprofile_CONFIGURE_FLAGS)
|
@endif libiberty-bootstrap
|
@endif libiberty-bootstrap
|
|
|
.PHONY: configure-stagefeedback-libiberty maybe-configure-stagefeedback-libiberty
|
.PHONY: configure-stagefeedback-libiberty maybe-configure-stagefeedback-libiberty
|
maybe-configure-stagefeedback-libiberty:
|
maybe-configure-stagefeedback-libiberty:
|
@if libiberty-bootstrap
|
@if libiberty-bootstrap
|
Line 25369... |
Line 28425... |
configure-stagefeedback-libiberty:
|
configure-stagefeedback-libiberty:
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/libiberty/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/libiberty/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use"; export CFLAGS; \
|
CFLAGS="$(STAGEfeedback_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage feedback in $(HOST_SUBDIR)/libiberty ; \
|
echo Configuring stage feedback in $(HOST_SUBDIR)/libiberty ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiberty ; \
|
cd $(HOST_SUBDIR)/libiberty || exit 1; \
|
cd $(HOST_SUBDIR)/libiberty || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 25388... |
Line 28446... |
libsrcdir="$$s/libiberty"; \
|
libsrcdir="$$s/libiberty"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGEfeedback_CONFIGURE_FLAGS)
|
@endif libiberty-bootstrap
|
@endif libiberty-bootstrap
|
|
|
|
|
|
|
|
|
Line 25426... |
Line 28484... |
TARGET-stage1-libiberty = $(TARGET-libiberty)
|
TARGET-stage1-libiberty = $(TARGET-libiberty)
|
all-stage1-libiberty: configure-stage1-libiberty
|
all-stage1-libiberty: configure-stage1-libiberty
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/libiberty && \
|
cd $(HOST_SUBDIR)/libiberty && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE1_CFLAGS)" CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS="$(STAGE1_CFLAGS)" \
|
LIBCFLAGS="$(STAGE1_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" \
|
LIBCFLAGS="$(LIBCFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) \
|
|
TFLAGS="$(STAGE1_TFLAGS)" \
|
$(TARGET-stage1-libiberty)
|
$(TARGET-stage1-libiberty)
|
|
|
maybe-clean-stage1-libiberty: clean-stage1-libiberty
|
maybe-clean-stage1-libiberty: clean-stage1-libiberty
|
clean-stage1: clean-stage1-libiberty
|
clean-stage1: clean-stage1-libiberty
|
clean-stage1-libiberty:
|
clean-stage1-libiberty:
|
Line 25462... |
Line 28525... |
TARGET-stage2-libiberty = $(TARGET-libiberty)
|
TARGET-stage2-libiberty = $(TARGET-libiberty)
|
all-stage2-libiberty: configure-stage2-libiberty
|
all-stage2-libiberty: configure-stage2-libiberty
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/libiberty && \
|
cd $(HOST_SUBDIR)/libiberty && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS)" CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS="$(STAGE2_CFLAGS)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" \
|
LIBCFLAGS="$(STAGE2_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE2_TFLAGS)" \
|
$(TARGET-stage2-libiberty)
|
$(TARGET-stage2-libiberty)
|
|
|
maybe-clean-stage2-libiberty: clean-stage2-libiberty
|
maybe-clean-stage2-libiberty: clean-stage2-libiberty
|
clean-stage2: clean-stage2-libiberty
|
clean-stage2: clean-stage2-libiberty
|
clean-stage2-libiberty:
|
clean-stage2-libiberty:
|
Line 25488... |
Line 28556... |
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
clean
|
clean
|
@endif libiberty-bootstrap
|
@endif libiberty-bootstrap
|
|
|
|
|
.PHONY: all-stageb2g0-libiberty maybe-all-stageb2g0-libiberty
|
|
.PHONY: clean-stageb2g0-libiberty maybe-clean-stageb2g0-libiberty
|
|
maybe-all-stageb2g0-libiberty:
|
|
maybe-clean-stageb2g0-libiberty:
|
|
@if libiberty-bootstrap
|
|
maybe-all-stageb2g0-libiberty: all-stageb2g0-libiberty
|
|
all-stageb2g0: all-stageb2g0-libiberty
|
|
TARGET-stageb2g0-libiberty = $(TARGET-libiberty)
|
|
all-stageb2g0-libiberty: configure-stageb2g0-libiberty
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/libiberty && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0" CXXFLAGS="$(STAGE2_CFLAGS) -g0" \
|
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
$(TARGET-stageb2g0-libiberty)
|
|
|
|
maybe-clean-stageb2g0-libiberty: clean-stageb2g0-libiberty
|
|
clean-stageb2g0: clean-stageb2g0-libiberty
|
|
clean-stageb2g0-libiberty:
|
|
@if [ $(current_stage) = stageb2g0 ]; then \
|
|
[ -f $(HOST_SUBDIR)/libiberty/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageb2g0-libiberty/Makefile ] || exit 0; \
|
|
$(MAKE) stageb2g0-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/libiberty && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif libiberty-bootstrap
|
|
|
|
|
|
.PHONY: all-stage3-libiberty maybe-all-stage3-libiberty
|
.PHONY: all-stage3-libiberty maybe-all-stage3-libiberty
|
.PHONY: clean-stage3-libiberty maybe-clean-stage3-libiberty
|
.PHONY: clean-stage3-libiberty maybe-clean-stage3-libiberty
|
maybe-all-stage3-libiberty:
|
maybe-all-stage3-libiberty:
|
maybe-clean-stage3-libiberty:
|
maybe-clean-stage3-libiberty:
|
@if libiberty-bootstrap
|
@if libiberty-bootstrap
|
Line 25538... |
Line 28568... |
TARGET-stage3-libiberty = $(TARGET-libiberty)
|
TARGET-stage3-libiberty = $(TARGET-libiberty)
|
all-stage3-libiberty: configure-stage3-libiberty
|
all-stage3-libiberty: configure-stage3-libiberty
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/libiberty && \
|
cd $(HOST_SUBDIR)/libiberty && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS)" CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS="$(STAGE3_CFLAGS)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" \
|
LIBCFLAGS="$(STAGE3_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE3_TFLAGS)" \
|
$(TARGET-stage3-libiberty)
|
$(TARGET-stage3-libiberty)
|
|
|
maybe-clean-stage3-libiberty: clean-stage3-libiberty
|
maybe-clean-stage3-libiberty: clean-stage3-libiberty
|
clean-stage3: clean-stage3-libiberty
|
clean-stage3: clean-stage3-libiberty
|
clean-stage3-libiberty:
|
clean-stage3-libiberty:
|
Line 25564... |
Line 28599... |
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
clean
|
clean
|
@endif libiberty-bootstrap
|
@endif libiberty-bootstrap
|
|
|
|
|
.PHONY: all-stageb3g2-libiberty maybe-all-stageb3g2-libiberty
|
|
.PHONY: clean-stageb3g2-libiberty maybe-clean-stageb3g2-libiberty
|
|
maybe-all-stageb3g2-libiberty:
|
|
maybe-clean-stageb3g2-libiberty:
|
|
@if libiberty-bootstrap
|
|
maybe-all-stageb3g2-libiberty: all-stageb3g2-libiberty
|
|
all-stageb3g2: all-stageb3g2-libiberty
|
|
TARGET-stageb3g2-libiberty = $(TARGET-libiberty)
|
|
all-stageb3g2-libiberty: configure-stageb3g2-libiberty
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/libiberty && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2" CXXFLAGS="$(STAGE3_CFLAGS) -g2" \
|
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
$(TARGET-stageb3g2-libiberty)
|
|
|
|
maybe-clean-stageb3g2-libiberty: clean-stageb3g2-libiberty
|
|
clean-stageb3g2: clean-stageb3g2-libiberty
|
|
clean-stageb3g2-libiberty:
|
|
@if [ $(current_stage) = stageb3g2 ]; then \
|
|
[ -f $(HOST_SUBDIR)/libiberty/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageb3g2-libiberty/Makefile ] || exit 0; \
|
|
$(MAKE) stageb3g2-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/libiberty && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif libiberty-bootstrap
|
|
|
|
|
|
.PHONY: all-stage4-libiberty maybe-all-stage4-libiberty
|
.PHONY: all-stage4-libiberty maybe-all-stage4-libiberty
|
.PHONY: clean-stage4-libiberty maybe-clean-stage4-libiberty
|
.PHONY: clean-stage4-libiberty maybe-clean-stage4-libiberty
|
maybe-all-stage4-libiberty:
|
maybe-all-stage4-libiberty:
|
maybe-clean-stage4-libiberty:
|
maybe-clean-stage4-libiberty:
|
@if libiberty-bootstrap
|
@if libiberty-bootstrap
|
Line 25614... |
Line 28611... |
TARGET-stage4-libiberty = $(TARGET-libiberty)
|
TARGET-stage4-libiberty = $(TARGET-libiberty)
|
all-stage4-libiberty: configure-stage4-libiberty
|
all-stage4-libiberty: configure-stage4-libiberty
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/libiberty && \
|
cd $(HOST_SUBDIR)/libiberty && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE4_CFLAGS)" CXXFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS="$(STAGE4_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE4_TFLAGS)" \
|
$(TARGET-stage4-libiberty)
|
$(TARGET-stage4-libiberty)
|
|
|
maybe-clean-stage4-libiberty: clean-stage4-libiberty
|
maybe-clean-stage4-libiberty: clean-stage4-libiberty
|
clean-stage4: clean-stage4-libiberty
|
clean-stage4: clean-stage4-libiberty
|
clean-stage4-libiberty:
|
clean-stage4-libiberty:
|
Line 25652... |
Line 28654... |
TARGET-stageprofile-libiberty = $(TARGET-libiberty)
|
TARGET-stageprofile-libiberty = $(TARGET-libiberty)
|
all-stageprofile-libiberty: configure-stageprofile-libiberty
|
all-stageprofile-libiberty: configure-stageprofile-libiberty
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/libiberty && \
|
cd $(HOST_SUBDIR)/libiberty && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" \
|
CFLAGS="$(STAGEprofile_CFLAGS)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
CXXFLAGS="$(STAGEprofile_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)" \
|
$(TARGET-stageprofile-libiberty)
|
$(TARGET-stageprofile-libiberty)
|
|
|
maybe-clean-stageprofile-libiberty: clean-stageprofile-libiberty
|
maybe-clean-stageprofile-libiberty: clean-stageprofile-libiberty
|
clean-stageprofile: clean-stageprofile-libiberty
|
clean-stageprofile: clean-stageprofile-libiberty
|
clean-stageprofile-libiberty:
|
clean-stageprofile-libiberty:
|
Line 25690... |
Line 28697... |
TARGET-stagefeedback-libiberty = $(TARGET-libiberty)
|
TARGET-stagefeedback-libiberty = $(TARGET-libiberty)
|
all-stagefeedback-libiberty: configure-stagefeedback-libiberty
|
all-stagefeedback-libiberty: configure-stagefeedback-libiberty
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/libiberty && \
|
cd $(HOST_SUBDIR)/libiberty && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use" CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use" \
|
CFLAGS="$(STAGEfeedback_CFLAGS)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)" \
|
$(TARGET-stagefeedback-libiberty)
|
$(TARGET-stagefeedback-libiberty)
|
|
|
maybe-clean-stagefeedback-libiberty: clean-stagefeedback-libiberty
|
maybe-clean-stagefeedback-libiberty: clean-stagefeedback-libiberty
|
clean-stagefeedback: clean-stagefeedback-libiberty
|
clean-stagefeedback: clean-stagefeedback-libiberty
|
clean-stagefeedback-libiberty:
|
clean-stagefeedback-libiberty:
|
Line 25796... |
Line 28808... |
(cd $(HOST_SUBDIR)/libiberty && \
|
(cd $(HOST_SUBDIR)/libiberty && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
dvi) \
|
dvi) \
|
|
|| exit 1
|
|
|
|
@endif libiberty
|
|
|
|
.PHONY: maybe-pdf-libiberty pdf-libiberty
|
|
maybe-pdf-libiberty:
|
|
@if libiberty
|
|
maybe-pdf-libiberty: pdf-libiberty
|
|
|
|
pdf-libiberty: \
|
|
configure-libiberty
|
|
@[ -f ./libiberty/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing pdf in libiberty" ; \
|
|
(cd $(HOST_SUBDIR)/libiberty && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
pdf) \
|
|
|| exit 1
|
|
|
|
@endif libiberty
|
|
|
|
.PHONY: maybe-html-libiberty html-libiberty
|
|
maybe-html-libiberty:
|
|
@if libiberty
|
|
maybe-html-libiberty: html-libiberty
|
|
|
|
html-libiberty: \
|
|
configure-libiberty
|
|
@[ -f ./libiberty/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing html in libiberty" ; \
|
|
(cd $(HOST_SUBDIR)/libiberty && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
html) \
|
|
|| exit 1
|
|
|
|
@endif libiberty
|
|
|
|
.PHONY: maybe-TAGS-libiberty TAGS-libiberty
|
|
maybe-TAGS-libiberty:
|
|
@if libiberty
|
|
maybe-TAGS-libiberty: TAGS-libiberty
|
|
|
|
TAGS-libiberty: \
|
|
configure-libiberty
|
|
@[ -f ./libiberty/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing TAGS in libiberty" ; \
|
|
(cd $(HOST_SUBDIR)/libiberty && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
TAGS) \
|
|
|| exit 1
|
|
|
|
@endif libiberty
|
|
|
|
.PHONY: maybe-install-info-libiberty install-info-libiberty
|
|
maybe-install-info-libiberty:
|
|
@if libiberty
|
|
maybe-install-info-libiberty: install-info-libiberty
|
|
|
|
install-info-libiberty: \
|
|
configure-libiberty \
|
|
info-libiberty
|
|
@[ -f ./libiberty/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing install-info in libiberty" ; \
|
|
(cd $(HOST_SUBDIR)/libiberty && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
install-info) \
|
|
|| exit 1
|
|
|
|
@endif libiberty
|
|
|
|
.PHONY: maybe-install-pdf-libiberty install-pdf-libiberty
|
|
maybe-install-pdf-libiberty:
|
|
@if libiberty
|
|
maybe-install-pdf-libiberty: install-pdf-libiberty
|
|
|
|
install-pdf-libiberty: \
|
|
configure-libiberty \
|
|
pdf-libiberty
|
|
@[ -f ./libiberty/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing install-pdf in libiberty" ; \
|
|
(cd $(HOST_SUBDIR)/libiberty && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
install-pdf) \
|
|
|| exit 1
|
|
|
|
@endif libiberty
|
|
|
|
.PHONY: maybe-install-html-libiberty install-html-libiberty
|
|
maybe-install-html-libiberty:
|
|
@if libiberty
|
|
maybe-install-html-libiberty: install-html-libiberty
|
|
|
|
install-html-libiberty: \
|
|
configure-libiberty \
|
|
html-libiberty
|
|
@[ -f ./libiberty/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing install-html in libiberty" ; \
|
|
(cd $(HOST_SUBDIR)/libiberty && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
install-html) \
|
|
|| exit 1
|
|
|
|
@endif libiberty
|
|
|
|
.PHONY: maybe-installcheck-libiberty installcheck-libiberty
|
|
maybe-installcheck-libiberty:
|
|
@if libiberty
|
|
maybe-installcheck-libiberty: installcheck-libiberty
|
|
|
|
installcheck-libiberty: \
|
|
configure-libiberty
|
|
@[ -f ./libiberty/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing installcheck in libiberty" ; \
|
|
(cd $(HOST_SUBDIR)/libiberty && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
installcheck) \
|
|
|| exit 1
|
|
|
|
@endif libiberty
|
|
|
|
.PHONY: maybe-mostlyclean-libiberty mostlyclean-libiberty
|
|
maybe-mostlyclean-libiberty:
|
|
@if libiberty
|
|
maybe-mostlyclean-libiberty: mostlyclean-libiberty
|
|
|
|
mostlyclean-libiberty:
|
|
@[ -f ./libiberty/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing mostlyclean in libiberty" ; \
|
|
(cd $(HOST_SUBDIR)/libiberty && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
mostlyclean) \
|
|
|| exit 1
|
|
|
|
@endif libiberty
|
|
|
|
.PHONY: maybe-clean-libiberty clean-libiberty
|
|
maybe-clean-libiberty:
|
|
@if libiberty
|
|
maybe-clean-libiberty: clean-libiberty
|
|
|
|
clean-libiberty:
|
|
@[ -f ./libiberty/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing clean in libiberty" ; \
|
|
(cd $(HOST_SUBDIR)/libiberty && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
clean) \
|
|
|| exit 1
|
|
|
|
@endif libiberty
|
|
|
|
.PHONY: maybe-distclean-libiberty distclean-libiberty
|
|
maybe-distclean-libiberty:
|
|
@if libiberty
|
|
maybe-distclean-libiberty: distclean-libiberty
|
|
|
|
distclean-libiberty:
|
|
@[ -f ./libiberty/Makefile ] || exit 0; \
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
|
done; \
|
|
echo "Doing distclean in libiberty" ; \
|
|
(cd $(HOST_SUBDIR)/libiberty && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
|
"RANLIB=$${RANLIB}" \
|
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
|
distclean) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif libiberty
|
@endif libiberty
|
|
|
.PHONY: maybe-pdf-libiberty pdf-libiberty
|
.PHONY: maybe-maintainer-clean-libiberty maintainer-clean-libiberty
|
maybe-pdf-libiberty:
|
maybe-maintainer-clean-libiberty:
|
@if libiberty
|
@if libiberty
|
maybe-pdf-libiberty: pdf-libiberty
|
maybe-maintainer-clean-libiberty: maintainer-clean-libiberty
|
|
|
pdf-libiberty: \
|
maintainer-clean-libiberty:
|
configure-libiberty
|
|
@[ -f ./libiberty/Makefile ] || exit 0; \
|
@[ -f ./libiberty/Makefile ] || exit 0; \
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing pdf in libiberty" ; \
|
echo "Doing maintainer-clean in libiberty" ; \
|
(cd $(HOST_SUBDIR)/libiberty && \
|
(cd $(HOST_SUBDIR)/libiberty && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
pdf) \
|
maintainer-clean) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif libiberty
|
@endif libiberty
|
|
|
.PHONY: maybe-html-libiberty html-libiberty
|
|
maybe-html-libiberty:
|
|
@if libiberty
|
|
maybe-html-libiberty: html-libiberty
|
|
|
|
html-libiberty: \
|
|
configure-libiberty
|
.PHONY: configure-libiconv maybe-configure-libiconv
|
@[ -f ./libiberty/Makefile ] || exit 0; \
|
maybe-configure-libiconv:
|
|
@if gcc-bootstrap
|
|
configure-libiconv: stage_current
|
|
@endif gcc-bootstrap
|
|
@if libiconv
|
|
maybe-configure-libiconv: configure-libiconv
|
|
configure-libiconv:
|
|
@: $(MAKE); $(unstage)
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/libiconv/Makefile || exit 0; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/libiconv ; \
|
|
$(HOST_EXPORTS) \
|
|
echo Configuring in $(HOST_SUBDIR)/libiconv; \
|
|
cd "$(HOST_SUBDIR)/libiconv" || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/libiconv/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/libiconv"; \
|
|
libsrcdir="$$s/libiconv"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} --disable-shared \
|
|
|| exit 1
|
|
@endif libiconv
|
|
|
|
|
|
|
|
|
|
|
|
.PHONY: all-libiconv maybe-all-libiconv
|
|
maybe-all-libiconv:
|
|
@if gcc-bootstrap
|
|
all-libiconv: stage_current
|
|
@endif gcc-bootstrap
|
|
@if libiconv
|
|
TARGET-libiconv=all
|
|
maybe-all-libiconv: all-libiconv
|
|
all-libiconv: configure-libiconv
|
|
@: $(MAKE); $(unstage)
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
(cd $(HOST_SUBDIR)/libiconv && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS) \
|
|
$(TARGET-libiconv))
|
|
@endif libiconv
|
|
|
|
|
|
|
|
|
|
.PHONY: check-libiconv maybe-check-libiconv
|
|
maybe-check-libiconv:
|
|
@if libiconv
|
|
maybe-check-libiconv: check-libiconv
|
|
|
|
check-libiconv:
|
|
@: $(MAKE); $(unstage)
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
(cd $(HOST_SUBDIR)/libiconv && \
|
|
$(MAKE) $(FLAGS_TO_PASS) check)
|
|
|
|
@endif libiconv
|
|
|
|
.PHONY: install-libiconv maybe-install-libiconv
|
|
maybe-install-libiconv:
|
|
@if libiconv
|
|
maybe-install-libiconv: install-libiconv
|
|
|
|
install-libiconv:
|
|
|
|
@endif libiconv
|
|
|
|
# Other targets (info, dvi, pdf, etc.)
|
|
|
|
.PHONY: maybe-info-libiconv info-libiconv
|
|
maybe-info-libiconv:
|
|
@if libiconv
|
|
maybe-info-libiconv: info-libiconv
|
|
|
|
info-libiconv: \
|
|
configure-libiconv
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./libiconv/Makefile ] || exit 0; \
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing html in libiberty" ; \
|
echo "Doing info in libiconv" ; \
|
(cd $(HOST_SUBDIR)/libiberty && \
|
(cd $(HOST_SUBDIR)/libiconv && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
html) \
|
info) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif libiberty
|
@endif libiconv
|
|
|
.PHONY: maybe-TAGS-libiberty TAGS-libiberty
|
.PHONY: maybe-dvi-libiconv dvi-libiconv
|
maybe-TAGS-libiberty:
|
maybe-dvi-libiconv:
|
@if libiberty
|
@if libiconv
|
maybe-TAGS-libiberty: TAGS-libiberty
|
maybe-dvi-libiconv: dvi-libiconv
|
|
|
TAGS-libiberty: \
|
dvi-libiconv: \
|
configure-libiberty
|
configure-libiconv
|
@[ -f ./libiberty/Makefile ] || exit 0; \
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./libiconv/Makefile ] || exit 0; \
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing TAGS in libiberty" ; \
|
echo "Doing dvi in libiconv" ; \
|
(cd $(HOST_SUBDIR)/libiberty && \
|
(cd $(HOST_SUBDIR)/libiconv && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
TAGS) \
|
dvi) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif libiberty
|
@endif libiconv
|
|
|
.PHONY: maybe-install-info-libiberty install-info-libiberty
|
.PHONY: maybe-pdf-libiconv pdf-libiconv
|
maybe-install-info-libiberty:
|
maybe-pdf-libiconv:
|
@if libiberty
|
@if libiconv
|
maybe-install-info-libiberty: install-info-libiberty
|
maybe-pdf-libiconv: pdf-libiconv
|
|
|
install-info-libiberty: \
|
pdf-libiconv: \
|
configure-libiberty \
|
configure-libiconv
|
info-libiberty
|
@: $(MAKE); $(unstage)
|
@[ -f ./libiberty/Makefile ] || exit 0; \
|
@[ -f ./libiconv/Makefile ] || exit 0; \
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing install-info in libiberty" ; \
|
echo "Doing pdf in libiconv" ; \
|
(cd $(HOST_SUBDIR)/libiberty && \
|
(cd $(HOST_SUBDIR)/libiconv && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
install-info) \
|
pdf) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif libiberty
|
@endif libiconv
|
|
|
.PHONY: maybe-install-pdf-libiberty install-pdf-libiberty
|
.PHONY: maybe-html-libiconv html-libiconv
|
maybe-install-pdf-libiberty:
|
maybe-html-libiconv:
|
@if libiberty
|
@if libiconv
|
maybe-install-pdf-libiberty: install-pdf-libiberty
|
maybe-html-libiconv: html-libiconv
|
|
|
install-pdf-libiberty: \
|
html-libiconv: \
|
configure-libiberty \
|
configure-libiconv
|
pdf-libiberty
|
@: $(MAKE); $(unstage)
|
@[ -f ./libiberty/Makefile ] || exit 0; \
|
@[ -f ./libiconv/Makefile ] || exit 0; \
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing install-pdf in libiberty" ; \
|
echo "Doing html in libiconv" ; \
|
(cd $(HOST_SUBDIR)/libiberty && \
|
(cd $(HOST_SUBDIR)/libiconv && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
install-pdf) \
|
html) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif libiberty
|
@endif libiconv
|
|
|
.PHONY: maybe-install-html-libiberty install-html-libiberty
|
.PHONY: maybe-TAGS-libiconv TAGS-libiconv
|
maybe-install-html-libiberty:
|
maybe-TAGS-libiconv:
|
@if libiberty
|
@if libiconv
|
maybe-install-html-libiberty: install-html-libiberty
|
maybe-TAGS-libiconv: TAGS-libiconv
|
|
|
install-html-libiberty: \
|
TAGS-libiconv: \
|
configure-libiberty \
|
configure-libiconv
|
html-libiberty
|
@: $(MAKE); $(unstage)
|
@[ -f ./libiberty/Makefile ] || exit 0; \
|
@[ -f ./libiconv/Makefile ] || exit 0; \
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing install-html in libiberty" ; \
|
echo "Doing TAGS in libiconv" ; \
|
(cd $(HOST_SUBDIR)/libiberty && \
|
(cd $(HOST_SUBDIR)/libiconv && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
install-html) \
|
TAGS) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif libiberty
|
@endif libiconv
|
|
|
.PHONY: maybe-installcheck-libiberty installcheck-libiberty
|
.PHONY: maybe-install-info-libiconv install-info-libiconv
|
maybe-installcheck-libiberty:
|
maybe-install-info-libiconv:
|
@if libiberty
|
@if libiconv
|
maybe-installcheck-libiberty: installcheck-libiberty
|
maybe-install-info-libiconv: install-info-libiconv
|
|
|
installcheck-libiberty: \
|
# libiconv doesn't support install-info.
|
configure-libiberty
|
install-info-libiconv:
|
@[ -f ./libiberty/Makefile ] || exit 0; \
|
|
|
@endif libiconv
|
|
|
|
.PHONY: maybe-install-pdf-libiconv install-pdf-libiconv
|
|
maybe-install-pdf-libiconv:
|
|
@if libiconv
|
|
maybe-install-pdf-libiconv: install-pdf-libiconv
|
|
|
|
# libiconv doesn't support install-pdf.
|
|
install-pdf-libiconv:
|
|
|
|
@endif libiconv
|
|
|
|
.PHONY: maybe-install-html-libiconv install-html-libiconv
|
|
maybe-install-html-libiconv:
|
|
@if libiconv
|
|
maybe-install-html-libiconv: install-html-libiconv
|
|
|
|
# libiconv doesn't support install-html.
|
|
install-html-libiconv:
|
|
|
|
@endif libiconv
|
|
|
|
.PHONY: maybe-installcheck-libiconv installcheck-libiconv
|
|
maybe-installcheck-libiconv:
|
|
@if libiconv
|
|
maybe-installcheck-libiconv: installcheck-libiconv
|
|
|
|
installcheck-libiconv: \
|
|
configure-libiconv
|
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./libiconv/Makefile ] || exit 0; \
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing installcheck in libiberty" ; \
|
echo "Doing installcheck in libiconv" ; \
|
(cd $(HOST_SUBDIR)/libiberty && \
|
(cd $(HOST_SUBDIR)/libiconv && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
installcheck) \
|
installcheck) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif libiberty
|
@endif libiconv
|
|
|
.PHONY: maybe-mostlyclean-libiberty mostlyclean-libiberty
|
.PHONY: maybe-mostlyclean-libiconv mostlyclean-libiconv
|
maybe-mostlyclean-libiberty:
|
maybe-mostlyclean-libiconv:
|
@if libiberty
|
@if libiconv
|
maybe-mostlyclean-libiberty: mostlyclean-libiberty
|
maybe-mostlyclean-libiconv: mostlyclean-libiconv
|
|
|
mostlyclean-libiberty:
|
mostlyclean-libiconv:
|
@[ -f ./libiberty/Makefile ] || exit 0; \
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./libiconv/Makefile ] || exit 0; \
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing mostlyclean in libiberty" ; \
|
echo "Doing mostlyclean in libiconv" ; \
|
(cd $(HOST_SUBDIR)/libiberty && \
|
(cd $(HOST_SUBDIR)/libiconv && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
mostlyclean) \
|
mostlyclean) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif libiberty
|
@endif libiconv
|
|
|
.PHONY: maybe-clean-libiberty clean-libiberty
|
.PHONY: maybe-clean-libiconv clean-libiconv
|
maybe-clean-libiberty:
|
maybe-clean-libiconv:
|
@if libiberty
|
@if libiconv
|
maybe-clean-libiberty: clean-libiberty
|
maybe-clean-libiconv: clean-libiconv
|
|
|
clean-libiberty:
|
clean-libiconv:
|
@[ -f ./libiberty/Makefile ] || exit 0; \
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./libiconv/Makefile ] || exit 0; \
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing clean in libiberty" ; \
|
echo "Doing clean in libiconv" ; \
|
(cd $(HOST_SUBDIR)/libiberty && \
|
(cd $(HOST_SUBDIR)/libiconv && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
clean) \
|
clean) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif libiberty
|
@endif libiconv
|
|
|
.PHONY: maybe-distclean-libiberty distclean-libiberty
|
.PHONY: maybe-distclean-libiconv distclean-libiconv
|
maybe-distclean-libiberty:
|
maybe-distclean-libiconv:
|
@if libiberty
|
@if libiconv
|
maybe-distclean-libiberty: distclean-libiberty
|
maybe-distclean-libiconv: distclean-libiconv
|
|
|
distclean-libiberty:
|
distclean-libiconv:
|
@[ -f ./libiberty/Makefile ] || exit 0; \
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./libiconv/Makefile ] || exit 0; \
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing distclean in libiberty" ; \
|
echo "Doing distclean in libiconv" ; \
|
(cd $(HOST_SUBDIR)/libiberty && \
|
(cd $(HOST_SUBDIR)/libiconv && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
distclean) \
|
distclean) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif libiberty
|
@endif libiconv
|
|
|
.PHONY: maybe-maintainer-clean-libiberty maintainer-clean-libiberty
|
.PHONY: maybe-maintainer-clean-libiconv maintainer-clean-libiconv
|
maybe-maintainer-clean-libiberty:
|
maybe-maintainer-clean-libiconv:
|
@if libiberty
|
@if libiconv
|
maybe-maintainer-clean-libiberty: maintainer-clean-libiberty
|
maybe-maintainer-clean-libiconv: maintainer-clean-libiconv
|
|
|
maintainer-clean-libiberty:
|
maintainer-clean-libiconv:
|
@[ -f ./libiberty/Makefile ] || exit 0; \
|
@: $(MAKE); $(unstage)
|
|
@[ -f ./libiconv/Makefile ] || exit 0; \
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
for flag in $(EXTRA_HOST_FLAGS) ; do \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
|
done; \
|
done; \
|
echo "Doing maintainer-clean in libiberty" ; \
|
echo "Doing maintainer-clean in libiconv" ; \
|
(cd $(HOST_SUBDIR)/libiberty && \
|
(cd $(HOST_SUBDIR)/libiconv && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
|
"RANLIB=$${RANLIB}" \
|
"RANLIB=$${RANLIB}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
"DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" "WINDMC=$${WINDMC}" \
|
maintainer-clean) \
|
maintainer-clean) \
|
|| exit 1
|
|| exit 1
|
|
|
@endif libiberty
|
@endif libiconv
|
|
|
|
|
|
|
.PHONY: configure-libtool maybe-configure-libtool
|
.PHONY: configure-libtool maybe-configure-libtool
|
maybe-configure-libtool:
|
maybe-configure-libtool:
|
Line 35870... |
Line 39250... |
configure-stage1-zlib:
|
configure-stage1-zlib:
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/zlib/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/zlib/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE1_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE1_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 1 in $(HOST_SUBDIR)/zlib ; \
|
echo Configuring stage 1 in $(HOST_SUBDIR)/zlib ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib ; \
|
cd $(HOST_SUBDIR)/zlib || exit 1; \
|
cd $(HOST_SUBDIR)/zlib || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 35887... |
Line 39269... |
srcdiroption="--srcdir=$${topdir}/zlib"; \
|
srcdiroption="--srcdir=$${topdir}/zlib"; \
|
libsrcdir="$$s/zlib"; \
|
libsrcdir="$$s/zlib"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
\
|
$(STAGE1_CONFIGURE_FLAGS)
|
--disable-intermodule $(STAGE1_CHECKING) --disable-coverage --enable-languages="$(STAGE1_LANGUAGES)"
|
|
@endif zlib-bootstrap
|
@endif zlib-bootstrap
|
|
|
.PHONY: configure-stage2-zlib maybe-configure-stage2-zlib
|
.PHONY: configure-stage2-zlib maybe-configure-stage2-zlib
|
maybe-configure-stage2-zlib:
|
maybe-configure-stage2-zlib:
|
@if zlib-bootstrap
|
@if zlib-bootstrap
|
Line 35900... |
Line 39281... |
configure-stage2-zlib:
|
configure-stage2-zlib:
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/zlib/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/zlib/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE2_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE2_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 2 in $(HOST_SUBDIR)/zlib ; \
|
echo Configuring stage 2 in $(HOST_SUBDIR)/zlib ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib ; \
|
cd $(HOST_SUBDIR)/zlib || exit 1; \
|
cd $(HOST_SUBDIR)/zlib || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 35919... |
Line 39302... |
libsrcdir="$$s/zlib"; \
|
libsrcdir="$$s/zlib"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE2_CONFIGURE_FLAGS)
|
@endif zlib-bootstrap
|
|
|
|
.PHONY: configure-stageb2g0-zlib maybe-configure-stageb2g0-zlib
|
|
maybe-configure-stageb2g0-zlib:
|
|
@if zlib-bootstrap
|
|
maybe-configure-stageb2g0-zlib: configure-stageb2g0-zlib
|
|
configure-stageb2g0-zlib:
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/zlib/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE2_CFLAGS) -g0"; export CXXFLAGS; \
|
|
echo Configuring stage b2g0 in $(HOST_SUBDIR)/zlib ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib ; \
|
|
cd $(HOST_SUBDIR)/zlib || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/zlib/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/zlib"; \
|
|
libsrcdir="$$s/zlib"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@
|
|
@endif zlib-bootstrap
|
@endif zlib-bootstrap
|
|
|
.PHONY: configure-stage3-zlib maybe-configure-stage3-zlib
|
.PHONY: configure-stage3-zlib maybe-configure-stage3-zlib
|
maybe-configure-stage3-zlib:
|
maybe-configure-stage3-zlib:
|
@if zlib-bootstrap
|
@if zlib-bootstrap
|
Line 35962... |
Line 39314... |
configure-stage3-zlib:
|
configure-stage3-zlib:
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/zlib/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/zlib/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE3_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE3_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 3 in $(HOST_SUBDIR)/zlib ; \
|
echo Configuring stage 3 in $(HOST_SUBDIR)/zlib ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib ; \
|
cd $(HOST_SUBDIR)/zlib || exit 1; \
|
cd $(HOST_SUBDIR)/zlib || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 35981... |
Line 39335... |
libsrcdir="$$s/zlib"; \
|
libsrcdir="$$s/zlib"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE3_CONFIGURE_FLAGS)
|
@endif zlib-bootstrap
|
|
|
|
.PHONY: configure-stageb3g2-zlib maybe-configure-stageb3g2-zlib
|
|
maybe-configure-stageb3g2-zlib:
|
|
@if zlib-bootstrap
|
|
maybe-configure-stageb3g2-zlib: configure-stageb3g2-zlib
|
|
configure-stageb3g2-zlib:
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
test ! -f $(HOST_SUBDIR)/zlib/Makefile || exit 0; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE3_CFLAGS) -g2"; export CXXFLAGS; \
|
|
echo Configuring stage b3g2 in $(HOST_SUBDIR)/zlib ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib ; \
|
|
cd $(HOST_SUBDIR)/zlib || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(HOST_SUBDIR)/zlib/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/zlib"; \
|
|
libsrcdir="$$s/zlib"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@
|
|
@endif zlib-bootstrap
|
@endif zlib-bootstrap
|
|
|
.PHONY: configure-stage4-zlib maybe-configure-stage4-zlib
|
.PHONY: configure-stage4-zlib maybe-configure-stage4-zlib
|
maybe-configure-stage4-zlib:
|
maybe-configure-stage4-zlib:
|
@if zlib-bootstrap
|
@if zlib-bootstrap
|
Line 36024... |
Line 39347... |
configure-stage4-zlib:
|
configure-stage4-zlib:
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/zlib/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/zlib/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
CFLAGS="$(STAGE4_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGE4_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage 4 in $(HOST_SUBDIR)/zlib ; \
|
echo Configuring stage 4 in $(HOST_SUBDIR)/zlib ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib ; \
|
cd $(HOST_SUBDIR)/zlib || exit 1; \
|
cd $(HOST_SUBDIR)/zlib || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 36043... |
Line 39368... |
libsrcdir="$$s/zlib"; \
|
libsrcdir="$$s/zlib"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE4_CONFIGURE_FLAGS)
|
@endif zlib-bootstrap
|
@endif zlib-bootstrap
|
|
|
.PHONY: configure-stageprofile-zlib maybe-configure-stageprofile-zlib
|
.PHONY: configure-stageprofile-zlib maybe-configure-stageprofile-zlib
|
maybe-configure-stageprofile-zlib:
|
maybe-configure-stageprofile-zlib:
|
@if zlib-bootstrap
|
@if zlib-bootstrap
|
Line 36055... |
Line 39380... |
configure-stageprofile-zlib:
|
configure-stageprofile-zlib:
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/zlib/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/zlib/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate"; export CFLAGS; \
|
CFLAGS="$(STAGEprofile_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGEprofile_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage profile in $(HOST_SUBDIR)/zlib ; \
|
echo Configuring stage profile in $(HOST_SUBDIR)/zlib ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib ; \
|
cd $(HOST_SUBDIR)/zlib || exit 1; \
|
cd $(HOST_SUBDIR)/zlib || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 36074... |
Line 39401... |
libsrcdir="$$s/zlib"; \
|
libsrcdir="$$s/zlib"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGEprofile_CONFIGURE_FLAGS)
|
@endif zlib-bootstrap
|
@endif zlib-bootstrap
|
|
|
.PHONY: configure-stagefeedback-zlib maybe-configure-stagefeedback-zlib
|
.PHONY: configure-stagefeedback-zlib maybe-configure-stagefeedback-zlib
|
maybe-configure-stagefeedback-zlib:
|
maybe-configure-stagefeedback-zlib:
|
@if zlib-bootstrap
|
@if zlib-bootstrap
|
Line 36086... |
Line 39413... |
configure-stagefeedback-zlib:
|
configure-stagefeedback-zlib:
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib
|
@$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
test ! -f $(HOST_SUBDIR)/zlib/Makefile || exit 0; \
|
test ! -f $(HOST_SUBDIR)/zlib/Makefile || exit 0; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use"; export CFLAGS; \
|
CFLAGS="$(STAGEfeedback_CFLAGS)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use"; export CXXFLAGS; \
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)"; export LIBCFLAGS; \
|
echo Configuring stage feedback in $(HOST_SUBDIR)/zlib ; \
|
echo Configuring stage feedback in $(HOST_SUBDIR)/zlib ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)/zlib ; \
|
cd $(HOST_SUBDIR)/zlib || exit 1; \
|
cd $(HOST_SUBDIR)/zlib || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 36105... |
Line 39434... |
libsrcdir="$$s/zlib"; \
|
libsrcdir="$$s/zlib"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
$(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGEfeedback_CONFIGURE_FLAGS)
|
@endif zlib-bootstrap
|
@endif zlib-bootstrap
|
|
|
|
|
|
|
|
|
Line 36143... |
Line 39472... |
TARGET-stage1-zlib = $(TARGET-zlib)
|
TARGET-stage1-zlib = $(TARGET-zlib)
|
all-stage1-zlib: configure-stage1-zlib
|
all-stage1-zlib: configure-stage1-zlib
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/zlib && \
|
cd $(HOST_SUBDIR)/zlib && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE1_CFLAGS)" CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS="$(STAGE1_CFLAGS)" \
|
LIBCFLAGS="$(STAGE1_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" \
|
LIBCFLAGS="$(LIBCFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) \
|
|
TFLAGS="$(STAGE1_TFLAGS)" \
|
$(TARGET-stage1-zlib)
|
$(TARGET-stage1-zlib)
|
|
|
maybe-clean-stage1-zlib: clean-stage1-zlib
|
maybe-clean-stage1-zlib: clean-stage1-zlib
|
clean-stage1: clean-stage1-zlib
|
clean-stage1: clean-stage1-zlib
|
clean-stage1-zlib:
|
clean-stage1-zlib:
|
Line 36179... |
Line 39513... |
TARGET-stage2-zlib = $(TARGET-zlib)
|
TARGET-stage2-zlib = $(TARGET-zlib)
|
all-stage2-zlib: configure-stage2-zlib
|
all-stage2-zlib: configure-stage2-zlib
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/zlib && \
|
cd $(HOST_SUBDIR)/zlib && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS)" CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS="$(STAGE2_CFLAGS)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" \
|
LIBCFLAGS="$(STAGE2_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE2_TFLAGS)" \
|
$(TARGET-stage2-zlib)
|
$(TARGET-stage2-zlib)
|
|
|
maybe-clean-stage2-zlib: clean-stage2-zlib
|
maybe-clean-stage2-zlib: clean-stage2-zlib
|
clean-stage2: clean-stage2-zlib
|
clean-stage2: clean-stage2-zlib
|
clean-stage2-zlib:
|
clean-stage2-zlib:
|
Line 36205... |
Line 39544... |
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
clean
|
clean
|
@endif zlib-bootstrap
|
@endif zlib-bootstrap
|
|
|
|
|
.PHONY: all-stageb2g0-zlib maybe-all-stageb2g0-zlib
|
|
.PHONY: clean-stageb2g0-zlib maybe-clean-stageb2g0-zlib
|
|
maybe-all-stageb2g0-zlib:
|
|
maybe-clean-stageb2g0-zlib:
|
|
@if zlib-bootstrap
|
|
maybe-all-stageb2g0-zlib: all-stageb2g0-zlib
|
|
all-stageb2g0: all-stageb2g0-zlib
|
|
TARGET-stageb2g0-zlib = $(TARGET-zlib)
|
|
all-stageb2g0-zlib: configure-stageb2g0-zlib
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/zlib && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0" CXXFLAGS="$(STAGE2_CFLAGS) -g0" \
|
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
$(TARGET-stageb2g0-zlib)
|
|
|
|
maybe-clean-stageb2g0-zlib: clean-stageb2g0-zlib
|
|
clean-stageb2g0: clean-stageb2g0-zlib
|
|
clean-stageb2g0-zlib:
|
|
@if [ $(current_stage) = stageb2g0 ]; then \
|
|
[ -f $(HOST_SUBDIR)/zlib/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageb2g0-zlib/Makefile ] || exit 0; \
|
|
$(MAKE) stageb2g0-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/zlib && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif zlib-bootstrap
|
|
|
|
|
|
.PHONY: all-stage3-zlib maybe-all-stage3-zlib
|
.PHONY: all-stage3-zlib maybe-all-stage3-zlib
|
.PHONY: clean-stage3-zlib maybe-clean-stage3-zlib
|
.PHONY: clean-stage3-zlib maybe-clean-stage3-zlib
|
maybe-all-stage3-zlib:
|
maybe-all-stage3-zlib:
|
maybe-clean-stage3-zlib:
|
maybe-clean-stage3-zlib:
|
@if zlib-bootstrap
|
@if zlib-bootstrap
|
Line 36255... |
Line 39556... |
TARGET-stage3-zlib = $(TARGET-zlib)
|
TARGET-stage3-zlib = $(TARGET-zlib)
|
all-stage3-zlib: configure-stage3-zlib
|
all-stage3-zlib: configure-stage3-zlib
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/zlib && \
|
cd $(HOST_SUBDIR)/zlib && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS)" CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS="$(STAGE3_CFLAGS)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS)" \
|
CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" \
|
LIBCFLAGS="$(STAGE3_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE3_TFLAGS)" \
|
$(TARGET-stage3-zlib)
|
$(TARGET-stage3-zlib)
|
|
|
maybe-clean-stage3-zlib: clean-stage3-zlib
|
maybe-clean-stage3-zlib: clean-stage3-zlib
|
clean-stage3: clean-stage3-zlib
|
clean-stage3: clean-stage3-zlib
|
clean-stage3-zlib:
|
clean-stage3-zlib:
|
Line 36281... |
Line 39587... |
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
clean
|
clean
|
@endif zlib-bootstrap
|
@endif zlib-bootstrap
|
|
|
|
|
.PHONY: all-stageb3g2-zlib maybe-all-stageb3g2-zlib
|
|
.PHONY: clean-stageb3g2-zlib maybe-clean-stageb3g2-zlib
|
|
maybe-all-stageb3g2-zlib:
|
|
maybe-clean-stageb3g2-zlib:
|
|
@if zlib-bootstrap
|
|
maybe-all-stageb3g2-zlib: all-stageb3g2-zlib
|
|
all-stageb3g2: all-stageb3g2-zlib
|
|
TARGET-stageb3g2-zlib = $(TARGET-zlib)
|
|
all-stageb3g2-zlib: configure-stageb3g2-zlib
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
|
cd $(HOST_SUBDIR)/zlib && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2" CXXFLAGS="$(STAGE3_CFLAGS) -g2" \
|
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
$(TARGET-stageb3g2-zlib)
|
|
|
|
maybe-clean-stageb3g2-zlib: clean-stageb3g2-zlib
|
|
clean-stageb3g2: clean-stageb3g2-zlib
|
|
clean-stageb3g2-zlib:
|
|
@if [ $(current_stage) = stageb3g2 ]; then \
|
|
[ -f $(HOST_SUBDIR)/zlib/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(HOST_SUBDIR)/stageb3g2-zlib/Makefile ] || exit 0; \
|
|
$(MAKE) stageb3g2-start; \
|
|
fi; \
|
|
cd $(HOST_SUBDIR)/zlib && \
|
|
$(MAKE) $(EXTRA_HOST_FLAGS) \
|
|
$(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
clean
|
|
@endif zlib-bootstrap
|
|
|
|
|
|
.PHONY: all-stage4-zlib maybe-all-stage4-zlib
|
.PHONY: all-stage4-zlib maybe-all-stage4-zlib
|
.PHONY: clean-stage4-zlib maybe-clean-stage4-zlib
|
.PHONY: clean-stage4-zlib maybe-clean-stage4-zlib
|
maybe-all-stage4-zlib:
|
maybe-all-stage4-zlib:
|
maybe-clean-stage4-zlib:
|
maybe-clean-stage4-zlib:
|
@if zlib-bootstrap
|
@if zlib-bootstrap
|
Line 36331... |
Line 39599... |
TARGET-stage4-zlib = $(TARGET-zlib)
|
TARGET-stage4-zlib = $(TARGET-zlib)
|
all-stage4-zlib: configure-stage4-zlib
|
all-stage4-zlib: configure-stage4-zlib
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/zlib && \
|
cd $(HOST_SUBDIR)/zlib && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE4_CFLAGS)" CXXFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS="$(STAGE4_CFLAGS)" \
|
|
CXXFLAGS="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGE4_TFLAGS)" \
|
$(TARGET-stage4-zlib)
|
$(TARGET-stage4-zlib)
|
|
|
maybe-clean-stage4-zlib: clean-stage4-zlib
|
maybe-clean-stage4-zlib: clean-stage4-zlib
|
clean-stage4: clean-stage4-zlib
|
clean-stage4: clean-stage4-zlib
|
clean-stage4-zlib:
|
clean-stage4-zlib:
|
Line 36369... |
Line 39642... |
TARGET-stageprofile-zlib = $(TARGET-zlib)
|
TARGET-stageprofile-zlib = $(TARGET-zlib)
|
all-stageprofile-zlib: configure-stageprofile-zlib
|
all-stageprofile-zlib: configure-stageprofile-zlib
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/zlib && \
|
cd $(HOST_SUBDIR)/zlib && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" \
|
CFLAGS="$(STAGEprofile_CFLAGS)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
CXXFLAGS="$(STAGEprofile_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
LIBCFLAGS="$(STAGEprofile_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)" \
|
$(TARGET-stageprofile-zlib)
|
$(TARGET-stageprofile-zlib)
|
|
|
maybe-clean-stageprofile-zlib: clean-stageprofile-zlib
|
maybe-clean-stageprofile-zlib: clean-stageprofile-zlib
|
clean-stageprofile: clean-stageprofile-zlib
|
clean-stageprofile: clean-stageprofile-zlib
|
clean-stageprofile-zlib:
|
clean-stageprofile-zlib:
|
Line 36407... |
Line 39685... |
TARGET-stagefeedback-zlib = $(TARGET-zlib)
|
TARGET-stagefeedback-zlib = $(TARGET-zlib)
|
all-stagefeedback-zlib: configure-stagefeedback-zlib
|
all-stagefeedback-zlib: configure-stagefeedback-zlib
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
$(POSTSTAGE1_HOST_EXPORTS) \
|
cd $(HOST_SUBDIR)/zlib && \
|
cd $(HOST_SUBDIR)/zlib && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use" CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use" \
|
CFLAGS="$(STAGEfeedback_CFLAGS)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
CXXFLAGS="$(STAGEfeedback_CFLAGS)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
LIBCFLAGS="$(STAGEfeedback_CFLAGS)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" $(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_HOST_FLAGS) $(POSTSTAGE1_FLAGS_TO_PASS) \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)" \
|
$(TARGET-stagefeedback-zlib)
|
$(TARGET-stagefeedback-zlib)
|
|
|
maybe-clean-stagefeedback-zlib: clean-stagefeedback-zlib
|
maybe-clean-stagefeedback-zlib: clean-stagefeedback-zlib
|
clean-stagefeedback: clean-stagefeedback-zlib
|
clean-stagefeedback: clean-stagefeedback-zlib
|
clean-stagefeedback-zlib:
|
clean-stagefeedback-zlib:
|
Line 39700... |
Line 42983... |
configure-target-libstdc++-v3: stage_current
|
configure-target-libstdc++-v3: stage_current
|
@endif gcc-bootstrap
|
@endif gcc-bootstrap
|
@if target-libstdc++-v3
|
@if target-libstdc++-v3
|
maybe-configure-target-libstdc++-v3: configure-target-libstdc++-v3
|
maybe-configure-target-libstdc++-v3: configure-target-libstdc++-v3
|
configure-target-libstdc++-v3:
|
configure-target-libstdc++-v3:
|
@: $(MAKE); $(unstage)
|
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
echo "Checking multilib configuration for libstdc++-v3..."; \
|
echo "Checking multilib configuration for libstdc++-v3..."; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3 ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3 ; \
|
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp 2> /dev/null ; \
|
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp 2> /dev/null ; \
|
Line 39737... |
Line 43019... |
|| exit 1
|
|| exit 1
|
@endif target-libstdc++-v3
|
@endif target-libstdc++-v3
|
|
|
|
|
|
|
|
.PHONY: configure-stage1-target-libstdc++-v3 maybe-configure-stage1-target-libstdc++-v3
|
|
maybe-configure-stage1-target-libstdc++-v3:
|
|
@if target-libstdc++-v3-bootstrap
|
|
maybe-configure-stage1-target-libstdc++-v3: configure-stage1-target-libstdc++-v3
|
|
configure-stage1-target-libstdc++-v3:
|
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
|
echo "Checking multilib configuration for libstdc++-v3..."; \
|
|
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp 2> /dev/null ; \
|
|
if test -r $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; then \
|
|
if cmp -s $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; then \
|
|
rm -f $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp; \
|
|
else \
|
|
rm -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile; \
|
|
mv $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; \
|
|
fi; \
|
|
else \
|
|
mv $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; \
|
|
fi; \
|
|
test ! -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile || exit 0; \
|
|
$(RAW_CXX_TARGET_EXPORTS) \
|
|
CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
|
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)"; export LIBCFLAGS; \
|
|
echo Configuring stage 1 in $(TARGET_SUBDIR)/libstdc++-v3 ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3 ; \
|
|
cd $(TARGET_SUBDIR)/libstdc++-v3 || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(TARGET_SUBDIR)/libstdc++-v3/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/libstdc++-v3"; \
|
|
libsrcdir="$$s/libstdc++-v3"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
$(STAGE1_CONFIGURE_FLAGS)
|
|
@endif target-libstdc++-v3-bootstrap
|
|
|
|
.PHONY: configure-stage2-target-libstdc++-v3 maybe-configure-stage2-target-libstdc++-v3
|
|
maybe-configure-stage2-target-libstdc++-v3:
|
|
@if target-libstdc++-v3-bootstrap
|
|
maybe-configure-stage2-target-libstdc++-v3: configure-stage2-target-libstdc++-v3
|
|
configure-stage2-target-libstdc++-v3:
|
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
|
echo "Checking multilib configuration for libstdc++-v3..."; \
|
|
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp 2> /dev/null ; \
|
|
if test -r $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; then \
|
|
if cmp -s $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; then \
|
|
rm -f $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp; \
|
|
else \
|
|
rm -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile; \
|
|
mv $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; \
|
|
fi; \
|
|
else \
|
|
mv $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; \
|
|
fi; \
|
|
test ! -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile || exit 0; \
|
|
$(RAW_CXX_TARGET_EXPORTS) \
|
|
\
|
|
CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
|
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)"; export LIBCFLAGS; \
|
|
echo Configuring stage 2 in $(TARGET_SUBDIR)/libstdc++-v3 ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3 ; \
|
|
cd $(TARGET_SUBDIR)/libstdc++-v3 || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(TARGET_SUBDIR)/libstdc++-v3/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/libstdc++-v3"; \
|
|
libsrcdir="$$s/libstdc++-v3"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
$(STAGE2_CONFIGURE_FLAGS)
|
|
@endif target-libstdc++-v3-bootstrap
|
|
|
|
.PHONY: configure-stage3-target-libstdc++-v3 maybe-configure-stage3-target-libstdc++-v3
|
|
maybe-configure-stage3-target-libstdc++-v3:
|
|
@if target-libstdc++-v3-bootstrap
|
|
maybe-configure-stage3-target-libstdc++-v3: configure-stage3-target-libstdc++-v3
|
|
configure-stage3-target-libstdc++-v3:
|
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
|
echo "Checking multilib configuration for libstdc++-v3..."; \
|
|
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp 2> /dev/null ; \
|
|
if test -r $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; then \
|
|
if cmp -s $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; then \
|
|
rm -f $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp; \
|
|
else \
|
|
rm -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile; \
|
|
mv $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; \
|
|
fi; \
|
|
else \
|
|
mv $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; \
|
|
fi; \
|
|
test ! -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile || exit 0; \
|
|
$(RAW_CXX_TARGET_EXPORTS) \
|
|
\
|
|
CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
|
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)"; export LIBCFLAGS; \
|
|
echo Configuring stage 3 in $(TARGET_SUBDIR)/libstdc++-v3 ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3 ; \
|
|
cd $(TARGET_SUBDIR)/libstdc++-v3 || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(TARGET_SUBDIR)/libstdc++-v3/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/libstdc++-v3"; \
|
|
libsrcdir="$$s/libstdc++-v3"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
$(STAGE3_CONFIGURE_FLAGS)
|
|
@endif target-libstdc++-v3-bootstrap
|
|
|
|
.PHONY: configure-stage4-target-libstdc++-v3 maybe-configure-stage4-target-libstdc++-v3
|
|
maybe-configure-stage4-target-libstdc++-v3:
|
|
@if target-libstdc++-v3-bootstrap
|
|
maybe-configure-stage4-target-libstdc++-v3: configure-stage4-target-libstdc++-v3
|
|
configure-stage4-target-libstdc++-v3:
|
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
|
echo "Checking multilib configuration for libstdc++-v3..."; \
|
|
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp 2> /dev/null ; \
|
|
if test -r $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; then \
|
|
if cmp -s $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; then \
|
|
rm -f $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp; \
|
|
else \
|
|
rm -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile; \
|
|
mv $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; \
|
|
fi; \
|
|
else \
|
|
mv $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; \
|
|
fi; \
|
|
test ! -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile || exit 0; \
|
|
$(RAW_CXX_TARGET_EXPORTS) \
|
|
\
|
|
CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
|
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)"; export LIBCFLAGS; \
|
|
echo Configuring stage 4 in $(TARGET_SUBDIR)/libstdc++-v3 ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3 ; \
|
|
cd $(TARGET_SUBDIR)/libstdc++-v3 || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(TARGET_SUBDIR)/libstdc++-v3/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/libstdc++-v3"; \
|
|
libsrcdir="$$s/libstdc++-v3"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
$(STAGE4_CONFIGURE_FLAGS)
|
|
@endif target-libstdc++-v3-bootstrap
|
|
|
|
.PHONY: configure-stageprofile-target-libstdc++-v3 maybe-configure-stageprofile-target-libstdc++-v3
|
|
maybe-configure-stageprofile-target-libstdc++-v3:
|
|
@if target-libstdc++-v3-bootstrap
|
|
maybe-configure-stageprofile-target-libstdc++-v3: configure-stageprofile-target-libstdc++-v3
|
|
configure-stageprofile-target-libstdc++-v3:
|
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
|
echo "Checking multilib configuration for libstdc++-v3..."; \
|
|
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp 2> /dev/null ; \
|
|
if test -r $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; then \
|
|
if cmp -s $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; then \
|
|
rm -f $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp; \
|
|
else \
|
|
rm -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile; \
|
|
mv $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; \
|
|
fi; \
|
|
else \
|
|
mv $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; \
|
|
fi; \
|
|
test ! -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile || exit 0; \
|
|
$(RAW_CXX_TARGET_EXPORTS) \
|
|
\
|
|
CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
|
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)"; export LIBCFLAGS; \
|
|
echo Configuring stage profile in $(TARGET_SUBDIR)/libstdc++-v3 ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3 ; \
|
|
cd $(TARGET_SUBDIR)/libstdc++-v3 || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(TARGET_SUBDIR)/libstdc++-v3/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/libstdc++-v3"; \
|
|
libsrcdir="$$s/libstdc++-v3"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
$(STAGEprofile_CONFIGURE_FLAGS)
|
|
@endif target-libstdc++-v3-bootstrap
|
|
|
|
.PHONY: configure-stagefeedback-target-libstdc++-v3 maybe-configure-stagefeedback-target-libstdc++-v3
|
|
maybe-configure-stagefeedback-target-libstdc++-v3:
|
|
@if target-libstdc++-v3-bootstrap
|
|
maybe-configure-stagefeedback-target-libstdc++-v3: configure-stagefeedback-target-libstdc++-v3
|
|
configure-stagefeedback-target-libstdc++-v3:
|
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
|
echo "Checking multilib configuration for libstdc++-v3..."; \
|
|
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp 2> /dev/null ; \
|
|
if test -r $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; then \
|
|
if cmp -s $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; then \
|
|
rm -f $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp; \
|
|
else \
|
|
rm -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile; \
|
|
mv $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; \
|
|
fi; \
|
|
else \
|
|
mv $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; \
|
|
fi; \
|
|
test ! -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile || exit 0; \
|
|
$(RAW_CXX_TARGET_EXPORTS) \
|
|
\
|
|
CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
|
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)"; export LIBCFLAGS; \
|
|
echo Configuring stage feedback in $(TARGET_SUBDIR)/libstdc++-v3 ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3 ; \
|
|
cd $(TARGET_SUBDIR)/libstdc++-v3 || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(TARGET_SUBDIR)/libstdc++-v3/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/libstdc++-v3"; \
|
|
libsrcdir="$$s/libstdc++-v3"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
$(STAGEfeedback_CONFIGURE_FLAGS)
|
|
@endif target-libstdc++-v3-bootstrap
|
|
|
|
|
|
|
|
|
|
|
|
.PHONY: all-target-libstdc++-v3 maybe-all-target-libstdc++-v3
|
|
maybe-all-target-libstdc++-v3:
|
|
@if gcc-bootstrap
|
|
all-target-libstdc++-v3: stage_current
|
|
@endif gcc-bootstrap
|
|
@if target-libstdc++-v3
|
|
TARGET-target-libstdc++-v3=all
|
|
maybe-all-target-libstdc++-v3: all-target-libstdc++-v3
|
|
all-target-libstdc++-v3: configure-target-libstdc++-v3
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(RAW_CXX_TARGET_EXPORTS) \
|
|
(cd $(TARGET_SUBDIR)/libstdc++-v3 && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' \
|
|
$(TARGET-target-libstdc++-v3))
|
|
@endif target-libstdc++-v3
|
|
|
|
|
|
|
|
.PHONY: all-stage1-target-libstdc++-v3 maybe-all-stage1-target-libstdc++-v3
|
|
.PHONY: clean-stage1-target-libstdc++-v3 maybe-clean-stage1-target-libstdc++-v3
|
|
maybe-all-stage1-target-libstdc++-v3:
|
|
maybe-clean-stage1-target-libstdc++-v3:
|
|
@if target-libstdc++-v3-bootstrap
|
|
maybe-all-stage1-target-libstdc++-v3: all-stage1-target-libstdc++-v3
|
|
all-stage1: all-stage1-target-libstdc++-v3
|
|
TARGET-stage1-target-libstdc++-v3 = $(TARGET-target-libstdc++-v3)
|
|
all-stage1-target-libstdc++-v3: configure-stage1-target-libstdc++-v3
|
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
|
$(RAW_CXX_TARGET_EXPORTS) \
|
|
cd $(TARGET_SUBDIR)/libstdc++-v3 && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' \
|
|
TFLAGS="$(STAGE1_TFLAGS)" \
|
|
$(TARGET-stage1-target-libstdc++-v3)
|
|
|
|
maybe-clean-stage1-target-libstdc++-v3: clean-stage1-target-libstdc++-v3
|
|
clean-stage1: clean-stage1-target-libstdc++-v3
|
|
clean-stage1-target-libstdc++-v3:
|
|
@if [ $(current_stage) = stage1 ]; then \
|
|
[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(TARGET_SUBDIR)/stage1-libstdc++-v3/Makefile ] || exit 0; \
|
|
$(MAKE) stage1-start; \
|
|
fi; \
|
|
cd $(TARGET_SUBDIR)/libstdc++-v3 && \
|
|
$(MAKE) $(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' \
|
|
clean
|
|
@endif target-libstdc++-v3-bootstrap
|
|
|
|
|
|
.PHONY: all-stage2-target-libstdc++-v3 maybe-all-stage2-target-libstdc++-v3
|
|
.PHONY: clean-stage2-target-libstdc++-v3 maybe-clean-stage2-target-libstdc++-v3
|
|
maybe-all-stage2-target-libstdc++-v3:
|
|
maybe-clean-stage2-target-libstdc++-v3:
|
|
@if target-libstdc++-v3-bootstrap
|
|
maybe-all-stage2-target-libstdc++-v3: all-stage2-target-libstdc++-v3
|
|
all-stage2: all-stage2-target-libstdc++-v3
|
|
TARGET-stage2-target-libstdc++-v3 = $(TARGET-target-libstdc++-v3)
|
|
all-stage2-target-libstdc++-v3: configure-stage2-target-libstdc++-v3
|
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
|
$(RAW_CXX_TARGET_EXPORTS) \
|
|
\
|
|
cd $(TARGET_SUBDIR)/libstdc++-v3 && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' \
|
|
TFLAGS="$(STAGE2_TFLAGS)" \
|
|
$(TARGET-stage2-target-libstdc++-v3)
|
|
|
|
maybe-clean-stage2-target-libstdc++-v3: clean-stage2-target-libstdc++-v3
|
|
clean-stage2: clean-stage2-target-libstdc++-v3
|
|
clean-stage2-target-libstdc++-v3:
|
|
@if [ $(current_stage) = stage2 ]; then \
|
|
[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(TARGET_SUBDIR)/stage2-libstdc++-v3/Makefile ] || exit 0; \
|
|
$(MAKE) stage2-start; \
|
|
fi; \
|
|
cd $(TARGET_SUBDIR)/libstdc++-v3 && \
|
|
$(MAKE) $(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' \
|
|
\
|
|
clean
|
|
@endif target-libstdc++-v3-bootstrap
|
|
|
|
|
|
.PHONY: all-stage3-target-libstdc++-v3 maybe-all-stage3-target-libstdc++-v3
|
|
.PHONY: clean-stage3-target-libstdc++-v3 maybe-clean-stage3-target-libstdc++-v3
|
|
maybe-all-stage3-target-libstdc++-v3:
|
|
maybe-clean-stage3-target-libstdc++-v3:
|
|
@if target-libstdc++-v3-bootstrap
|
|
maybe-all-stage3-target-libstdc++-v3: all-stage3-target-libstdc++-v3
|
|
all-stage3: all-stage3-target-libstdc++-v3
|
|
TARGET-stage3-target-libstdc++-v3 = $(TARGET-target-libstdc++-v3)
|
|
all-stage3-target-libstdc++-v3: configure-stage3-target-libstdc++-v3
|
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
|
$(RAW_CXX_TARGET_EXPORTS) \
|
|
\
|
|
cd $(TARGET_SUBDIR)/libstdc++-v3 && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' \
|
|
TFLAGS="$(STAGE3_TFLAGS)" \
|
|
$(TARGET-stage3-target-libstdc++-v3)
|
|
|
|
maybe-clean-stage3-target-libstdc++-v3: clean-stage3-target-libstdc++-v3
|
|
clean-stage3: clean-stage3-target-libstdc++-v3
|
|
clean-stage3-target-libstdc++-v3:
|
|
@if [ $(current_stage) = stage3 ]; then \
|
|
[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(TARGET_SUBDIR)/stage3-libstdc++-v3/Makefile ] || exit 0; \
|
|
$(MAKE) stage3-start; \
|
|
fi; \
|
|
cd $(TARGET_SUBDIR)/libstdc++-v3 && \
|
|
$(MAKE) $(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' \
|
|
\
|
|
clean
|
|
@endif target-libstdc++-v3-bootstrap
|
|
|
|
|
|
.PHONY: all-stage4-target-libstdc++-v3 maybe-all-stage4-target-libstdc++-v3
|
|
.PHONY: clean-stage4-target-libstdc++-v3 maybe-clean-stage4-target-libstdc++-v3
|
|
maybe-all-stage4-target-libstdc++-v3:
|
|
maybe-clean-stage4-target-libstdc++-v3:
|
|
@if target-libstdc++-v3-bootstrap
|
|
maybe-all-stage4-target-libstdc++-v3: all-stage4-target-libstdc++-v3
|
|
all-stage4: all-stage4-target-libstdc++-v3
|
|
TARGET-stage4-target-libstdc++-v3 = $(TARGET-target-libstdc++-v3)
|
|
all-stage4-target-libstdc++-v3: configure-stage4-target-libstdc++-v3
|
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
|
$(RAW_CXX_TARGET_EXPORTS) \
|
|
\
|
|
cd $(TARGET_SUBDIR)/libstdc++-v3 && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' \
|
|
TFLAGS="$(STAGE4_TFLAGS)" \
|
|
$(TARGET-stage4-target-libstdc++-v3)
|
|
|
|
maybe-clean-stage4-target-libstdc++-v3: clean-stage4-target-libstdc++-v3
|
|
clean-stage4: clean-stage4-target-libstdc++-v3
|
|
clean-stage4-target-libstdc++-v3:
|
|
@if [ $(current_stage) = stage4 ]; then \
|
|
[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(TARGET_SUBDIR)/stage4-libstdc++-v3/Makefile ] || exit 0; \
|
|
$(MAKE) stage4-start; \
|
|
fi; \
|
|
cd $(TARGET_SUBDIR)/libstdc++-v3 && \
|
|
$(MAKE) $(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' \
|
|
\
|
|
clean
|
|
@endif target-libstdc++-v3-bootstrap
|
|
|
|
|
|
.PHONY: all-stageprofile-target-libstdc++-v3 maybe-all-stageprofile-target-libstdc++-v3
|
|
.PHONY: clean-stageprofile-target-libstdc++-v3 maybe-clean-stageprofile-target-libstdc++-v3
|
|
maybe-all-stageprofile-target-libstdc++-v3:
|
|
maybe-clean-stageprofile-target-libstdc++-v3:
|
|
@if target-libstdc++-v3-bootstrap
|
|
maybe-all-stageprofile-target-libstdc++-v3: all-stageprofile-target-libstdc++-v3
|
|
all-stageprofile: all-stageprofile-target-libstdc++-v3
|
|
TARGET-stageprofile-target-libstdc++-v3 = $(TARGET-target-libstdc++-v3)
|
|
all-stageprofile-target-libstdc++-v3: configure-stageprofile-target-libstdc++-v3
|
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
|
$(RAW_CXX_TARGET_EXPORTS) \
|
|
\
|
|
cd $(TARGET_SUBDIR)/libstdc++-v3 && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)" \
|
|
$(TARGET-stageprofile-target-libstdc++-v3)
|
|
|
|
maybe-clean-stageprofile-target-libstdc++-v3: clean-stageprofile-target-libstdc++-v3
|
|
clean-stageprofile: clean-stageprofile-target-libstdc++-v3
|
|
clean-stageprofile-target-libstdc++-v3:
|
|
@if [ $(current_stage) = stageprofile ]; then \
|
|
[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(TARGET_SUBDIR)/stageprofile-libstdc++-v3/Makefile ] || exit 0; \
|
|
$(MAKE) stageprofile-start; \
|
|
fi; \
|
|
cd $(TARGET_SUBDIR)/libstdc++-v3 && \
|
|
$(MAKE) $(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' \
|
|
\
|
|
clean
|
|
@endif target-libstdc++-v3-bootstrap
|
|
|
.PHONY: all-target-libstdc++-v3 maybe-all-target-libstdc++-v3
|
|
maybe-all-target-libstdc++-v3:
|
.PHONY: all-stagefeedback-target-libstdc++-v3 maybe-all-stagefeedback-target-libstdc++-v3
|
@if gcc-bootstrap
|
.PHONY: clean-stagefeedback-target-libstdc++-v3 maybe-clean-stagefeedback-target-libstdc++-v3
|
all-target-libstdc++-v3: stage_current
|
maybe-all-stagefeedback-target-libstdc++-v3:
|
@endif gcc-bootstrap
|
maybe-clean-stagefeedback-target-libstdc++-v3:
|
@if target-libstdc++-v3
|
@if target-libstdc++-v3-bootstrap
|
TARGET-target-libstdc++-v3=all
|
maybe-all-stagefeedback-target-libstdc++-v3: all-stagefeedback-target-libstdc++-v3
|
maybe-all-target-libstdc++-v3: all-target-libstdc++-v3
|
all-stagefeedback: all-stagefeedback-target-libstdc++-v3
|
all-target-libstdc++-v3: configure-target-libstdc++-v3
|
TARGET-stagefeedback-target-libstdc++-v3 = $(TARGET-target-libstdc++-v3)
|
@: $(MAKE); $(unstage)
|
all-stagefeedback-target-libstdc++-v3: configure-stagefeedback-target-libstdc++-v3
|
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
$(RAW_CXX_TARGET_EXPORTS) \
|
$(RAW_CXX_TARGET_EXPORTS) \
|
(cd $(TARGET_SUBDIR)/libstdc++-v3 && \
|
\
|
$(MAKE) $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' \
|
cd $(TARGET_SUBDIR)/libstdc++-v3 && \
|
$(TARGET-target-libstdc++-v3))
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
@endif target-libstdc++-v3
|
CFLAGS="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)" \
|
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)" \
|
|
$(TARGET-stagefeedback-target-libstdc++-v3)
|
|
|
|
maybe-clean-stagefeedback-target-libstdc++-v3: clean-stagefeedback-target-libstdc++-v3
|
|
clean-stagefeedback: clean-stagefeedback-target-libstdc++-v3
|
|
clean-stagefeedback-target-libstdc++-v3:
|
|
@if [ $(current_stage) = stagefeedback ]; then \
|
|
[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(TARGET_SUBDIR)/stagefeedback-libstdc++-v3/Makefile ] || exit 0; \
|
|
$(MAKE) stagefeedback-start; \
|
|
fi; \
|
|
cd $(TARGET_SUBDIR)/libstdc++-v3 && \
|
|
$(MAKE) $(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' \
|
|
\
|
|
clean
|
|
@endif target-libstdc++-v3-bootstrap
|
|
|
|
|
|
|
|
|
|
|
|
|
Line 41513... |
Line 45322... |
configure-stage1-target-libgcc:
|
configure-stage1-target-libgcc:
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc
|
@$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
echo "Checking multilib configuration for libgcc..."; \
|
echo "Checking multilib configuration for libgcc..."; \
|
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libgcc/multilib.tmp 2> /dev/null ; \
|
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libgcc/multilib.tmp 2> /dev/null ; \
|
if test -r $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
if test -r $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
if cmp -s $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
if cmp -s $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
rm -f $(TARGET_SUBDIR)/libgcc/multilib.tmp; \
|
rm -f $(TARGET_SUBDIR)/libgcc/multilib.tmp; \
|
Line 41527... |
Line 45337... |
else \
|
else \
|
mv $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; \
|
mv $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; \
|
fi; \
|
fi; \
|
test ! -f $(TARGET_SUBDIR)/libgcc/Makefile || exit 0; \
|
test ! -f $(TARGET_SUBDIR)/libgcc/Makefile || exit 0; \
|
$(NORMAL_TARGET_EXPORTS) \
|
$(NORMAL_TARGET_EXPORTS) \
|
CFLAGS="$(STAGE1_LIBCFLAGS) $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE1_LIBCFLAGS) $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)"; export LIBCFLAGS; \
|
echo Configuring stage 1 in $(TARGET_SUBDIR)/libgcc ; \
|
echo Configuring stage 1 in $(TARGET_SUBDIR)/libgcc ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc ; \
|
cd $(TARGET_SUBDIR)/libgcc || exit 1; \
|
cd $(TARGET_SUBDIR)/libgcc || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 41542... |
Line 45353... |
srcdiroption="--srcdir=$${topdir}/libgcc"; \
|
srcdiroption="--srcdir=$${topdir}/libgcc"; \
|
libsrcdir="$$s/libgcc"; \
|
libsrcdir="$$s/libgcc"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
\
|
$(STAGE1_CONFIGURE_FLAGS)
|
--disable-intermodule $(STAGE1_CHECKING) --disable-coverage --enable-languages="$(STAGE1_LANGUAGES)"
|
|
@endif target-libgcc-bootstrap
|
@endif target-libgcc-bootstrap
|
|
|
.PHONY: configure-stage2-target-libgcc maybe-configure-stage2-target-libgcc
|
.PHONY: configure-stage2-target-libgcc maybe-configure-stage2-target-libgcc
|
maybe-configure-stage2-target-libgcc:
|
maybe-configure-stage2-target-libgcc:
|
@if target-libgcc-bootstrap
|
@if target-libgcc-bootstrap
|
Line 41555... |
Line 45365... |
configure-stage2-target-libgcc:
|
configure-stage2-target-libgcc:
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc
|
@$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
echo "Checking multilib configuration for libgcc..."; \
|
echo "Checking multilib configuration for libgcc..."; \
|
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libgcc/multilib.tmp 2> /dev/null ; \
|
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libgcc/multilib.tmp 2> /dev/null ; \
|
if test -r $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
if test -r $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
if cmp -s $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
if cmp -s $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
rm -f $(TARGET_SUBDIR)/libgcc/multilib.tmp; \
|
rm -f $(TARGET_SUBDIR)/libgcc/multilib.tmp; \
|
Line 41570... |
Line 45381... |
mv $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; \
|
mv $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; \
|
fi; \
|
fi; \
|
test ! -f $(TARGET_SUBDIR)/libgcc/Makefile || exit 0; \
|
test ! -f $(TARGET_SUBDIR)/libgcc/Makefile || exit 0; \
|
$(NORMAL_TARGET_EXPORTS) \
|
$(NORMAL_TARGET_EXPORTS) \
|
\
|
\
|
CFLAGS="$(STAGE2_LIBCFLAGS) $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_LIBCFLAGS) $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)"; export LIBCFLAGS; \
|
echo Configuring stage 2 in $(TARGET_SUBDIR)/libgcc ; \
|
echo Configuring stage 2 in $(TARGET_SUBDIR)/libgcc ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc ; \
|
cd $(TARGET_SUBDIR)/libgcc || exit 1; \
|
cd $(TARGET_SUBDIR)/libgcc || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 41586... |
Line 45398... |
libsrcdir="$$s/libgcc"; \
|
libsrcdir="$$s/libgcc"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE2_CONFIGURE_FLAGS)
|
@endif target-libgcc-bootstrap
|
|
|
|
.PHONY: configure-stageb2g0-target-libgcc maybe-configure-stageb2g0-target-libgcc
|
|
maybe-configure-stageb2g0-target-libgcc:
|
|
@if target-libgcc-bootstrap
|
|
maybe-configure-stageb2g0-target-libgcc: configure-stageb2g0-target-libgcc
|
|
configure-stageb2g0-target-libgcc:
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
echo "Checking multilib configuration for libgcc..."; \
|
|
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libgcc/multilib.tmp 2> /dev/null ; \
|
|
if test -r $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
|
if cmp -s $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
|
rm -f $(TARGET_SUBDIR)/libgcc/multilib.tmp; \
|
|
else \
|
|
rm -f $(TARGET_SUBDIR)/libgcc/Makefile; \
|
|
mv $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; \
|
|
fi; \
|
|
else \
|
|
mv $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; \
|
|
fi; \
|
|
test ! -f $(TARGET_SUBDIR)/libgcc/Makefile || exit 0; \
|
|
$(NORMAL_TARGET_EXPORTS) \
|
|
\
|
|
CFLAGS="$(STAGE2_LIBCFLAGS) -g0 $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE2_LIBCFLAGS) -g0 $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
|
echo Configuring stage b2g0 in $(TARGET_SUBDIR)/libgcc ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc ; \
|
|
cd $(TARGET_SUBDIR)/libgcc || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(TARGET_SUBDIR)/libgcc/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/libgcc"; \
|
|
libsrcdir="$$s/libgcc"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@
|
|
@endif target-libgcc-bootstrap
|
@endif target-libgcc-bootstrap
|
|
|
.PHONY: configure-stage3-target-libgcc maybe-configure-stage3-target-libgcc
|
.PHONY: configure-stage3-target-libgcc maybe-configure-stage3-target-libgcc
|
maybe-configure-stage3-target-libgcc:
|
maybe-configure-stage3-target-libgcc:
|
@if target-libgcc-bootstrap
|
@if target-libgcc-bootstrap
|
Line 41641... |
Line 45410... |
configure-stage3-target-libgcc:
|
configure-stage3-target-libgcc:
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc
|
@$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
echo "Checking multilib configuration for libgcc..."; \
|
echo "Checking multilib configuration for libgcc..."; \
|
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libgcc/multilib.tmp 2> /dev/null ; \
|
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libgcc/multilib.tmp 2> /dev/null ; \
|
if test -r $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
if test -r $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
if cmp -s $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
if cmp -s $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
rm -f $(TARGET_SUBDIR)/libgcc/multilib.tmp; \
|
rm -f $(TARGET_SUBDIR)/libgcc/multilib.tmp; \
|
Line 41656... |
Line 45426... |
mv $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; \
|
mv $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; \
|
fi; \
|
fi; \
|
test ! -f $(TARGET_SUBDIR)/libgcc/Makefile || exit 0; \
|
test ! -f $(TARGET_SUBDIR)/libgcc/Makefile || exit 0; \
|
$(NORMAL_TARGET_EXPORTS) \
|
$(NORMAL_TARGET_EXPORTS) \
|
\
|
\
|
CFLAGS="$(STAGE3_LIBCFLAGS) $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_LIBCFLAGS) $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)"; export LIBCFLAGS; \
|
echo Configuring stage 3 in $(TARGET_SUBDIR)/libgcc ; \
|
echo Configuring stage 3 in $(TARGET_SUBDIR)/libgcc ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc ; \
|
cd $(TARGET_SUBDIR)/libgcc || exit 1; \
|
cd $(TARGET_SUBDIR)/libgcc || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 41672... |
Line 45443... |
libsrcdir="$$s/libgcc"; \
|
libsrcdir="$$s/libgcc"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE3_CONFIGURE_FLAGS)
|
@endif target-libgcc-bootstrap
|
|
|
|
.PHONY: configure-stageb3g2-target-libgcc maybe-configure-stageb3g2-target-libgcc
|
|
maybe-configure-stageb3g2-target-libgcc:
|
|
@if target-libgcc-bootstrap
|
|
maybe-configure-stageb3g2-target-libgcc: configure-stageb3g2-target-libgcc
|
|
configure-stageb3g2-target-libgcc:
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
echo "Checking multilib configuration for libgcc..."; \
|
|
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libgcc/multilib.tmp 2> /dev/null ; \
|
|
if test -r $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
|
if cmp -s $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
|
rm -f $(TARGET_SUBDIR)/libgcc/multilib.tmp; \
|
|
else \
|
|
rm -f $(TARGET_SUBDIR)/libgcc/Makefile; \
|
|
mv $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; \
|
|
fi; \
|
|
else \
|
|
mv $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; \
|
|
fi; \
|
|
test ! -f $(TARGET_SUBDIR)/libgcc/Makefile || exit 0; \
|
|
$(NORMAL_TARGET_EXPORTS) \
|
|
\
|
|
CFLAGS="$(STAGE3_LIBCFLAGS) -g2 $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
|
CXXFLAGS="$(STAGE3_LIBCFLAGS) -g2 $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
|
echo Configuring stage b3g2 in $(TARGET_SUBDIR)/libgcc ; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc ; \
|
|
cd $(TARGET_SUBDIR)/libgcc || exit 1; \
|
|
case $(srcdir) in \
|
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
|
*) topdir=`echo $(TARGET_SUBDIR)/libgcc/ | \
|
|
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
|
esac; \
|
|
srcdiroption="--srcdir=$${topdir}/libgcc"; \
|
|
libsrcdir="$$s/libgcc"; \
|
|
$(SHELL) $${libsrcdir}/configure \
|
|
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
|
--target=${target_alias} $${srcdiroption} \
|
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
|
@stage2_werror_flag@
|
|
@endif target-libgcc-bootstrap
|
@endif target-libgcc-bootstrap
|
|
|
.PHONY: configure-stage4-target-libgcc maybe-configure-stage4-target-libgcc
|
.PHONY: configure-stage4-target-libgcc maybe-configure-stage4-target-libgcc
|
maybe-configure-stage4-target-libgcc:
|
maybe-configure-stage4-target-libgcc:
|
@if target-libgcc-bootstrap
|
@if target-libgcc-bootstrap
|
Line 41727... |
Line 45455... |
configure-stage4-target-libgcc:
|
configure-stage4-target-libgcc:
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc
|
@$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
echo "Checking multilib configuration for libgcc..."; \
|
echo "Checking multilib configuration for libgcc..."; \
|
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libgcc/multilib.tmp 2> /dev/null ; \
|
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libgcc/multilib.tmp 2> /dev/null ; \
|
if test -r $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
if test -r $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
if cmp -s $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
if cmp -s $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
rm -f $(TARGET_SUBDIR)/libgcc/multilib.tmp; \
|
rm -f $(TARGET_SUBDIR)/libgcc/multilib.tmp; \
|
Line 41742... |
Line 45471... |
mv $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; \
|
mv $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; \
|
fi; \
|
fi; \
|
test ! -f $(TARGET_SUBDIR)/libgcc/Makefile || exit 0; \
|
test ! -f $(TARGET_SUBDIR)/libgcc/Makefile || exit 0; \
|
$(NORMAL_TARGET_EXPORTS) \
|
$(NORMAL_TARGET_EXPORTS) \
|
\
|
\
|
CFLAGS="$(STAGE4_CFLAGS) $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE4_CFLAGS) $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)"; export LIBCFLAGS; \
|
echo Configuring stage 4 in $(TARGET_SUBDIR)/libgcc ; \
|
echo Configuring stage 4 in $(TARGET_SUBDIR)/libgcc ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc ; \
|
cd $(TARGET_SUBDIR)/libgcc || exit 1; \
|
cd $(TARGET_SUBDIR)/libgcc || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 41758... |
Line 45488... |
libsrcdir="$$s/libgcc"; \
|
libsrcdir="$$s/libgcc"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGE4_CONFIGURE_FLAGS)
|
@endif target-libgcc-bootstrap
|
@endif target-libgcc-bootstrap
|
|
|
.PHONY: configure-stageprofile-target-libgcc maybe-configure-stageprofile-target-libgcc
|
.PHONY: configure-stageprofile-target-libgcc maybe-configure-stageprofile-target-libgcc
|
maybe-configure-stageprofile-target-libgcc:
|
maybe-configure-stageprofile-target-libgcc:
|
@if target-libgcc-bootstrap
|
@if target-libgcc-bootstrap
|
Line 41770... |
Line 45500... |
configure-stageprofile-target-libgcc:
|
configure-stageprofile-target-libgcc:
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc
|
@$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
echo "Checking multilib configuration for libgcc..."; \
|
echo "Checking multilib configuration for libgcc..."; \
|
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libgcc/multilib.tmp 2> /dev/null ; \
|
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libgcc/multilib.tmp 2> /dev/null ; \
|
if test -r $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
if test -r $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
if cmp -s $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
if cmp -s $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
rm -f $(TARGET_SUBDIR)/libgcc/multilib.tmp; \
|
rm -f $(TARGET_SUBDIR)/libgcc/multilib.tmp; \
|
Line 41785... |
Line 45516... |
mv $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; \
|
mv $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; \
|
fi; \
|
fi; \
|
test ! -f $(TARGET_SUBDIR)/libgcc/Makefile || exit 0; \
|
test ! -f $(TARGET_SUBDIR)/libgcc/Makefile || exit 0; \
|
$(NORMAL_TARGET_EXPORTS) \
|
$(NORMAL_TARGET_EXPORTS) \
|
\
|
\
|
CFLAGS="$(STAGE2_LIBCFLAGS) -fprofile-generate $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE2_LIBCFLAGS) -fprofile-generate $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)"; export LIBCFLAGS; \
|
echo Configuring stage profile in $(TARGET_SUBDIR)/libgcc ; \
|
echo Configuring stage profile in $(TARGET_SUBDIR)/libgcc ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc ; \
|
cd $(TARGET_SUBDIR)/libgcc || exit 1; \
|
cd $(TARGET_SUBDIR)/libgcc || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 41801... |
Line 45533... |
libsrcdir="$$s/libgcc"; \
|
libsrcdir="$$s/libgcc"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGEprofile_CONFIGURE_FLAGS)
|
@endif target-libgcc-bootstrap
|
@endif target-libgcc-bootstrap
|
|
|
.PHONY: configure-stagefeedback-target-libgcc maybe-configure-stagefeedback-target-libgcc
|
.PHONY: configure-stagefeedback-target-libgcc maybe-configure-stagefeedback-target-libgcc
|
maybe-configure-stagefeedback-target-libgcc:
|
maybe-configure-stagefeedback-target-libgcc:
|
@if target-libgcc-bootstrap
|
@if target-libgcc-bootstrap
|
Line 41813... |
Line 45545... |
configure-stagefeedback-target-libgcc:
|
configure-stagefeedback-target-libgcc:
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc
|
@$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
echo "Checking multilib configuration for libgcc..."; \
|
echo "Checking multilib configuration for libgcc..."; \
|
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libgcc/multilib.tmp 2> /dev/null ; \
|
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libgcc/multilib.tmp 2> /dev/null ; \
|
if test -r $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
if test -r $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
if cmp -s $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
if cmp -s $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; then \
|
rm -f $(TARGET_SUBDIR)/libgcc/multilib.tmp; \
|
rm -f $(TARGET_SUBDIR)/libgcc/multilib.tmp; \
|
Line 41828... |
Line 45561... |
mv $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; \
|
mv $(TARGET_SUBDIR)/libgcc/multilib.tmp $(TARGET_SUBDIR)/libgcc/multilib.out; \
|
fi; \
|
fi; \
|
test ! -f $(TARGET_SUBDIR)/libgcc/Makefile || exit 0; \
|
test ! -f $(TARGET_SUBDIR)/libgcc/Makefile || exit 0; \
|
$(NORMAL_TARGET_EXPORTS) \
|
$(NORMAL_TARGET_EXPORTS) \
|
\
|
\
|
CFLAGS="$(STAGE3_LIBCFLAGS) -fprofile-use $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
CXXFLAGS="$(STAGE3_LIBCFLAGS) -fprofile-use $(SYSROOT_CFLAGS_FOR_TARGET) $(DEBUG_PREFIX_CFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
|
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)"; export LIBCFLAGS; \
|
echo Configuring stage feedback in $(TARGET_SUBDIR)/libgcc ; \
|
echo Configuring stage feedback in $(TARGET_SUBDIR)/libgcc ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc ; \
|
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libgcc ; \
|
cd $(TARGET_SUBDIR)/libgcc || exit 1; \
|
cd $(TARGET_SUBDIR)/libgcc || exit 1; \
|
case $(srcdir) in \
|
case $(srcdir) in \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
Line 41844... |
Line 45578... |
libsrcdir="$$s/libgcc"; \
|
libsrcdir="$$s/libgcc"; \
|
$(SHELL) $${libsrcdir}/configure \
|
$(SHELL) $${libsrcdir}/configure \
|
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
--target=${target_alias} $${srcdiroption} \
|
--target=${target_alias} $${srcdiroption} \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
--with-build-libsubdir=$(HOST_SUBDIR) \
|
@stage2_werror_flag@
|
$(STAGEfeedback_CONFIGURE_FLAGS)
|
@endif target-libgcc-bootstrap
|
@endif target-libgcc-bootstrap
|
|
|
|
|
|
|
|
|
Line 41882... |
Line 45616... |
TARGET-stage1-target-libgcc = $(TARGET-target-libgcc)
|
TARGET-stage1-target-libgcc = $(TARGET-target-libgcc)
|
all-stage1-target-libgcc: configure-stage1-target-libgcc
|
all-stage1-target-libgcc: configure-stage1-target-libgcc
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE1_TFLAGS)"; \
|
$(NORMAL_TARGET_EXPORTS) \
|
$(NORMAL_TARGET_EXPORTS) \
|
cd $(TARGET_SUBDIR)/libgcc && \
|
cd $(TARGET_SUBDIR)/libgcc && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE1_CFLAGS)" CXXFLAGS="$(STAGE1_CFLAGS)" \
|
CFLAGS="$(CFLAGS_FOR_TARGET)" \
|
LIBCFLAGS="$(STAGE1_LIBCFLAGS)" \
|
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)" \
|
CFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" \
|
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE1_LIBCFLAGS)" $(EXTRA_TARGET_FLAGS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_TARGET_FLAGS) \
|
|
TFLAGS="$(STAGE1_TFLAGS)" \
|
$(TARGET-stage1-target-libgcc)
|
$(TARGET-stage1-target-libgcc)
|
|
|
maybe-clean-stage1-target-libgcc: clean-stage1-target-libgcc
|
maybe-clean-stage1-target-libgcc: clean-stage1-target-libgcc
|
clean-stage1: clean-stage1-target-libgcc
|
clean-stage1: clean-stage1-target-libgcc
|
clean-stage1-target-libgcc:
|
clean-stage1-target-libgcc:
|
Line 41918... |
Line 45657... |
TARGET-stage2-target-libgcc = $(TARGET-target-libgcc)
|
TARGET-stage2-target-libgcc = $(TARGET-target-libgcc)
|
all-stage2-target-libgcc: configure-stage2-target-libgcc
|
all-stage2-target-libgcc: configure-stage2-target-libgcc
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
$(NORMAL_TARGET_EXPORTS) \
|
$(NORMAL_TARGET_EXPORTS) \
|
\
|
\
|
cd $(TARGET_SUBDIR)/libgcc && \
|
cd $(TARGET_SUBDIR)/libgcc && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS)" CXXFLAGS="$(STAGE2_CFLAGS)" \
|
CFLAGS="$(CFLAGS_FOR_TARGET)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS)" \
|
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" \
|
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS)" $(EXTRA_TARGET_FLAGS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_TARGET_FLAGS) \
|
|
TFLAGS="$(STAGE2_TFLAGS)" \
|
$(TARGET-stage2-target-libgcc)
|
$(TARGET-stage2-target-libgcc)
|
|
|
maybe-clean-stage2-target-libgcc: clean-stage2-target-libgcc
|
maybe-clean-stage2-target-libgcc: clean-stage2-target-libgcc
|
clean-stage2: clean-stage2-target-libgcc
|
clean-stage2: clean-stage2-target-libgcc
|
clean-stage2-target-libgcc:
|
clean-stage2-target-libgcc:
|
Line 41944... |
Line 45688... |
\
|
\
|
clean
|
clean
|
@endif target-libgcc-bootstrap
|
@endif target-libgcc-bootstrap
|
|
|
|
|
.PHONY: all-stageb2g0-target-libgcc maybe-all-stageb2g0-target-libgcc
|
|
.PHONY: clean-stageb2g0-target-libgcc maybe-clean-stageb2g0-target-libgcc
|
|
maybe-all-stageb2g0-target-libgcc:
|
|
maybe-clean-stageb2g0-target-libgcc:
|
|
@if target-libgcc-bootstrap
|
|
maybe-all-stageb2g0-target-libgcc: all-stageb2g0-target-libgcc
|
|
all-stageb2g0: all-stageb2g0-target-libgcc
|
|
TARGET-stageb2g0-target-libgcc = $(TARGET-target-libgcc)
|
|
all-stageb2g0-target-libgcc: configure-stageb2g0-target-libgcc
|
|
@[ $(current_stage) = stageb2g0 ] || $(MAKE) stageb2g0-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(NORMAL_TARGET_EXPORTS) \
|
|
\
|
|
cd $(TARGET_SUBDIR)/libgcc && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE2_CFLAGS) -g0" CXXFLAGS="$(STAGE2_CFLAGS) -g0" \
|
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -g0" $(EXTRA_TARGET_FLAGS) \
|
|
$(TARGET-stageb2g0-target-libgcc)
|
|
|
|
maybe-clean-stageb2g0-target-libgcc: clean-stageb2g0-target-libgcc
|
|
clean-stageb2g0: clean-stageb2g0-target-libgcc
|
|
clean-stageb2g0-target-libgcc:
|
|
@if [ $(current_stage) = stageb2g0 ]; then \
|
|
[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(TARGET_SUBDIR)/stageb2g0-libgcc/Makefile ] || exit 0; \
|
|
$(MAKE) stageb2g0-start; \
|
|
fi; \
|
|
cd $(TARGET_SUBDIR)/libgcc && \
|
|
$(MAKE) $(EXTRA_TARGET_FLAGS) \
|
|
\
|
|
clean
|
|
@endif target-libgcc-bootstrap
|
|
|
|
|
|
.PHONY: all-stage3-target-libgcc maybe-all-stage3-target-libgcc
|
.PHONY: all-stage3-target-libgcc maybe-all-stage3-target-libgcc
|
.PHONY: clean-stage3-target-libgcc maybe-clean-stage3-target-libgcc
|
.PHONY: clean-stage3-target-libgcc maybe-clean-stage3-target-libgcc
|
maybe-all-stage3-target-libgcc:
|
maybe-all-stage3-target-libgcc:
|
maybe-clean-stage3-target-libgcc:
|
maybe-clean-stage3-target-libgcc:
|
@if target-libgcc-bootstrap
|
@if target-libgcc-bootstrap
|
Line 41994... |
Line 45700... |
TARGET-stage3-target-libgcc = $(TARGET-target-libgcc)
|
TARGET-stage3-target-libgcc = $(TARGET-target-libgcc)
|
all-stage3-target-libgcc: configure-stage3-target-libgcc
|
all-stage3-target-libgcc: configure-stage3-target-libgcc
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
$(NORMAL_TARGET_EXPORTS) \
|
$(NORMAL_TARGET_EXPORTS) \
|
\
|
\
|
cd $(TARGET_SUBDIR)/libgcc && \
|
cd $(TARGET_SUBDIR)/libgcc && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS)" CXXFLAGS="$(STAGE3_CFLAGS)" \
|
CFLAGS="$(CFLAGS_FOR_TARGET)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS)" \
|
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" \
|
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS)" $(EXTRA_TARGET_FLAGS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_TARGET_FLAGS) \
|
|
TFLAGS="$(STAGE3_TFLAGS)" \
|
$(TARGET-stage3-target-libgcc)
|
$(TARGET-stage3-target-libgcc)
|
|
|
maybe-clean-stage3-target-libgcc: clean-stage3-target-libgcc
|
maybe-clean-stage3-target-libgcc: clean-stage3-target-libgcc
|
clean-stage3: clean-stage3-target-libgcc
|
clean-stage3: clean-stage3-target-libgcc
|
clean-stage3-target-libgcc:
|
clean-stage3-target-libgcc:
|
Line 42020... |
Line 45731... |
\
|
\
|
clean
|
clean
|
@endif target-libgcc-bootstrap
|
@endif target-libgcc-bootstrap
|
|
|
|
|
.PHONY: all-stageb3g2-target-libgcc maybe-all-stageb3g2-target-libgcc
|
|
.PHONY: clean-stageb3g2-target-libgcc maybe-clean-stageb3g2-target-libgcc
|
|
maybe-all-stageb3g2-target-libgcc:
|
|
maybe-clean-stageb3g2-target-libgcc:
|
|
@if target-libgcc-bootstrap
|
|
maybe-all-stageb3g2-target-libgcc: all-stageb3g2-target-libgcc
|
|
all-stageb3g2: all-stageb3g2-target-libgcc
|
|
TARGET-stageb3g2-target-libgcc = $(TARGET-target-libgcc)
|
|
all-stageb3g2-target-libgcc: configure-stageb3g2-target-libgcc
|
|
@[ $(current_stage) = stageb3g2 ] || $(MAKE) stageb3g2-start
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(NORMAL_TARGET_EXPORTS) \
|
|
\
|
|
cd $(TARGET_SUBDIR)/libgcc && \
|
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
|
CFLAGS="$(STAGE3_CFLAGS) -g2" CXXFLAGS="$(STAGE3_CFLAGS) -g2" \
|
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" \
|
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -g2" $(EXTRA_TARGET_FLAGS) \
|
|
$(TARGET-stageb3g2-target-libgcc)
|
|
|
|
maybe-clean-stageb3g2-target-libgcc: clean-stageb3g2-target-libgcc
|
|
clean-stageb3g2: clean-stageb3g2-target-libgcc
|
|
clean-stageb3g2-target-libgcc:
|
|
@if [ $(current_stage) = stageb3g2 ]; then \
|
|
[ -f $(TARGET_SUBDIR)/libgcc/Makefile ] || exit 0; \
|
|
else \
|
|
[ -f $(TARGET_SUBDIR)/stageb3g2-libgcc/Makefile ] || exit 0; \
|
|
$(MAKE) stageb3g2-start; \
|
|
fi; \
|
|
cd $(TARGET_SUBDIR)/libgcc && \
|
|
$(MAKE) $(EXTRA_TARGET_FLAGS) \
|
|
\
|
|
clean
|
|
@endif target-libgcc-bootstrap
|
|
|
|
|
|
.PHONY: all-stage4-target-libgcc maybe-all-stage4-target-libgcc
|
.PHONY: all-stage4-target-libgcc maybe-all-stage4-target-libgcc
|
.PHONY: clean-stage4-target-libgcc maybe-clean-stage4-target-libgcc
|
.PHONY: clean-stage4-target-libgcc maybe-clean-stage4-target-libgcc
|
maybe-all-stage4-target-libgcc:
|
maybe-all-stage4-target-libgcc:
|
maybe-clean-stage4-target-libgcc:
|
maybe-clean-stage4-target-libgcc:
|
@if target-libgcc-bootstrap
|
@if target-libgcc-bootstrap
|
Line 42070... |
Line 45743... |
TARGET-stage4-target-libgcc = $(TARGET-target-libgcc)
|
TARGET-stage4-target-libgcc = $(TARGET-target-libgcc)
|
all-stage4-target-libgcc: configure-stage4-target-libgcc
|
all-stage4-target-libgcc: configure-stage4-target-libgcc
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
$(NORMAL_TARGET_EXPORTS) \
|
$(NORMAL_TARGET_EXPORTS) \
|
\
|
\
|
cd $(TARGET_SUBDIR)/libgcc && \
|
cd $(TARGET_SUBDIR)/libgcc && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE4_CFLAGS)" CXXFLAGS="$(STAGE4_CFLAGS)" \
|
CFLAGS="$(CFLAGS_FOR_TARGET)" \
|
LIBCFLAGS="$(STAGE4_CFLAGS)" \
|
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)" \
|
CFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" \
|
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE4_CFLAGS)" $(EXTRA_TARGET_FLAGS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_TARGET_FLAGS) \
|
|
TFLAGS="$(STAGE4_TFLAGS)" \
|
$(TARGET-stage4-target-libgcc)
|
$(TARGET-stage4-target-libgcc)
|
|
|
maybe-clean-stage4-target-libgcc: clean-stage4-target-libgcc
|
maybe-clean-stage4-target-libgcc: clean-stage4-target-libgcc
|
clean-stage4: clean-stage4-target-libgcc
|
clean-stage4: clean-stage4-target-libgcc
|
clean-stage4-target-libgcc:
|
clean-stage4-target-libgcc:
|
Line 42108... |
Line 45786... |
TARGET-stageprofile-target-libgcc = $(TARGET-target-libgcc)
|
TARGET-stageprofile-target-libgcc = $(TARGET-target-libgcc)
|
all-stageprofile-target-libgcc: configure-stageprofile-target-libgcc
|
all-stageprofile-target-libgcc: configure-stageprofile-target-libgcc
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
$(NORMAL_TARGET_EXPORTS) \
|
$(NORMAL_TARGET_EXPORTS) \
|
\
|
\
|
cd $(TARGET_SUBDIR)/libgcc && \
|
cd $(TARGET_SUBDIR)/libgcc && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" CXXFLAGS="$(STAGE2_CFLAGS) -fprofile-generate" \
|
CFLAGS="$(CFLAGS_FOR_TARGET)" \
|
LIBCFLAGS="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)" \
|
CFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" \
|
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE2_LIBCFLAGS) -fprofile-generate" $(EXTRA_TARGET_FLAGS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_TARGET_FLAGS) \
|
|
TFLAGS="$(STAGEprofile_TFLAGS)" \
|
$(TARGET-stageprofile-target-libgcc)
|
$(TARGET-stageprofile-target-libgcc)
|
|
|
maybe-clean-stageprofile-target-libgcc: clean-stageprofile-target-libgcc
|
maybe-clean-stageprofile-target-libgcc: clean-stageprofile-target-libgcc
|
clean-stageprofile: clean-stageprofile-target-libgcc
|
clean-stageprofile: clean-stageprofile-target-libgcc
|
clean-stageprofile-target-libgcc:
|
clean-stageprofile-target-libgcc:
|
Line 42146... |
Line 45829... |
TARGET-stagefeedback-target-libgcc = $(TARGET-target-libgcc)
|
TARGET-stagefeedback-target-libgcc = $(TARGET-target-libgcc)
|
all-stagefeedback-target-libgcc: configure-stagefeedback-target-libgcc
|
all-stagefeedback-target-libgcc: configure-stagefeedback-target-libgcc
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
$(NORMAL_TARGET_EXPORTS) \
|
$(NORMAL_TARGET_EXPORTS) \
|
\
|
\
|
cd $(TARGET_SUBDIR)/libgcc && \
|
cd $(TARGET_SUBDIR)/libgcc && \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
CFLAGS="$(STAGE3_CFLAGS) -fprofile-use" CXXFLAGS="$(STAGE3_CFLAGS) -fprofile-use" \
|
CFLAGS="$(CFLAGS_FOR_TARGET)" \
|
LIBCFLAGS="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)" \
|
CFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" \
|
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)" \
|
CXXFLAGS_FOR_TARGET="$(STAGE3_LIBCFLAGS) -fprofile-use" $(EXTRA_TARGET_FLAGS) \
|
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
|
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
|
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
|
$(EXTRA_TARGET_FLAGS) \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)" \
|
$(TARGET-stagefeedback-target-libgcc)
|
$(TARGET-stagefeedback-target-libgcc)
|
|
|
maybe-clean-stagefeedback-target-libgcc: clean-stagefeedback-target-libgcc
|
maybe-clean-stagefeedback-target-libgcc: clean-stagefeedback-target-libgcc
|
clean-stagefeedback: clean-stagefeedback-target-libgcc
|
clean-stagefeedback: clean-stagefeedback-target-libgcc
|
clean-stagefeedback-target-libgcc:
|
clean-stagefeedback-target-libgcc:
|
Line 49553... |
Line 53241... |
echo "Building runtime libraries"; \
|
echo "Building runtime libraries"; \
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) LANGUAGES="c c++" all
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) LANGUAGES="c c++" all
|
@endif gcc-no-bootstrap
|
@endif gcc-no-bootstrap
|
|
|
@if gcc
|
@if gcc
|
.PHONY: check-gcc-c++
|
|
|
.PHONY: check-gcc-c check-c
|
|
check-gcc-c:
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
(cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) check-gcc);
|
|
check-c: check-gcc-c
|
|
|
|
.PHONY: check-gcc-c++ check-c++
|
check-gcc-c++:
|
check-gcc-c++:
|
@if [ -f ./gcc/Makefile ] ; then \
|
|
r=`${PWD_COMMAND}`; export r; \
|
r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(HOST_EXPORTS) \
|
$(HOST_EXPORTS) \
|
(cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) check-c++); \
|
(cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) check-c++);
|
else \
|
check-c++: check-gcc-c++ check-target-libstdc++-v3
|
true; \
|
|
fi
|
.PHONY: check-gcc-fortran check-fortran
|
|
check-gcc-fortran:
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
(cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) check-fortran);
|
|
check-fortran: check-gcc-fortran check-target-libgfortran
|
|
|
|
.PHONY: check-gcc-java check-java
|
|
check-gcc-java:
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
(cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) check-java);
|
|
check-java: check-gcc-java check-target-libjava
|
|
|
|
.PHONY: check-gcc-ada check-ada
|
|
check-gcc-ada:
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
(cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) check-ada);
|
|
check-ada: check-gcc-ada check-target-libada
|
|
|
|
.PHONY: check-gcc-objc check-objc
|
|
check-gcc-objc:
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
(cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) check-objc);
|
|
check-objc: check-gcc-objc check-target-libobjc
|
|
|
|
.PHONY: check-gcc-obj-c++ check-obj-c++
|
|
check-gcc-obj-c++:
|
|
r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(HOST_EXPORTS) \
|
|
(cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) check-obj-c++);
|
|
check-obj-c++: check-gcc-obj-c++
|
|
|
.PHONY: check-c++
|
|
check-c++: check-target-libstdc++-v3 check-gcc-c++
|
|
|
|
# Install the gcc headers files, but not the fixed include files,
|
# Install the gcc headers files, but not the fixed include files,
|
# which Cygnus is not allowed to distribute. This rule is very
|
# which Cygnus is not allowed to distribute. This rule is very
|
# dependent on the workings of the gcc Makefile.in.
|
# dependent on the workings of the gcc Makefile.in.
|
.PHONY: gcc-no-fixedincludes
|
.PHONY: gcc-no-fixedincludes
|
Line 49682... |
Line 53414... |
@if mpfr
|
@if mpfr
|
@cd $(HOST_SUBDIR); [ -d stage1-mpfr ] || \
|
@cd $(HOST_SUBDIR); [ -d stage1-mpfr ] || \
|
mkdir stage1-mpfr; \
|
mkdir stage1-mpfr; \
|
mv stage1-mpfr mpfr
|
mv stage1-mpfr mpfr
|
@endif mpfr
|
@endif mpfr
|
|
@if mpc
|
|
@cd $(HOST_SUBDIR); [ -d stage1-mpc ] || \
|
|
mkdir stage1-mpc; \
|
|
mv stage1-mpc mpc
|
|
@endif mpc
|
|
@if ppl
|
|
@cd $(HOST_SUBDIR); [ -d stage1-ppl ] || \
|
|
mkdir stage1-ppl; \
|
|
mv stage1-ppl ppl
|
|
@endif ppl
|
|
@if cloog
|
|
@cd $(HOST_SUBDIR); [ -d stage1-cloog ] || \
|
|
mkdir stage1-cloog; \
|
|
mv stage1-cloog cloog
|
|
@endif cloog
|
|
@if gold
|
|
@cd $(HOST_SUBDIR); [ -d stage1-gold ] || \
|
|
mkdir stage1-gold; \
|
|
mv stage1-gold gold
|
|
@endif gold
|
@if intl
|
@if intl
|
@cd $(HOST_SUBDIR); [ -d stage1-intl ] || \
|
@cd $(HOST_SUBDIR); [ -d stage1-intl ] || \
|
mkdir stage1-intl; \
|
mkdir stage1-intl; \
|
mv stage1-intl intl
|
mv stage1-intl intl
|
@endif intl
|
@endif intl
|
Line 49752... |
Line 53504... |
@if mpfr
|
@if mpfr
|
@if test -d $(HOST_SUBDIR)/mpfr ; then \
|
@if test -d $(HOST_SUBDIR)/mpfr ; then \
|
cd $(HOST_SUBDIR); mv mpfr stage1-mpfr ; \
|
cd $(HOST_SUBDIR); mv mpfr stage1-mpfr ; \
|
fi
|
fi
|
@endif mpfr
|
@endif mpfr
|
|
@if mpc
|
|
@if test -d $(HOST_SUBDIR)/mpc ; then \
|
|
cd $(HOST_SUBDIR); mv mpc stage1-mpc ; \
|
|
fi
|
|
@endif mpc
|
|
@if ppl
|
|
@if test -d $(HOST_SUBDIR)/ppl ; then \
|
|
cd $(HOST_SUBDIR); mv ppl stage1-ppl ; \
|
|
fi
|
|
@endif ppl
|
|
@if cloog
|
|
@if test -d $(HOST_SUBDIR)/cloog ; then \
|
|
cd $(HOST_SUBDIR); mv cloog stage1-cloog ; \
|
|
fi
|
|
@endif cloog
|
|
@if gold
|
|
@if test -d $(HOST_SUBDIR)/gold ; then \
|
|
cd $(HOST_SUBDIR); mv gold stage1-gold ; \
|
|
fi
|
|
@endif gold
|
@if intl
|
@if intl
|
@if test -d $(HOST_SUBDIR)/intl ; then \
|
@if test -d $(HOST_SUBDIR)/intl ; then \
|
cd $(HOST_SUBDIR); mv intl stage1-intl ; \
|
cd $(HOST_SUBDIR); mv intl stage1-intl ; \
|
fi
|
fi
|
@endif intl
|
@endif intl
|
Line 49789... |
Line 53561... |
fi
|
fi
|
rm -f stage_current
|
rm -f stage_current
|
|
|
# Bubble a bug fix through all the stages up to stage 1. They are
|
# Bubble a bug fix through all the stages up to stage 1. They are
|
# remade, but not reconfigured. The next stage (if any) will not be
|
# remade, but not reconfigured. The next stage (if any) will not be
|
# reconfigured as well.
|
# reconfigured either.
|
.PHONY: stage1-bubble
|
.PHONY: stage1-bubble
|
stage1-bubble::
|
stage1-bubble::
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
if test -f stage1-lean ; then \
|
if test -f stage1-lean ; then \
|
Line 49872... |
Line 53644... |
@cd $(HOST_SUBDIR); [ -d stage2-mpfr ] || \
|
@cd $(HOST_SUBDIR); [ -d stage2-mpfr ] || \
|
mkdir stage2-mpfr; \
|
mkdir stage2-mpfr; \
|
mv stage2-mpfr mpfr ; \
|
mv stage2-mpfr mpfr ; \
|
mv stage1-mpfr prev-mpfr || test -f stage1-lean
|
mv stage1-mpfr prev-mpfr || test -f stage1-lean
|
@endif mpfr
|
@endif mpfr
|
|
@if mpc
|
|
@cd $(HOST_SUBDIR); [ -d stage2-mpc ] || \
|
|
mkdir stage2-mpc; \
|
|
mv stage2-mpc mpc ; \
|
|
mv stage1-mpc prev-mpc || test -f stage1-lean
|
|
@endif mpc
|
|
@if ppl
|
|
@cd $(HOST_SUBDIR); [ -d stage2-ppl ] || \
|
|
mkdir stage2-ppl; \
|
|
mv stage2-ppl ppl ; \
|
|
mv stage1-ppl prev-ppl || test -f stage1-lean
|
|
@endif ppl
|
|
@if cloog
|
|
@cd $(HOST_SUBDIR); [ -d stage2-cloog ] || \
|
|
mkdir stage2-cloog; \
|
|
mv stage2-cloog cloog ; \
|
|
mv stage1-cloog prev-cloog || test -f stage1-lean
|
|
@endif cloog
|
|
@if gold
|
|
@cd $(HOST_SUBDIR); [ -d stage2-gold ] || \
|
|
mkdir stage2-gold; \
|
|
mv stage2-gold gold ; \
|
|
mv stage1-gold prev-gold || test -f stage1-lean
|
|
@endif gold
|
@if intl
|
@if intl
|
@cd $(HOST_SUBDIR); [ -d stage2-intl ] || \
|
@cd $(HOST_SUBDIR); [ -d stage2-intl ] || \
|
mkdir stage2-intl; \
|
mkdir stage2-intl; \
|
mv stage2-intl intl ; \
|
mv stage2-intl intl ; \
|
mv stage1-intl prev-intl || test -f stage1-lean
|
mv stage1-intl prev-intl || test -f stage1-lean
|
Line 49956... |
Line 53752... |
@if test -d $(HOST_SUBDIR)/mpfr ; then \
|
@if test -d $(HOST_SUBDIR)/mpfr ; then \
|
cd $(HOST_SUBDIR); mv mpfr stage2-mpfr ; \
|
cd $(HOST_SUBDIR); mv mpfr stage2-mpfr ; \
|
mv prev-mpfr stage1-mpfr ; : ; \
|
mv prev-mpfr stage1-mpfr ; : ; \
|
fi
|
fi
|
@endif mpfr
|
@endif mpfr
|
|
@if mpc
|
|
@if test -d $(HOST_SUBDIR)/mpc ; then \
|
|
cd $(HOST_SUBDIR); mv mpc stage2-mpc ; \
|
|
mv prev-mpc stage1-mpc ; : ; \
|
|
fi
|
|
@endif mpc
|
|
@if ppl
|
|
@if test -d $(HOST_SUBDIR)/ppl ; then \
|
|
cd $(HOST_SUBDIR); mv ppl stage2-ppl ; \
|
|
mv prev-ppl stage1-ppl ; : ; \
|
|
fi
|
|
@endif ppl
|
|
@if cloog
|
|
@if test -d $(HOST_SUBDIR)/cloog ; then \
|
|
cd $(HOST_SUBDIR); mv cloog stage2-cloog ; \
|
|
mv prev-cloog stage1-cloog ; : ; \
|
|
fi
|
|
@endif cloog
|
|
@if gold
|
|
@if test -d $(HOST_SUBDIR)/gold ; then \
|
|
cd $(HOST_SUBDIR); mv gold stage2-gold ; \
|
|
mv prev-gold stage1-gold ; : ; \
|
|
fi
|
|
@endif gold
|
@if intl
|
@if intl
|
@if test -d $(HOST_SUBDIR)/intl ; then \
|
@if test -d $(HOST_SUBDIR)/intl ; then \
|
cd $(HOST_SUBDIR); mv intl stage2-intl ; \
|
cd $(HOST_SUBDIR); mv intl stage2-intl ; \
|
mv prev-intl stage1-intl ; : ; \
|
mv prev-intl stage1-intl ; : ; \
|
fi
|
fi
|
Line 50000... |
Line 53820... |
fi
|
fi
|
rm -f stage_current
|
rm -f stage_current
|
|
|
# Bubble a bug fix through all the stages up to stage 2. They are
|
# Bubble a bug fix through all the stages up to stage 2. They are
|
# remade, but not reconfigured. The next stage (if any) will not be
|
# remade, but not reconfigured. The next stage (if any) will not be
|
# reconfigured as well.
|
# reconfigured either.
|
.PHONY: stage2-bubble
|
.PHONY: stage2-bubble
|
stage2-bubble:: stage1-bubble
|
stage2-bubble:: stage1-bubble
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
if test -f stage2-lean || test -f stage1-lean ; then \
|
if test -f stage2-lean || test -f stage1-lean ; then \
|
Line 50030... |
Line 53850... |
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) stage2-bubble
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) stage2-bubble
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
|
|
bootstrap2-lean:
|
bootstrap2-lean:
|
echo stage2 > stage_final
|
echo stage2 > stage_final
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) LEAN=: stage2-bubble
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) LEAN=: stage2-bubble
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE2_TFLAGS)"; \
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
|
|
|
|
# Rules to wipe a stage and all the following ones, also used for cleanstrap
|
# Rules to wipe a stage and all the following ones, also used for cleanstrap
|
distclean-stage1:: distclean-stage2
|
distclean-stage1:: distclean-stage2
|
Line 50055... |
Line 53877... |
|
|
|
|
@endif gcc-bootstrap
|
@endif gcc-bootstrap
|
|
|
|
|
.PHONY: stageb2g0-start stageb2g0-end
|
|
|
|
stageb2g0-start::
|
|
@: $(MAKE); $(stage); \
|
|
echo stageb2g0 > stage_current ; \
|
|
echo stageb2g0 > stage_last; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)
|
|
@if bfd
|
|
@cd $(HOST_SUBDIR); [ -d stageb2g0-bfd ] || \
|
|
mkdir stageb2g0-bfd; \
|
|
mv stageb2g0-bfd bfd ; \
|
|
mv stage1-bfd prev-bfd || test -f stage1-lean
|
|
@endif bfd
|
|
@if opcodes
|
|
@cd $(HOST_SUBDIR); [ -d stageb2g0-opcodes ] || \
|
|
mkdir stageb2g0-opcodes; \
|
|
mv stageb2g0-opcodes opcodes ; \
|
|
mv stage1-opcodes prev-opcodes || test -f stage1-lean
|
|
@endif opcodes
|
|
@if binutils
|
|
@cd $(HOST_SUBDIR); [ -d stageb2g0-binutils ] || \
|
|
mkdir stageb2g0-binutils; \
|
|
mv stageb2g0-binutils binutils ; \
|
|
mv stage1-binutils prev-binutils || test -f stage1-lean
|
|
@endif binutils
|
|
@if gas
|
|
@cd $(HOST_SUBDIR); [ -d stageb2g0-gas ] || \
|
|
mkdir stageb2g0-gas; \
|
|
mv stageb2g0-gas gas ; \
|
|
mv stage1-gas prev-gas || test -f stage1-lean
|
|
@endif gas
|
|
@if gcc
|
|
@cd $(HOST_SUBDIR); [ -d stageb2g0-gcc ] || \
|
|
mkdir stageb2g0-gcc; \
|
|
mv stageb2g0-gcc gcc ; \
|
|
mv stage1-gcc prev-gcc || test -f stage1-lean
|
|
@endif gcc
|
|
@if gmp
|
|
@cd $(HOST_SUBDIR); [ -d stageb2g0-gmp ] || \
|
|
mkdir stageb2g0-gmp; \
|
|
mv stageb2g0-gmp gmp ; \
|
|
mv stage1-gmp prev-gmp || test -f stage1-lean
|
|
@endif gmp
|
|
@if mpfr
|
|
@cd $(HOST_SUBDIR); [ -d stageb2g0-mpfr ] || \
|
|
mkdir stageb2g0-mpfr; \
|
|
mv stageb2g0-mpfr mpfr ; \
|
|
mv stage1-mpfr prev-mpfr || test -f stage1-lean
|
|
@endif mpfr
|
|
@if intl
|
|
@cd $(HOST_SUBDIR); [ -d stageb2g0-intl ] || \
|
|
mkdir stageb2g0-intl; \
|
|
mv stageb2g0-intl intl ; \
|
|
mv stage1-intl prev-intl || test -f stage1-lean
|
|
@endif intl
|
|
@if ld
|
|
@cd $(HOST_SUBDIR); [ -d stageb2g0-ld ] || \
|
|
mkdir stageb2g0-ld; \
|
|
mv stageb2g0-ld ld ; \
|
|
mv stage1-ld prev-ld || test -f stage1-lean
|
|
@endif ld
|
|
@if libcpp
|
|
@cd $(HOST_SUBDIR); [ -d stageb2g0-libcpp ] || \
|
|
mkdir stageb2g0-libcpp; \
|
|
mv stageb2g0-libcpp libcpp ; \
|
|
mv stage1-libcpp prev-libcpp || test -f stage1-lean
|
|
@endif libcpp
|
|
@if libdecnumber
|
|
@cd $(HOST_SUBDIR); [ -d stageb2g0-libdecnumber ] || \
|
|
mkdir stageb2g0-libdecnumber; \
|
|
mv stageb2g0-libdecnumber libdecnumber ; \
|
|
mv stage1-libdecnumber prev-libdecnumber || test -f stage1-lean
|
|
@endif libdecnumber
|
|
@if libiberty
|
|
@cd $(HOST_SUBDIR); [ -d stageb2g0-libiberty ] || \
|
|
mkdir stageb2g0-libiberty; \
|
|
mv stageb2g0-libiberty libiberty ; \
|
|
mv stage1-libiberty prev-libiberty || test -f stage1-lean
|
|
@endif libiberty
|
|
@if zlib
|
|
@cd $(HOST_SUBDIR); [ -d stageb2g0-zlib ] || \
|
|
mkdir stageb2g0-zlib; \
|
|
mv stageb2g0-zlib zlib ; \
|
|
mv stage1-zlib prev-zlib || test -f stage1-lean
|
|
@endif zlib
|
|
@[ -d stageb2g0-$(TARGET_SUBDIR) ] || \
|
|
mkdir stageb2g0-$(TARGET_SUBDIR); \
|
|
mv stageb2g0-$(TARGET_SUBDIR) $(TARGET_SUBDIR) ; \
|
|
mv stage1-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stage1-lean
|
|
|
|
stageb2g0-end::
|
|
@if bfd
|
|
@if test -d $(HOST_SUBDIR)/bfd ; then \
|
|
cd $(HOST_SUBDIR); mv bfd stageb2g0-bfd ; \
|
|
mv prev-bfd stage1-bfd ; : ; \
|
|
fi
|
|
@endif bfd
|
|
@if opcodes
|
|
@if test -d $(HOST_SUBDIR)/opcodes ; then \
|
|
cd $(HOST_SUBDIR); mv opcodes stageb2g0-opcodes ; \
|
|
mv prev-opcodes stage1-opcodes ; : ; \
|
|
fi
|
|
@endif opcodes
|
|
@if binutils
|
|
@if test -d $(HOST_SUBDIR)/binutils ; then \
|
|
cd $(HOST_SUBDIR); mv binutils stageb2g0-binutils ; \
|
|
mv prev-binutils stage1-binutils ; : ; \
|
|
fi
|
|
@endif binutils
|
|
@if gas
|
|
@if test -d $(HOST_SUBDIR)/gas ; then \
|
|
cd $(HOST_SUBDIR); mv gas stageb2g0-gas ; \
|
|
mv prev-gas stage1-gas ; : ; \
|
|
fi
|
|
@endif gas
|
|
@if gcc
|
|
@if test -d $(HOST_SUBDIR)/gcc ; then \
|
|
cd $(HOST_SUBDIR); mv gcc stageb2g0-gcc ; \
|
|
mv prev-gcc stage1-gcc ; : ; \
|
|
fi
|
|
@endif gcc
|
|
@if gmp
|
|
@if test -d $(HOST_SUBDIR)/gmp ; then \
|
|
cd $(HOST_SUBDIR); mv gmp stageb2g0-gmp ; \
|
|
mv prev-gmp stage1-gmp ; : ; \
|
|
fi
|
|
@endif gmp
|
|
@if mpfr
|
|
@if test -d $(HOST_SUBDIR)/mpfr ; then \
|
|
cd $(HOST_SUBDIR); mv mpfr stageb2g0-mpfr ; \
|
|
mv prev-mpfr stage1-mpfr ; : ; \
|
|
fi
|
|
@endif mpfr
|
|
@if intl
|
|
@if test -d $(HOST_SUBDIR)/intl ; then \
|
|
cd $(HOST_SUBDIR); mv intl stageb2g0-intl ; \
|
|
mv prev-intl stage1-intl ; : ; \
|
|
fi
|
|
@endif intl
|
|
@if ld
|
|
@if test -d $(HOST_SUBDIR)/ld ; then \
|
|
cd $(HOST_SUBDIR); mv ld stageb2g0-ld ; \
|
|
mv prev-ld stage1-ld ; : ; \
|
|
fi
|
|
@endif ld
|
|
@if libcpp
|
|
@if test -d $(HOST_SUBDIR)/libcpp ; then \
|
|
cd $(HOST_SUBDIR); mv libcpp stageb2g0-libcpp ; \
|
|
mv prev-libcpp stage1-libcpp ; : ; \
|
|
fi
|
|
@endif libcpp
|
|
@if libdecnumber
|
|
@if test -d $(HOST_SUBDIR)/libdecnumber ; then \
|
|
cd $(HOST_SUBDIR); mv libdecnumber stageb2g0-libdecnumber ; \
|
|
mv prev-libdecnumber stage1-libdecnumber ; : ; \
|
|
fi
|
|
@endif libdecnumber
|
|
@if libiberty
|
|
@if test -d $(HOST_SUBDIR)/libiberty ; then \
|
|
cd $(HOST_SUBDIR); mv libiberty stageb2g0-libiberty ; \
|
|
mv prev-libiberty stage1-libiberty ; : ; \
|
|
fi
|
|
@endif libiberty
|
|
@if zlib
|
|
@if test -d $(HOST_SUBDIR)/zlib ; then \
|
|
cd $(HOST_SUBDIR); mv zlib stageb2g0-zlib ; \
|
|
mv prev-zlib stage1-zlib ; : ; \
|
|
fi
|
|
@endif zlib
|
|
@if test -d $(TARGET_SUBDIR) ; then \
|
|
mv $(TARGET_SUBDIR) stageb2g0-$(TARGET_SUBDIR) ; \
|
|
mv prev-$(TARGET_SUBDIR) stage1-$(TARGET_SUBDIR) ; : ; \
|
|
fi
|
|
rm -f stage_current
|
|
|
|
# Bubble a bug fix through all the stages up to stage b2g0. They are
|
|
# remade, but not reconfigured. The next stage (if any) will not be
|
|
# reconfigured as well.
|
|
.PHONY: stageb2g0-bubble
|
|
stageb2g0-bubble:: stage1-bubble
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
if test -f stageb2g0-lean || test -f stage1-lean ; then \
|
|
echo Skipping rebuild of stageb2g0 ; \
|
|
else \
|
|
$(MAKE) stageb2g0-start; \
|
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) all-stageb2g0; \
|
|
fi
|
|
|
|
.PHONY: all-stageb2g0 clean-stageb2g0
|
|
do-clean: clean-stageb2g0
|
|
|
|
# FIXME: Will not need to be conditional when toplevel bootstrap is the
|
|
# only possibility, but now it conflicts with no-bootstrap rules
|
|
@if gcc-bootstrap
|
|
|
|
|
|
|
|
.PHONY: bootstrap2-debug bootstrap2-debug-lean
|
|
bootstrap2-debug:
|
|
echo stageb2g0 > stage_final
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) stageb2g0-bubble
|
|
@: $(MAKE); $(unstage)
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
|
|
|
bootstrap2-debug-lean:
|
|
echo stageb2g0 > stage_final
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) LEAN=: stageb2g0-bubble
|
|
@: $(MAKE); $(unstage)
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
|
|
|
|
|
# Rules to wipe a stage and all the following ones, also used for cleanstrap
|
|
distclean-stage1:: distclean-stageb2g0
|
|
.PHONY: distclean-stageb2g0
|
|
distclean-stageb2g0::
|
|
@: $(MAKE); $(stage)
|
|
@test "`cat stage_last`" != stageb2g0 || rm -f stage_last
|
|
rm -rf stageb2g0-*
|
|
|
|
|
|
@endif gcc-bootstrap
|
|
|
|
|
|
.PHONY: stage3-start stage3-end
|
.PHONY: stage3-start stage3-end
|
|
|
stage3-start::
|
stage3-start::
|
@: $(MAKE); $(stage); \
|
@: $(MAKE); $(stage); \
|
echo stage3 > stage_current ; \
|
echo stage3 > stage_current ; \
|
Line 50336... |
Line 53926... |
@cd $(HOST_SUBDIR); [ -d stage3-mpfr ] || \
|
@cd $(HOST_SUBDIR); [ -d stage3-mpfr ] || \
|
mkdir stage3-mpfr; \
|
mkdir stage3-mpfr; \
|
mv stage3-mpfr mpfr ; \
|
mv stage3-mpfr mpfr ; \
|
mv stage2-mpfr prev-mpfr || test -f stage2-lean
|
mv stage2-mpfr prev-mpfr || test -f stage2-lean
|
@endif mpfr
|
@endif mpfr
|
|
@if mpc
|
|
@cd $(HOST_SUBDIR); [ -d stage3-mpc ] || \
|
|
mkdir stage3-mpc; \
|
|
mv stage3-mpc mpc ; \
|
|
mv stage2-mpc prev-mpc || test -f stage2-lean
|
|
@endif mpc
|
|
@if ppl
|
|
@cd $(HOST_SUBDIR); [ -d stage3-ppl ] || \
|
|
mkdir stage3-ppl; \
|
|
mv stage3-ppl ppl ; \
|
|
mv stage2-ppl prev-ppl || test -f stage2-lean
|
|
@endif ppl
|
|
@if cloog
|
|
@cd $(HOST_SUBDIR); [ -d stage3-cloog ] || \
|
|
mkdir stage3-cloog; \
|
|
mv stage3-cloog cloog ; \
|
|
mv stage2-cloog prev-cloog || test -f stage2-lean
|
|
@endif cloog
|
|
@if gold
|
|
@cd $(HOST_SUBDIR); [ -d stage3-gold ] || \
|
|
mkdir stage3-gold; \
|
|
mv stage3-gold gold ; \
|
|
mv stage2-gold prev-gold || test -f stage2-lean
|
|
@endif gold
|
@if intl
|
@if intl
|
@cd $(HOST_SUBDIR); [ -d stage3-intl ] || \
|
@cd $(HOST_SUBDIR); [ -d stage3-intl ] || \
|
mkdir stage3-intl; \
|
mkdir stage3-intl; \
|
mv stage3-intl intl ; \
|
mv stage3-intl intl ; \
|
mv stage2-intl prev-intl || test -f stage2-lean
|
mv stage2-intl prev-intl || test -f stage2-lean
|
Line 50420... |
Line 54034... |
@if test -d $(HOST_SUBDIR)/mpfr ; then \
|
@if test -d $(HOST_SUBDIR)/mpfr ; then \
|
cd $(HOST_SUBDIR); mv mpfr stage3-mpfr ; \
|
cd $(HOST_SUBDIR); mv mpfr stage3-mpfr ; \
|
mv prev-mpfr stage2-mpfr ; : ; \
|
mv prev-mpfr stage2-mpfr ; : ; \
|
fi
|
fi
|
@endif mpfr
|
@endif mpfr
|
|
@if mpc
|
|
@if test -d $(HOST_SUBDIR)/mpc ; then \
|
|
cd $(HOST_SUBDIR); mv mpc stage3-mpc ; \
|
|
mv prev-mpc stage2-mpc ; : ; \
|
|
fi
|
|
@endif mpc
|
|
@if ppl
|
|
@if test -d $(HOST_SUBDIR)/ppl ; then \
|
|
cd $(HOST_SUBDIR); mv ppl stage3-ppl ; \
|
|
mv prev-ppl stage2-ppl ; : ; \
|
|
fi
|
|
@endif ppl
|
|
@if cloog
|
|
@if test -d $(HOST_SUBDIR)/cloog ; then \
|
|
cd $(HOST_SUBDIR); mv cloog stage3-cloog ; \
|
|
mv prev-cloog stage2-cloog ; : ; \
|
|
fi
|
|
@endif cloog
|
|
@if gold
|
|
@if test -d $(HOST_SUBDIR)/gold ; then \
|
|
cd $(HOST_SUBDIR); mv gold stage3-gold ; \
|
|
mv prev-gold stage2-gold ; : ; \
|
|
fi
|
|
@endif gold
|
@if intl
|
@if intl
|
@if test -d $(HOST_SUBDIR)/intl ; then \
|
@if test -d $(HOST_SUBDIR)/intl ; then \
|
cd $(HOST_SUBDIR); mv intl stage3-intl ; \
|
cd $(HOST_SUBDIR); mv intl stage3-intl ; \
|
mv prev-intl stage2-intl ; : ; \
|
mv prev-intl stage2-intl ; : ; \
|
fi
|
fi
|
Line 50464... |
Line 54102... |
fi
|
fi
|
rm -f stage_current
|
rm -f stage_current
|
|
|
# Bubble a bug fix through all the stages up to stage 3. They are
|
# Bubble a bug fix through all the stages up to stage 3. They are
|
# remade, but not reconfigured. The next stage (if any) will not be
|
# remade, but not reconfigured. The next stage (if any) will not be
|
# reconfigured as well.
|
# reconfigured either.
|
.PHONY: stage3-bubble
|
.PHONY: stage3-bubble
|
stage3-bubble:: stage2-bubble
|
stage3-bubble:: stage2-bubble
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
if test -f stage3-lean || test -f stage2-lean ; then \
|
if test -f stage3-lean || test -f stage2-lean ; then \
|
Line 50498... |
Line 54136... |
exit 0 ; \
|
exit 0 ; \
|
fi; \
|
fi; \
|
: $(MAKE); $(stage); \
|
: $(MAKE); $(stage); \
|
rm -f .bad_compare ; \
|
rm -f .bad_compare ; \
|
echo Comparing stages 2 and 3 ; \
|
echo Comparing stages 2 and 3 ; \
|
cd stage3-gcc; \
|
sed=`echo stage3 | sed 's,^stage,,;s,.,.,g'`; \
|
files=`find . -name "*$(objext)" -print` ; \
|
files=`find stage3-* -name "*$(objext)" -print | \
|
cd .. ; \
|
sed -n s,^stage$$sed-,,p` ; \
|
for file in $${files} ; do \
|
for file in $${files} ; do \
|
f1=$$r/stage2-gcc/$$file; f2=$$r/stage3-gcc/$$file; \
|
f1=$$r/stage2-$$file; f2=$$r/stage3-$$file; \
|
|
if test ! -f $$f1; then continue; fi; \
|
$(do-compare) > /dev/null 2>&1; \
|
$(do-compare) > /dev/null 2>&1; \
|
if test $$? -eq 1; then \
|
if test $$? -eq 1; then \
|
case $$file in \
|
case $$file in \
|
./cc*-checksum$(objext) | ./libgcc/* ) \
|
@compare_exclusions@) \
|
echo warning: $$file differs ;; \
|
echo warning: $$file differs ;; \
|
*) \
|
*) \
|
echo $$file differs >> .bad_compare ;; \
|
echo $$file differs >> .bad_compare ;; \
|
esac ; \
|
esac ; \
|
fi ; \
|
fi ; \
|
Line 50537... |
Line 54176... |
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) stage3-bubble
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) stage3-bubble
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
|
|
bootstrap-lean:
|
bootstrap-lean:
|
echo stage3 > stage_final
|
echo stage3 > stage_final
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) LEAN=: stage3-bubble
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) LEAN=: stage3-bubble
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
|
|
|
|
# Rules to wipe a stage and all the following ones, also used for cleanstrap
|
# Rules to wipe a stage and all the following ones, also used for cleanstrap
|
distclean-stage2:: distclean-stage3
|
distclean-stage2:: distclean-stage3
|
Line 50568... |
Line 54209... |
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) stage3-bubble
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) stage3-bubble
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
TFLAGS="$(STAGE3_TFLAGS)"; \
|
|
|
@endif gcc-bootstrap
|
|
|
|
|
|
.PHONY: stageb3g2-start stageb3g2-end
|
|
|
|
stageb3g2-start::
|
|
@: $(MAKE); $(stage); \
|
|
echo stageb3g2 > stage_current ; \
|
|
echo stageb3g2 > stage_last; \
|
|
$(SHELL) $(srcdir)/mkinstalldirs $(HOST_SUBDIR)
|
|
@if bfd
|
|
@cd $(HOST_SUBDIR); [ -d stageb3g2-bfd ] || \
|
|
mkdir stageb3g2-bfd; \
|
|
mv stageb3g2-bfd bfd ; \
|
|
mv stageb2g0-bfd prev-bfd || test -f stageb2g0-lean
|
|
@endif bfd
|
|
@if opcodes
|
|
@cd $(HOST_SUBDIR); [ -d stageb3g2-opcodes ] || \
|
|
mkdir stageb3g2-opcodes; \
|
|
mv stageb3g2-opcodes opcodes ; \
|
|
mv stageb2g0-opcodes prev-opcodes || test -f stageb2g0-lean
|
|
@endif opcodes
|
|
@if binutils
|
|
@cd $(HOST_SUBDIR); [ -d stageb3g2-binutils ] || \
|
|
mkdir stageb3g2-binutils; \
|
|
mv stageb3g2-binutils binutils ; \
|
|
mv stageb2g0-binutils prev-binutils || test -f stageb2g0-lean
|
|
@endif binutils
|
|
@if gas
|
|
@cd $(HOST_SUBDIR); [ -d stageb3g2-gas ] || \
|
|
mkdir stageb3g2-gas; \
|
|
mv stageb3g2-gas gas ; \
|
|
mv stageb2g0-gas prev-gas || test -f stageb2g0-lean
|
|
@endif gas
|
|
@if gcc
|
|
@cd $(HOST_SUBDIR); [ -d stageb3g2-gcc ] || \
|
|
mkdir stageb3g2-gcc; \
|
|
mv stageb3g2-gcc gcc ; \
|
|
mv stageb2g0-gcc prev-gcc || test -f stageb2g0-lean
|
|
@endif gcc
|
|
@if gmp
|
|
@cd $(HOST_SUBDIR); [ -d stageb3g2-gmp ] || \
|
|
mkdir stageb3g2-gmp; \
|
|
mv stageb3g2-gmp gmp ; \
|
|
mv stageb2g0-gmp prev-gmp || test -f stageb2g0-lean
|
|
@endif gmp
|
|
@if mpfr
|
|
@cd $(HOST_SUBDIR); [ -d stageb3g2-mpfr ] || \
|
|
mkdir stageb3g2-mpfr; \
|
|
mv stageb3g2-mpfr mpfr ; \
|
|
mv stageb2g0-mpfr prev-mpfr || test -f stageb2g0-lean
|
|
@endif mpfr
|
|
@if intl
|
|
@cd $(HOST_SUBDIR); [ -d stageb3g2-intl ] || \
|
|
mkdir stageb3g2-intl; \
|
|
mv stageb3g2-intl intl ; \
|
|
mv stageb2g0-intl prev-intl || test -f stageb2g0-lean
|
|
@endif intl
|
|
@if ld
|
|
@cd $(HOST_SUBDIR); [ -d stageb3g2-ld ] || \
|
|
mkdir stageb3g2-ld; \
|
|
mv stageb3g2-ld ld ; \
|
|
mv stageb2g0-ld prev-ld || test -f stageb2g0-lean
|
|
@endif ld
|
|
@if libcpp
|
|
@cd $(HOST_SUBDIR); [ -d stageb3g2-libcpp ] || \
|
|
mkdir stageb3g2-libcpp; \
|
|
mv stageb3g2-libcpp libcpp ; \
|
|
mv stageb2g0-libcpp prev-libcpp || test -f stageb2g0-lean
|
|
@endif libcpp
|
|
@if libdecnumber
|
|
@cd $(HOST_SUBDIR); [ -d stageb3g2-libdecnumber ] || \
|
|
mkdir stageb3g2-libdecnumber; \
|
|
mv stageb3g2-libdecnumber libdecnumber ; \
|
|
mv stageb2g0-libdecnumber prev-libdecnumber || test -f stageb2g0-lean
|
|
@endif libdecnumber
|
|
@if libiberty
|
|
@cd $(HOST_SUBDIR); [ -d stageb3g2-libiberty ] || \
|
|
mkdir stageb3g2-libiberty; \
|
|
mv stageb3g2-libiberty libiberty ; \
|
|
mv stageb2g0-libiberty prev-libiberty || test -f stageb2g0-lean
|
|
@endif libiberty
|
|
@if zlib
|
|
@cd $(HOST_SUBDIR); [ -d stageb3g2-zlib ] || \
|
|
mkdir stageb3g2-zlib; \
|
|
mv stageb3g2-zlib zlib ; \
|
|
mv stageb2g0-zlib prev-zlib || test -f stageb2g0-lean
|
|
@endif zlib
|
|
@[ -d stageb3g2-$(TARGET_SUBDIR) ] || \
|
|
mkdir stageb3g2-$(TARGET_SUBDIR); \
|
|
mv stageb3g2-$(TARGET_SUBDIR) $(TARGET_SUBDIR) ; \
|
|
mv stageb2g0-$(TARGET_SUBDIR) prev-$(TARGET_SUBDIR) || test -f stageb2g0-lean
|
|
|
|
stageb3g2-end::
|
|
@if bfd
|
|
@if test -d $(HOST_SUBDIR)/bfd ; then \
|
|
cd $(HOST_SUBDIR); mv bfd stageb3g2-bfd ; \
|
|
mv prev-bfd stageb2g0-bfd ; : ; \
|
|
fi
|
|
@endif bfd
|
|
@if opcodes
|
|
@if test -d $(HOST_SUBDIR)/opcodes ; then \
|
|
cd $(HOST_SUBDIR); mv opcodes stageb3g2-opcodes ; \
|
|
mv prev-opcodes stageb2g0-opcodes ; : ; \
|
|
fi
|
|
@endif opcodes
|
|
@if binutils
|
|
@if test -d $(HOST_SUBDIR)/binutils ; then \
|
|
cd $(HOST_SUBDIR); mv binutils stageb3g2-binutils ; \
|
|
mv prev-binutils stageb2g0-binutils ; : ; \
|
|
fi
|
|
@endif binutils
|
|
@if gas
|
|
@if test -d $(HOST_SUBDIR)/gas ; then \
|
|
cd $(HOST_SUBDIR); mv gas stageb3g2-gas ; \
|
|
mv prev-gas stageb2g0-gas ; : ; \
|
|
fi
|
|
@endif gas
|
|
@if gcc
|
|
@if test -d $(HOST_SUBDIR)/gcc ; then \
|
|
cd $(HOST_SUBDIR); mv gcc stageb3g2-gcc ; \
|
|
mv prev-gcc stageb2g0-gcc ; : ; \
|
|
fi
|
|
@endif gcc
|
|
@if gmp
|
|
@if test -d $(HOST_SUBDIR)/gmp ; then \
|
|
cd $(HOST_SUBDIR); mv gmp stageb3g2-gmp ; \
|
|
mv prev-gmp stageb2g0-gmp ; : ; \
|
|
fi
|
|
@endif gmp
|
|
@if mpfr
|
|
@if test -d $(HOST_SUBDIR)/mpfr ; then \
|
|
cd $(HOST_SUBDIR); mv mpfr stageb3g2-mpfr ; \
|
|
mv prev-mpfr stageb2g0-mpfr ; : ; \
|
|
fi
|
|
@endif mpfr
|
|
@if intl
|
|
@if test -d $(HOST_SUBDIR)/intl ; then \
|
|
cd $(HOST_SUBDIR); mv intl stageb3g2-intl ; \
|
|
mv prev-intl stageb2g0-intl ; : ; \
|
|
fi
|
|
@endif intl
|
|
@if ld
|
|
@if test -d $(HOST_SUBDIR)/ld ; then \
|
|
cd $(HOST_SUBDIR); mv ld stageb3g2-ld ; \
|
|
mv prev-ld stageb2g0-ld ; : ; \
|
|
fi
|
|
@endif ld
|
|
@if libcpp
|
|
@if test -d $(HOST_SUBDIR)/libcpp ; then \
|
|
cd $(HOST_SUBDIR); mv libcpp stageb3g2-libcpp ; \
|
|
mv prev-libcpp stageb2g0-libcpp ; : ; \
|
|
fi
|
|
@endif libcpp
|
|
@if libdecnumber
|
|
@if test -d $(HOST_SUBDIR)/libdecnumber ; then \
|
|
cd $(HOST_SUBDIR); mv libdecnumber stageb3g2-libdecnumber ; \
|
|
mv prev-libdecnumber stageb2g0-libdecnumber ; : ; \
|
|
fi
|
|
@endif libdecnumber
|
|
@if libiberty
|
|
@if test -d $(HOST_SUBDIR)/libiberty ; then \
|
|
cd $(HOST_SUBDIR); mv libiberty stageb3g2-libiberty ; \
|
|
mv prev-libiberty stageb2g0-libiberty ; : ; \
|
|
fi
|
|
@endif libiberty
|
|
@if zlib
|
|
@if test -d $(HOST_SUBDIR)/zlib ; then \
|
|
cd $(HOST_SUBDIR); mv zlib stageb3g2-zlib ; \
|
|
mv prev-zlib stageb2g0-zlib ; : ; \
|
|
fi
|
|
@endif zlib
|
|
@if test -d $(TARGET_SUBDIR) ; then \
|
|
mv $(TARGET_SUBDIR) stageb3g2-$(TARGET_SUBDIR) ; \
|
|
mv prev-$(TARGET_SUBDIR) stageb2g0-$(TARGET_SUBDIR) ; : ; \
|
|
fi
|
|
rm -f stage_current
|
|
|
|
# Bubble a bug fix through all the stages up to stage b3g2. They are
|
|
# remade, but not reconfigured. The next stage (if any) will not be
|
|
# reconfigured as well.
|
|
.PHONY: stageb3g2-bubble
|
|
stageb3g2-bubble:: stageb2g0-bubble
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
if test -f stageb3g2-lean || test -f stageb2g0-lean ; then \
|
|
echo Skipping rebuild of stageb3g2 ; \
|
|
else \
|
|
$(MAKE) stageb3g2-start; \
|
|
if $(LEAN); then \
|
|
rm -rf stage1-* ; \
|
|
$(STAMP) stage1-lean ; \
|
|
fi; \
|
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) all-stageb3g2; \
|
|
fi
|
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) compare-debug
|
|
|
|
.PHONY: all-stageb3g2 clean-stageb3g2
|
|
do-clean: clean-stageb3g2
|
|
|
|
# FIXME: Will not need to be conditional when toplevel bootstrap is the
|
|
# only possibility, but now it conflicts with no-bootstrap rules
|
|
@if gcc-bootstrap
|
|
|
|
compare-debug:
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
if test -f stageb2g0-lean; then \
|
|
echo Cannot compare object files as stage b2g0 was deleted. ; \
|
|
exit 0 ; \
|
|
fi; \
|
|
: $(MAKE); $(stage); \
|
|
rm -f .bad_compare ; \
|
|
echo Comparing stages b2g0 and b3g2 ; \
|
|
cd stageb3g2-gcc; \
|
|
files=`find . -name "*$(objext)" -print` ; \
|
|
cd .. ; \
|
|
for file in $${files} ; do \
|
|
f1=$$r/stageb2g0-gcc/$$file; f2=$$r/stageb3g2-gcc/$$file; \
|
|
$(do-compare-debug) > /dev/null 2>&1; \
|
|
if test $$? -eq 1; then \
|
|
case $$file in \
|
|
./cc*-checksum$(objext) | ./libgcc/* ) \
|
|
echo warning: $$file differs ;; \
|
|
*) \
|
|
echo $$file differs >> .bad_compare ;; \
|
|
esac ; \
|
|
fi ; \
|
|
done ; \
|
|
if [ -f .bad_compare ]; then \
|
|
echo "Bootstrap comparison failure!"; \
|
|
cat .bad_compare; \
|
|
exit 1; \
|
|
else \
|
|
echo Comparison successful.; \
|
|
fi ; \
|
|
$(STAMP) compare-debug
|
|
if $(LEAN); then \
|
|
rm -rf stageb2g0-*; \
|
|
$(STAMP) stageb2g0-lean; \
|
|
fi
|
|
|
|
|
|
|
|
.PHONY: bootstrap-debug bootstrap-debug-lean
|
|
bootstrap-debug:
|
|
echo stageb3g2 > stage_final
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) stageb3g2-bubble
|
|
@: $(MAKE); $(unstage)
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
|
|
|
bootstrap-debug-lean:
|
|
echo stageb3g2 > stage_final
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) LEAN=: stageb3g2-bubble
|
|
@: $(MAKE); $(unstage)
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
|
|
|
|
|
# Rules to wipe a stage and all the following ones, also used for cleanstrap
|
|
distclean-stageb2g0:: distclean-stageb3g2
|
|
.PHONY: distclean-stageb3g2
|
|
distclean-stageb3g2::
|
|
@: $(MAKE); $(stage)
|
|
@test "`cat stage_last`" != stageb3g2 || rm -f stage_last
|
|
rm -rf stageb3g2-* compare-debug
|
|
|
|
|
|
.PHONY: cleanstrap-debug
|
|
cleanstrap-debug: do-distclean local-clean
|
|
echo stageb3g2 > stage_final
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) stageb3g2-bubble
|
|
@: $(MAKE); $(unstage)
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
|
|
@endif gcc-bootstrap
|
@endif gcc-bootstrap
|
|
|
|
|
Line 50908... |
Line 54264... |
@cd $(HOST_SUBDIR); [ -d stage4-mpfr ] || \
|
@cd $(HOST_SUBDIR); [ -d stage4-mpfr ] || \
|
mkdir stage4-mpfr; \
|
mkdir stage4-mpfr; \
|
mv stage4-mpfr mpfr ; \
|
mv stage4-mpfr mpfr ; \
|
mv stage3-mpfr prev-mpfr || test -f stage3-lean
|
mv stage3-mpfr prev-mpfr || test -f stage3-lean
|
@endif mpfr
|
@endif mpfr
|
|
@if mpc
|
|
@cd $(HOST_SUBDIR); [ -d stage4-mpc ] || \
|
|
mkdir stage4-mpc; \
|
|
mv stage4-mpc mpc ; \
|
|
mv stage3-mpc prev-mpc || test -f stage3-lean
|
|
@endif mpc
|
|
@if ppl
|
|
@cd $(HOST_SUBDIR); [ -d stage4-ppl ] || \
|
|
mkdir stage4-ppl; \
|
|
mv stage4-ppl ppl ; \
|
|
mv stage3-ppl prev-ppl || test -f stage3-lean
|
|
@endif ppl
|
|
@if cloog
|
|
@cd $(HOST_SUBDIR); [ -d stage4-cloog ] || \
|
|
mkdir stage4-cloog; \
|
|
mv stage4-cloog cloog ; \
|
|
mv stage3-cloog prev-cloog || test -f stage3-lean
|
|
@endif cloog
|
|
@if gold
|
|
@cd $(HOST_SUBDIR); [ -d stage4-gold ] || \
|
|
mkdir stage4-gold; \
|
|
mv stage4-gold gold ; \
|
|
mv stage3-gold prev-gold || test -f stage3-lean
|
|
@endif gold
|
@if intl
|
@if intl
|
@cd $(HOST_SUBDIR); [ -d stage4-intl ] || \
|
@cd $(HOST_SUBDIR); [ -d stage4-intl ] || \
|
mkdir stage4-intl; \
|
mkdir stage4-intl; \
|
mv stage4-intl intl ; \
|
mv stage4-intl intl ; \
|
mv stage3-intl prev-intl || test -f stage3-lean
|
mv stage3-intl prev-intl || test -f stage3-lean
|
Line 50992... |
Line 54372... |
@if test -d $(HOST_SUBDIR)/mpfr ; then \
|
@if test -d $(HOST_SUBDIR)/mpfr ; then \
|
cd $(HOST_SUBDIR); mv mpfr stage4-mpfr ; \
|
cd $(HOST_SUBDIR); mv mpfr stage4-mpfr ; \
|
mv prev-mpfr stage3-mpfr ; : ; \
|
mv prev-mpfr stage3-mpfr ; : ; \
|
fi
|
fi
|
@endif mpfr
|
@endif mpfr
|
|
@if mpc
|
|
@if test -d $(HOST_SUBDIR)/mpc ; then \
|
|
cd $(HOST_SUBDIR); mv mpc stage4-mpc ; \
|
|
mv prev-mpc stage3-mpc ; : ; \
|
|
fi
|
|
@endif mpc
|
|
@if ppl
|
|
@if test -d $(HOST_SUBDIR)/ppl ; then \
|
|
cd $(HOST_SUBDIR); mv ppl stage4-ppl ; \
|
|
mv prev-ppl stage3-ppl ; : ; \
|
|
fi
|
|
@endif ppl
|
|
@if cloog
|
|
@if test -d $(HOST_SUBDIR)/cloog ; then \
|
|
cd $(HOST_SUBDIR); mv cloog stage4-cloog ; \
|
|
mv prev-cloog stage3-cloog ; : ; \
|
|
fi
|
|
@endif cloog
|
|
@if gold
|
|
@if test -d $(HOST_SUBDIR)/gold ; then \
|
|
cd $(HOST_SUBDIR); mv gold stage4-gold ; \
|
|
mv prev-gold stage3-gold ; : ; \
|
|
fi
|
|
@endif gold
|
@if intl
|
@if intl
|
@if test -d $(HOST_SUBDIR)/intl ; then \
|
@if test -d $(HOST_SUBDIR)/intl ; then \
|
cd $(HOST_SUBDIR); mv intl stage4-intl ; \
|
cd $(HOST_SUBDIR); mv intl stage4-intl ; \
|
mv prev-intl stage3-intl ; : ; \
|
mv prev-intl stage3-intl ; : ; \
|
fi
|
fi
|
Line 51036... |
Line 54440... |
fi
|
fi
|
rm -f stage_current
|
rm -f stage_current
|
|
|
# Bubble a bug fix through all the stages up to stage 4. They are
|
# Bubble a bug fix through all the stages up to stage 4. They are
|
# remade, but not reconfigured. The next stage (if any) will not be
|
# remade, but not reconfigured. The next stage (if any) will not be
|
# reconfigured as well.
|
# reconfigured either.
|
.PHONY: stage4-bubble
|
.PHONY: stage4-bubble
|
stage4-bubble:: stage3-bubble
|
stage4-bubble:: stage3-bubble
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
if test -f stage4-lean || test -f stage3-lean ; then \
|
if test -f stage4-lean || test -f stage3-lean ; then \
|
Line 51070... |
Line 54474... |
exit 0 ; \
|
exit 0 ; \
|
fi; \
|
fi; \
|
: $(MAKE); $(stage); \
|
: $(MAKE); $(stage); \
|
rm -f .bad_compare ; \
|
rm -f .bad_compare ; \
|
echo Comparing stages 3 and 4 ; \
|
echo Comparing stages 3 and 4 ; \
|
cd stage4-gcc; \
|
sed=`echo stage4 | sed 's,^stage,,;s,.,.,g'`; \
|
files=`find . -name "*$(objext)" -print` ; \
|
files=`find stage4-* -name "*$(objext)" -print | \
|
cd .. ; \
|
sed -n s,^stage$$sed-,,p` ; \
|
for file in $${files} ; do \
|
for file in $${files} ; do \
|
f1=$$r/stage3-gcc/$$file; f2=$$r/stage4-gcc/$$file; \
|
f1=$$r/stage3-$$file; f2=$$r/stage4-$$file; \
|
|
if test ! -f $$f1; then continue; fi; \
|
$(do-compare3) > /dev/null 2>&1; \
|
$(do-compare3) > /dev/null 2>&1; \
|
if test $$? -eq 1; then \
|
if test $$? -eq 1; then \
|
case $$file in \
|
case $$file in \
|
./cc*-checksum$(objext) | ./libgcc/* ) \
|
@compare_exclusions@) \
|
echo warning: $$file differs ;; \
|
echo warning: $$file differs ;; \
|
*) \
|
*) \
|
echo $$file differs >> .bad_compare ;; \
|
echo $$file differs >> .bad_compare ;; \
|
esac ; \
|
esac ; \
|
fi ; \
|
fi ; \
|
Line 51109... |
Line 54514... |
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) stage4-bubble
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) stage4-bubble
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
|
|
bootstrap4-lean:
|
bootstrap4-lean:
|
echo stage4 > stage_final
|
echo stage4 > stage_final
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) LEAN=: stage4-bubble
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) LEAN=: stage4-bubble
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGE4_TFLAGS)"; \
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
|
|
|
|
# Rules to wipe a stage and all the following ones, also used for cleanstrap
|
# Rules to wipe a stage and all the following ones, also used for cleanstrap
|
distclean-stage3:: distclean-stage4
|
distclean-stage3:: distclean-stage4
|
Line 51183... |
Line 54590... |
@cd $(HOST_SUBDIR); [ -d stageprofile-mpfr ] || \
|
@cd $(HOST_SUBDIR); [ -d stageprofile-mpfr ] || \
|
mkdir stageprofile-mpfr; \
|
mkdir stageprofile-mpfr; \
|
mv stageprofile-mpfr mpfr ; \
|
mv stageprofile-mpfr mpfr ; \
|
mv stage1-mpfr prev-mpfr || test -f stage1-lean
|
mv stage1-mpfr prev-mpfr || test -f stage1-lean
|
@endif mpfr
|
@endif mpfr
|
|
@if mpc
|
|
@cd $(HOST_SUBDIR); [ -d stageprofile-mpc ] || \
|
|
mkdir stageprofile-mpc; \
|
|
mv stageprofile-mpc mpc ; \
|
|
mv stage1-mpc prev-mpc || test -f stage1-lean
|
|
@endif mpc
|
|
@if ppl
|
|
@cd $(HOST_SUBDIR); [ -d stageprofile-ppl ] || \
|
|
mkdir stageprofile-ppl; \
|
|
mv stageprofile-ppl ppl ; \
|
|
mv stage1-ppl prev-ppl || test -f stage1-lean
|
|
@endif ppl
|
|
@if cloog
|
|
@cd $(HOST_SUBDIR); [ -d stageprofile-cloog ] || \
|
|
mkdir stageprofile-cloog; \
|
|
mv stageprofile-cloog cloog ; \
|
|
mv stage1-cloog prev-cloog || test -f stage1-lean
|
|
@endif cloog
|
|
@if gold
|
|
@cd $(HOST_SUBDIR); [ -d stageprofile-gold ] || \
|
|
mkdir stageprofile-gold; \
|
|
mv stageprofile-gold gold ; \
|
|
mv stage1-gold prev-gold || test -f stage1-lean
|
|
@endif gold
|
@if intl
|
@if intl
|
@cd $(HOST_SUBDIR); [ -d stageprofile-intl ] || \
|
@cd $(HOST_SUBDIR); [ -d stageprofile-intl ] || \
|
mkdir stageprofile-intl; \
|
mkdir stageprofile-intl; \
|
mv stageprofile-intl intl ; \
|
mv stageprofile-intl intl ; \
|
mv stage1-intl prev-intl || test -f stage1-lean
|
mv stage1-intl prev-intl || test -f stage1-lean
|
Line 51267... |
Line 54698... |
@if test -d $(HOST_SUBDIR)/mpfr ; then \
|
@if test -d $(HOST_SUBDIR)/mpfr ; then \
|
cd $(HOST_SUBDIR); mv mpfr stageprofile-mpfr ; \
|
cd $(HOST_SUBDIR); mv mpfr stageprofile-mpfr ; \
|
mv prev-mpfr stage1-mpfr ; : ; \
|
mv prev-mpfr stage1-mpfr ; : ; \
|
fi
|
fi
|
@endif mpfr
|
@endif mpfr
|
|
@if mpc
|
|
@if test -d $(HOST_SUBDIR)/mpc ; then \
|
|
cd $(HOST_SUBDIR); mv mpc stageprofile-mpc ; \
|
|
mv prev-mpc stage1-mpc ; : ; \
|
|
fi
|
|
@endif mpc
|
|
@if ppl
|
|
@if test -d $(HOST_SUBDIR)/ppl ; then \
|
|
cd $(HOST_SUBDIR); mv ppl stageprofile-ppl ; \
|
|
mv prev-ppl stage1-ppl ; : ; \
|
|
fi
|
|
@endif ppl
|
|
@if cloog
|
|
@if test -d $(HOST_SUBDIR)/cloog ; then \
|
|
cd $(HOST_SUBDIR); mv cloog stageprofile-cloog ; \
|
|
mv prev-cloog stage1-cloog ; : ; \
|
|
fi
|
|
@endif cloog
|
|
@if gold
|
|
@if test -d $(HOST_SUBDIR)/gold ; then \
|
|
cd $(HOST_SUBDIR); mv gold stageprofile-gold ; \
|
|
mv prev-gold stage1-gold ; : ; \
|
|
fi
|
|
@endif gold
|
@if intl
|
@if intl
|
@if test -d $(HOST_SUBDIR)/intl ; then \
|
@if test -d $(HOST_SUBDIR)/intl ; then \
|
cd $(HOST_SUBDIR); mv intl stageprofile-intl ; \
|
cd $(HOST_SUBDIR); mv intl stageprofile-intl ; \
|
mv prev-intl stage1-intl ; : ; \
|
mv prev-intl stage1-intl ; : ; \
|
fi
|
fi
|
Line 51311... |
Line 54766... |
fi
|
fi
|
rm -f stage_current
|
rm -f stage_current
|
|
|
# Bubble a bug fix through all the stages up to stage profile. They are
|
# Bubble a bug fix through all the stages up to stage profile. They are
|
# remade, but not reconfigured. The next stage (if any) will not be
|
# remade, but not reconfigured. The next stage (if any) will not be
|
# reconfigured as well.
|
# reconfigured either.
|
.PHONY: stageprofile-bubble
|
.PHONY: stageprofile-bubble
|
stageprofile-bubble:: stage1-bubble
|
stageprofile-bubble:: stage1-bubble
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
if test -f stageprofile-lean || test -f stage1-lean ; then \
|
if test -f stageprofile-lean || test -f stage1-lean ; then \
|
Line 51394... |
Line 54849... |
@cd $(HOST_SUBDIR); [ -d stagefeedback-mpfr ] || \
|
@cd $(HOST_SUBDIR); [ -d stagefeedback-mpfr ] || \
|
mkdir stagefeedback-mpfr; \
|
mkdir stagefeedback-mpfr; \
|
mv stagefeedback-mpfr mpfr ; \
|
mv stagefeedback-mpfr mpfr ; \
|
mv stageprofile-mpfr prev-mpfr || test -f stageprofile-lean
|
mv stageprofile-mpfr prev-mpfr || test -f stageprofile-lean
|
@endif mpfr
|
@endif mpfr
|
|
@if mpc
|
|
@cd $(HOST_SUBDIR); [ -d stagefeedback-mpc ] || \
|
|
mkdir stagefeedback-mpc; \
|
|
mv stagefeedback-mpc mpc ; \
|
|
mv stageprofile-mpc prev-mpc || test -f stageprofile-lean
|
|
@endif mpc
|
|
@if ppl
|
|
@cd $(HOST_SUBDIR); [ -d stagefeedback-ppl ] || \
|
|
mkdir stagefeedback-ppl; \
|
|
mv stagefeedback-ppl ppl ; \
|
|
mv stageprofile-ppl prev-ppl || test -f stageprofile-lean
|
|
@endif ppl
|
|
@if cloog
|
|
@cd $(HOST_SUBDIR); [ -d stagefeedback-cloog ] || \
|
|
mkdir stagefeedback-cloog; \
|
|
mv stagefeedback-cloog cloog ; \
|
|
mv stageprofile-cloog prev-cloog || test -f stageprofile-lean
|
|
@endif cloog
|
|
@if gold
|
|
@cd $(HOST_SUBDIR); [ -d stagefeedback-gold ] || \
|
|
mkdir stagefeedback-gold; \
|
|
mv stagefeedback-gold gold ; \
|
|
mv stageprofile-gold prev-gold || test -f stageprofile-lean
|
|
@endif gold
|
@if intl
|
@if intl
|
@cd $(HOST_SUBDIR); [ -d stagefeedback-intl ] || \
|
@cd $(HOST_SUBDIR); [ -d stagefeedback-intl ] || \
|
mkdir stagefeedback-intl; \
|
mkdir stagefeedback-intl; \
|
mv stagefeedback-intl intl ; \
|
mv stagefeedback-intl intl ; \
|
mv stageprofile-intl prev-intl || test -f stageprofile-lean
|
mv stageprofile-intl prev-intl || test -f stageprofile-lean
|
Line 51478... |
Line 54957... |
@if test -d $(HOST_SUBDIR)/mpfr ; then \
|
@if test -d $(HOST_SUBDIR)/mpfr ; then \
|
cd $(HOST_SUBDIR); mv mpfr stagefeedback-mpfr ; \
|
cd $(HOST_SUBDIR); mv mpfr stagefeedback-mpfr ; \
|
mv prev-mpfr stageprofile-mpfr ; : ; \
|
mv prev-mpfr stageprofile-mpfr ; : ; \
|
fi
|
fi
|
@endif mpfr
|
@endif mpfr
|
|
@if mpc
|
|
@if test -d $(HOST_SUBDIR)/mpc ; then \
|
|
cd $(HOST_SUBDIR); mv mpc stagefeedback-mpc ; \
|
|
mv prev-mpc stageprofile-mpc ; : ; \
|
|
fi
|
|
@endif mpc
|
|
@if ppl
|
|
@if test -d $(HOST_SUBDIR)/ppl ; then \
|
|
cd $(HOST_SUBDIR); mv ppl stagefeedback-ppl ; \
|
|
mv prev-ppl stageprofile-ppl ; : ; \
|
|
fi
|
|
@endif ppl
|
|
@if cloog
|
|
@if test -d $(HOST_SUBDIR)/cloog ; then \
|
|
cd $(HOST_SUBDIR); mv cloog stagefeedback-cloog ; \
|
|
mv prev-cloog stageprofile-cloog ; : ; \
|
|
fi
|
|
@endif cloog
|
|
@if gold
|
|
@if test -d $(HOST_SUBDIR)/gold ; then \
|
|
cd $(HOST_SUBDIR); mv gold stagefeedback-gold ; \
|
|
mv prev-gold stageprofile-gold ; : ; \
|
|
fi
|
|
@endif gold
|
@if intl
|
@if intl
|
@if test -d $(HOST_SUBDIR)/intl ; then \
|
@if test -d $(HOST_SUBDIR)/intl ; then \
|
cd $(HOST_SUBDIR); mv intl stagefeedback-intl ; \
|
cd $(HOST_SUBDIR); mv intl stagefeedback-intl ; \
|
mv prev-intl stageprofile-intl ; : ; \
|
mv prev-intl stageprofile-intl ; : ; \
|
fi
|
fi
|
Line 51522... |
Line 55025... |
fi
|
fi
|
rm -f stage_current
|
rm -f stage_current
|
|
|
# Bubble a bug fix through all the stages up to stage feedback. They are
|
# Bubble a bug fix through all the stages up to stage feedback. They are
|
# remade, but not reconfigured. The next stage (if any) will not be
|
# remade, but not reconfigured. The next stage (if any) will not be
|
# reconfigured as well.
|
# reconfigured either.
|
.PHONY: stagefeedback-bubble
|
.PHONY: stagefeedback-bubble
|
stagefeedback-bubble:: stageprofile-bubble
|
stagefeedback-bubble:: stageprofile-bubble
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
if test -f stagefeedback-lean || test -f stageprofile-lean ; then \
|
if test -f stagefeedback-lean || test -f stageprofile-lean ; then \
|
Line 51552... |
Line 55055... |
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) stagefeedback-bubble
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) stagefeedback-bubble
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
|
|
profiledbootstrap-lean:
|
profiledbootstrap-lean:
|
echo stagefeedback > stage_final
|
echo stagefeedback > stage_final
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) LEAN=: stagefeedback-bubble
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) LEAN=: stagefeedback-bubble
|
@: $(MAKE); $(unstage)
|
@: $(MAKE); $(unstage)
|
@r=`${PWD_COMMAND}`; export r; \
|
@r=`${PWD_COMMAND}`; export r; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
|
|
|
|
# Rules to wipe a stage and all the following ones, also used for cleanstrap
|
# Rules to wipe a stage and all the following ones, also used for cleanstrap
|
distclean-stageprofile:: distclean-stagefeedback
|
distclean-stageprofile:: distclean-stagefeedback
|
Line 51597... |
Line 55102... |
do-distclean: distclean-stage1
|
do-distclean: distclean-stage1
|
|
|
# Provide a GCC build when we're building target libraries. This does
|
# Provide a GCC build when we're building target libraries. This does
|
# not work as a dependency, just as the minimum necessary to avoid errors.
|
# not work as a dependency, just as the minimum necessary to avoid errors.
|
stage_last:
|
stage_last:
|
|
@r=`${PWD_COMMAND}`; export r; \
|
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) stage1-bubble
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) stage1-bubble
|
|
|
# Same as unstage, but not phony and defaulting to stage1-start. We place
|
# Same as unstage, but not phony and defaulting to stage1-start. We place
|
# it in the dependency so that for example `make -j3 all-gcc' works.
|
# it in the dependency so that for example `make -j3 all-gcc' works.
|
stage_current:
|
stage_current:
|
@if test -f stage_last; then $(unstage); else $(MAKE) stage1-start; fi
|
@if test -f stage_last; then $(unstage); else $(MAKE) stage1-start; fi
|
|
|
.PHONY: restrap
|
.PHONY: restrap
|
restrap:
|
restrap::
|
@: $(MAKE); $(stage)
|
@: $(MAKE); $(stage)
|
rm -rf stage1-$(TARGET_SUBDIR) stage2-* stageb2g0-* stage3-* stageb3g2-* stage4-* stageprofile-* stagefeedback-*
|
rm -rf stage1-$(TARGET_SUBDIR) stage2-* stage3-* stage4-* stageprofile-* stagefeedback-*
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) all
|
restrap:: all
|
@endif gcc-bootstrap
|
@endif gcc-bootstrap
|
|
|
# --------------------------------------
|
# --------------------------------------
|
# Dependencies between different modules
|
# Dependencies between different modules
|
# --------------------------------------
|
# --------------------------------------
|
|
|
# Generic dependencies for target modules on host stuff, especially gcc
|
# Generic dependencies for target modules on host stuff, especially gcc
|
@if gcc-bootstrap
|
@if gcc-bootstrap
|
configure-target-libstdc++-v3: stage_last
|
configure-stage1-target-libstdc++-v3: maybe-all-stage1-gcc
|
|
configure-stage2-target-libstdc++-v3: maybe-all-stage2-gcc
|
|
configure-stage3-target-libstdc++-v3: maybe-all-stage3-gcc
|
|
configure-stage4-target-libstdc++-v3: maybe-all-stage4-gcc
|
|
configure-stageprofile-target-libstdc++-v3: maybe-all-stageprofile-gcc
|
|
configure-stagefeedback-target-libstdc++-v3: maybe-all-stagefeedback-gcc
|
configure-target-libmudflap: stage_last
|
configure-target-libmudflap: stage_last
|
configure-target-libssp: stage_last
|
configure-target-libssp: stage_last
|
configure-target-newlib: stage_last
|
configure-target-newlib: stage_last
|
configure-stage1-target-libgcc: maybe-all-stage1-gcc
|
configure-stage1-target-libgcc: maybe-all-stage1-gcc
|
configure-stage2-target-libgcc: maybe-all-stage2-gcc
|
configure-stage2-target-libgcc: maybe-all-stage2-gcc
|
configure-stageb2g0-target-libgcc: maybe-all-stageb2g0-gcc
|
|
configure-stage3-target-libgcc: maybe-all-stage3-gcc
|
configure-stage3-target-libgcc: maybe-all-stage3-gcc
|
configure-stageb3g2-target-libgcc: maybe-all-stageb3g2-gcc
|
|
configure-stage4-target-libgcc: maybe-all-stage4-gcc
|
configure-stage4-target-libgcc: maybe-all-stage4-gcc
|
configure-stageprofile-target-libgcc: maybe-all-stageprofile-gcc
|
configure-stageprofile-target-libgcc: maybe-all-stageprofile-gcc
|
configure-stagefeedback-target-libgcc: maybe-all-stagefeedback-gcc
|
configure-stagefeedback-target-libgcc: maybe-all-stagefeedback-gcc
|
configure-target-libgfortran: stage_last
|
configure-target-libgfortran: stage_last
|
configure-target-libobjc: stage_last
|
configure-target-libobjc: stage_last
|
Line 51702... |
Line 55212... |
all-build-fixincludes: maybe-all-build-libiberty
|
all-build-fixincludes: maybe-all-build-libiberty
|
configure-gcc: maybe-configure-intl
|
configure-gcc: maybe-configure-intl
|
|
|
configure-stage1-gcc: maybe-configure-stage1-intl
|
configure-stage1-gcc: maybe-configure-stage1-intl
|
configure-stage2-gcc: maybe-configure-stage2-intl
|
configure-stage2-gcc: maybe-configure-stage2-intl
|
configure-stageb2g0-gcc: maybe-configure-stageb2g0-intl
|
|
configure-stage3-gcc: maybe-configure-stage3-intl
|
configure-stage3-gcc: maybe-configure-stage3-intl
|
configure-stageb3g2-gcc: maybe-configure-stageb3g2-intl
|
|
configure-stage4-gcc: maybe-configure-stage4-intl
|
configure-stage4-gcc: maybe-configure-stage4-intl
|
configure-stageprofile-gcc: maybe-configure-stageprofile-intl
|
configure-stageprofile-gcc: maybe-configure-stageprofile-intl
|
configure-stagefeedback-gcc: maybe-configure-stagefeedback-intl
|
configure-stagefeedback-gcc: maybe-configure-stagefeedback-intl
|
configure-gcc: maybe-all-binutils
|
configure-gcc: maybe-all-binutils
|
|
|
configure-stage1-gcc: maybe-all-stage1-binutils
|
configure-stage1-gcc: maybe-all-stage1-binutils
|
configure-stage2-gcc: maybe-all-stage2-binutils
|
configure-stage2-gcc: maybe-all-stage2-binutils
|
configure-stageb2g0-gcc: maybe-all-stageb2g0-binutils
|
|
configure-stage3-gcc: maybe-all-stage3-binutils
|
configure-stage3-gcc: maybe-all-stage3-binutils
|
configure-stageb3g2-gcc: maybe-all-stageb3g2-binutils
|
|
configure-stage4-gcc: maybe-all-stage4-binutils
|
configure-stage4-gcc: maybe-all-stage4-binutils
|
configure-stageprofile-gcc: maybe-all-stageprofile-binutils
|
configure-stageprofile-gcc: maybe-all-stageprofile-binutils
|
configure-stagefeedback-gcc: maybe-all-stagefeedback-binutils
|
configure-stagefeedback-gcc: maybe-all-stagefeedback-binutils
|
configure-gcc: maybe-all-gas
|
configure-gcc: maybe-all-gas
|
|
|
configure-stage1-gcc: maybe-all-stage1-gas
|
configure-stage1-gcc: maybe-all-stage1-gas
|
configure-stage2-gcc: maybe-all-stage2-gas
|
configure-stage2-gcc: maybe-all-stage2-gas
|
configure-stageb2g0-gcc: maybe-all-stageb2g0-gas
|
|
configure-stage3-gcc: maybe-all-stage3-gas
|
configure-stage3-gcc: maybe-all-stage3-gas
|
configure-stageb3g2-gcc: maybe-all-stageb3g2-gas
|
|
configure-stage4-gcc: maybe-all-stage4-gas
|
configure-stage4-gcc: maybe-all-stage4-gas
|
configure-stageprofile-gcc: maybe-all-stageprofile-gas
|
configure-stageprofile-gcc: maybe-all-stageprofile-gas
|
configure-stagefeedback-gcc: maybe-all-stagefeedback-gas
|
configure-stagefeedback-gcc: maybe-all-stagefeedback-gas
|
configure-gcc: maybe-all-ld
|
configure-gcc: maybe-all-ld
|
|
|
configure-stage1-gcc: maybe-all-stage1-ld
|
configure-stage1-gcc: maybe-all-stage1-ld
|
configure-stage2-gcc: maybe-all-stage2-ld
|
configure-stage2-gcc: maybe-all-stage2-ld
|
configure-stageb2g0-gcc: maybe-all-stageb2g0-ld
|
|
configure-stage3-gcc: maybe-all-stage3-ld
|
configure-stage3-gcc: maybe-all-stage3-ld
|
configure-stageb3g2-gcc: maybe-all-stageb3g2-ld
|
|
configure-stage4-gcc: maybe-all-stage4-ld
|
configure-stage4-gcc: maybe-all-stage4-ld
|
configure-stageprofile-gcc: maybe-all-stageprofile-ld
|
configure-stageprofile-gcc: maybe-all-stageprofile-ld
|
configure-stagefeedback-gcc: maybe-all-stagefeedback-ld
|
configure-stagefeedback-gcc: maybe-all-stagefeedback-ld
|
|
configure-gcc: maybe-all-gold
|
|
|
|
configure-stage1-gcc: maybe-all-stage1-gold
|
|
configure-stage2-gcc: maybe-all-stage2-gold
|
|
configure-stage3-gcc: maybe-all-stage3-gold
|
|
configure-stage4-gcc: maybe-all-stage4-gold
|
|
configure-stageprofile-gcc: maybe-all-stageprofile-gold
|
|
configure-stagefeedback-gcc: maybe-all-stagefeedback-gold
|
all-gcc: all-libiberty
|
all-gcc: all-libiberty
|
|
|
all-stage1-gcc: all-stage1-libiberty
|
all-stage1-gcc: all-stage1-libiberty
|
all-stage2-gcc: all-stage2-libiberty
|
all-stage2-gcc: all-stage2-libiberty
|
all-stageb2g0-gcc: all-stageb2g0-libiberty
|
|
all-stage3-gcc: all-stage3-libiberty
|
all-stage3-gcc: all-stage3-libiberty
|
all-stageb3g2-gcc: all-stageb3g2-libiberty
|
|
all-stage4-gcc: all-stage4-libiberty
|
all-stage4-gcc: all-stage4-libiberty
|
all-stageprofile-gcc: all-stageprofile-libiberty
|
all-stageprofile-gcc: all-stageprofile-libiberty
|
all-stagefeedback-gcc: all-stagefeedback-libiberty
|
all-stagefeedback-gcc: all-stagefeedback-libiberty
|
all-gcc: maybe-all-gmp
|
all-gcc: maybe-all-gmp
|
|
|
all-stage1-gcc: maybe-all-stage1-gmp
|
all-stage1-gcc: maybe-all-stage1-gmp
|
all-stage2-gcc: maybe-all-stage2-gmp
|
all-stage2-gcc: maybe-all-stage2-gmp
|
all-stageb2g0-gcc: maybe-all-stageb2g0-gmp
|
|
all-stage3-gcc: maybe-all-stage3-gmp
|
all-stage3-gcc: maybe-all-stage3-gmp
|
all-stageb3g2-gcc: maybe-all-stageb3g2-gmp
|
|
all-stage4-gcc: maybe-all-stage4-gmp
|
all-stage4-gcc: maybe-all-stage4-gmp
|
all-stageprofile-gcc: maybe-all-stageprofile-gmp
|
all-stageprofile-gcc: maybe-all-stageprofile-gmp
|
all-stagefeedback-gcc: maybe-all-stagefeedback-gmp
|
all-stagefeedback-gcc: maybe-all-stagefeedback-gmp
|
all-gcc: maybe-all-intl
|
all-gcc: maybe-all-intl
|
|
|
all-stage1-gcc: maybe-all-stage1-intl
|
all-stage1-gcc: maybe-all-stage1-intl
|
all-stage2-gcc: maybe-all-stage2-intl
|
all-stage2-gcc: maybe-all-stage2-intl
|
all-stageb2g0-gcc: maybe-all-stageb2g0-intl
|
|
all-stage3-gcc: maybe-all-stage3-intl
|
all-stage3-gcc: maybe-all-stage3-intl
|
all-stageb3g2-gcc: maybe-all-stageb3g2-intl
|
|
all-stage4-gcc: maybe-all-stage4-intl
|
all-stage4-gcc: maybe-all-stage4-intl
|
all-stageprofile-gcc: maybe-all-stageprofile-intl
|
all-stageprofile-gcc: maybe-all-stageprofile-intl
|
all-stagefeedback-gcc: maybe-all-stagefeedback-intl
|
all-stagefeedback-gcc: maybe-all-stagefeedback-intl
|
all-gcc: maybe-all-mpfr
|
all-gcc: maybe-all-mpfr
|
|
|
all-stage1-gcc: maybe-all-stage1-mpfr
|
all-stage1-gcc: maybe-all-stage1-mpfr
|
all-stage2-gcc: maybe-all-stage2-mpfr
|
all-stage2-gcc: maybe-all-stage2-mpfr
|
all-stageb2g0-gcc: maybe-all-stageb2g0-mpfr
|
|
all-stage3-gcc: maybe-all-stage3-mpfr
|
all-stage3-gcc: maybe-all-stage3-mpfr
|
all-stageb3g2-gcc: maybe-all-stageb3g2-mpfr
|
|
all-stage4-gcc: maybe-all-stage4-mpfr
|
all-stage4-gcc: maybe-all-stage4-mpfr
|
all-stageprofile-gcc: maybe-all-stageprofile-mpfr
|
all-stageprofile-gcc: maybe-all-stageprofile-mpfr
|
all-stagefeedback-gcc: maybe-all-stagefeedback-mpfr
|
all-stagefeedback-gcc: maybe-all-stagefeedback-mpfr
|
|
all-gcc: maybe-all-mpc
|
|
|
|
all-stage1-gcc: maybe-all-stage1-mpc
|
|
all-stage2-gcc: maybe-all-stage2-mpc
|
|
all-stage3-gcc: maybe-all-stage3-mpc
|
|
all-stage4-gcc: maybe-all-stage4-mpc
|
|
all-stageprofile-gcc: maybe-all-stageprofile-mpc
|
|
all-stagefeedback-gcc: maybe-all-stagefeedback-mpc
|
|
all-gcc: maybe-all-ppl
|
|
|
|
all-stage1-gcc: maybe-all-stage1-ppl
|
|
all-stage2-gcc: maybe-all-stage2-ppl
|
|
all-stage3-gcc: maybe-all-stage3-ppl
|
|
all-stage4-gcc: maybe-all-stage4-ppl
|
|
all-stageprofile-gcc: maybe-all-stageprofile-ppl
|
|
all-stagefeedback-gcc: maybe-all-stagefeedback-ppl
|
|
all-gcc: maybe-all-cloog
|
|
|
|
all-stage1-gcc: maybe-all-stage1-cloog
|
|
all-stage2-gcc: maybe-all-stage2-cloog
|
|
all-stage3-gcc: maybe-all-stage3-cloog
|
|
all-stage4-gcc: maybe-all-stage4-cloog
|
|
all-stageprofile-gcc: maybe-all-stageprofile-cloog
|
|
all-stagefeedback-gcc: maybe-all-stagefeedback-cloog
|
all-gcc: maybe-all-build-texinfo
|
all-gcc: maybe-all-build-texinfo
|
|
|
all-stage1-gcc: maybe-all-build-texinfo
|
all-stage1-gcc: maybe-all-build-texinfo
|
all-stage2-gcc: maybe-all-build-texinfo
|
all-stage2-gcc: maybe-all-build-texinfo
|
all-stageb2g0-gcc: maybe-all-build-texinfo
|
|
all-stage3-gcc: maybe-all-build-texinfo
|
all-stage3-gcc: maybe-all-build-texinfo
|
all-stageb3g2-gcc: maybe-all-build-texinfo
|
|
all-stage4-gcc: maybe-all-build-texinfo
|
all-stage4-gcc: maybe-all-build-texinfo
|
all-stageprofile-gcc: maybe-all-build-texinfo
|
all-stageprofile-gcc: maybe-all-build-texinfo
|
all-stagefeedback-gcc: maybe-all-build-texinfo
|
all-stagefeedback-gcc: maybe-all-build-texinfo
|
all-gcc: maybe-all-build-bison
|
all-gcc: maybe-all-build-bison
|
|
|
all-stage1-gcc: maybe-all-build-bison
|
all-stage1-gcc: maybe-all-build-bison
|
all-stage2-gcc: maybe-all-build-bison
|
all-stage2-gcc: maybe-all-build-bison
|
all-stageb2g0-gcc: maybe-all-build-bison
|
|
all-stage3-gcc: maybe-all-build-bison
|
all-stage3-gcc: maybe-all-build-bison
|
all-stageb3g2-gcc: maybe-all-build-bison
|
|
all-stage4-gcc: maybe-all-build-bison
|
all-stage4-gcc: maybe-all-build-bison
|
all-stageprofile-gcc: maybe-all-build-bison
|
all-stageprofile-gcc: maybe-all-build-bison
|
all-stagefeedback-gcc: maybe-all-build-bison
|
all-stagefeedback-gcc: maybe-all-build-bison
|
all-gcc: maybe-all-build-byacc
|
all-gcc: maybe-all-build-byacc
|
|
|
all-stage1-gcc: maybe-all-build-byacc
|
all-stage1-gcc: maybe-all-build-byacc
|
all-stage2-gcc: maybe-all-build-byacc
|
all-stage2-gcc: maybe-all-build-byacc
|
all-stageb2g0-gcc: maybe-all-build-byacc
|
|
all-stage3-gcc: maybe-all-build-byacc
|
all-stage3-gcc: maybe-all-build-byacc
|
all-stageb3g2-gcc: maybe-all-build-byacc
|
|
all-stage4-gcc: maybe-all-build-byacc
|
all-stage4-gcc: maybe-all-build-byacc
|
all-stageprofile-gcc: maybe-all-build-byacc
|
all-stageprofile-gcc: maybe-all-build-byacc
|
all-stagefeedback-gcc: maybe-all-build-byacc
|
all-stagefeedback-gcc: maybe-all-build-byacc
|
all-gcc: maybe-all-build-flex
|
all-gcc: maybe-all-build-flex
|
|
|
all-stage1-gcc: maybe-all-build-flex
|
all-stage1-gcc: maybe-all-build-flex
|
all-stage2-gcc: maybe-all-build-flex
|
all-stage2-gcc: maybe-all-build-flex
|
all-stageb2g0-gcc: maybe-all-build-flex
|
|
all-stage3-gcc: maybe-all-build-flex
|
all-stage3-gcc: maybe-all-build-flex
|
all-stageb3g2-gcc: maybe-all-build-flex
|
|
all-stage4-gcc: maybe-all-build-flex
|
all-stage4-gcc: maybe-all-build-flex
|
all-stageprofile-gcc: maybe-all-build-flex
|
all-stageprofile-gcc: maybe-all-build-flex
|
all-stagefeedback-gcc: maybe-all-build-flex
|
all-stagefeedback-gcc: maybe-all-build-flex
|
all-gcc: maybe-all-build-libiberty
|
all-gcc: maybe-all-build-libiberty
|
|
|
all-stage1-gcc: maybe-all-build-libiberty
|
all-stage1-gcc: maybe-all-build-libiberty
|
all-stage2-gcc: maybe-all-build-libiberty
|
all-stage2-gcc: maybe-all-build-libiberty
|
all-stageb2g0-gcc: maybe-all-build-libiberty
|
|
all-stage3-gcc: maybe-all-build-libiberty
|
all-stage3-gcc: maybe-all-build-libiberty
|
all-stageb3g2-gcc: maybe-all-build-libiberty
|
|
all-stage4-gcc: maybe-all-build-libiberty
|
all-stage4-gcc: maybe-all-build-libiberty
|
all-stageprofile-gcc: maybe-all-build-libiberty
|
all-stageprofile-gcc: maybe-all-build-libiberty
|
all-stagefeedback-gcc: maybe-all-build-libiberty
|
all-stagefeedback-gcc: maybe-all-build-libiberty
|
all-gcc: maybe-all-build-fixincludes
|
all-gcc: maybe-all-build-fixincludes
|
|
|
all-stage1-gcc: maybe-all-build-fixincludes
|
all-stage1-gcc: maybe-all-build-fixincludes
|
all-stage2-gcc: maybe-all-build-fixincludes
|
all-stage2-gcc: maybe-all-build-fixincludes
|
all-stageb2g0-gcc: maybe-all-build-fixincludes
|
|
all-stage3-gcc: maybe-all-build-fixincludes
|
all-stage3-gcc: maybe-all-build-fixincludes
|
all-stageb3g2-gcc: maybe-all-build-fixincludes
|
|
all-stage4-gcc: maybe-all-build-fixincludes
|
all-stage4-gcc: maybe-all-build-fixincludes
|
all-stageprofile-gcc: maybe-all-build-fixincludes
|
all-stageprofile-gcc: maybe-all-build-fixincludes
|
all-stagefeedback-gcc: maybe-all-build-fixincludes
|
all-stagefeedback-gcc: maybe-all-build-fixincludes
|
all-gcc: maybe-all-zlib
|
all-gcc: maybe-all-zlib
|
|
|
all-stage1-gcc: maybe-all-stage1-zlib
|
all-stage1-gcc: maybe-all-stage1-zlib
|
all-stage2-gcc: maybe-all-stage2-zlib
|
all-stage2-gcc: maybe-all-stage2-zlib
|
all-stageb2g0-gcc: maybe-all-stageb2g0-zlib
|
|
all-stage3-gcc: maybe-all-stage3-zlib
|
all-stage3-gcc: maybe-all-stage3-zlib
|
all-stageb3g2-gcc: maybe-all-stageb3g2-zlib
|
|
all-stage4-gcc: maybe-all-stage4-zlib
|
all-stage4-gcc: maybe-all-stage4-zlib
|
all-stageprofile-gcc: maybe-all-stageprofile-zlib
|
all-stageprofile-gcc: maybe-all-stageprofile-zlib
|
all-stagefeedback-gcc: maybe-all-stagefeedback-zlib
|
all-stagefeedback-gcc: maybe-all-stagefeedback-zlib
|
all-gcc: all-libcpp
|
all-gcc: all-libcpp
|
|
|
all-stage1-gcc: all-stage1-libcpp
|
all-stage1-gcc: all-stage1-libcpp
|
all-stage2-gcc: all-stage2-libcpp
|
all-stage2-gcc: all-stage2-libcpp
|
all-stageb2g0-gcc: all-stageb2g0-libcpp
|
|
all-stage3-gcc: all-stage3-libcpp
|
all-stage3-gcc: all-stage3-libcpp
|
all-stageb3g2-gcc: all-stageb3g2-libcpp
|
|
all-stage4-gcc: all-stage4-libcpp
|
all-stage4-gcc: all-stage4-libcpp
|
all-stageprofile-gcc: all-stageprofile-libcpp
|
all-stageprofile-gcc: all-stageprofile-libcpp
|
all-stagefeedback-gcc: all-stagefeedback-libcpp
|
all-stagefeedback-gcc: all-stagefeedback-libcpp
|
all-gcc: all-libdecnumber
|
all-gcc: all-libdecnumber
|
|
|
all-stage1-gcc: all-stage1-libdecnumber
|
all-stage1-gcc: all-stage1-libdecnumber
|
all-stage2-gcc: all-stage2-libdecnumber
|
all-stage2-gcc: all-stage2-libdecnumber
|
all-stageb2g0-gcc: all-stageb2g0-libdecnumber
|
|
all-stage3-gcc: all-stage3-libdecnumber
|
all-stage3-gcc: all-stage3-libdecnumber
|
all-stageb3g2-gcc: all-stageb3g2-libdecnumber
|
|
all-stage4-gcc: all-stage4-libdecnumber
|
all-stage4-gcc: all-stage4-libdecnumber
|
all-stageprofile-gcc: all-stageprofile-libdecnumber
|
all-stageprofile-gcc: all-stageprofile-libdecnumber
|
all-stagefeedback-gcc: all-stagefeedback-libdecnumber
|
all-stagefeedback-gcc: all-stagefeedback-libdecnumber
|
all-gcc: maybe-all-libiberty
|
all-gcc: maybe-all-libiberty
|
|
|
all-stage1-gcc: maybe-all-stage1-libiberty
|
all-stage1-gcc: maybe-all-stage1-libiberty
|
all-stage2-gcc: maybe-all-stage2-libiberty
|
all-stage2-gcc: maybe-all-stage2-libiberty
|
all-stageb2g0-gcc: maybe-all-stageb2g0-libiberty
|
|
all-stage3-gcc: maybe-all-stage3-libiberty
|
all-stage3-gcc: maybe-all-stage3-libiberty
|
all-stageb3g2-gcc: maybe-all-stageb3g2-libiberty
|
|
all-stage4-gcc: maybe-all-stage4-libiberty
|
all-stage4-gcc: maybe-all-stage4-libiberty
|
all-stageprofile-gcc: maybe-all-stageprofile-libiberty
|
all-stageprofile-gcc: maybe-all-stageprofile-libiberty
|
all-stagefeedback-gcc: maybe-all-stagefeedback-libiberty
|
all-stagefeedback-gcc: maybe-all-stagefeedback-libiberty
|
all-gcc: maybe-all-fixincludes
|
all-gcc: maybe-all-fixincludes
|
install-gcc: maybe-install-fixincludes
|
install-gcc: maybe-install-fixincludes
|
configure-libcpp: configure-libiberty
|
configure-libcpp: configure-libiberty
|
|
|
configure-stage1-libcpp: configure-stage1-libiberty
|
configure-stage1-libcpp: configure-stage1-libiberty
|
configure-stage2-libcpp: configure-stage2-libiberty
|
configure-stage2-libcpp: configure-stage2-libiberty
|
configure-stageb2g0-libcpp: configure-stageb2g0-libiberty
|
|
configure-stage3-libcpp: configure-stage3-libiberty
|
configure-stage3-libcpp: configure-stage3-libiberty
|
configure-stageb3g2-libcpp: configure-stageb3g2-libiberty
|
|
configure-stage4-libcpp: configure-stage4-libiberty
|
configure-stage4-libcpp: configure-stage4-libiberty
|
configure-stageprofile-libcpp: configure-stageprofile-libiberty
|
configure-stageprofile-libcpp: configure-stageprofile-libiberty
|
configure-stagefeedback-libcpp: configure-stagefeedback-libiberty
|
configure-stagefeedback-libcpp: configure-stagefeedback-libiberty
|
configure-libcpp: maybe-configure-intl
|
configure-libcpp: maybe-configure-intl
|
|
|
configure-stage1-libcpp: maybe-configure-stage1-intl
|
configure-stage1-libcpp: maybe-configure-stage1-intl
|
configure-stage2-libcpp: maybe-configure-stage2-intl
|
configure-stage2-libcpp: maybe-configure-stage2-intl
|
configure-stageb2g0-libcpp: maybe-configure-stageb2g0-intl
|
|
configure-stage3-libcpp: maybe-configure-stage3-intl
|
configure-stage3-libcpp: maybe-configure-stage3-intl
|
configure-stageb3g2-libcpp: maybe-configure-stageb3g2-intl
|
|
configure-stage4-libcpp: maybe-configure-stage4-intl
|
configure-stage4-libcpp: maybe-configure-stage4-intl
|
configure-stageprofile-libcpp: maybe-configure-stageprofile-intl
|
configure-stageprofile-libcpp: maybe-configure-stageprofile-intl
|
configure-stagefeedback-libcpp: maybe-configure-stagefeedback-intl
|
configure-stagefeedback-libcpp: maybe-configure-stagefeedback-intl
|
all-libcpp: all-libiberty
|
all-libcpp: all-libiberty
|
|
|
all-stage1-libcpp: all-stage1-libiberty
|
all-stage1-libcpp: all-stage1-libiberty
|
all-stage2-libcpp: all-stage2-libiberty
|
all-stage2-libcpp: all-stage2-libiberty
|
all-stageb2g0-libcpp: all-stageb2g0-libiberty
|
|
all-stage3-libcpp: all-stage3-libiberty
|
all-stage3-libcpp: all-stage3-libiberty
|
all-stageb3g2-libcpp: all-stageb3g2-libiberty
|
|
all-stage4-libcpp: all-stage4-libiberty
|
all-stage4-libcpp: all-stage4-libiberty
|
all-stageprofile-libcpp: all-stageprofile-libiberty
|
all-stageprofile-libcpp: all-stageprofile-libiberty
|
all-stagefeedback-libcpp: all-stagefeedback-libiberty
|
all-stagefeedback-libcpp: all-stagefeedback-libiberty
|
all-libcpp: maybe-all-intl
|
all-libcpp: maybe-all-intl
|
|
|
all-stage1-libcpp: maybe-all-stage1-intl
|
all-stage1-libcpp: maybe-all-stage1-intl
|
all-stage2-libcpp: maybe-all-stage2-intl
|
all-stage2-libcpp: maybe-all-stage2-intl
|
all-stageb2g0-libcpp: maybe-all-stageb2g0-intl
|
|
all-stage3-libcpp: maybe-all-stage3-intl
|
all-stage3-libcpp: maybe-all-stage3-intl
|
all-stageb3g2-libcpp: maybe-all-stageb3g2-intl
|
|
all-stage4-libcpp: maybe-all-stage4-intl
|
all-stage4-libcpp: maybe-all-stage4-intl
|
all-stageprofile-libcpp: maybe-all-stageprofile-intl
|
all-stageprofile-libcpp: maybe-all-stageprofile-intl
|
all-stagefeedback-libcpp: maybe-all-stagefeedback-intl
|
all-stagefeedback-libcpp: maybe-all-stagefeedback-intl
|
all-fixincludes: maybe-all-libiberty
|
all-fixincludes: maybe-all-libiberty
|
all-gnattools: maybe-all-target-libada
|
all-gnattools: maybe-all-target-libada
|
configure-mpfr: maybe-all-gmp
|
configure-mpfr: maybe-all-gmp
|
|
|
configure-stage1-mpfr: maybe-all-stage1-gmp
|
configure-stage1-mpfr: maybe-all-stage1-gmp
|
configure-stage2-mpfr: maybe-all-stage2-gmp
|
configure-stage2-mpfr: maybe-all-stage2-gmp
|
configure-stageb2g0-mpfr: maybe-all-stageb2g0-gmp
|
|
configure-stage3-mpfr: maybe-all-stage3-gmp
|
configure-stage3-mpfr: maybe-all-stage3-gmp
|
configure-stageb3g2-mpfr: maybe-all-stageb3g2-gmp
|
|
configure-stage4-mpfr: maybe-all-stage4-gmp
|
configure-stage4-mpfr: maybe-all-stage4-gmp
|
configure-stageprofile-mpfr: maybe-all-stageprofile-gmp
|
configure-stageprofile-mpfr: maybe-all-stageprofile-gmp
|
configure-stagefeedback-mpfr: maybe-all-stagefeedback-gmp
|
configure-stagefeedback-mpfr: maybe-all-stagefeedback-gmp
|
|
configure-mpc: maybe-all-mpfr
|
|
|
|
configure-stage1-mpc: maybe-all-stage1-mpfr
|
|
configure-stage2-mpc: maybe-all-stage2-mpfr
|
|
configure-stage3-mpc: maybe-all-stage3-mpfr
|
|
configure-stage4-mpc: maybe-all-stage4-mpfr
|
|
configure-stageprofile-mpc: maybe-all-stageprofile-mpfr
|
|
configure-stagefeedback-mpc: maybe-all-stagefeedback-mpfr
|
|
configure-ppl: maybe-all-gmp
|
|
|
|
configure-stage1-ppl: maybe-all-stage1-gmp
|
|
configure-stage2-ppl: maybe-all-stage2-gmp
|
|
configure-stage3-ppl: maybe-all-stage3-gmp
|
|
configure-stage4-ppl: maybe-all-stage4-gmp
|
|
configure-stageprofile-ppl: maybe-all-stageprofile-gmp
|
|
configure-stagefeedback-ppl: maybe-all-stagefeedback-gmp
|
|
configure-ppl: maybe-all-mpfr
|
|
|
|
configure-stage1-ppl: maybe-all-stage1-mpfr
|
|
configure-stage2-ppl: maybe-all-stage2-mpfr
|
|
configure-stage3-ppl: maybe-all-stage3-mpfr
|
|
configure-stage4-ppl: maybe-all-stage4-mpfr
|
|
configure-stageprofile-ppl: maybe-all-stageprofile-mpfr
|
|
configure-stagefeedback-ppl: maybe-all-stagefeedback-mpfr
|
|
configure-cloog: maybe-all-ppl
|
|
|
|
configure-stage1-cloog: maybe-all-stage1-ppl
|
|
configure-stage2-cloog: maybe-all-stage2-ppl
|
|
configure-stage3-cloog: maybe-all-stage3-ppl
|
|
configure-stage4-cloog: maybe-all-stage4-ppl
|
|
configure-stageprofile-cloog: maybe-all-stageprofile-ppl
|
|
configure-stagefeedback-cloog: maybe-all-stagefeedback-ppl
|
configure-gdb: maybe-all-intl
|
configure-gdb: maybe-all-intl
|
configure-gdb: maybe-configure-sim
|
configure-gdb: maybe-configure-sim
|
configure-gdb: maybe-all-bfd
|
configure-gdb: maybe-all-bfd
|
|
configure-gdb: maybe-all-libiconv
|
all-gdb: maybe-all-libiberty
|
all-gdb: maybe-all-libiberty
|
|
all-gdb: maybe-all-libiconv
|
all-gdb: maybe-all-opcodes
|
all-gdb: maybe-all-opcodes
|
all-gdb: maybe-all-readline
|
all-gdb: maybe-all-readline
|
all-gdb: maybe-all-build-bison
|
all-gdb: maybe-all-build-bison
|
all-gdb: maybe-all-build-byacc
|
all-gdb: maybe-all-build-byacc
|
all-gdb: maybe-all-sim
|
all-gdb: maybe-all-sim
|
Line 51951... |
Line 55481... |
all-libgui: maybe-all-itcl
|
all-libgui: maybe-all-itcl
|
configure-bfd: configure-libiberty
|
configure-bfd: configure-libiberty
|
|
|
configure-stage1-bfd: configure-stage1-libiberty
|
configure-stage1-bfd: configure-stage1-libiberty
|
configure-stage2-bfd: configure-stage2-libiberty
|
configure-stage2-bfd: configure-stage2-libiberty
|
configure-stageb2g0-bfd: configure-stageb2g0-libiberty
|
|
configure-stage3-bfd: configure-stage3-libiberty
|
configure-stage3-bfd: configure-stage3-libiberty
|
configure-stageb3g2-bfd: configure-stageb3g2-libiberty
|
|
configure-stage4-bfd: configure-stage4-libiberty
|
configure-stage4-bfd: configure-stage4-libiberty
|
configure-stageprofile-bfd: configure-stageprofile-libiberty
|
configure-stageprofile-bfd: configure-stageprofile-libiberty
|
configure-stagefeedback-bfd: configure-stagefeedback-libiberty
|
configure-stagefeedback-bfd: configure-stagefeedback-libiberty
|
configure-bfd: maybe-configure-intl
|
configure-bfd: maybe-configure-intl
|
|
|
configure-stage1-bfd: maybe-configure-stage1-intl
|
configure-stage1-bfd: maybe-configure-stage1-intl
|
configure-stage2-bfd: maybe-configure-stage2-intl
|
configure-stage2-bfd: maybe-configure-stage2-intl
|
configure-stageb2g0-bfd: maybe-configure-stageb2g0-intl
|
|
configure-stage3-bfd: maybe-configure-stage3-intl
|
configure-stage3-bfd: maybe-configure-stage3-intl
|
configure-stageb3g2-bfd: maybe-configure-stageb3g2-intl
|
|
configure-stage4-bfd: maybe-configure-stage4-intl
|
configure-stage4-bfd: maybe-configure-stage4-intl
|
configure-stageprofile-bfd: maybe-configure-stageprofile-intl
|
configure-stageprofile-bfd: maybe-configure-stageprofile-intl
|
configure-stagefeedback-bfd: maybe-configure-stagefeedback-intl
|
configure-stagefeedback-bfd: maybe-configure-stagefeedback-intl
|
all-bfd: maybe-all-libiberty
|
all-bfd: maybe-all-libiberty
|
|
|
all-stage1-bfd: maybe-all-stage1-libiberty
|
all-stage1-bfd: maybe-all-stage1-libiberty
|
all-stage2-bfd: maybe-all-stage2-libiberty
|
all-stage2-bfd: maybe-all-stage2-libiberty
|
all-stageb2g0-bfd: maybe-all-stageb2g0-libiberty
|
|
all-stage3-bfd: maybe-all-stage3-libiberty
|
all-stage3-bfd: maybe-all-stage3-libiberty
|
all-stageb3g2-bfd: maybe-all-stageb3g2-libiberty
|
|
all-stage4-bfd: maybe-all-stage4-libiberty
|
all-stage4-bfd: maybe-all-stage4-libiberty
|
all-stageprofile-bfd: maybe-all-stageprofile-libiberty
|
all-stageprofile-bfd: maybe-all-stageprofile-libiberty
|
all-stagefeedback-bfd: maybe-all-stagefeedback-libiberty
|
all-stagefeedback-bfd: maybe-all-stagefeedback-libiberty
|
all-bfd: maybe-all-intl
|
all-bfd: maybe-all-intl
|
|
|
all-stage1-bfd: maybe-all-stage1-intl
|
all-stage1-bfd: maybe-all-stage1-intl
|
all-stage2-bfd: maybe-all-stage2-intl
|
all-stage2-bfd: maybe-all-stage2-intl
|
all-stageb2g0-bfd: maybe-all-stageb2g0-intl
|
|
all-stage3-bfd: maybe-all-stage3-intl
|
all-stage3-bfd: maybe-all-stage3-intl
|
all-stageb3g2-bfd: maybe-all-stageb3g2-intl
|
|
all-stage4-bfd: maybe-all-stage4-intl
|
all-stage4-bfd: maybe-all-stage4-intl
|
all-stageprofile-bfd: maybe-all-stageprofile-intl
|
all-stageprofile-bfd: maybe-all-stageprofile-intl
|
all-stagefeedback-bfd: maybe-all-stagefeedback-intl
|
all-stagefeedback-bfd: maybe-all-stagefeedback-intl
|
|
configure-opcodes: configure-libiberty
|
|
|
|
configure-stage1-opcodes: configure-stage1-libiberty
|
|
configure-stage2-opcodes: configure-stage2-libiberty
|
|
configure-stage3-opcodes: configure-stage3-libiberty
|
|
configure-stage4-opcodes: configure-stage4-libiberty
|
|
configure-stageprofile-opcodes: configure-stageprofile-libiberty
|
|
configure-stagefeedback-opcodes: configure-stagefeedback-libiberty
|
|
all-opcodes: maybe-all-libiberty
|
|
|
|
all-stage1-opcodes: maybe-all-stage1-libiberty
|
|
all-stage2-opcodes: maybe-all-stage2-libiberty
|
|
all-stage3-opcodes: maybe-all-stage3-libiberty
|
|
all-stage4-opcodes: maybe-all-stage4-libiberty
|
|
all-stageprofile-opcodes: maybe-all-stageprofile-libiberty
|
|
all-stagefeedback-opcodes: maybe-all-stagefeedback-libiberty
|
configure-binutils: maybe-configure-intl
|
configure-binutils: maybe-configure-intl
|
|
|
configure-stage1-binutils: maybe-configure-stage1-intl
|
configure-stage1-binutils: maybe-configure-stage1-intl
|
configure-stage2-binutils: maybe-configure-stage2-intl
|
configure-stage2-binutils: maybe-configure-stage2-intl
|
configure-stageb2g0-binutils: maybe-configure-stageb2g0-intl
|
|
configure-stage3-binutils: maybe-configure-stage3-intl
|
configure-stage3-binutils: maybe-configure-stage3-intl
|
configure-stageb3g2-binutils: maybe-configure-stageb3g2-intl
|
|
configure-stage4-binutils: maybe-configure-stage4-intl
|
configure-stage4-binutils: maybe-configure-stage4-intl
|
configure-stageprofile-binutils: maybe-configure-stageprofile-intl
|
configure-stageprofile-binutils: maybe-configure-stageprofile-intl
|
configure-stagefeedback-binutils: maybe-configure-stagefeedback-intl
|
configure-stagefeedback-binutils: maybe-configure-stagefeedback-intl
|
all-binutils: maybe-all-libiberty
|
all-binutils: maybe-all-libiberty
|
|
|
all-stage1-binutils: maybe-all-stage1-libiberty
|
all-stage1-binutils: maybe-all-stage1-libiberty
|
all-stage2-binutils: maybe-all-stage2-libiberty
|
all-stage2-binutils: maybe-all-stage2-libiberty
|
all-stageb2g0-binutils: maybe-all-stageb2g0-libiberty
|
|
all-stage3-binutils: maybe-all-stage3-libiberty
|
all-stage3-binutils: maybe-all-stage3-libiberty
|
all-stageb3g2-binutils: maybe-all-stageb3g2-libiberty
|
|
all-stage4-binutils: maybe-all-stage4-libiberty
|
all-stage4-binutils: maybe-all-stage4-libiberty
|
all-stageprofile-binutils: maybe-all-stageprofile-libiberty
|
all-stageprofile-binutils: maybe-all-stageprofile-libiberty
|
all-stagefeedback-binutils: maybe-all-stagefeedback-libiberty
|
all-stagefeedback-binutils: maybe-all-stagefeedback-libiberty
|
all-binutils: maybe-all-opcodes
|
all-binutils: maybe-all-opcodes
|
|
|
all-stage1-binutils: maybe-all-stage1-opcodes
|
all-stage1-binutils: maybe-all-stage1-opcodes
|
all-stage2-binutils: maybe-all-stage2-opcodes
|
all-stage2-binutils: maybe-all-stage2-opcodes
|
all-stageb2g0-binutils: maybe-all-stageb2g0-opcodes
|
|
all-stage3-binutils: maybe-all-stage3-opcodes
|
all-stage3-binutils: maybe-all-stage3-opcodes
|
all-stageb3g2-binutils: maybe-all-stageb3g2-opcodes
|
|
all-stage4-binutils: maybe-all-stage4-opcodes
|
all-stage4-binutils: maybe-all-stage4-opcodes
|
all-stageprofile-binutils: maybe-all-stageprofile-opcodes
|
all-stageprofile-binutils: maybe-all-stageprofile-opcodes
|
all-stagefeedback-binutils: maybe-all-stagefeedback-opcodes
|
all-stagefeedback-binutils: maybe-all-stagefeedback-opcodes
|
all-binutils: maybe-all-bfd
|
all-binutils: maybe-all-bfd
|
|
|
all-stage1-binutils: maybe-all-stage1-bfd
|
all-stage1-binutils: maybe-all-stage1-bfd
|
all-stage2-binutils: maybe-all-stage2-bfd
|
all-stage2-binutils: maybe-all-stage2-bfd
|
all-stageb2g0-binutils: maybe-all-stageb2g0-bfd
|
|
all-stage3-binutils: maybe-all-stage3-bfd
|
all-stage3-binutils: maybe-all-stage3-bfd
|
all-stageb3g2-binutils: maybe-all-stageb3g2-bfd
|
|
all-stage4-binutils: maybe-all-stage4-bfd
|
all-stage4-binutils: maybe-all-stage4-bfd
|
all-stageprofile-binutils: maybe-all-stageprofile-bfd
|
all-stageprofile-binutils: maybe-all-stageprofile-bfd
|
all-stagefeedback-binutils: maybe-all-stagefeedback-bfd
|
all-stagefeedback-binutils: maybe-all-stagefeedback-bfd
|
all-binutils: maybe-all-build-flex
|
all-binutils: maybe-all-build-flex
|
|
|
all-stage1-binutils: maybe-all-build-flex
|
all-stage1-binutils: maybe-all-build-flex
|
all-stage2-binutils: maybe-all-build-flex
|
all-stage2-binutils: maybe-all-build-flex
|
all-stageb2g0-binutils: maybe-all-build-flex
|
|
all-stage3-binutils: maybe-all-build-flex
|
all-stage3-binutils: maybe-all-build-flex
|
all-stageb3g2-binutils: maybe-all-build-flex
|
|
all-stage4-binutils: maybe-all-build-flex
|
all-stage4-binutils: maybe-all-build-flex
|
all-stageprofile-binutils: maybe-all-build-flex
|
all-stageprofile-binutils: maybe-all-build-flex
|
all-stagefeedback-binutils: maybe-all-build-flex
|
all-stagefeedback-binutils: maybe-all-build-flex
|
all-binutils: maybe-all-build-bison
|
all-binutils: maybe-all-build-bison
|
|
|
all-stage1-binutils: maybe-all-build-bison
|
all-stage1-binutils: maybe-all-build-bison
|
all-stage2-binutils: maybe-all-build-bison
|
all-stage2-binutils: maybe-all-build-bison
|
all-stageb2g0-binutils: maybe-all-build-bison
|
|
all-stage3-binutils: maybe-all-build-bison
|
all-stage3-binutils: maybe-all-build-bison
|
all-stageb3g2-binutils: maybe-all-build-bison
|
|
all-stage4-binutils: maybe-all-build-bison
|
all-stage4-binutils: maybe-all-build-bison
|
all-stageprofile-binutils: maybe-all-build-bison
|
all-stageprofile-binutils: maybe-all-build-bison
|
all-stagefeedback-binutils: maybe-all-build-bison
|
all-stagefeedback-binutils: maybe-all-build-bison
|
all-binutils: maybe-all-build-byacc
|
all-binutils: maybe-all-build-byacc
|
|
|
all-stage1-binutils: maybe-all-build-byacc
|
all-stage1-binutils: maybe-all-build-byacc
|
all-stage2-binutils: maybe-all-build-byacc
|
all-stage2-binutils: maybe-all-build-byacc
|
all-stageb2g0-binutils: maybe-all-build-byacc
|
|
all-stage3-binutils: maybe-all-build-byacc
|
all-stage3-binutils: maybe-all-build-byacc
|
all-stageb3g2-binutils: maybe-all-build-byacc
|
|
all-stage4-binutils: maybe-all-build-byacc
|
all-stage4-binutils: maybe-all-build-byacc
|
all-stageprofile-binutils: maybe-all-build-byacc
|
all-stageprofile-binutils: maybe-all-build-byacc
|
all-stagefeedback-binutils: maybe-all-build-byacc
|
all-stagefeedback-binutils: maybe-all-build-byacc
|
all-binutils: maybe-all-intl
|
all-binutils: maybe-all-intl
|
|
|
all-stage1-binutils: maybe-all-stage1-intl
|
all-stage1-binutils: maybe-all-stage1-intl
|
all-stage2-binutils: maybe-all-stage2-intl
|
all-stage2-binutils: maybe-all-stage2-intl
|
all-stageb2g0-binutils: maybe-all-stageb2g0-intl
|
|
all-stage3-binutils: maybe-all-stage3-intl
|
all-stage3-binutils: maybe-all-stage3-intl
|
all-stageb3g2-binutils: maybe-all-stageb3g2-intl
|
|
all-stage4-binutils: maybe-all-stage4-intl
|
all-stage4-binutils: maybe-all-stage4-intl
|
all-stageprofile-binutils: maybe-all-stageprofile-intl
|
all-stageprofile-binutils: maybe-all-stageprofile-intl
|
all-stagefeedback-binutils: maybe-all-stagefeedback-intl
|
all-stagefeedback-binutils: maybe-all-stagefeedback-intl
|
install-binutils: maybe-install-opcodes
|
install-binutils: maybe-install-opcodes
|
install-opcodes: maybe-install-bfd
|
install-opcodes: maybe-install-bfd
|
configure-gas: maybe-configure-intl
|
configure-gas: maybe-configure-intl
|
|
|
configure-stage1-gas: maybe-configure-stage1-intl
|
configure-stage1-gas: maybe-configure-stage1-intl
|
configure-stage2-gas: maybe-configure-stage2-intl
|
configure-stage2-gas: maybe-configure-stage2-intl
|
configure-stageb2g0-gas: maybe-configure-stageb2g0-intl
|
|
configure-stage3-gas: maybe-configure-stage3-intl
|
configure-stage3-gas: maybe-configure-stage3-intl
|
configure-stageb3g2-gas: maybe-configure-stageb3g2-intl
|
|
configure-stage4-gas: maybe-configure-stage4-intl
|
configure-stage4-gas: maybe-configure-stage4-intl
|
configure-stageprofile-gas: maybe-configure-stageprofile-intl
|
configure-stageprofile-gas: maybe-configure-stageprofile-intl
|
configure-stagefeedback-gas: maybe-configure-stagefeedback-intl
|
configure-stagefeedback-gas: maybe-configure-stagefeedback-intl
|
all-gas: maybe-all-libiberty
|
all-gas: maybe-all-libiberty
|
|
|
all-stage1-gas: maybe-all-stage1-libiberty
|
all-stage1-gas: maybe-all-stage1-libiberty
|
all-stage2-gas: maybe-all-stage2-libiberty
|
all-stage2-gas: maybe-all-stage2-libiberty
|
all-stageb2g0-gas: maybe-all-stageb2g0-libiberty
|
|
all-stage3-gas: maybe-all-stage3-libiberty
|
all-stage3-gas: maybe-all-stage3-libiberty
|
all-stageb3g2-gas: maybe-all-stageb3g2-libiberty
|
|
all-stage4-gas: maybe-all-stage4-libiberty
|
all-stage4-gas: maybe-all-stage4-libiberty
|
all-stageprofile-gas: maybe-all-stageprofile-libiberty
|
all-stageprofile-gas: maybe-all-stageprofile-libiberty
|
all-stagefeedback-gas: maybe-all-stagefeedback-libiberty
|
all-stagefeedback-gas: maybe-all-stagefeedback-libiberty
|
all-gas: maybe-all-opcodes
|
all-gas: maybe-all-opcodes
|
|
|
all-stage1-gas: maybe-all-stage1-opcodes
|
all-stage1-gas: maybe-all-stage1-opcodes
|
all-stage2-gas: maybe-all-stage2-opcodes
|
all-stage2-gas: maybe-all-stage2-opcodes
|
all-stageb2g0-gas: maybe-all-stageb2g0-opcodes
|
|
all-stage3-gas: maybe-all-stage3-opcodes
|
all-stage3-gas: maybe-all-stage3-opcodes
|
all-stageb3g2-gas: maybe-all-stageb3g2-opcodes
|
|
all-stage4-gas: maybe-all-stage4-opcodes
|
all-stage4-gas: maybe-all-stage4-opcodes
|
all-stageprofile-gas: maybe-all-stageprofile-opcodes
|
all-stageprofile-gas: maybe-all-stageprofile-opcodes
|
all-stagefeedback-gas: maybe-all-stagefeedback-opcodes
|
all-stagefeedback-gas: maybe-all-stagefeedback-opcodes
|
all-gas: maybe-all-bfd
|
all-gas: maybe-all-bfd
|
|
|
all-stage1-gas: maybe-all-stage1-bfd
|
all-stage1-gas: maybe-all-stage1-bfd
|
all-stage2-gas: maybe-all-stage2-bfd
|
all-stage2-gas: maybe-all-stage2-bfd
|
all-stageb2g0-gas: maybe-all-stageb2g0-bfd
|
|
all-stage3-gas: maybe-all-stage3-bfd
|
all-stage3-gas: maybe-all-stage3-bfd
|
all-stageb3g2-gas: maybe-all-stageb3g2-bfd
|
|
all-stage4-gas: maybe-all-stage4-bfd
|
all-stage4-gas: maybe-all-stage4-bfd
|
all-stageprofile-gas: maybe-all-stageprofile-bfd
|
all-stageprofile-gas: maybe-all-stageprofile-bfd
|
all-stagefeedback-gas: maybe-all-stagefeedback-bfd
|
all-stagefeedback-gas: maybe-all-stagefeedback-bfd
|
all-gas: maybe-all-intl
|
all-gas: maybe-all-intl
|
|
|
all-stage1-gas: maybe-all-stage1-intl
|
all-stage1-gas: maybe-all-stage1-intl
|
all-stage2-gas: maybe-all-stage2-intl
|
all-stage2-gas: maybe-all-stage2-intl
|
all-stageb2g0-gas: maybe-all-stageb2g0-intl
|
|
all-stage3-gas: maybe-all-stage3-intl
|
all-stage3-gas: maybe-all-stage3-intl
|
all-stageb3g2-gas: maybe-all-stageb3g2-intl
|
|
all-stage4-gas: maybe-all-stage4-intl
|
all-stage4-gas: maybe-all-stage4-intl
|
all-stageprofile-gas: maybe-all-stageprofile-intl
|
all-stageprofile-gas: maybe-all-stageprofile-intl
|
all-stagefeedback-gas: maybe-all-stagefeedback-intl
|
all-stagefeedback-gas: maybe-all-stagefeedback-intl
|
configure-gprof: maybe-configure-intl
|
configure-gprof: maybe-configure-intl
|
all-gprof: maybe-all-libiberty
|
all-gprof: maybe-all-libiberty
|
Line 52128... |
Line 55640... |
all-gprof: maybe-all-intl
|
all-gprof: maybe-all-intl
|
configure-ld: maybe-configure-intl
|
configure-ld: maybe-configure-intl
|
|
|
configure-stage1-ld: maybe-configure-stage1-intl
|
configure-stage1-ld: maybe-configure-stage1-intl
|
configure-stage2-ld: maybe-configure-stage2-intl
|
configure-stage2-ld: maybe-configure-stage2-intl
|
configure-stageb2g0-ld: maybe-configure-stageb2g0-intl
|
|
configure-stage3-ld: maybe-configure-stage3-intl
|
configure-stage3-ld: maybe-configure-stage3-intl
|
configure-stageb3g2-ld: maybe-configure-stageb3g2-intl
|
|
configure-stage4-ld: maybe-configure-stage4-intl
|
configure-stage4-ld: maybe-configure-stage4-intl
|
configure-stageprofile-ld: maybe-configure-stageprofile-intl
|
configure-stageprofile-ld: maybe-configure-stageprofile-intl
|
configure-stagefeedback-ld: maybe-configure-stagefeedback-intl
|
configure-stagefeedback-ld: maybe-configure-stagefeedback-intl
|
all-ld: maybe-all-libiberty
|
all-ld: maybe-all-libiberty
|
|
|
all-stage1-ld: maybe-all-stage1-libiberty
|
all-stage1-ld: maybe-all-stage1-libiberty
|
all-stage2-ld: maybe-all-stage2-libiberty
|
all-stage2-ld: maybe-all-stage2-libiberty
|
all-stageb2g0-ld: maybe-all-stageb2g0-libiberty
|
|
all-stage3-ld: maybe-all-stage3-libiberty
|
all-stage3-ld: maybe-all-stage3-libiberty
|
all-stageb3g2-ld: maybe-all-stageb3g2-libiberty
|
|
all-stage4-ld: maybe-all-stage4-libiberty
|
all-stage4-ld: maybe-all-stage4-libiberty
|
all-stageprofile-ld: maybe-all-stageprofile-libiberty
|
all-stageprofile-ld: maybe-all-stageprofile-libiberty
|
all-stagefeedback-ld: maybe-all-stagefeedback-libiberty
|
all-stagefeedback-ld: maybe-all-stagefeedback-libiberty
|
all-ld: maybe-all-bfd
|
all-ld: maybe-all-bfd
|
|
|
all-stage1-ld: maybe-all-stage1-bfd
|
all-stage1-ld: maybe-all-stage1-bfd
|
all-stage2-ld: maybe-all-stage2-bfd
|
all-stage2-ld: maybe-all-stage2-bfd
|
all-stageb2g0-ld: maybe-all-stageb2g0-bfd
|
|
all-stage3-ld: maybe-all-stage3-bfd
|
all-stage3-ld: maybe-all-stage3-bfd
|
all-stageb3g2-ld: maybe-all-stageb3g2-bfd
|
|
all-stage4-ld: maybe-all-stage4-bfd
|
all-stage4-ld: maybe-all-stage4-bfd
|
all-stageprofile-ld: maybe-all-stageprofile-bfd
|
all-stageprofile-ld: maybe-all-stageprofile-bfd
|
all-stagefeedback-ld: maybe-all-stagefeedback-bfd
|
all-stagefeedback-ld: maybe-all-stagefeedback-bfd
|
all-ld: maybe-all-opcodes
|
all-ld: maybe-all-opcodes
|
|
|
all-stage1-ld: maybe-all-stage1-opcodes
|
all-stage1-ld: maybe-all-stage1-opcodes
|
all-stage2-ld: maybe-all-stage2-opcodes
|
all-stage2-ld: maybe-all-stage2-opcodes
|
all-stageb2g0-ld: maybe-all-stageb2g0-opcodes
|
|
all-stage3-ld: maybe-all-stage3-opcodes
|
all-stage3-ld: maybe-all-stage3-opcodes
|
all-stageb3g2-ld: maybe-all-stageb3g2-opcodes
|
|
all-stage4-ld: maybe-all-stage4-opcodes
|
all-stage4-ld: maybe-all-stage4-opcodes
|
all-stageprofile-ld: maybe-all-stageprofile-opcodes
|
all-stageprofile-ld: maybe-all-stageprofile-opcodes
|
all-stagefeedback-ld: maybe-all-stagefeedback-opcodes
|
all-stagefeedback-ld: maybe-all-stagefeedback-opcodes
|
all-ld: maybe-all-build-bison
|
all-ld: maybe-all-build-bison
|
|
|
all-stage1-ld: maybe-all-build-bison
|
all-stage1-ld: maybe-all-build-bison
|
all-stage2-ld: maybe-all-build-bison
|
all-stage2-ld: maybe-all-build-bison
|
all-stageb2g0-ld: maybe-all-build-bison
|
|
all-stage3-ld: maybe-all-build-bison
|
all-stage3-ld: maybe-all-build-bison
|
all-stageb3g2-ld: maybe-all-build-bison
|
|
all-stage4-ld: maybe-all-build-bison
|
all-stage4-ld: maybe-all-build-bison
|
all-stageprofile-ld: maybe-all-build-bison
|
all-stageprofile-ld: maybe-all-build-bison
|
all-stagefeedback-ld: maybe-all-build-bison
|
all-stagefeedback-ld: maybe-all-build-bison
|
all-ld: maybe-all-build-byacc
|
all-ld: maybe-all-build-byacc
|
|
|
all-stage1-ld: maybe-all-build-byacc
|
all-stage1-ld: maybe-all-build-byacc
|
all-stage2-ld: maybe-all-build-byacc
|
all-stage2-ld: maybe-all-build-byacc
|
all-stageb2g0-ld: maybe-all-build-byacc
|
|
all-stage3-ld: maybe-all-build-byacc
|
all-stage3-ld: maybe-all-build-byacc
|
all-stageb3g2-ld: maybe-all-build-byacc
|
|
all-stage4-ld: maybe-all-build-byacc
|
all-stage4-ld: maybe-all-build-byacc
|
all-stageprofile-ld: maybe-all-build-byacc
|
all-stageprofile-ld: maybe-all-build-byacc
|
all-stagefeedback-ld: maybe-all-build-byacc
|
all-stagefeedback-ld: maybe-all-build-byacc
|
all-ld: maybe-all-build-flex
|
all-ld: maybe-all-build-flex
|
|
|
all-stage1-ld: maybe-all-build-flex
|
all-stage1-ld: maybe-all-build-flex
|
all-stage2-ld: maybe-all-build-flex
|
all-stage2-ld: maybe-all-build-flex
|
all-stageb2g0-ld: maybe-all-build-flex
|
|
all-stage3-ld: maybe-all-build-flex
|
all-stage3-ld: maybe-all-build-flex
|
all-stageb3g2-ld: maybe-all-build-flex
|
|
all-stage4-ld: maybe-all-build-flex
|
all-stage4-ld: maybe-all-build-flex
|
all-stageprofile-ld: maybe-all-build-flex
|
all-stageprofile-ld: maybe-all-build-flex
|
all-stagefeedback-ld: maybe-all-build-flex
|
all-stagefeedback-ld: maybe-all-build-flex
|
all-ld: maybe-all-intl
|
all-ld: maybe-all-intl
|
|
|
all-stage1-ld: maybe-all-stage1-intl
|
all-stage1-ld: maybe-all-stage1-intl
|
all-stage2-ld: maybe-all-stage2-intl
|
all-stage2-ld: maybe-all-stage2-intl
|
all-stageb2g0-ld: maybe-all-stageb2g0-intl
|
|
all-stage3-ld: maybe-all-stage3-intl
|
all-stage3-ld: maybe-all-stage3-intl
|
all-stageb3g2-ld: maybe-all-stageb3g2-intl
|
|
all-stage4-ld: maybe-all-stage4-intl
|
all-stage4-ld: maybe-all-stage4-intl
|
all-stageprofile-ld: maybe-all-stageprofile-intl
|
all-stageprofile-ld: maybe-all-stageprofile-intl
|
all-stagefeedback-ld: maybe-all-stagefeedback-intl
|
all-stagefeedback-ld: maybe-all-stagefeedback-intl
|
|
configure-gold: maybe-configure-intl
|
|
|
|
configure-stage1-gold: maybe-configure-stage1-intl
|
|
configure-stage2-gold: maybe-configure-stage2-intl
|
|
configure-stage3-gold: maybe-configure-stage3-intl
|
|
configure-stage4-gold: maybe-configure-stage4-intl
|
|
configure-stageprofile-gold: maybe-configure-stageprofile-intl
|
|
configure-stagefeedback-gold: maybe-configure-stagefeedback-intl
|
|
all-gold: maybe-all-libiberty
|
|
|
|
all-stage1-gold: maybe-all-stage1-libiberty
|
|
all-stage2-gold: maybe-all-stage2-libiberty
|
|
all-stage3-gold: maybe-all-stage3-libiberty
|
|
all-stage4-gold: maybe-all-stage4-libiberty
|
|
all-stageprofile-gold: maybe-all-stageprofile-libiberty
|
|
all-stagefeedback-gold: maybe-all-stagefeedback-libiberty
|
|
all-gold: maybe-all-intl
|
|
|
|
all-stage1-gold: maybe-all-stage1-intl
|
|
all-stage2-gold: maybe-all-stage2-intl
|
|
all-stage3-gold: maybe-all-stage3-intl
|
|
all-stage4-gold: maybe-all-stage4-intl
|
|
all-stageprofile-gold: maybe-all-stageprofile-intl
|
|
all-stagefeedback-gold: maybe-all-stagefeedback-intl
|
|
all-gold: maybe-all-bfd
|
|
|
|
all-stage1-gold: maybe-all-stage1-bfd
|
|
all-stage2-gold: maybe-all-stage2-bfd
|
|
all-stage3-gold: maybe-all-stage3-bfd
|
|
all-stage4-gold: maybe-all-stage4-bfd
|
|
all-stageprofile-gold: maybe-all-stageprofile-bfd
|
|
all-stagefeedback-gold: maybe-all-stagefeedback-bfd
|
|
all-gold: maybe-all-build-bison
|
|
|
|
all-stage1-gold: maybe-all-build-bison
|
|
all-stage2-gold: maybe-all-build-bison
|
|
all-stage3-gold: maybe-all-build-bison
|
|
all-stage4-gold: maybe-all-build-bison
|
|
all-stageprofile-gold: maybe-all-build-bison
|
|
all-stagefeedback-gold: maybe-all-build-bison
|
|
all-gold: maybe-all-build-byacc
|
|
|
|
all-stage1-gold: maybe-all-build-byacc
|
|
all-stage2-gold: maybe-all-build-byacc
|
|
all-stage3-gold: maybe-all-build-byacc
|
|
all-stage4-gold: maybe-all-build-byacc
|
|
all-stageprofile-gold: maybe-all-build-byacc
|
|
all-stagefeedback-gold: maybe-all-build-byacc
|
|
check-gold: maybe-all-binutils
|
|
|
|
check-stage1-gold: maybe-all-stage1-binutils
|
|
check-stage2-gold: maybe-all-stage2-binutils
|
|
check-stage3-gold: maybe-all-stage3-binutils
|
|
check-stage4-gold: maybe-all-stage4-binutils
|
|
check-stageprofile-gold: maybe-all-stageprofile-binutils
|
|
check-stagefeedback-gold: maybe-all-stagefeedback-binutils
|
|
check-gold: maybe-all-gas
|
|
|
|
check-stage1-gold: maybe-all-stage1-gas
|
|
check-stage2-gold: maybe-all-stage2-gas
|
|
check-stage3-gold: maybe-all-stage3-gas
|
|
check-stage4-gold: maybe-all-stage4-gas
|
|
check-stageprofile-gold: maybe-all-stageprofile-gas
|
|
check-stagefeedback-gold: maybe-all-stagefeedback-gas
|
configure-opcodes: maybe-configure-intl
|
configure-opcodes: maybe-configure-intl
|
|
|
configure-stage1-opcodes: maybe-configure-stage1-intl
|
configure-stage1-opcodes: maybe-configure-stage1-intl
|
configure-stage2-opcodes: maybe-configure-stage2-intl
|
configure-stage2-opcodes: maybe-configure-stage2-intl
|
configure-stageb2g0-opcodes: maybe-configure-stageb2g0-intl
|
|
configure-stage3-opcodes: maybe-configure-stage3-intl
|
configure-stage3-opcodes: maybe-configure-stage3-intl
|
configure-stageb3g2-opcodes: maybe-configure-stageb3g2-intl
|
|
configure-stage4-opcodes: maybe-configure-stage4-intl
|
configure-stage4-opcodes: maybe-configure-stage4-intl
|
configure-stageprofile-opcodes: maybe-configure-stageprofile-intl
|
configure-stageprofile-opcodes: maybe-configure-stageprofile-intl
|
configure-stagefeedback-opcodes: maybe-configure-stagefeedback-intl
|
configure-stagefeedback-opcodes: maybe-configure-stagefeedback-intl
|
all-opcodes: maybe-all-bfd
|
all-opcodes: maybe-all-bfd
|
|
|
all-stage1-opcodes: maybe-all-stage1-bfd
|
all-stage1-opcodes: maybe-all-stage1-bfd
|
all-stage2-opcodes: maybe-all-stage2-bfd
|
all-stage2-opcodes: maybe-all-stage2-bfd
|
all-stageb2g0-opcodes: maybe-all-stageb2g0-bfd
|
|
all-stage3-opcodes: maybe-all-stage3-bfd
|
all-stage3-opcodes: maybe-all-stage3-bfd
|
all-stageb3g2-opcodes: maybe-all-stageb3g2-bfd
|
|
all-stage4-opcodes: maybe-all-stage4-bfd
|
all-stage4-opcodes: maybe-all-stage4-bfd
|
all-stageprofile-opcodes: maybe-all-stageprofile-bfd
|
all-stageprofile-opcodes: maybe-all-stageprofile-bfd
|
all-stagefeedback-opcodes: maybe-all-stagefeedback-bfd
|
all-stagefeedback-opcodes: maybe-all-stagefeedback-bfd
|
all-opcodes: maybe-all-libiberty
|
all-opcodes: maybe-all-libiberty
|
|
|
all-stage1-opcodes: maybe-all-stage1-libiberty
|
all-stage1-opcodes: maybe-all-stage1-libiberty
|
all-stage2-opcodes: maybe-all-stage2-libiberty
|
all-stage2-opcodes: maybe-all-stage2-libiberty
|
all-stageb2g0-opcodes: maybe-all-stageb2g0-libiberty
|
|
all-stage3-opcodes: maybe-all-stage3-libiberty
|
all-stage3-opcodes: maybe-all-stage3-libiberty
|
all-stageb3g2-opcodes: maybe-all-stageb3g2-libiberty
|
|
all-stage4-opcodes: maybe-all-stage4-libiberty
|
all-stage4-opcodes: maybe-all-stage4-libiberty
|
all-stageprofile-opcodes: maybe-all-stageprofile-libiberty
|
all-stageprofile-opcodes: maybe-all-stageprofile-libiberty
|
all-stagefeedback-opcodes: maybe-all-stagefeedback-libiberty
|
all-stagefeedback-opcodes: maybe-all-stagefeedback-libiberty
|
all-opcodes: maybe-all-intl
|
all-opcodes: maybe-all-intl
|
|
|
all-stage1-opcodes: maybe-all-stage1-intl
|
all-stage1-opcodes: maybe-all-stage1-intl
|
all-stage2-opcodes: maybe-all-stage2-intl
|
all-stage2-opcodes: maybe-all-stage2-intl
|
all-stageb2g0-opcodes: maybe-all-stageb2g0-intl
|
|
all-stage3-opcodes: maybe-all-stage3-intl
|
all-stage3-opcodes: maybe-all-stage3-intl
|
all-stageb3g2-opcodes: maybe-all-stageb3g2-intl
|
|
all-stage4-opcodes: maybe-all-stage4-intl
|
all-stage4-opcodes: maybe-all-stage4-intl
|
all-stageprofile-opcodes: maybe-all-stageprofile-intl
|
all-stageprofile-opcodes: maybe-all-stageprofile-intl
|
all-stagefeedback-opcodes: maybe-all-stagefeedback-intl
|
all-stagefeedback-opcodes: maybe-all-stagefeedback-intl
|
all-dejagnu: maybe-all-tcl
|
all-dejagnu: maybe-all-tcl
|
all-dejagnu: maybe-all-expect
|
all-dejagnu: maybe-all-expect
|
Line 52309... |
Line 55861... |
all-sed: maybe-all-build-texinfo
|
all-sed: maybe-all-build-texinfo
|
all-send-pr: maybe-all-prms
|
all-send-pr: maybe-all-prms
|
all-tar: maybe-all-build-texinfo
|
all-tar: maybe-all-build-texinfo
|
all-uudecode: maybe-all-build-texinfo
|
all-uudecode: maybe-all-build-texinfo
|
configure-target-boehm-gc: maybe-configure-target-qthreads
|
configure-target-boehm-gc: maybe-configure-target-qthreads
|
|
configure-target-boehm-gc: maybe-all-target-libstdc++-v3
|
configure-target-fastjar: maybe-configure-target-zlib
|
configure-target-fastjar: maybe-configure-target-zlib
|
all-target-fastjar: maybe-all-target-zlib
|
all-target-fastjar: maybe-all-target-zlib
|
all-target-fastjar: maybe-all-target-libiberty
|
all-target-fastjar: maybe-all-target-libiberty
|
configure-target-libjava: maybe-configure-target-zlib
|
configure-target-libjava: maybe-configure-target-zlib
|
configure-target-libjava: maybe-configure-target-boehm-gc
|
configure-target-libjava: maybe-configure-target-boehm-gc
|
Line 52329... |
Line 55882... |
all-target-libstdc++-v3: maybe-all-target-libiberty
|
all-target-libstdc++-v3: maybe-all-target-libiberty
|
configure-target-libstdc++-v3: maybe-configure-target-libgomp
|
configure-target-libstdc++-v3: maybe-configure-target-libgomp
|
all-target-libgloss: maybe-all-target-newlib
|
all-target-libgloss: maybe-all-target-newlib
|
all-target-winsup: maybe-all-target-libiberty
|
all-target-winsup: maybe-all-target-libiberty
|
all-target-winsup: maybe-all-target-libtermcap
|
all-target-winsup: maybe-all-target-libtermcap
|
|
configure-target-libiberty: maybe-all-binutils
|
|
configure-target-libiberty: maybe-all-ld
|
|
configure-target-newlib: maybe-all-binutils
|
|
configure-target-newlib: maybe-all-ld
|
|
|
|
|
# Dependencies for target modules on other target modules are
|
# Dependencies for target modules on other target modules are
|
# described by lang_env_dependencies; the defaults apply to anything
|
# described by lang_env_dependencies; the defaults apply to anything
|
# not mentioned there.
|
# not mentioned there.
|
|
|
|
|
@if gcc-bootstrap
|
@if gcc-bootstrap
|
|
configure-stage1-target-libstdc++-v3: maybe-all-stage1-target-libgcc
|
|
configure-stage2-target-libstdc++-v3: maybe-all-stage2-target-libgcc
|
|
configure-stage3-target-libstdc++-v3: maybe-all-stage3-target-libgcc
|
|
configure-stage4-target-libstdc++-v3: maybe-all-stage4-target-libgcc
|
|
configure-stageprofile-target-libstdc++-v3: maybe-all-stageprofile-target-libgcc
|
|
configure-stagefeedback-target-libstdc++-v3: maybe-all-stagefeedback-target-libgcc
|
@endif gcc-bootstrap
|
@endif gcc-bootstrap
|
|
|
@if gcc-no-bootstrap
|
@if gcc-no-bootstrap
|
configure-target-libstdc++-v3: maybe-all-target-libgcc
|
configure-target-libstdc++-v3: maybe-all-target-libgcc
|
configure-target-libmudflap: maybe-all-target-libgcc
|
configure-target-libmudflap: maybe-all-target-libgcc
|
Line 52434... |
Line 55997... |
config.status: configure
|
config.status: configure
|
CONFIG_SHELL="$(SHELL)" $(SHELL) ./config.status --recheck
|
CONFIG_SHELL="$(SHELL)" $(SHELL) ./config.status --recheck
|
|
|
# Rebuilding configure.
|
# Rebuilding configure.
|
AUTOCONF = autoconf
|
AUTOCONF = autoconf
|
$(srcdir)/configure: @MAINT@ $(srcdir)/configure.ac $(srcdir)/config/acx.m4
|
$(srcdir)/configure: @MAINT@ $(srcdir)/configure.ac $(srcdir)/config/acx.m4 \
|
|
$(srcdir)/config/override.m4 $(srcdir)/config/proginstall.m4
|
cd $(srcdir) && $(AUTOCONF)
|
cd $(srcdir) && $(AUTOCONF)
|
|
|
# ------------------------------
|
# ------------------------------
|
# Special directives to GNU Make
|
# Special directives to GNU Make
|
# ------------------------------
|
# ------------------------------
|