summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmil Velikov <emil.l.velikov@gmail.com>2015-01-27 23:47:41 +0000
committerChad Versace <chad.versace@intel.com>2015-02-10 11:27:55 -0800
commitad1b0c8c4c86075e3594aa951b4ae2c776f9db1f (patch)
tree5c3b7ad6965ffb5ef3444eb7ee47c74417ba1949
parent9a33a3dd0f8789af8061544dcd31ea5710c80374 (diff)
android: include gl_basic & wflinfo to the build
Both targets have their respective build scripts yet the top Android.mk does not include them. As such attempting to build them (m wflinfo) leads to an error - No rule to make target 'wflinfo'. Stop. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Reviewed-by: Chad Versace <chad.versace@intel.com> (cherry picked from commit 60e21362ea6d3e2265f8753217d1f0100055431c)
-rw-r--r--Android.mk7
1 files changed, 7 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index 810508f..3abfd8e 100644
--- a/Android.mk
+++ b/Android.mk
@@ -101,3 +101,10 @@ LOCAL_COPY_HEADERS := \
LOCAL_COPY_HEADERS_TO := waffle-$(waffle_major_version)
include $(BUILD_SHARED_LIBRARY)
+
+SUBDIRS := \
+ examples \
+ src/utils
+
+mkfiles := $(patsubst %,$(waffle_top)/%/Android.mk,$(SUBDIRS))
+include $(mkfiles)