From fe3763173cef2fba2881f61ef72b865ff85b8f59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Sundstr=C3=B6m?= Date: Tue, 18 Aug 2009 15:34:23 +0000 Subject: [PATCH] Add jamfile to build generic memcpy and memset for arch mipsel. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32497 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/libroot/posix/string/arch/mipsel/Jamfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/system/libroot/posix/string/arch/mipsel/Jamfile diff --git a/src/system/libroot/posix/string/arch/mipsel/Jamfile b/src/system/libroot/posix/string/arch/mipsel/Jamfile new file mode 100644 index 0000000000..275150660a --- /dev/null +++ b/src/system/libroot/posix/string/arch/mipsel/Jamfile @@ -0,0 +1,10 @@ +SubDir HAIKU_TOP src system libroot posix string arch mipsel ; + +UsePrivateSystemHeaders ; + +SEARCH_SOURCE += [ FDirName $(SUBDIR) $(DOTDOT) generic ] ; + +MergeObject posix_string_arch_$(TARGET_ARCH).o : + memcpy.c + memset.c +;