| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | # 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 ../rules.mkinclude Makefile.incinclude ${TOPDIR}/mk/buildhlp.mkifeq ($(ADK_SSP),y)CONFOPTS+=		--enable-libsspelseCONFOPTS+=		--disable-libsspendififeq ($(ADK_LINUX_64),y)CONFOPTS+=		--enable-64-bit-bfdendif$(WRKBUILD)/.headers: $(WRKBUILD)/.configure_done: 	(cd $(WRKBUILD); \		$(WRKBUILD)/configure \		--prefix=$(STAGING_TOOLS) \		--build=$(GNU_HOST_NAME) \		--host=$(GNU_HOST_NAME) \		--target=$(REAL_GNU_TARGET_NAME) \		--disable-nls \		--with-sysroot=$(TOOLCHAIN_SYSROOT) \		--with-sysroot=$(STAGING_DIR) \		--disable-multilib \		--disable-dependency-tracking \		--disable-libtool-lock \		--disable-werror \		${CONFOPTS} \	);	touch $@$(WRKBUILD)/.compiled: $(WRKBUILD)/.configure_done	$(MAKE) -C $(WRKBUILD) all	touch $@$(WRKBUILD)/.installed: $(WRKBUILD)/.compiled	$(MAKE) -C $(WRKBUILD) install	touch $@include ${TOPDIR}/mk/toolchain.mk
 |