xref: /haiku/src/system/libroot/posix/string/arch/arm64/Jamfile (revision 1aa97652e09a9df14ca7f63b32c29514282aaa69)
1SubDir HAIKU_TOP src system libroot posix string arch arm64 ;
2
3local architectureObject ;
4for architectureObject in [ MultiArchSubDirSetup arm64 ] {
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			arch_string.S
14			memcpy.c
15			memset.c
16			;
17	}
18}
19