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