mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-20 19:23:57 +08:00
70d64ceaa1
This doesn't change any code, just renames things so we consistently have foo_32.c and foo_64.c where we have separate 32- and 64-bit versions. Signed-off-by: Paul Mackerras <paulus@samba.org>
10 lines
285 B
Makefile
10 lines
285 B
Makefile
#
|
|
# Makefile for ppc-specific library files..
|
|
#
|
|
|
|
obj-y := strcase.o string.o
|
|
obj-$(CONFIG_PPC32) += div64.o copy_32.o checksum_32.o
|
|
obj-$(CONFIG_PPC64) += copypage_64.o copyuser_64.o memcpy_64.o \
|
|
usercopy_64.o sstep.o checksum_64.o mem_64.o
|
|
obj-$(CONFIG_PPC_ISERIES) += e2a.o
|