summaryrefslogtreecommitdiff
path: root/target/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2017-12-31 18:45:06 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2017-12-31 18:45:48 +0100
commitf855b1d7bfdc36a65703fdf9a638ad016c409bbe (patch)
tree3fcedec43e1387c1410add7f3e5f3e958050e010 /target/Makefile
parent1c7ad1a115614a32ac299a9ad5341a9b4157e47b (diff)
add basic zephyr experiments, add xtensa newlib support
Diffstat (limited to 'target/Makefile')
-rw-r--r--target/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/target/Makefile b/target/Makefile
index 99e0fff14..9882e4d84 100644
--- a/target/Makefile
+++ b/target/Makefile
@@ -140,6 +140,11 @@ config-prepare: $(ADK_TOPDIR)/.config
>$(BUILD_DIR)/.frostedapps
endif
+ifeq ($(ADK_TARGET_OS_ZEPHYR),y)
+config-prepare: $(ADK_TOPDIR)/.config
+ echo foo
+endif
+
ifeq ($(ADK_TARGET_OS_FROSTED),y)
prepare: frosted-prepare
compile: frosted-compile
@@ -147,6 +152,13 @@ install: frosted-install
targethelp: frosted-targethelp
endif
+ifeq ($(ADK_TARGET_OS_ZEPHYR),y)
+prepare: zephyr-prepare
+compile: zephyr-compile
+install: zephyr-install
+targethelp: zephyr-targethelp
+endif
+
ifeq ($(ADK_TARGET_OS_LINUX),y)
prepare: $(ADK_TARGET_ARCH)-prepare
compile: $(ADK_TARGET_ARCH)-compile