xref: /haiku/src/system/glue/arch/m68k/Jamfile (revision 83b1a68c52ba3e0e8796282759f694b7fdddf06d)
1SubDir HAIKU_TOP src system glue arch m68k ;
2
3local architectureObject ;
4for architectureObject in [ MultiArchSubDirSetup m68k ] {
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