mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2026-01-24 09:28:13 +00:00
15 lines
207 B
Makefile
15 lines
207 B
Makefile
#
|
|
# Makefile
|
|
#
|
|
|
|
lib-y := memset.o checksum.o
|
|
|
|
ifeq ($(CONFIG_OPT_LIB_ASM),y)
|
|
lib-y += fastcopy.o
|
|
else
|
|
lib-y += memcpy.o memmove.o
|
|
endif
|
|
|
|
lib-$(CONFIG_NO_MMU) += uaccess.o
|
|
lib-$(CONFIG_MMU) += uaccess_old.o
|