blob: 70c7ae6a3fb5659013912aa5cb362d50437a7c82 [file] [log] [blame]
Nest DevInfraa713cee2018-08-16 23:51:32 +00001#
2# Makefile
3#
4
5ifdef CONFIG_FUNCTION_TRACER
6CFLAGS_REMOVE_ashldi3.o = -pg
7CFLAGS_REMOVE_ashrdi3.o = -pg
8CFLAGS_REMOVE_lshrdi3.o = -pg
9endif
10
11lib-y := memset.o
12
13ifeq ($(CONFIG_OPT_LIB_ASM),y)
14lib-y += fastcopy.o
15else
16lib-y += memcpy.o memmove.o
17endif
18
19lib-y += uaccess_old.o
20
21# libgcc-style stuff needed in the kernel
22obj-y += ashldi3.o ashrdi3.o cmpdi2.o divsi3.o lshrdi3.o modsi3.o
23obj-y += muldi3.o mulsi3.o ucmpdi2.o udivsi3.o umodsi3.o