diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-07-28 13:44:04 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-07-28 13:44:04 +0000 |
commit | b13da650d757c7af17b04a9e3cb260335c037c02 (patch) | |
tree | 95aff44b2d0c0621aea477f628c8e87bd9ccb6e0 /tools | |
parent | 1b88b67b0950c219e9059b45635aa60c889beef3 (diff) | |
download | upstream-b13da650d757c7af17b04a9e3cb260335c037c02.tar.gz upstream-b13da650d757c7af17b04a9e3cb260335c037c02.tar.bz2 upstream-b13da650d757c7af17b04a9e3cb260335c037c02.zip |
use $(curdir) again
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8208 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/tools/Makefile b/tools/Makefile index ed2eae89d9..ea4ce7081a 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -7,25 +7,29 @@ # Main makefile for the host tools # -curdir:=tools +file:=${lastword ${MAKEFILE_LIST}} +curdir:=$(patsubst %/Makefile,%,${file}) # 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 +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 +$(curdir)//compile = $(1)/prepare +$(curdir)//install = $(1)/compile -$(eval $(call stampfile,tools,tools)) -$(eval $(call subdir,tools)) +$(eval $(call stampfile,$(curdir),tools)) +$(eval $(call subdir,$(curdir))) |