diff options
| author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-10-30 00:47:27 +0000 | 
|---|---|---|
| committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-10-30 00:47:27 +0000 | 
| commit | c356f633b10b6dca90181d9af38c7edea6ba377d (patch) | |
| tree | 56dc4b78751bcfea3a5fd0892e337f2ad5d00eb5 /libc | |
| parent | fc112f4926cdf53d4aa1037db981d76dfd0349c6 (diff) | |
| download | uClibc-alpine-c356f633b10b6dca90181d9af38c7edea6ba377d.tar.bz2 uClibc-alpine-c356f633b10b6dca90181d9af38c7edea6ba377d.tar.xz | |
Copy from trunk.
Diffstat (limited to 'libc')
| -rw-r--r-- | libc/string/mips/Makefile.arch | 26 | 
1 files changed, 26 insertions, 0 deletions
| diff --git a/libc/string/mips/Makefile.arch b/libc/string/mips/Makefile.arch new file mode 100644 index 000000000..8aebbe27b --- /dev/null +++ b/libc/string/mips/Makefile.arch @@ -0,0 +1,26 @@ +# Makefile for uClibc +# +# Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org> +# +# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. +# + +SSRC:=memcpy.S memset.S + +STRING_ARCH_DIR:=$(top_srcdir)libc/string/mips +STRING_ARCH_OUT:=$(top_builddir)libc/string/mips + +STRING_ARCH_SRC:=$(patsubst %.S,$(STRING_ARCH_DIR)/%.S,$(SSRC)) +STRING_ARCH_OBJ:=$(patsubst %.S,$(STRING_ARCH_OUT)/%.o,$(SSRC)) + +STRING_ARCH_OBJS:=$(STRING_ARCH_OBJ) + +libc-a-$(UCLIBC_HAS_STRING_ARCH_OPT)+=$(STRING_ARCH_OBJS) +libc-so-$(UCLIBC_HAS_STRING_ARCH_OPT)+=$(STRING_ARCH_OBJS:.o=.os) + +libc-multi-$(UCLIBC_HAS_STRING_ARCH_OPT)+=$(STRING_ARCH_SRC) + +objclean-y+=string_arch_objclean + +string_arch_objclean: +	$(RM) $(STRING_ARCH_OUT)/*.{o,os} | 
