xref: /haiku/src/system/glue/arch/x86_64/Jamfile (revision 778611c7e6a61b8ba072212756ce53eda826360a)
1SubDir HAIKU_TOP src system glue arch x86_64 ;
2
3local architectureObject ;
4for architectureObject in [ MultiArchSubDirSetup x86_64 ] {
5	on $(architectureObject) {
6		UsePrivateSystemHeaders ;
7
8		local sources =
9			crti.S
10			crtn.S
11			;
12		Objects $(sources) ;
13
14		if $(HAIKU_BUILD_TYPE) = bootstrap {
15			# build a version for stage0 of the bootstrap process
16			BootstrapStage0PlatformObjects $(sources) : true ;
17		}
18	}
19}
20