Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # Makefile for some libs needed in the kernel. |
| 3 | # |
| 4 | |
| 5 | lib-y := errno.o ctype.o string.o vsprintf.o cmdline.o \ |
| 6 | bust_spinlocks.o rbtree.o radix-tree.o dump_stack.o \ |
mochel@digitalimplant.org | 9a19fea | 2005-03-21 11:45:16 -0800 | [diff] [blame] | 7 | idr.o div64.o int_sqrt.o bitmap.o extable.o prio_tree.o \ |
| 8 | sha1.o halfmd4.o |
| 9 | |
| 10 | lib-y += kobject.o kref.o kobject_uevent.o klist.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | |
| 12 | obj-y += sort.o parser.o |
| 13 | |
| 14 | ifeq ($(CONFIG_DEBUG_KOBJECT),y) |
| 15 | CFLAGS_kobject.o += -DDEBUG |
| 16 | CFLAGS_kobject_uevent.o += -DDEBUG |
| 17 | endif |
| 18 | |
| 19 | lib-$(CONFIG_RWSEM_GENERIC_SPINLOCK) += rwsem-spinlock.o |
| 20 | lib-$(CONFIG_RWSEM_XCHGADD_ALGORITHM) += rwsem.o |
| 21 | lib-$(CONFIG_GENERIC_FIND_NEXT_BIT) += find_next_bit.o |
| 22 | obj-$(CONFIG_LOCK_KERNEL) += kernel_lock.o |
Ingo Molnar | 39c715b | 2005-06-21 17:14:34 -0700 | [diff] [blame] | 23 | obj-$(CONFIG_DEBUG_PREEMPT) += smp_processor_id.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
| 25 | ifneq ($(CONFIG_HAVE_DEC_LOCK),y) |
| 26 | lib-y += dec_and_lock.o |
| 27 | endif |
| 28 | |
| 29 | obj-$(CONFIG_CRC_CCITT) += crc-ccitt.o |
| 30 | obj-$(CONFIG_CRC32) += crc32.o |
| 31 | obj-$(CONFIG_LIBCRC32C) += libcrc32c.o |
| 32 | obj-$(CONFIG_GENERIC_IOMAP) += iomap.o |
Jes Sorensen | f14f75b | 2005-06-21 17:15:02 -0700 | [diff] [blame] | 33 | obj-$(CONFIG_GENERIC_ALLOCATOR) += genalloc.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
| 35 | obj-$(CONFIG_ZLIB_INFLATE) += zlib_inflate/ |
| 36 | obj-$(CONFIG_ZLIB_DEFLATE) += zlib_deflate/ |
| 37 | obj-$(CONFIG_REED_SOLOMON) += reed_solomon/ |
| 38 | |
David S. Miller | 65df877 | 2005-06-23 23:49:52 -0700 | [diff] [blame] | 39 | obj-$(CONFIG_TEXTSEARCH) += textsearch.o |
Thomas Graf | df3fb93 | 2005-06-23 20:58:37 -0700 | [diff] [blame] | 40 | obj-$(CONFIG_TEXTSEARCH_KMP) += ts_kmp.o |
Thomas Graf | 6408f79 | 2005-06-23 20:59:16 -0700 | [diff] [blame] | 41 | obj-$(CONFIG_TEXTSEARCH_FSM) += ts_fsm.o |
Thomas Graf | 2de4ff7 | 2005-06-23 20:49:30 -0700 | [diff] [blame] | 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | hostprogs-y := gen_crc32table |
| 44 | clean-files := crc32table.h |
| 45 | |
| 46 | $(obj)/crc32.o: $(obj)/crc32table.h |
| 47 | |
| 48 | quiet_cmd_crc32 = GEN $@ |
| 49 | cmd_crc32 = $< > $@ |
| 50 | |
| 51 | $(obj)/crc32table.h: $(obj)/gen_crc32table |
| 52 | $(call cmd,crc32) |