2010-05-29 05:09:12 +02:00
|
|
|
#
|
|
|
|
# Makefile for TILE-specific library files..
|
|
|
|
#
|
|
|
|
|
2011-02-28 21:28:00 +01:00
|
|
|
lib-y = cacheflush.o checksum.o cpumask.o delay.o uaccess.o \
|
|
|
|
memmove.o memcpy_$(BITS).o memchr_$(BITS).o memset_$(BITS).o \
|
2010-05-29 05:09:12 +02:00
|
|
|
strchr_$(BITS).o strlen_$(BITS).o
|
|
|
|
|
2010-08-13 14:52:19 +02:00
|
|
|
ifeq ($(CONFIG_TILEGX),y)
|
2012-03-29 20:05:04 +02:00
|
|
|
CFLAGS_REMOVE_memcpy_user_64.o = -fno-omit-frame-pointer
|
2010-08-13 14:52:19 +02:00
|
|
|
lib-y += memcpy_user_64.o
|
|
|
|
else
|
2010-05-29 05:09:12 +02:00
|
|
|
lib-y += atomic_32.o atomic_asm_32.o memcpy_tile64.o
|
|
|
|
endif
|
|
|
|
|
|
|
|
lib-$(CONFIG_SMP) += spinlock_$(BITS).o usercopy_$(BITS).o
|
|
|
|
|
|
|
|
obj-$(CONFIG_MODULES) += exports.o
|