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