diff options
| author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-10-30 00:47:50 +0000 |
|---|---|---|
| committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-10-30 00:47:50 +0000 |
| commit | 3d79ceea00dc1c81c1d41494335fa72e8e2cbbe1 (patch) | |
| tree | 26be3b7dc29de9e65437e823b0b3d6536220b449 | |
| parent | 6bf8a340ce18d1e9ec918bc55778e06b693a344c (diff) | |
| download | uClibc-alpine-3d79ceea00dc1c81c1d41494335fa72e8e2cbbe1.tar.bz2 uClibc-alpine-3d79ceea00dc1c81c1d41494335fa72e8e2cbbe1.tar.xz | |
Copy from trunk.
| -rw-r--r-- | libc/string/x86_64/Makefile.arch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/libc/string/x86_64/Makefile.arch b/libc/string/x86_64/Makefile.arch new file mode 100644 index 000000000..914eab55c --- /dev/null +++ b/libc/string/x86_64/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/x86_64 +STRING_ARCH_OUT:=$(top_builddir)libc/string/x86_64 + +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_x86_64_objclean + +string_x86_64_objclean: + $(RM) $(STRING_ARCH_OUT)/*.{o,os} |
