diff options
Diffstat (limited to 'arch/m68k/lib/Makefile')
-rw-r--r-- | arch/m68k/lib/Makefile | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/arch/m68k/lib/Makefile b/arch/m68k/lib/Makefile index 1f95881d8437..df421e501436 100644 --- a/arch/m68k/lib/Makefile +++ b/arch/m68k/lib/Makefile | |||
@@ -1,5 +1,14 @@ | |||
1 | |||
2 | # | ||
3 | # Makefile for m68k-specific library files.. | ||
4 | # | ||
5 | |||
6 | lib-y := ashldi3.o ashrdi3.o lshrdi3.o muldi3.o \ | ||
7 | memcpy.o memset.o memmove.o | ||
8 | |||
1 | ifdef CONFIG_MMU | 9 | ifdef CONFIG_MMU |
2 | include arch/m68k/lib/Makefile_mm | 10 | lib-y += string.o uaccess.o checksum_mm.o |
3 | else | 11 | else |
4 | include arch/m68k/lib/Makefile_no | 12 | lib-y += mulsi3.o divsi3.o udivsi3.o modsi3.o umodsi3.o delay.o checksum_no.o |
5 | endif | 13 | endif |
14 | |||