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