btrfs: Attempt to fix GCC2 build.
[haiku.git] / src / system / glue / Jamfile
blob82417d035e16262f2e74e5c291b3b48645671e86
1 SubDir HAIKU_TOP src system glue ;
3 local architectureObject ;
4 for architectureObject in [ MultiArchSubDirSetup ] {
5         on $(architectureObject) {
6                 UsePrivateSystemHeaders ;
8                 local sources =
9                         init_term_dyn.c
10                         start_dyn.c
11                         haiku_version_glue.c
12                         ;
13                 Objects $(sources) ;
15                 if $(HAIKU_BUILD_TYPE) = bootstrap {
16                         # build a version for stage0 of the bootstrap process
17                         BootstrapStage0PlatformObjects $(sources) : true ;
18                 }
19         }
23 local arch ;
24 for arch in $(TARGET_ARCHS) {
25         SubInclude HAIKU_TOP src system glue arch $(arch) ;