Makefile (4600ecfcf3ad160ac0c6fcff6115f6edb081ccfa) Makefile (d9b2b2a277219d4812311d995054ce4f95067725)
1#
2# Makefile for some libs needed in the kernel.
3#
4
5lib-y := ctype.o string.o vsprintf.o cmdline.o \
6 rbtree.o radix-tree.o dump_stack.o \
7 idr.o int_sqrt.o extable.o prio_tree.o \
8 sha1.o irq_regs.o reciprocal_div.o argv_split.o \

--- 56 unchanged lines hidden (view full) ---

65obj-$(CONFIG_AUDIT_GENERIC) += audit.o
66
67obj-$(CONFIG_SWIOTLB) += swiotlb.o
68obj-$(CONFIG_IOMMU_HELPER) += iommu-helper.o
69obj-$(CONFIG_FAULT_INJECTION) += fault-inject.o
70
71lib-$(CONFIG_GENERIC_BUG) += bug.o
72
1#
2# Makefile for some libs needed in the kernel.
3#
4
5lib-y := ctype.o string.o vsprintf.o cmdline.o \
6 rbtree.o radix-tree.o dump_stack.o \
7 idr.o int_sqrt.o extable.o prio_tree.o \
8 sha1.o irq_regs.o reciprocal_div.o argv_split.o \

--- 56 unchanged lines hidden (view full) ---

65obj-$(CONFIG_AUDIT_GENERIC) += audit.o
66
67obj-$(CONFIG_SWIOTLB) += swiotlb.o
68obj-$(CONFIG_IOMMU_HELPER) += iommu-helper.o
69obj-$(CONFIG_FAULT_INJECTION) += fault-inject.o
70
71lib-$(CONFIG_GENERIC_BUG) += bug.o
72
73obj-$(CONFIG_HAVE_LMB) += lmb.o
74
73hostprogs-y := gen_crc32table
74clean-files := crc32table.h
75
76$(obj)/crc32.o: $(obj)/crc32table.h
77
78quiet_cmd_crc32 = GEN $@
79 cmd_crc32 = $< > $@
80
81$(obj)/crc32table.h: $(obj)/gen_crc32table
82 $(call cmd,crc32)
75hostprogs-y := gen_crc32table
76clean-files := crc32table.h
77
78$(obj)/crc32.o: $(obj)/crc32table.h
79
80quiet_cmd_crc32 = GEN $@
81 cmd_crc32 = $< > $@
82
83$(obj)/crc32table.h: $(obj)/gen_crc32table
84 $(call cmd,crc32)