From: Masahiro Yamada Date: Wed, 20 Nov 2013 03:45:56 +0000 (+0900) Subject: Makefile: descend into subdirectories only when CONFIG_API is defined X-Git-Tag: v2014.01-rc1~10 X-Git-Url: https://git.kernelconcepts.de/?p=karo-tx-uboot.git;a=commitdiff_plain;h=ad420282e211cb5156691df0bcc7d9946bf4553c Makefile: descend into subdirectories only when CONFIG_API is defined All objects under api/ and examples/api/ directories are selected by CONFIG_API. So we can move CONFIG_API switch to the top Makefile. In order to use CONFIG_API, the definition of SUBDIR_EXAMPLES-y must be moved after "sinlude $(obj)include/autoconf.mk". Signed-off-by: Masahiro Yamada --- diff --git a/api/Makefile b/api/Makefile index 0f85a0b098..3c095eedb6 100644 --- a/api/Makefile +++ b/api/Makefile @@ -6,4 +6,4 @@ obj-y += api.o api_display.o api_net.o api_storage.o obj-$(CONFIG_ARM) += api_platform-arm.o -obj-$(CONFIG_PPC) += api_platform-powerpc.c +obj-$(CONFIG_PPC) += api_platform-powerpc.o