| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 | # This file is part of the OpenADK project. OpenADK is copyrighted# material, please see the LICENCE file in the top-level directory.include $(TOPDIR)/rules.mkinclude Makefile.incinclude ../rules.mkinclude ${TOPDIR}/mk/buildhlp.mkifeq ($(ADK_TOOLCHAIN_WITH_SSP),y)CONFOPTS+=		--enable-libsspelseCONFOPTS+=		--disable-libsspendififeq ($(ADK_TOOLCHAIN_WITH_LTO),y)CONFOPTS+=		--enable-ltoelseCONFOPTS+=		--disable-ltoendififeq ($(ADK_TOOLCHAIN_WITH_GOLD),y)CONFOPTS+=		--enable-goldelseCONFOPTS+=		--disable-goldendififneq ($(ADK_LINUX_64)$(ADK_TARGET_KERNEL_64),)CONFOPTS+=		--enable-64-bit-bfdendififeq ($(ADK_LINUX_SH)$(ADK_LINUX_X86_64),)CONFOPTS+=		--disable-multilibelseCONFOPTS+=		--enable-multilibendififeq (${ADK_MAKE_PARALLEL},y)BINUTILS_MAKEOPTS+=	-j${ADK_MAKE_JOBS}endif$(WRKBUILD)/.headers:$(WRKBUILD)/.configured:	(cd $(WRKBUILD); \		$(WRKBUILD)/configure \		--prefix=$(TOOLCHAIN_DIR)/usr \		--target=$(GNU_TARGET_NAME) \		--with-sysroot=$(STAGING_TARGET_DIR) \		--disable-dependency-tracking \		--disable-libtool-lock \		--disable-nls \		--disable-werror \		--disable-install-libiberty \		${CONFOPTS} \	);	touch $@$(WRKBUILD)/.compiled: $(WRKBUILD)/.configured	$(MAKE) ${BINUTILS_MAKEOPTS} -C $(WRKBUILD) all	touch $@$(WRKBUILD)/.installed: $(WRKBUILD)/.compiled	$(MAKE) -C $(WRKBUILD) install	touch $@include ${TOPDIR}/mk/toolchain.mk
 |