Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v2.6.32 14 lines 196 B view raw
1# 2# Makefile 3# 4 5lib-y := memset.o 6 7ifeq ($(CONFIG_OPT_LIB_ASM),y) 8lib-y += fastcopy.o 9else 10lib-y += memcpy.o memmove.o 11endif 12 13lib-$(CONFIG_NO_MMU) += uaccess.o 14lib-$(CONFIG_MMU) += uaccess_old.o