1SubDir HAIKU_TOP src system libroot os arch x86_64 ; 2 3local architectureObject ; 4for architectureObject in [ MultiArchSubDirSetup x86_64 ] { 5 on $(architectureObject) { 6 local architecture = $(TARGET_PACKAGING_ARCH) ; 7 8 UsePrivateKernelHeaders ; 9 # TODO: Replace by "UsePrivateHeaders libroot" after resolving the 10 # TODO in time.c! 11 UsePrivateSystemHeaders ; 12 13 MergeObject <$(architecture)>os_arch_$(TARGET_ARCH).o : 14 atomic.S 15 byteorder.S 16 get_stack_frame.S 17 system_info.cpp 18 system_time_asm.S 19 thread.cpp 20 time.cpp 21 tls.cpp 22 ; 23 } 24} 25