Makefile 1.51 KB
Newer Older
1
# SPDX-License-Identifier: GPL-2.0
2 3 4 5
#
# Makefile for ppc-specific library files..
#

6
ccflags-$(CONFIG_PPC64)	:= $(NO_MINIMAL_TOC)
7

8 9
CFLAGS_REMOVE_code-patching.o = $(CC_FLAGS_FTRACE)
CFLAGS_REMOVE_feature-fixups.o = $(CC_FLAGS_FTRACE)
10

11
obj-y += alloc.o code-patching.o feature-fixups.o
12

13 14 15 16 17 18
ifndef CONFIG_KASAN
obj-y	+=	string.o memcmp_$(BITS).o
obj-$(CONFIG_PPC32)	+= strlen_32.o
endif

obj-$(CONFIG_PPC32)	+= div64.o copy_32.o crtsavres.o
19

20 21
obj-$(CONFIG_FUNCTION_ERROR_INJECTION)	+= error-inject.o

22 23 24 25 26 27 28
# See corresponding test in arch/powerpc/Makefile
# 64-bit linker creates .sfpr on demand for final link (vmlinux),
# so it is only needed for modules, and only for older linkers which
# do not support --save-restore-funcs
ifeq ($(call ld-ifversion, -lt, 225000000, y),y)
extra-$(CONFIG_PPC64)	+= crtsavres.o
endif
29

30 31 32
obj-$(CONFIG_PPC_BOOK3S_64) += copyuser_power7.o copypage_power7.o \
			       memcpy_power7.o

33
obj64-y	+= copypage_64.o copyuser_64.o mem_64.o hweight_64.o \
34
	   memcpy_64.o pmem.o
35 36 37

obj64-$(CONFIG_SMP)	+= locks.o
obj64-$(CONFIG_ALTIVEC)	+= vmx-helper.o
38 39
obj64-$(CONFIG_KPROBES_SANITY_TEST)	+= test_emulate_step.o \
					   test_emulate_step_exec_instr.o
40

41
obj-y			+= checksum_$(BITS).o checksum_wrappers.o \
42
			   string_$(BITS).o
43

44 45
obj-y			+= sstep.o ldstfp.o quad.o
obj64-y			+= quad.o
Paul Mackerras's avatar
Paul Mackerras committed
46

47
obj-$(CONFIG_PPC_LIB_RHEAP) += rheap.o
48

49
obj-$(CONFIG_FTR_FIXUP_SELFTEST) += feature-fixups-test.o
50

51
obj-$(CONFIG_ALTIVEC)	+= xor_vmx.o xor_vmx_glue.o
52
CFLAGS_xor_vmx.o += -maltivec $(call cc-option,-mabi=altivec)
53 54

obj-$(CONFIG_PPC64) += $(obj64-y)