summaryrefslogtreecommitdiffstats
path: root/toolchain/Makefile
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-07-28 13:44:04 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-07-28 13:44:04 +0000
commitd67567dc2a562eb02459ba68260344d97db4b476 (patch)
tree95aff44b2d0c0621aea477f628c8e87bd9ccb6e0 /toolchain/Makefile
parent23660965c9671a573d958374ce1ef0b7c5b317b8 (diff)
use $(curdir) again
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8208 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/Makefile')
-rw-r--r--toolchain/Makefile26
1 files changed, 14 insertions, 12 deletions
diff --git a/toolchain/Makefile b/toolchain/Makefile
index 21d2b6876..e0af602c2 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)))