diff options
| author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-10-15 01:41:27 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-10-15 01:41:27 -0400 |
| commit | c362495586e8a3a6487a318fcd82eaf15ffe2142 (patch) | |
| tree | 86f7b195d36ba198f24f86be327f21a8d24ec248 /lib/Makefile | |
| parent | b70936d9ffbf0f45f4fa13a03122f015f13ecdb0 (diff) | |
| parent | ddffeb8c4d0331609ef2581d84de4d763607bd37 (diff) | |
Merge 3.7-rc1 into tty-linus
This syncs up the tty-linus branch to the latest in Linus's tree to get all of
the UAPI stuff needed for the next set of patches to merge.
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'lib/Makefile')
| -rw-r--r-- | lib/Makefile | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/lib/Makefile b/lib/Makefile index 42d283edc4d3..821a16229111 100644 --- a/lib/Makefile +++ b/lib/Makefile | |||
| @@ -9,7 +9,7 @@ endif | |||
| 9 | 9 | ||
| 10 | lib-y := ctype.o string.o vsprintf.o cmdline.o \ | 10 | lib-y := ctype.o string.o vsprintf.o cmdline.o \ |
| 11 | rbtree.o radix-tree.o dump_stack.o timerqueue.o\ | 11 | rbtree.o radix-tree.o dump_stack.o timerqueue.o\ |
| 12 | idr.o int_sqrt.o extable.o prio_tree.o \ | 12 | idr.o int_sqrt.o extable.o \ |
| 13 | sha1.o md5.o irq_regs.o reciprocal_div.o argv_split.o \ | 13 | sha1.o md5.o irq_regs.o reciprocal_div.o argv_split.o \ |
| 14 | proportions.o flex_proportions.o prio_heap.o ratelimit.o show_mem.o \ | 14 | proportions.o flex_proportions.o prio_heap.o ratelimit.o show_mem.o \ |
| 15 | is_single_threaded.o plist.o decompress.o | 15 | is_single_threaded.o plist.o decompress.o |
| @@ -140,6 +140,13 @@ $(foreach file, $(libfdt_files), \ | |||
| 140 | $(eval CFLAGS_$(file) = -I$(src)/../scripts/dtc/libfdt)) | 140 | $(eval CFLAGS_$(file) = -I$(src)/../scripts/dtc/libfdt)) |
| 141 | lib-$(CONFIG_LIBFDT) += $(libfdt_files) | 141 | lib-$(CONFIG_LIBFDT) += $(libfdt_files) |
| 142 | 142 | ||
| 143 | obj-$(CONFIG_RBTREE_TEST) += rbtree_test.o | ||
| 144 | obj-$(CONFIG_INTERVAL_TREE_TEST) += interval_tree_test.o | ||
| 145 | |||
| 146 | interval_tree_test-objs := interval_tree_test_main.o interval_tree.o | ||
| 147 | |||
| 148 | obj-$(CONFIG_ASN1) += asn1_decoder.o | ||
| 149 | |||
| 143 | hostprogs-y := gen_crc32table | 150 | hostprogs-y := gen_crc32table |
| 144 | clean-files := crc32table.h | 151 | clean-files := crc32table.h |
| 145 | 152 | ||
| @@ -150,3 +157,19 @@ quiet_cmd_crc32 = GEN $@ | |||
| 150 | 157 | ||
| 151 | $(obj)/crc32table.h: $(obj)/gen_crc32table | 158 | $(obj)/crc32table.h: $(obj)/gen_crc32table |
| 152 | $(call cmd,crc32) | 159 | $(call cmd,crc32) |
| 160 | |||
| 161 | # | ||
| 162 | # Build a fast OID lookip registry from include/linux/oid_registry.h | ||
| 163 | # | ||
| 164 | obj-$(CONFIG_OID_REGISTRY) += oid_registry.o | ||
| 165 | |||
| 166 | $(obj)/oid_registry.c: $(obj)/oid_registry_data.c | ||
| 167 | |||
| 168 | $(obj)/oid_registry_data.c: $(srctree)/include/linux/oid_registry.h \ | ||
| 169 | $(src)/build_OID_registry | ||
| 170 | $(call cmd,build_OID_registry) | ||
| 171 | |||
| 172 | quiet_cmd_build_OID_registry = GEN $@ | ||
| 173 | cmd_build_OID_registry = perl $(srctree)/$(src)/build_OID_registry $< $@ | ||
| 174 | |||
| 175 | clean-files += oid_registry_data.c | ||
