Makefile: support descending down to subdirectories
authorMasahiro Yamada <yamada.m@jp.panasonic.com>
Thu, 17 Oct 2013 11:38:51 +0000 (20:38 +0900)
committerTom Rini <trini@ti.com>
Thu, 31 Oct 2013 17:26:44 +0000 (13:26 -0400)
commitac7e73532242ce350764d8aa8dcddcbd47c0fb71
tree4869eb09b77ac759cb1425607b27131f44a9580d
parent4810400ec963721f0488ba98128955176c1869e1
Makefile: support descending down to subdirectories

This patch tweaks scripts/Makefile.build to allow
the build system to descend into subdirectories like Kbuild.

To use this feature, use "obj-y += foo/" syntax.

Example:
    obj-$(CONFIG_FOO) += foo/

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Simon Glass <sjg@chromium.org>
scripts/Makefile.build