Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # Makefile for some libs needed in the kernel. |
| 3 | # |
| 4 | |
Steven Rostedt | 606576c | 2008-10-06 19:06:12 -0400 | [diff] [blame] | 5 | ifdef CONFIG_FUNCTION_TRACER |
Ingo Molnar | 2464a60 | 2008-07-17 17:40:48 +0200 | [diff] [blame] | 6 | ORIG_CFLAGS := $(KBUILD_CFLAGS) |
| 7 | KBUILD_CFLAGS = $(subst -pg,,$(ORIG_CFLAGS)) |
| 8 | endif |
| 9 | |
Alexey Dobriyan | 7a5c5d5 | 2007-10-07 00:24:34 -0700 | [diff] [blame] | 10 | lib-y := ctype.o string.o vsprintf.o cmdline.o \ |
Kirill Korotaev | cefc8be | 2007-02-10 01:46:18 -0800 | [diff] [blame] | 11 | rbtree.o radix-tree.o dump_stack.o \ |
Paul Mundt | 5a6dca7 | 2007-11-14 16:58:41 -0800 | [diff] [blame] | 12 | idr.o int_sqrt.o extable.o prio_tree.o \ |
Peter Zijlstra | 145ca25 | 2007-10-16 23:25:49 -0700 | [diff] [blame] | 13 | sha1.o irq_regs.o reciprocal_div.o argv_split.o \ |
Peter Zijlstra | ceacc2c | 2009-01-16 14:46:40 +0100 | [diff] [blame] | 14 | proportions.o prio_heap.o ratelimit.o show_mem.o \ |
Dave Hansen | 534acc0 | 2009-07-29 15:04:18 -0700 | [diff] [blame] | 15 | is_single_threaded.o plist.o decompress.o flex_array.o |
mochel@digitalimplant.org | 9a19fea | 2005-03-21 11:45:16 -0800 | [diff] [blame] | 16 | |
Haavard Skinnemoen | 74588d8 | 2006-09-30 23:29:12 -0700 | [diff] [blame] | 17 | lib-$(CONFIG_MMU) += ioremap.o |
Andrew Morton | ccb4600 | 2006-03-25 03:08:08 -0800 | [diff] [blame] | 18 | lib-$(CONFIG_SMP) += cpumask.o |
| 19 | |
Kay Sievers | 5c5daf6 | 2007-08-12 20:43:55 +0200 | [diff] [blame] | 20 | lib-y += kobject.o kref.o klist.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
David Brownell | d3de851 | 2008-07-23 21:30:37 -0700 | [diff] [blame] | 22 | obj-y += bcd.o div64.o sort.o parser.o halfmd4.o debug_locks.o random32.o \ |
James Bottomley | 3c9f368 | 2008-08-31 10:13:54 -0500 | [diff] [blame] | 23 | bust_spinlocks.o hexdump.o kasprintf.o bitmap.o scatterlist.o \ |
Florian Fainelli | d282922 | 2009-06-17 16:28:38 -0700 | [diff] [blame] | 24 | string_helpers.o gcd.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
| 26 | ifeq ($(CONFIG_DEBUG_KOBJECT),y) |
| 27 | CFLAGS_kobject.o += -DDEBUG |
| 28 | CFLAGS_kobject_uevent.o += -DDEBUG |
| 29 | endif |
| 30 | |
Kay Sievers | 5c5daf6 | 2007-08-12 20:43:55 +0200 | [diff] [blame] | 31 | lib-$(CONFIG_HOTPLUG) += kobject_uevent.o |
Al Viro | 5ea8176 | 2007-02-11 15:41:31 +0000 | [diff] [blame] | 32 | obj-$(CONFIG_GENERIC_IOMAP) += iomap.o |
Geert Uytterhoeven | 928923c | 2007-08-22 14:01:36 -0700 | [diff] [blame] | 33 | obj-$(CONFIG_HAS_IOMEM) += iomap_copy.o devres.o |
| 34 | obj-$(CONFIG_CHECK_SIGNATURE) += check_signature.o |
Ingo Molnar | cae2ed9 | 2006-07-03 00:24:48 -0700 | [diff] [blame] | 35 | obj-$(CONFIG_DEBUG_LOCKING_API_SELFTESTS) += locking-selftest.o |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 36 | obj-$(CONFIG_DEBUG_SPINLOCK) += spinlock_debug.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | lib-$(CONFIG_RWSEM_GENERIC_SPINLOCK) += rwsem-spinlock.o |
| 38 | lib-$(CONFIG_RWSEM_XCHGADD_ALGORITHM) += rwsem.o |
Alexander van Heukelum | 77b9bd9 | 2008-04-01 11:46:19 +0200 | [diff] [blame] | 39 | lib-$(CONFIG_GENERIC_FIND_FIRST_BIT) += find_next_bit.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | lib-$(CONFIG_GENERIC_FIND_NEXT_BIT) += find_next_bit.o |
Fred Isaman | a5422a5 | 2009-04-23 16:40:32 +0300 | [diff] [blame] | 41 | obj-$(CONFIG_GENERIC_FIND_LAST_BIT) += find_last_bit.o |
Randy Dunlap | 702a28b | 2006-12-06 20:39:16 -0800 | [diff] [blame] | 42 | obj-$(CONFIG_GENERIC_HWEIGHT) += hweight.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | obj-$(CONFIG_LOCK_KERNEL) += kernel_lock.o |
Ingo Molnar | 39c715b | 2005-06-21 17:14:34 -0700 | [diff] [blame] | 44 | obj-$(CONFIG_DEBUG_PREEMPT) += smp_processor_id.o |
Dave Jones | 199a9af | 2006-09-29 01:59:00 -0700 | [diff] [blame] | 45 | obj-$(CONFIG_DEBUG_LIST) += list_debug.o |
Thomas Gleixner | 3ac7fe5 | 2008-04-30 00:55:01 -0700 | [diff] [blame] | 46 | obj-$(CONFIG_DEBUG_OBJECTS) += debugobjects.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
Evgeniy Polyakov | 7657ec1 | 2005-08-17 15:17:26 +0400 | [diff] [blame] | 48 | ifneq ($(CONFIG_HAVE_DEC_LOCK),y) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | lib-y += dec_and_lock.o |
| 50 | endif |
| 51 | |
Akinobu Mita | a5cfc1e | 2006-12-08 02:36:25 -0800 | [diff] [blame] | 52 | obj-$(CONFIG_BITREVERSE) += bitrev.o |
Oskar Schirmer | 8759ef3 | 2009-06-11 14:51:15 +0100 | [diff] [blame] | 53 | obj-$(CONFIG_RATIONAL) += rational.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | obj-$(CONFIG_CRC_CCITT) += crc-ccitt.o |
Evgeniy Polyakov | 7657ec1 | 2005-08-17 15:17:26 +0400 | [diff] [blame] | 55 | obj-$(CONFIG_CRC16) += crc16.o |
Martin K. Petersen | f11f594 | 2008-06-25 11:22:42 -0400 | [diff] [blame] | 56 | obj-$(CONFIG_CRC_T10DIF)+= crc-t10dif.o |
Ivo van Doorn | 3e7cbae | 2006-06-12 16:17:04 +0200 | [diff] [blame] | 57 | obj-$(CONFIG_CRC_ITU_T) += crc-itu-t.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | obj-$(CONFIG_CRC32) += crc32.o |
Jan Nikitenko | ad24152 | 2007-07-17 04:04:03 -0700 | [diff] [blame] | 59 | obj-$(CONFIG_CRC7) += crc7.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | obj-$(CONFIG_LIBCRC32C) += libcrc32c.o |
Jes Sorensen | f14f75b | 2005-06-21 17:15:02 -0700 | [diff] [blame] | 61 | obj-$(CONFIG_GENERIC_ALLOCATOR) += genalloc.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
| 63 | obj-$(CONFIG_ZLIB_INFLATE) += zlib_inflate/ |
| 64 | obj-$(CONFIG_ZLIB_DEFLATE) += zlib_deflate/ |
| 65 | obj-$(CONFIG_REED_SOLOMON) += reed_solomon/ |
Richard Purdie | 64c70b1 | 2007-07-10 17:22:24 -0700 | [diff] [blame] | 66 | obj-$(CONFIG_LZO_COMPRESS) += lzo/ |
| 67 | obj-$(CONFIG_LZO_DECOMPRESS) += lzo/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
H. Peter Anvin | 889c92d | 2009-01-08 15:14:17 -0800 | [diff] [blame] | 69 | lib-$(CONFIG_DECOMPRESS_GZIP) += decompress_inflate.o |
| 70 | lib-$(CONFIG_DECOMPRESS_BZIP2) += decompress_bunzip2.o |
| 71 | lib-$(CONFIG_DECOMPRESS_LZMA) += decompress_unlzma.o |
H. Peter Anvin | c8531ab | 2009-01-05 13:48:31 -0800 | [diff] [blame] | 72 | |
David S. Miller | 65df877 | 2005-06-23 23:49:52 -0700 | [diff] [blame] | 73 | obj-$(CONFIG_TEXTSEARCH) += textsearch.o |
Thomas Graf | df3fb93 | 2005-06-23 20:58:37 -0700 | [diff] [blame] | 74 | obj-$(CONFIG_TEXTSEARCH_KMP) += ts_kmp.o |
Pablo Neira Ayuso | 8082e4e | 2005-08-25 16:12:22 -0700 | [diff] [blame] | 75 | obj-$(CONFIG_TEXTSEARCH_BM) += ts_bm.o |
Thomas Graf | 6408f79 | 2005-06-23 20:59:16 -0700 | [diff] [blame] | 76 | obj-$(CONFIG_TEXTSEARCH_FSM) += ts_fsm.o |
Ravikiran G Thirumalai | 3cbc564 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 77 | obj-$(CONFIG_SMP) += percpu_counter.o |
Al Viro | e65e1fc | 2006-09-12 03:04:40 -0400 | [diff] [blame] | 78 | obj-$(CONFIG_AUDIT_GENERIC) += audit.o |
Thomas Graf | 2de4ff7 | 2005-06-23 20:49:30 -0700 | [diff] [blame] | 79 | |
John W. Linville | 6c654b5 | 2005-09-29 14:42:42 -0700 | [diff] [blame] | 80 | obj-$(CONFIG_SWIOTLB) += swiotlb.o |
FUJITA Tomonori | 0291df8 | 2008-02-04 22:28:07 -0800 | [diff] [blame] | 81 | obj-$(CONFIG_IOMMU_HELPER) += iommu-helper.o |
Akinobu Mita | 6ff1cb3 | 2006-12-08 02:39:43 -0800 | [diff] [blame] | 82 | obj-$(CONFIG_FAULT_INJECTION) += fault-inject.o |
John W. Linville | 6c654b5 | 2005-09-29 14:42:42 -0700 | [diff] [blame] | 83 | |
Jeremy Fitzhardinge | 7664c5a | 2006-12-08 02:36:19 -0800 | [diff] [blame] | 84 | lib-$(CONFIG_GENERIC_BUG) += bug.o |
| 85 | |
David S. Miller | d9b2b2a | 2008-02-13 16:56:49 -0800 | [diff] [blame] | 86 | obj-$(CONFIG_HAVE_LMB) += lmb.o |
| 87 | |
Roland McGrath | bbc6986 | 2008-07-25 19:45:59 -0700 | [diff] [blame] | 88 | obj-$(CONFIG_HAVE_ARCH_TRACEHOOK) += syscall.o |
| 89 | |
Jason Baron | e9d376f | 2009-02-05 11:51:38 -0500 | [diff] [blame] | 90 | obj-$(CONFIG_DYNAMIC_DEBUG) += dynamic_debug.o |
Jason Baron | 346e15b | 2008-08-12 16:46:19 -0400 | [diff] [blame] | 91 | |
Geert Uytterhoeven | e9cc8bd | 2009-03-04 14:53:30 +0800 | [diff] [blame] | 92 | obj-$(CONFIG_NLATTR) += nlattr.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | |
Joerg Roedel | f2f45e5 | 2009-01-09 12:19:52 +0100 | [diff] [blame] | 94 | obj-$(CONFIG_DMA_API_DEBUG) += dma-debug.o |
| 95 | |
Arnd Bergmann | 26a28fa | 2009-05-13 22:56:38 +0000 | [diff] [blame] | 96 | obj-$(CONFIG_GENERIC_CSUM) += checksum.o |
| 97 | |
Paul Mackerras | 09d4e0e | 2009-06-12 21:10:05 +0000 | [diff] [blame] | 98 | obj-$(CONFIG_GENERIC_ATOMIC64) += atomic64.o |
| 99 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | hostprogs-y := gen_crc32table |
| 101 | clean-files := crc32table.h |
| 102 | |
| 103 | $(obj)/crc32.o: $(obj)/crc32table.h |
| 104 | |
| 105 | quiet_cmd_crc32 = GEN $@ |
| 106 | cmd_crc32 = $< > $@ |
| 107 | |
| 108 | $(obj)/crc32table.h: $(obj)/gen_crc32table |
| 109 | $(call cmd,crc32) |