| 1234567891011121314151617181920212223242526272829303132 | # This file is part of the OpenADK project. OpenADK is copyrighted# material, please see the LICENCE file in the top-level directory.include $(ADK_TOPDIR)/rules.mkinclude Makefile.incinclude ../rules.mkinclude ${ADK_TOPDIR}/mk/buildhlp.mkifeq (${ADK_MAKE_PARALLEL},y)LIBELF_MAKEOPTS+=		-j${ADK_MAKE_JOBS}endif$(WRKBUILD)/.configured:	(cd $(WRKBUILD); \		$(WRKBUILD)/configure \		--prefix=/usr \		--disable-nls \		--disable-compat \		--disable-shared \		--enable-static \	);	touch $@$(WRKBUILD)/.compiled: $(WRKBUILD)/.configured	$(MAKE) ${LIBELF_MAKEOPTS} -C $(WRKBUILD) all	touch $@$(WRKBUILD)/.installed: $(WRKBUILD)/.compiled	$(MAKE) instroot=$(STAGING_HOST_DIR) -C $(WRKBUILD) install	touch $@include ${ADK_TOPDIR}/mk/toolchain.mk
 |