summaryrefslogtreecommitdiff
path: root/mk/build.mk
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-02-14 14:04:37 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-02-14 14:04:37 +0100
commit80cf711c344256c59b857da6cd7fc91898f90752 (patch)
treefa1332276e3a0b3e07ac69072cddae1d60768730 /mk/build.mk
parent58f2ba6405c8b0390995af535592c94eb38e013c (diff)
add generic toolchain only support
remove special cases (tomtom/g1)
Diffstat (limited to 'mk/build.mk')
-rw-r--r--mk/build.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/mk/build.mk b/mk/build.mk
index 2c9230397..f2d58ad5c 100644
--- a/mk/build.mk
+++ b/mk/build.mk
@@ -300,6 +300,9 @@ endif
ifneq (,$(filter %_qemu,${TARGET}))
@echo ADK_LINUX_QEMU=y >> $(TOPDIR)/.defconfig
endif
+ifneq (,$(filter %_toolchain,${TARGET}))
+ @echo ADK_LINUX_TOOLCHAIN=y >> $(TOPDIR)/.defconfig
+endif
ifneq (,$(filter rescue%,${TARGET}))
@echo ADK_LINUX_RESCUE=y >> $(TOPDIR)/.defconfig
endif
@@ -365,6 +368,9 @@ endif
ifneq (,$(filter %_qemu,${TARGET}))
@echo ADK_LINUX_QEMU=y >> $(TOPDIR)/all.config
endif
+ifneq (,$(filter %_toolchain,${TARGET}))
+ @echo ADK_LINUX_TOOLCHAIN=y >> $(TOPDIR)/all.config
+endif
ifneq (,$(filter %_rescue,${TARGET}))
@echo ADK_LINUX_RESCUE=y >> $(TOPDIR)/all.config
endif