~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to arch/m68k/lib/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
1
2
#
2
3
# Makefile for m68k-specific library files..
3
4
#
4
5
 
5
6
lib-y   := ashldi3.o ashrdi3.o lshrdi3.o muldi3.o \
6
 
           checksum.o string.o uaccess.o
 
7
           memcpy.o memset.o memmove.o
 
8
 
 
9
ifdef CONFIG_MMU
 
10
lib-y   += string.o uaccess.o checksum_mm.o
 
11
else
 
12
lib-y   += mulsi3.o divsi3.o udivsi3.o modsi3.o umodsi3.o delay.o checksum_no.o
 
13
endif
 
14