xref: /haiku/src/system/libroot/posix/arch/ppc/Jamfile (revision 21258e2674226d6aa732321b6f8494841895af5f)
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