Makefile 207 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
#
# 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

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