| 12345678910111213141516171819202122232425262728293031 | # 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_MAKE_PARALLEL},y)MPFR_MAKEOPTS+=		-j${ADK_MAKE_JOBS}endif$(WRKBUILD)/.headers:$(WRKBUILD)/.configured:	(cd $(WRKBUILD); \		$(WRKBUILD)/configure \		--prefix=$(STAGING_HOST_DIR)/usr \		--disable-shared \		--enable-static \	);	touch $@$(WRKBUILD)/.compiled: $(WRKBUILD)/.configured	$(MAKE) ${MPFR_MAKEOPTS} -C $(WRKBUILD) all	touch $@$(WRKBUILD)/.installed: $(WRKBUILD)/.compiled	$(MAKE) -C $(WRKBUILD) install	touch $@include ${TOPDIR}/mk/toolchain.mk
 |