mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 09:14:19 +08:00
9461702d2a
We don't need an arch/m68k/lib/checksum.c wrapper to include the correct mmu or non-mmu version of the checksum code. Let the Makefile just build the appropriate one. Signed-off-by: Greg Ungerer <gerg@uclinux.org>
15 lines
283 B
Makefile
15 lines
283 B
Makefile
|
|
#
|
|
# Makefile for m68k-specific library files..
|
|
#
|
|
|
|
lib-y := ashldi3.o ashrdi3.o lshrdi3.o muldi3.o \
|
|
memcpy.o memset.o memmove.o
|
|
|
|
ifdef CONFIG_MMU
|
|
lib-y += string.o uaccess.o checksum_mm.o
|
|
else
|
|
lib-y += mulsi3.o divsi3.o udivsi3.o modsi3.o umodsi3.o delay.o checksum_no.o
|
|
endif
|
|
|