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 | d6a024240496434ae24ceb658c8fcc5763eb683d (patch) | |
tree | 8b7aea1f9ba7da5ee9c0d58b3227937a8c4eac3d /toolchain | |
parent | e143bed1f19b55c5eac38d78a5c98f478fca88fc (diff) | |
download | upstream-d6a024240496434ae24ceb658c8fcc5763eb683d.tar.gz upstream-d6a024240496434ae24ceb658c8fcc5763eb683d.tar.bz2 upstream-d6a024240496434ae24ceb658c8fcc5763eb683d.zip |
use $(curdir) again
SVN-Revision: 8208
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/Makefile | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/toolchain/Makefile b/toolchain/Makefile index 21d2b6876e..e0af602c2a 100644 --- a/toolchain/Makefile +++ b/toolchain/Makefile @@ -6,25 +6,27 @@ # # Main makefile for the toolchain # +file:=${lastword ${MAKEFILE_LIST}} +curdir:=$(patsubst %/Makefile,%,${file}) # subdirectories to descend into -toolchain/builddirs := kernel-headers $(if $(CONFIG_GDB),gdb) $(if $(CONFIG_NATIVE_TOOLCHAIN),,binutils gcc uClibc) +$(curdir)/builddirs := kernel-headers $(if $(CONFIG_GDB),gdb) $(if $(CONFIG_NATIVE_TOOLCHAIN),,binutils gcc uClibc) # builddir dependencies -toolchain/uClibc/prepare:=toolchain/kernel-headers/prepare +$(curdir)/uClibc/prepare:=$(curdir)/kernel-headers/prepare ifeq ($(CONFIG_NATIVE_TOOLCHAIN),) - toolchain/binutils/prepare:=toolchain/uClibc/prepare - toolchain/gcc/prepare:=toolchain/binutils/install - toolchain/uClibc/compile:=toolchain/gcc/compile + $(curdir)/binutils/prepare:=$(curdir)/uClibc/prepare + $(curdir)/gcc/prepare:=$(curdir)/binutils/install + $(curdir)/uClibc/compile:=$(curdir)/gcc/compile endif -toolchain/gcc/install:=toolchain/uClibc/install +$(curdir)/gcc/install:=$(curdir)/uClibc/install # prerequisites for the individual targets -toolchain/ := .config $(tools/stamp) -toolchain//prepare = $(STAGING_DIR)/include-host/.done -toolchain//compile = $(1)/prepare -toolchain//install = $(1)/compile +$(curdir)/ := .config $(tools/stamp) +$(curdir)//prepare = $(STAGING_DIR)/include-host/.done +$(curdir)//compile = $(1)/prepare +$(curdir)//install = $(1)/compile -$(eval $(call stampfile,toolchain,toolchain)) -$(eval $(call subdir,toolchain)) +$(eval $(call stampfile,$(curdir),toolchain)) +$(eval $(call subdir,$(curdir))) |