xref: /haiku/src/system/boot/platform/generic/Jamfile (revision 1e60bdeab63fa7a57bc9a55b032052e95a18bd2c)
1SubDir HAIKU_TOP src system boot platform generic ;
2
3UseBuildFeatureHeaders zlib ;
4UsePrivateKernelHeaders ;
5
6SubDirC++Flags -D_BOOT_MODE -fno-rtti ;
7
8local platform ;
9for platform in [ MultiBootSubDirSetup ] {
10	on $(platform) {
11		BootStaticLibrary boot_platform_generic_$(platform:G=) :
12			text_menu.cpp
13			video_blit.cpp
14			video_splash.cpp
15		;
16
17		Includes [ FGristFiles video_splash.cpp ]
18			: [ BuildFeatureAttribute zlib : headers ] ;
19	}
20}