xref: /haiku/src/system/glue/Jamfile (revision 87e8603d9f4cecce2250564deb85bc2ef5c23bfa)
1SubDir HAIKU_TOP src system glue ;
2
3local architectureObject ;
4for architectureObject in [ MultiArchSubDirSetup ] {
5	on $(architectureObject) {
6		UsePrivateSystemHeaders ;
7
8		local sources =
9			init_term_dyn.c
10			start_dyn.c
11			haiku_version_glue.c
12			;
13		Objects $(sources) ;
14
15		if $(HAIKU_BUILD_TYPE) = bootstrap {
16			# build a version for stage0 of the bootstrap process
17			BootstrapStage0PlatformObjects $(sources) : true ;
18		}
19	}
20}
21
22
23local arch ;
24for arch in $(TARGET_ARCHS) {
25	SubInclude HAIKU_TOP src system glue arch $(arch) ;
26}
27