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