You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
439 B
18 lines
439 B
#
|
|
# Makefile for ppc64-specific library files..
|
|
#
|
|
|
|
lib-y := checksum.o dec_and_lock.o string.o strcase.o
|
|
lib-y += copypage.o memcpy.o copyuser.o usercopy.o
|
|
|
|
# Lock primitives are defined as no-ops in include/linux/spinlock.h
|
|
# for non-SMP configs. Don't build the real versions.
|
|
|
|
lib-$(CONFIG_SMP) += locks.o
|
|
|
|
# e2a provides EBCDIC to ASCII conversions.
|
|
ifdef CONFIG_PPC_ISERIES
|
|
obj-y += e2a.o
|
|
endif
|
|
|
|
lib-$(CONFIG_DEBUG_KERNEL) += sstep.o
|
|
|