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