diff options
| author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
| commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
| tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /lib/Makefile | |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'lib/Makefile')
| -rw-r--r-- | lib/Makefile | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile new file mode 100644 index 000000000000..7c70db79c0e0 --- /dev/null +++ b/lib/Makefile | |||
| @@ -0,0 +1,45 @@ | |||
| 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 \ | ||
| 7 | kobject.o kref.o idr.o div64.o int_sqrt.o \ | ||
| 8 | bitmap.o extable.o kobject_uevent.o prio_tree.o sha1.o \ | ||
| 9 | halfmd4.o | ||
| 10 | |||
| 11 | obj-y += sort.o parser.o | ||
| 12 | |||
| 13 | ifeq ($(CONFIG_DEBUG_KOBJECT),y) | ||
| 14 | CFLAGS_kobject.o += -DDEBUG | ||
| 15 | CFLAGS_kobject_uevent.o += -DDEBUG | ||
| 16 | endif | ||
| 17 | |||
| 18 | lib-$(CONFIG_RWSEM_GENERIC_SPINLOCK) += rwsem-spinlock.o | ||
| 19 | lib-$(CONFIG_RWSEM_XCHGADD_ALGORITHM) += rwsem.o | ||
| 20 | lib-$(CONFIG_GENERIC_FIND_NEXT_BIT) += find_next_bit.o | ||
| 21 | obj-$(CONFIG_LOCK_KERNEL) += kernel_lock.o | ||
| 22 | |||
| 23 | ifneq ($(CONFIG_HAVE_DEC_LOCK),y) | ||
| 24 | lib-y += dec_and_lock.o | ||
| 25 | endif | ||
| 26 | |||
| 27 | obj-$(CONFIG_CRC_CCITT) += crc-ccitt.o | ||
| 28 | obj-$(CONFIG_CRC32) += crc32.o | ||
| 29 | obj-$(CONFIG_LIBCRC32C) += libcrc32c.o | ||
| 30 | obj-$(CONFIG_GENERIC_IOMAP) += iomap.o | ||
| 31 | |||
| 32 | obj-$(CONFIG_ZLIB_INFLATE) += zlib_inflate/ | ||
| 33 | obj-$(CONFIG_ZLIB_DEFLATE) += zlib_deflate/ | ||
| 34 | obj-$(CONFIG_REED_SOLOMON) += reed_solomon/ | ||
| 35 | |||
| 36 | hostprogs-y := gen_crc32table | ||
| 37 | clean-files := crc32table.h | ||
| 38 | |||
| 39 | $(obj)/crc32.o: $(obj)/crc32table.h | ||
| 40 | |||
| 41 | quiet_cmd_crc32 = GEN $@ | ||
| 42 | cmd_crc32 = $< > $@ | ||
| 43 | |||
| 44 | $(obj)/crc32table.h: $(obj)/gen_crc32table | ||
| 45 | $(call cmd,crc32) | ||
