1SubDir HAIKU_TOP src system libroot os arch arm64 ; 2 3SubDirC++Flags -std=gnu++11 ; 4 5local architectureObject ; 6for architectureObject in [ MultiArchSubDirSetup arm64 ] { 7 on $(architectureObject) { 8 local architecture = $(TARGET_PACKAGING_ARCH) ; 9 10 UsePrivateKernelHeaders ; 11 UsePrivateSystemHeaders ; 12 13 SEARCH_SOURCE += [ FDirName $(SUBDIR) $(DOTDOT) generic ] ; 14 15 MergeObject <$(architecture)>os_arch_$(TARGET_ARCH).o : 16 byteorder.S 17 get_stack_frame.S 18 system_time.c 19 thread.c 20 time.c 21 tls.c 22 23 generic_atomic.cpp 24 generic_stack_trace.cpp 25 generic_system_time_nsecs.cpp 26 ; 27 } 28} 29