| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 | # 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_GCC_SSP),y)CONFOPTS+=		--enable-libsspelseCONFOPTS+=		--disable-libsspendififeq ($(ADK_TARGET_SYSTEM_RASPBERRY_PI),y)CONFOPTS+=          	--with-arch=armv6endififneq ($(strip $(ADK_LINUX_64)$(ADK_TARGET_KERNEL64)),)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-plugins \		${CONFOPTS} \	);	touch $@$(WRKBUILD)/.compiled: $(WRKBUILD)/.configured	$(MAKE) ${BINUTILS_MAKEOPTS} -C $(WRKBUILD) all	touch $@$(WRKBUILD)/.installed: $(WRKBUILD)/.compiled	$(MAKE) -C $(WRKBUILD) install	# needed on hosts without readelf, but strange things happen on Cygwin.ifeq (${OStype},Darwin)	$(CP) $(WRKBUILD)/binutils/readelf $(TOOLCHAIN_DIR)/usr/binendif	touch $@include ${TOPDIR}/mk/toolchain.mk
 |