| 123456789101112131415161718192021222324252627282930 | # 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.mk$(WRKBUILD)/.headers: $(WRKBUILD)/.configured: 	(cd $(WRKBUILD); \		$(WRKBUILD)/configure \		--prefix=$(STAGING_TOOLS) \		--build=$(GNU_HOST_NAME) \		--host=$(GNU_HOST_NAME) \		--disable-shared \		--enable-static \		--disable-nls \	);	touch $@$(WRKBUILD)/.compiled: $(WRKBUILD)/.configured	$(MAKE) -C $(WRKBUILD) all	touch $@$(WRKBUILD)/.installed: $(WRKBUILD)/.compiled	$(MAKE) -C $(WRKBUILD) install	touch $@include ${TOPDIR}/mk/toolchain.mk
 |