diff options
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile index cff82612e98b..59e46a014bc6 100644 --- a/lib/Makefile +++ b/lib/Makefile | |||
@@ -40,6 +40,7 @@ lib-$(CONFIG_GENERIC_FIND_FIRST_BIT) += find_next_bit.o | |||
40 | lib-$(CONFIG_GENERIC_FIND_NEXT_BIT) += find_next_bit.o | 40 | lib-$(CONFIG_GENERIC_FIND_NEXT_BIT) += find_next_bit.o |
41 | obj-$(CONFIG_GENERIC_FIND_LAST_BIT) += find_last_bit.o | 41 | obj-$(CONFIG_GENERIC_FIND_LAST_BIT) += find_last_bit.o |
42 | obj-$(CONFIG_GENERIC_HWEIGHT) += hweight.o | 42 | obj-$(CONFIG_GENERIC_HWEIGHT) += hweight.o |
43 | obj-$(CONFIG_LIST_SORT) += list_sort.o | ||
43 | obj-$(CONFIG_LOCK_KERNEL) += kernel_lock.o | 44 | obj-$(CONFIG_LOCK_KERNEL) += kernel_lock.o |
44 | obj-$(CONFIG_BTREE) += btree.o | 45 | obj-$(CONFIG_BTREE) += btree.o |
45 | obj-$(CONFIG_DEBUG_PREEMPT) += smp_processor_id.o | 46 | obj-$(CONFIG_DEBUG_PREEMPT) += smp_processor_id.o |
@@ -70,6 +71,7 @@ obj-$(CONFIG_LZO_DECOMPRESS) += lzo/ | |||
70 | lib-$(CONFIG_DECOMPRESS_GZIP) += decompress_inflate.o | 71 | lib-$(CONFIG_DECOMPRESS_GZIP) += decompress_inflate.o |
71 | lib-$(CONFIG_DECOMPRESS_BZIP2) += decompress_bunzip2.o | 72 | lib-$(CONFIG_DECOMPRESS_BZIP2) += decompress_bunzip2.o |
72 | lib-$(CONFIG_DECOMPRESS_LZMA) += decompress_unlzma.o | 73 | lib-$(CONFIG_DECOMPRESS_LZMA) += decompress_unlzma.o |
74 | lib-$(CONFIG_DECOMPRESS_LZO) += decompress_unlzo.o | ||
73 | 75 | ||
74 | obj-$(CONFIG_TEXTSEARCH) += textsearch.o | 76 | obj-$(CONFIG_TEXTSEARCH) += textsearch.o |
75 | obj-$(CONFIG_TEXTSEARCH_KMP) += ts_kmp.o | 77 | obj-$(CONFIG_TEXTSEARCH_KMP) += ts_kmp.o |
@@ -92,6 +94,8 @@ obj-$(CONFIG_DYNAMIC_DEBUG) += dynamic_debug.o | |||
92 | 94 | ||
93 | obj-$(CONFIG_NLATTR) += nlattr.o | 95 | obj-$(CONFIG_NLATTR) += nlattr.o |
94 | 96 | ||
97 | obj-$(CONFIG_LRU_CACHE) += lru_cache.o | ||
98 | |||
95 | obj-$(CONFIG_DMA_API_DEBUG) += dma-debug.o | 99 | obj-$(CONFIG_DMA_API_DEBUG) += dma-debug.o |
96 | 100 | ||
97 | obj-$(CONFIG_GENERIC_CSUM) += checksum.o | 101 | obj-$(CONFIG_GENERIC_CSUM) += checksum.o |