xref: /haiku/src/system/glue/Jamfile (revision 220d04022750f40f8bac8f01fa551211e28d04f2)
1SubDir HAIKU_TOP src system glue ;
2
3local architectureObject ;
4for architectureObject in [ MultiArchSubDirSetup ] {
5	on $(architectureObject) {
6		UsePrivateSystemHeaders ;
7
8		Objects
9			init_term_dyn.c
10			start_dyn.c
11			haiku_version_glue.c
12			;
13	}
14}
15
16local arch ;
17for arch in $(TARGET_ARCHS) {
18	SubInclude HAIKU_TOP src system glue arch $(arch) ;
19}
20