]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/powerpc/lib/Makefile
powerpc/64: Linker on-demand sfpr functions for modules
[karo-tx-linux.git] / arch / powerpc / lib / Makefile
1 #
2 # Makefile for ppc-specific library files..
3 #
4
5 subdir-ccflags-$(CONFIG_PPC_WERROR) := -Werror
6
7 ccflags-$(CONFIG_PPC64) := $(NO_MINIMAL_TOC)
8
9 CFLAGS_REMOVE_code-patching.o = $(CC_FLAGS_FTRACE)
10 CFLAGS_REMOVE_feature-fixups.o = $(CC_FLAGS_FTRACE)
11
12 obj-y += string.o alloc.o code-patching.o feature-fixups.o
13
14 obj-$(CONFIG_PPC32)     += div64.o copy_32.o crtsavres.o
15
16 # See corresponding test in arch/powerpc/Makefile
17 # 64-bit linker creates .sfpr on demand for final link (vmlinux),
18 # so it is only needed for modules, and only for older linkers which
19 # do not support --save-restore-funcs
20 ifeq ($(call ld-ifversion, -lt, 225000000, y),y)
21 extra-$(CONFIG_PPC64)   += crtsavres.o
22 endif
23
24 obj64-y += copypage_64.o copyuser_64.o mem_64.o hweight_64.o \
25            copyuser_power7.o string_64.o copypage_power7.o memcpy_power7.o \
26            memcpy_64.o memcmp_64.o
27
28 obj64-$(CONFIG_SMP)     += locks.o
29 obj64-$(CONFIG_ALTIVEC) += vmx-helper.o
30 obj64-$(CONFIG_KPROBES_SANITY_TEST) += test_emulate_step.o
31
32 obj-y                   += checksum_$(BITS).o checksum_wrappers.o
33
34 obj-$(CONFIG_PPC_EMULATE_SSTEP) += sstep.o ldstfp.o
35
36 obj-$(CONFIG_PPC_LIB_RHEAP) += rheap.o
37
38 obj-$(CONFIG_FTR_FIXUP_SELFTEST) += feature-fixups-test.o
39
40 obj-$(CONFIG_ALTIVEC)   += xor_vmx.o
41 CFLAGS_xor_vmx.o += -maltivec $(call cc-option,-mabi=altivec)
42
43 obj-$(CONFIG_PPC64) += $(obj64-y)