diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-10-30 00:47:44 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-10-30 00:47:44 +0000 |
commit | 6bf8a340ce18d1e9ec918bc55778e06b693a344c (patch) | |
tree | 37e3d437a92fb1d2140b8ecc05a06557ba235133 /libc/string/sparc | |
parent | 7e8293aced77d56ddce5c5e276eed0ee135e00db (diff) | |
download | uClibc-alpine-6bf8a340ce18d1e9ec918bc55778e06b693a344c.tar.bz2 uClibc-alpine-6bf8a340ce18d1e9ec918bc55778e06b693a344c.tar.xz |
Copy from trunk.
Diffstat (limited to 'libc/string/sparc')
-rw-r--r-- | libc/string/sparc/Makefile.arch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/libc/string/sparc/Makefile.arch b/libc/string/sparc/Makefile.arch new file mode 100644 index 000000000..726140c1b --- /dev/null +++ b/libc/string/sparc/Makefile.arch @@ -0,0 +1,27 @@ +# 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. +# + +STRING_ARCH_DIR:=$(top_srcdir)libc/string/sparc +STRING_ARCH_OUT:=$(top_builddir)libc/string/sparc + +STRING_ARCH_SRC:=$(wildcard $(STRING_ARCH_DIR)/*.c) +STRING_ARCH_OBJ:=$(patsubst $(STRING_ARCH_DIR)/%.c,$(STRING_ARCH_OUT)/%.o,$(STRING_ARCH_SRC)) + +STRING_ARCH_SSRC:=$(wildcard $(STRING_ARCH_DIR)/*.S) +STRING_ARCH_SOBJ:=$(patsubst $(STRING_ARCH_DIR)/%.S,$(STRING_ARCH_OUT)/%.o,$(STRING_ARCH_SSRC)) + +STRING_ARCH_OBJS:=$(STRING_ARCH_OBJ) $(STRING_ARCH_SOBJ) + +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) $(STRING_ARCH_SSRC) + +objclean-y+=string_arch_objclean + +string_arch_objclean: + $(RM) $(STRING_ARCH_OUT)/*.{o,os} |