10 lines
242 B
Makefile
10 lines
242 B
Makefile
|
# SPDX-License-Identifier: GPL-2.0-only
|
||
|
lib-y += delay.o
|
||
|
lib-y += memcpy.o
|
||
|
lib-y += memset.o
|
||
|
lib-y += memmove.o
|
||
|
lib-$(CONFIG_MMU) += uaccess.o
|
||
|
lib-$(CONFIG_64BIT) += tishift.o
|
||
|
|
||
|
obj-$(CONFIG_FUNCTION_ERROR_INJECTION) += error-inject.o
|