1SubDir HAIKU_TOP src system glue arch x86 ; 2 3local architectureObject ; 4for architectureObject in [ MultiArchSubDirSetup x86 x86_gcc2 ] { 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