Makefile (bd361f5de2b338218c276d17a510701a16075deb) Makefile (cf4a7207b1cb4a3c3fe3aa11a83c9d673722a7f5)
1#
2# Makefile for some libs needed in the kernel.
3#
4
5ifdef CONFIG_FUNCTION_TRACER
6ORIG_CFLAGS := $(KBUILD_CFLAGS)
7KBUILD_CFLAGS = $(subst $(CC_FLAGS_FTRACE),,$(ORIG_CFLAGS))
8endif

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

123obj-$(CONFIG_SMP) += percpu_counter.o
124obj-$(CONFIG_AUDIT_GENERIC) += audit.o
125obj-$(CONFIG_AUDIT_COMPAT_GENERIC) += compat_audit.o
126
127obj-$(CONFIG_SWIOTLB) += swiotlb.o
128obj-$(CONFIG_IOMMU_HELPER) += iommu-helper.o iommu-common.o
129obj-$(CONFIG_FAULT_INJECTION) += fault-inject.o
130obj-$(CONFIG_NOTIFIER_ERROR_INJECTION) += notifier-error-inject.o
1#
2# Makefile for some libs needed in the kernel.
3#
4
5ifdef CONFIG_FUNCTION_TRACER
6ORIG_CFLAGS := $(KBUILD_CFLAGS)
7KBUILD_CFLAGS = $(subst $(CC_FLAGS_FTRACE),,$(ORIG_CFLAGS))
8endif

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

123obj-$(CONFIG_SMP) += percpu_counter.o
124obj-$(CONFIG_AUDIT_GENERIC) += audit.o
125obj-$(CONFIG_AUDIT_COMPAT_GENERIC) += compat_audit.o
126
127obj-$(CONFIG_SWIOTLB) += swiotlb.o
128obj-$(CONFIG_IOMMU_HELPER) += iommu-helper.o iommu-common.o
129obj-$(CONFIG_FAULT_INJECTION) += fault-inject.o
130obj-$(CONFIG_NOTIFIER_ERROR_INJECTION) += notifier-error-inject.o
131obj-$(CONFIG_CPU_NOTIFIER_ERROR_INJECT) += cpu-notifier-error-inject.o
131obj-$(CONFIG_PM_NOTIFIER_ERROR_INJECT) += pm-notifier-error-inject.o
132obj-$(CONFIG_NETDEV_NOTIFIER_ERROR_INJECT) += netdev-notifier-error-inject.o
133obj-$(CONFIG_MEMORY_NOTIFIER_ERROR_INJECT) += memory-notifier-error-inject.o
134obj-$(CONFIG_OF_RECONFIG_NOTIFIER_ERROR_INJECT) += \
135 of-reconfig-notifier-error-inject.o
136
137lib-$(CONFIG_GENERIC_BUG) += bug.o
138

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

191obj-$(CONFIG_INTERVAL_TREE_TEST) += interval_tree_test.o
192
193obj-$(CONFIG_PERCPU_TEST) += percpu_test.o
194
195obj-$(CONFIG_ASN1) += asn1_decoder.o
196
197obj-$(CONFIG_FONT_SUPPORT) += fonts/
198
132obj-$(CONFIG_PM_NOTIFIER_ERROR_INJECT) += pm-notifier-error-inject.o
133obj-$(CONFIG_NETDEV_NOTIFIER_ERROR_INJECT) += netdev-notifier-error-inject.o
134obj-$(CONFIG_MEMORY_NOTIFIER_ERROR_INJECT) += memory-notifier-error-inject.o
135obj-$(CONFIG_OF_RECONFIG_NOTIFIER_ERROR_INJECT) += \
136 of-reconfig-notifier-error-inject.o
137
138lib-$(CONFIG_GENERIC_BUG) += bug.o
139

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

192obj-$(CONFIG_INTERVAL_TREE_TEST) += interval_tree_test.o
193
194obj-$(CONFIG_PERCPU_TEST) += percpu_test.o
195
196obj-$(CONFIG_ASN1) += asn1_decoder.o
197
198obj-$(CONFIG_FONT_SUPPORT) += fonts/
199
200obj-$(CONFIG_PRIME_NUMBERS) += prime_numbers.o
201
199hostprogs-y := gen_crc32table
200clean-files := crc32table.h
201
202$(obj)/crc32.o: $(obj)/crc32table.h
203
204quiet_cmd_crc32 = GEN $@
205 cmd_crc32 = $< > $@
206

--- 25 unchanged lines hidden ---
202hostprogs-y := gen_crc32table
203clean-files := crc32table.h
204
205$(obj)/crc32.o: $(obj)/crc32table.h
206
207quiet_cmd_crc32 = GEN $@
208 cmd_crc32 = $< > $@
209

--- 25 unchanged lines hidden ---