From fa92a9253c139d0dcc48c760ddffb277099567cc Mon Sep 17 00:00:00 2001 From: Wojciech Bober Date: Thu, 6 Apr 2017 04:50:51 +0200 Subject: [PATCH] Always build platform utils library. (#1557) This commit changes build behaviour, so that platform-utils library is always built. This allows for using opentread in environments which keep platform files out of openthread tree. --- examples/Makefile.am | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/examples/Makefile.am b/examples/Makefile.am index 0b1db1aad..e0b1051bc 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -41,9 +41,12 @@ EXTRA_DIST = \ # Always build (e.g. for 'make all') these subdirectories. -if OPENTHREAD_EXAMPLES SUBDIRS = \ platforms \ + $(NULL) + +if OPENTHREAD_EXAMPLES +SUBDIRS += \ apps \ $(NULL) endif