mirror of
https://github.com/genesi/linux-legacy.git
synced 2026-09-25 08:04:07 +00:00
14 lines
158 B
Makefile
14 lines
158 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-y += uaccess.o
|