diff options
author | Masahiro Yamada | 2013-11-11 14:35:52 +0900 |
---|---|---|
committer | Tom Rini | 2013-11-17 14:11:30 -0500 |
commit | 164922bd7c383a2c82739f8b080b2e0da801ec0d (patch) | |
tree | 3ccdfc39750a6ca085e60df5d07bc17de9d732ab /lib | |
parent | 7b6af41ef342199e4967735ea17424b42ed742d2 (diff) |
lib: descend into sub directories only when it is necessary
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/lzma/Makefile | 2 | ||||
-rw-r--r-- | lib/lzo/Makefile | 2 | ||||
-rw-r--r-- | lib/rsa/Makefile | 4 | ||||
-rw-r--r-- | lib/zlib/Makefile | 2 |
4 files changed, 4 insertions, 6 deletions
diff --git a/lib/lzma/Makefile b/lib/lzma/Makefile index 25c6797fb60..f8eda06c9f5 100644 --- a/lib/lzma/Makefile +++ b/lib/lzma/Makefile @@ -10,4 +10,4 @@ CFLAGS += -D_LZMA_PROB32 -obj-$(CONFIG_LZMA) += LzmaDec.o LzmaTools.o +obj-y += LzmaDec.o LzmaTools.o diff --git a/lib/lzo/Makefile b/lib/lzo/Makefile index dd853eae231..2936544abc0 100644 --- a/lib/lzo/Makefile +++ b/lib/lzo/Makefile @@ -5,4 +5,4 @@ # SPDX-License-Identifier: GPL-2.0+ # -obj-$(CONFIG_LZO) += lzo1x_decompress.o +obj-y += lzo1x_decompress.o diff --git a/lib/rsa/Makefile b/lib/rsa/Makefile index 693c745514a..164ab399645 100644 --- a/lib/rsa/Makefile +++ b/lib/rsa/Makefile @@ -7,6 +7,4 @@ # SPDX-License-Identifier: GPL-2.0+ # -ifdef CONFIG_FIT_SIGNATURE -obj-$(CONFIG_RSA) += rsa-verify.o -endif +obj-$(CONFIG_FIT_SIGNATURE) += rsa-verify.o diff --git a/lib/zlib/Makefile b/lib/zlib/Makefile index 1e9e04d9915..2fba95f438d 100644 --- a/lib/zlib/Makefile +++ b/lib/zlib/Makefile @@ -5,4 +5,4 @@ # SPDX-License-Identifier: GPL-2.0+ # -obj-$(CONFIG_ZLIB) += zlib.o +obj-y += zlib.o |