[U-Boot] [PATCH] Makefile: move some libraries to lib/Makefile

Signed-off-by: Masahiro Yamada yamada.m@jp.panasonic.com --- Makefile | 5 ----- lib/Makefile | 7 +++++++ 2 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/Makefile b/Makefile index ed2864c..52133a5 100644 --- a/Makefile +++ b/Makefile @@ -231,11 +231,6 @@ OBJS := $(addprefix $(obj),$(OBJS)) HAVE_VENDOR_COMMON_LIB = $(if $(wildcard board/$(VENDOR)/common/Makefile),y,n)
LIBS-y += lib/ -LIBS-$(CONFIG_RSA) += lib/rsa/ -LIBS-$(CONFIG_LZMA) += lib/lzma/ -LIBS-$(CONFIG_LZO) += lib/lzo/ -LIBS-$(CONFIG_ZLIB) += lib/zlib/ -LIBS-$(CONFIG_TIZEN) += lib/tizen/ LIBS-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/ LIBS-y += $(CPUDIR)/ ifdef SOC diff --git a/lib/Makefile b/lib/Makefile index 4e3b500..e787f77 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -6,6 +6,13 @@ #
ifndef CONFIG_SPL_BUILD + +obj-$(CONFIG_RSA) += rsa/ +obj-$(CONFIG_LZMA) += lzma/ +obj-$(CONFIG_LZO) += lzo/ +obj-$(CONFIG_ZLIB) += zlib/ +obj-$(CONFIG_TIZEN) += tizen/ + obj-$(CONFIG_AES) += aes.o obj-$(CONFIG_BZIP2) += bzlib.o obj-$(CONFIG_BZIP2) += bzlib_crctable.o

On Mon, Nov 18, 2013 at 11:17:30AM +0900, Masahiro Yamada wrote:
Signed-off-by: Masahiro Yamada yamada.m@jp.panasonic.com
Makefile | 5 ----- lib/Makefile | 7 +++++++ 2 files changed, 7 insertions(+), 5 deletions(-)
Applied to u-boot/master, thanks!
participants (2)
-
Masahiro Yamada
-
Tom Rini