summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorVic Yang <victoryang@chromium.org>2012-02-12 10:42:22 +0800
committerVic Yang <victoryang@chromium.org>2012-02-16 05:43:29 +0800
commit94fb8ee096e46da8a50d4c087ba9ab0652d0317d (patch)
tree21f1abdb88ce9f7352c6f1eefe1810df33921535 /Makefile
parent502613771e5239e5494f9f06ffecc6f61c711f1c (diff)
downloadchrome-ec-94fb8ee096e46da8a50d4c087ba9ab0652d0317d.tar.gz
Sqrt function for Cortex-M
Add an arch include folder. Implement sqrtf for Cortex-M in math.h. BUG=chrome-os-partner:7920 TEST=none Change-Id: Ib7b480b6a0bf7760f014a1f73df54673a9016cb6 Signed-off-by: Vic Yang <victoryang@chromium.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 076f7433cc..331be13137 100644
--- a/Makefile
+++ b/Makefile
@@ -43,6 +43,6 @@ all-y+=$(call objs_from_dir,board/$(BOARD),$(board-y))
all-y+=$(call objs_from_dir,common,$(common-y))
all-y+=$(call objs_from_dir,test,$($(PROJECT)-y))
dirs=core/$(CORE) chip/$(CHIP) board/$(BOARD) common test util
-includes=include $(dirs)
+includes=include core/$(CORE)/include $(dirs)
include Makefile.rules