X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/23660965c9671a573d958374ce1ef0b7c5b317b8..42b664a30a7481f05ecdd909baa4f0032e5e8e3d:/tools/Makefile diff --git a/tools/Makefile b/tools/Makefile index ed2eae89d..492c02709 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -6,26 +6,28 @@ # # Main makefile for the host tools # - curdir:=tools # subdirectories to descend into -tools/builddirs := sed sstrip ipkg-utils ext2fs squashfs mtd-utils lzma mkimage firmware-utils patch-cmdline $(if $(CONFIG_CCACHE),ccache) +$(curdir)/builddirs := sed sstrip ipkg-utils ext2fs squashfs mtd-utils lzma mkimage firmware-utils patch-cmdline $(if $(CONFIG_CCACHE),ccache) # builddir dependencies -tools/squashfs/compile := tools/lzma/install +$(curdir)/squashfs/compile := $(curdir)/lzma/install # preparatory work +define copy_include $(STAGING_DIR)/include-host/.done: - @mkdir -p $$(dirname $@) - @cp tools/include/*.h $$(dirname $@)/ - @touch $@ + @mkdir -p $$$$(dirname $$@) + @cp $(1)/include/*.h $$$$(dirname $$@)/ + @touch $$@ +$(curdir)//prepare = $(STAGING_DIR)/include-host/.done +$(curdir)//compile = $(STAGING_DIR)/include-host/.done +endef +$(eval $(call copy_include,$(curdir))) # prerequisites for the individual targets -tools/ := .config -tools//prepare = $(STAGING_DIR)/include-host/.done -tools//compile = $(1)/prepare -tools//install = $(1)/compile +$(curdir)/ := .config prereq +$(curdir)//install = $(1)/compile -$(eval $(call stampfile,tools,tools)) -$(eval $(call subdir,tools)) +$(eval $(call stampfile,$(curdir),tools,install)) +$(eval $(call subdir,$(curdir)))