Makefile 162 字节
Newer Older
1 2 3 4
#
# Makefile
#

5
lib-y :=  memset.o
6 7 8 9 10 11 12

ifeq ($(CONFIG_OPT_LIB_ASM),y)
lib-y += fastcopy.o
else
lib-y += memcpy.o memmove.o
endif

M
Michal Simek 已提交
13
lib-$(CONFIG_MMU) += uaccess_old.o