diff options
author | Michael Hunold <devnull@localhost> | 2003-07-29 07:33:14 +0000 |
---|---|---|
committer | Michael Hunold <devnull@localhost> | 2003-07-29 07:33:14 +0000 |
commit | 45ca172787b0fe8b8e6a0c87cb808e1183dc1977 (patch) | |
tree | 29b9cb20ebe071cf55ae4d6172897ac6d0292e0c | |
parent | 0983051f0c284ca7cb107e90152e3d0b84a3739a (diff) | |
download | mediapointer-dvb-s2-45ca172787b0fe8b8e6a0c87cb808e1183dc1977.tar.gz mediapointer-dvb-s2-45ca172787b0fe8b8e6a0c87cb808e1183dc1977.tar.bz2 |
Remove Makefile, all changes have gone into 2.6-test2
-rw-r--r-- | linux/lib/Makefile | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/linux/lib/Makefile b/linux/lib/Makefile deleted file mode 100644 index 912186915..000000000 --- a/linux/lib/Makefile +++ /dev/null @@ -1,38 +0,0 @@ -# -# Makefile for some libs needed in the kernel. -# - - -lib-y := errno.o ctype.o string.o vsprintf.o cmdline.o \ - bust_spinlocks.o rbtree.o radix-tree.o dump_stack.o \ - kobject.o idr.o - -lib-$(CONFIG_RWSEM_GENERIC_SPINLOCK) += rwsem-spinlock.o -lib-$(CONFIG_RWSEM_XCHGADD_ALGORITHM) += rwsem.o -lib-$(CONFIG_SMP) += percpu_counter.o - -ifneq ($(CONFIG_HAVE_DEC_LOCK),y) - lib-y += dec_and_lock.o -endif - -obj-$(CONFIG_CRC32) += crc32.o - -obj-$(CONFIG_ZLIB_INFLATE) += zlib_inflate/ -obj-$(CONFIG_ZLIB_DEFLATE) += zlib_deflate/ - -include drivers/net/Makefile.lib -include drivers/usb/Makefile.lib -include fs/Makefile.lib -include net/bluetooth/bnep/Makefile.lib -include drivers/media/dvb/dvb-core/Makefile.lib - -host-progs := gen_crc32table -clean-files := crc32table.h - -$(obj)/crc32.o: $(obj)/crc32table.h - -quiet_cmd_crc32 = GEN $@ - cmd_crc32 = $< > $@ - -$(obj)/crc32table.h: $(obj)/gen_crc32table - $(call cmd,crc32) |