2011-03-28 05:58:49 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Makefile for m68k-specific library files..
|
|
|
|
#
|
|
|
|
|
2011-03-28 06:44:28 +00:00
|
|
|
lib-y := ashldi3.o ashrdi3.o lshrdi3.o muldi3.o memmove.o checksum.o
|
2011-03-28 05:58:49 +00:00
|
|
|
|
2011-03-22 03:39:27 +00:00
|
|
|
ifdef CONFIG_MMU
|
2011-03-28 05:58:49 +00:00
|
|
|
lib-y += string.o uaccess.o
|
2011-03-22 03:39:27 +00:00
|
|
|
else
|
2011-03-28 05:58:49 +00:00
|
|
|
lib-y += mulsi3.o divsi3.o udivsi3.o modsi3.o umodsi3.o \
|
2011-03-28 06:44:28 +00:00
|
|
|
memcpy.o memset.o delay.o
|
2011-03-22 03:39:27 +00:00
|
|
|
endif
|
2011-03-28 05:58:49 +00:00
|
|
|
|