xref: /haiku/src/system/libroot/posix/string/arch/riscv64/Jamfile (revision 21258e2674226d6aa732321b6f8494841895af5f)
1SubDir HAIKU_TOP src system libroot posix string arch riscv64 ;
2
3local architectureObject ;
4for architectureObject in [ MultiArchSubDirSetup riscv64 ] {
5	on $(architectureObject) {
6		local architecture = $(TARGET_PACKAGING_ARCH) ;
7
8		UsePrivateSystemHeaders ;
9
10		SEARCH_SOURCE += [ FDirName $(SUBDIR) $(DOTDOT) generic ] ;
11
12		MergeObject <$(architecture)>posix_string_arch_$(TARGET_ARCH).o :
13			memcpy.c
14			memset.c
15			;
16	}
17}
18