2011-03-28 09:58:49 +04:00
|
|
|
|
|
|
|
#
|
|
|
|
# Makefile for m68k-specific library files..
|
|
|
|
#
|
|
|
|
|
2011-03-28 10:48:00 +04:00
|
|
|
lib-y := ashldi3.o ashrdi3.o lshrdi3.o muldi3.o \
|
2011-04-18 09:27:55 +04:00
|
|
|
memcpy.o memset.o memmove.o
|
2011-03-28 09:58:49 +04:00
|
|
|
|
2011-03-22 06:39:27 +03:00
|
|
|
ifdef CONFIG_MMU
|
2011-04-18 09:27:55 +04:00
|
|
|
lib-y += string.o uaccess.o checksum_mm.o
|
2011-03-22 06:39:27 +03:00
|
|
|
else
|
2011-07-01 10:47:13 +04:00
|
|
|
lib-y += mulsi3.o divsi3.o udivsi3.o modsi3.o umodsi3.o checksum_no.o
|
2011-03-22 06:39:27 +03:00
|
|
|
endif
|
2011-03-28 09:58:49 +04:00
|
|
|
|