2008-01-30 15:32:31 +03:00
|
|
|
#
|
|
|
|
# Makefile for x86 specific library files.
|
|
|
|
#
|
|
|
|
|
2009-05-22 14:12:01 +04:00
|
|
|
obj-$(CONFIG_SMP) := msr.o
|
2008-01-30 15:32:31 +03:00
|
|
|
|
2008-07-03 19:35:41 +04:00
|
|
|
lib-y := delay.o
|
2008-05-12 23:20:42 +04:00
|
|
|
lib-y += thunk_$(BITS).o
|
2008-06-25 00:40:14 +04:00
|
|
|
lib-y += usercopy_$(BITS).o getuser.o putuser.o
|
2008-01-30 15:32:31 +03:00
|
|
|
lib-y += memcpy_$(BITS).o
|
2009-09-04 21:00:09 +04:00
|
|
|
|
|
|
|
obj-y += msr-reg.o msr-reg-export.o
|
2008-01-30 15:32:31 +03:00
|
|
|
|
2007-10-11 13:13:35 +04:00
|
|
|
ifeq ($(CONFIG_X86_32),y)
|
2009-07-03 19:28:57 +04:00
|
|
|
obj-y += atomic64_32.o
|
2008-01-30 15:32:31 +03:00
|
|
|
lib-y += checksum_32.o
|
|
|
|
lib-y += strstr_32.o
|
2009-09-30 19:07:54 +04:00
|
|
|
lib-y += semaphore_32.o string_32.o cmpxchg8b_emu.o
|
2008-01-30 15:32:31 +03:00
|
|
|
|
|
|
|
lib-$(CONFIG_X86_USE_3DNOW) += mmx_32.o
|
2007-10-11 13:13:35 +04:00
|
|
|
else
|
2008-01-30 15:32:31 +03:00
|
|
|
obj-y += io_64.o iomap_copy_64.o
|
|
|
|
lib-y += csum-partial_64.o csum-copy_64.o csum-wrappers_64.o
|
|
|
|
lib-y += thunk_64.o clear_page_64.o copy_page_64.o
|
|
|
|
lib-y += memmove_64.o memset_64.o
|
|
|
|
lib-y += copy_user_64.o rwlock_64.o copy_user_nocache_64.o
|
2007-10-11 13:13:35 +04:00
|
|
|
endif
|