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.
|
#
|
|
# 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
|
|
|