Makefile: move some libraries to lib/Makefile
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
This commit is contained in:
parent
8a7e7d5697
commit
fdc36977b3
5
Makefile
5
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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user