diff options
Diffstat (limited to 'arch/sh/lib/Makefile')
-rw-r--r-- | arch/sh/lib/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/sh/lib/Makefile b/arch/sh/lib/Makefile new file mode 100644 index 000000000000..b5681e3f9684 --- /dev/null +++ b/arch/sh/lib/Makefile | |||
@@ -0,0 +1,13 @@ | |||
1 | # | ||
2 | # Makefile for SuperH-specific library files.. | ||
3 | # | ||
4 | |||
5 | lib-y = delay.o memset.o memmove.o memchr.o \ | ||
6 | checksum.o strcasecmp.o strlen.o div64.o udivdi3.o \ | ||
7 | div64-generic.o | ||
8 | |||
9 | memcpy-y := memcpy.o | ||
10 | memcpy-$(CONFIG_CPU_SH4) := memcpy-sh4.o | ||
11 | |||
12 | lib-y += $(memcpy-y) | ||
13 | |||