Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 1 | # |
| 2 | # Makefile for TILE-specific library files.. |
| 3 | # |
| 4 | |
Chris Metcalf | 6c4d112 | 2011-02-28 15:28:00 -0500 | [diff] [blame] | 5 | lib-y = cacheflush.o checksum.o cpumask.o delay.o uaccess.o \ |
| 6 | memmove.o memcpy_$(BITS).o memchr_$(BITS).o memset_$(BITS).o \ |
Ken Steele | 5916700 | 2013-08-01 15:55:07 -0400 | [diff] [blame] | 7 | strchr_$(BITS).o strlen_$(BITS).o strnlen_$(BITS).o |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 8 | |
Chris Metcalf | 49cf78e | 2013-08-12 15:00:51 -0400 | [diff] [blame] | 9 | lib-$(CONFIG_TILEGX) += memcpy_user_64.o |
Chris Metcalf | d7c9661 | 2013-08-15 16:23:24 -0400 | [diff] [blame] | 10 | lib-$(CONFIG_TILEPRO) += atomic_32.o atomic_asm_32.o |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 11 | lib-$(CONFIG_SMP) += spinlock_$(BITS).o usercopy_$(BITS).o |
| 12 | |
| 13 | obj-$(CONFIG_MODULES) += exports.o |
Chris Metcalf | 49cf78e | 2013-08-12 15:00:51 -0400 | [diff] [blame] | 14 | |
| 15 | # The finv_buffer_remote() and copy_{to,from}_user() routines can't |
| 16 | # have -pg added, since they both rely on being leaf functions. |
| 17 | CFLAGS_REMOVE_cacheflush.o = -pg |
| 18 | CFLAGS_REMOVE_memcpy_user_64.o = -pg |