1SubDir HAIKU_TOP src system libroot posix arch sparc ; 2 3local architectureObject ; 4for architectureObject in [ MultiArchSubDirSetup sparc ] { 5 on $(architectureObject) { 6 local architecture = $(TARGET_PACKAGING_ARCH) ; 7 8 UsePrivateSystemHeaders ; 9 10 local genericSources = 11 setjmp_save_sigs.c 12 longjmp_return.c 13 ; 14 15 MergeObject <$(architecture)>posix_arch_$(TARGET_ARCH).o : 16 sigsetjmp.S 17 siglongjmp.S 18 19 $(genericSources) 20 ; 21 22 SEARCH on [ FGristFiles $(genericSources) ] 23 = [ FDirName $(SUBDIR) $(DOTDOT) generic ] ; 24 } 25} 26 27