2005-10-29 20:27:43 +04:00
|
|
|
SubDir HAIKU_TOP ;
|
2002-07-15 02:08:55 +04:00
|
|
|
|
2012-07-10 00:38:20 +04:00
|
|
|
# Prepare the optional build features before parsing the Jamfile tree.
|
2013-08-01 10:51:16 +04:00
|
|
|
local architectureObject ;
|
|
|
|
for architectureObject in [ MultiArchSubDirSetup ] {
|
|
|
|
on $(architectureObject) {
|
|
|
|
include [ FDirName $(HAIKU_BUILD_RULES_DIR) BuildFeatures ] ;
|
2014-07-31 20:05:36 +04:00
|
|
|
|
|
|
|
# Let the target platform depend on the external header directories such
|
|
|
|
# that those will be unpacked before anything is built for the target
|
|
|
|
# platform.
|
|
|
|
Depends $(TARGET_PLATFORM) : [
|
|
|
|
BuildFeatureAttribute gcc_syslibs_devel : c++-headers
|
|
|
|
] [
|
|
|
|
BuildFeatureAttribute gcc_syslibs_devel : gcc-headers
|
|
|
|
] ;
|
2013-08-01 10:51:16 +04:00
|
|
|
}
|
|
|
|
}
|
2012-07-10 00:38:20 +04:00
|
|
|
|
2014-03-20 22:34:42 +04:00
|
|
|
# Include required packages:
|
2014-03-16 04:00:28 +04:00
|
|
|
# primary architecture
|
2020-01-26 00:27:48 +03:00
|
|
|
AddHaikuImageSystemPackages [ FFilterByBuildFeatures
|
2021-12-07 22:26:24 +03:00
|
|
|
bash bc freetype libsolv zlib
|
2014-03-20 22:34:42 +04:00
|
|
|
|
2021-12-07 22:26:24 +03:00
|
|
|
!gcc2 @{ coreutils icu66 }@
|
|
|
|
gcc2 @{ coreutils_x86 icu icu66_x86@secondary_x86 }@
|
2014-03-20 22:34:42 +04:00
|
|
|
regular_image @{
|
2021-04-17 22:41:55 +03:00
|
|
|
bzip2 diffutils expat ffmpeg findutils glu gutenprint8 gzip
|
2020-04-20 00:50:43 +03:00
|
|
|
lame less libedit libicns
|
2021-04-17 22:41:55 +03:00
|
|
|
mawk mesa mesa_devel mesa_swpipe@!gcc2 mesa_swrast@gcc2
|
2020-04-20 00:50:43 +03:00
|
|
|
netcat
|
2014-11-13 00:59:26 +03:00
|
|
|
sed sharutils
|
2021-04-17 22:41:55 +03:00
|
|
|
tcpdump unzip wget which zip
|
|
|
|
|
|
|
|
!gcc2 @{ grep tar zstd }@
|
|
|
|
gcc2 @{ grep_x86@secondary_x86 tar_x86@secondary_x86 }@
|
2014-03-20 22:34:42 +04:00
|
|
|
}@
|
|
|
|
] ;
|
2018-07-01 21:25:10 +03:00
|
|
|
AddHaikuImageSourcePackages [ FFilterByBuildFeatures
|
2021-12-07 22:26:24 +03:00
|
|
|
bash bc
|
|
|
|
|
|
|
|
!gcc2 @{ coreutils }@
|
|
|
|
gcc2 @{ coreutils_x86 }@
|
2018-07-01 21:25:10 +03:00
|
|
|
|
|
|
|
regular_image @{
|
2021-04-17 22:41:55 +03:00
|
|
|
expat ffmpeg findutils grep gutenprint8 gzip
|
|
|
|
lame less libicns mawk
|
2018-07-01 21:25:10 +03:00
|
|
|
sed sharutils
|
|
|
|
tar wget which
|
|
|
|
}@
|
|
|
|
] ;
|
2014-08-01 01:38:22 +04:00
|
|
|
if $(HAIKU_PACKAGING_ARCHS[1]) != x86_gcc2 {
|
2020-01-26 00:27:48 +03:00
|
|
|
AddHaikuImageSystemPackages [ FFilterByBuildFeatures gcc_syslibs ] ;
|
2014-08-01 01:38:22 +04:00
|
|
|
}
|
2013-08-10 11:58:11 +04:00
|
|
|
|
2014-08-01 01:38:22 +04:00
|
|
|
if $(HAIKU_PACKAGING_ARCHS[2]) {
|
|
|
|
# secondary architectures
|
|
|
|
local architectureObject ;
|
|
|
|
for architectureObject
|
|
|
|
in [ MultiArchSubDirSetup $(HAIKU_PACKAGING_ARCHS[2-]) ] {
|
|
|
|
on $(architectureObject) {
|
2020-01-26 00:27:48 +03:00
|
|
|
AddHaikuImageSystemPackages [ FFilterByBuildFeatures
|
2021-04-17 22:41:55 +03:00
|
|
|
freetype icu libsolv zlib
|
2014-08-01 01:38:22 +04:00
|
|
|
|
|
|
|
regular_image @{
|
2020-07-16 17:29:19 +03:00
|
|
|
ffmpeg glu jasper jpeg libavif libicns libpng16 libwebp mesa
|
2014-08-01 01:38:22 +04:00
|
|
|
}@
|
|
|
|
] ;
|
|
|
|
if $(TARGET_PACKAGING_ARCH) != x86_gcc2 {
|
2020-01-26 00:27:48 +03:00
|
|
|
AddHaikuImageSystemPackages [ FFilterByBuildFeatures gcc_syslibs
|
2017-08-02 20:29:54 +03:00
|
|
|
mesa_swpipe ] ;
|
2014-08-01 01:38:22 +04:00
|
|
|
}
|
|
|
|
}
|
2013-08-10 11:58:11 +04:00
|
|
|
}
|
2013-07-07 15:45:38 +04:00
|
|
|
}
|
2010-03-12 21:07:19 +03:00
|
|
|
|
|
|
|
# If enabled, make sure that OpenSSL is added to the image.
|
2013-08-05 02:25:30 +04:00
|
|
|
if [ FIsBuildFeatureEnabled openssl ] {
|
2020-01-26 00:27:48 +03:00
|
|
|
AddHaikuImageSystemPackages openssl ;
|
2010-03-12 21:07:19 +03:00
|
|
|
}
|
2010-03-12 21:03:57 +03:00
|
|
|
|
2013-08-17 11:20:35 +04:00
|
|
|
# add additionally requested packages
|
2020-01-26 00:27:48 +03:00
|
|
|
AddHaikuImageSystemPackages $(HAIKU_IMAGE_ADDITIONAL_PACKAGES) ;
|
2013-08-17 11:20:35 +04:00
|
|
|
|
2007-03-04 08:09:59 +03:00
|
|
|
# Optionally we allow not to include the "src" subdirectory.
|
|
|
|
if $(HAIKU_DONT_INCLUDE_SRC) {
|
|
|
|
# Don't include "src", but at least include the stuff needed for the
|
|
|
|
# build.
|
|
|
|
SubInclude HAIKU_TOP src build ;
|
|
|
|
SubInclude HAIKU_TOP src tools ;
|
|
|
|
} else {
|
|
|
|
SubInclude HAIKU_TOP src ;
|
|
|
|
}
|
2008-01-11 21:14:51 +03:00
|
|
|
if $(HAIKU_INCLUDE_3RDPARTY) {
|
|
|
|
SubInclude HAIKU_TOP 3rdparty ;
|
|
|
|
}
|
2007-03-04 08:09:59 +03:00
|
|
|
|
2008-03-30 19:34:30 +04:00
|
|
|
# Perform deferred SubIncludes.
|
|
|
|
ExecuteDeferredSubIncludes ;
|
|
|
|
|
2007-07-27 03:09:18 +04:00
|
|
|
# reset subdir
|
|
|
|
SubDir HAIKU_TOP ;
|
|
|
|
|
2008-12-06 21:42:33 +03:00
|
|
|
# Execute post-build-target user config rules.
|
|
|
|
UserBuildConfigRulePostBuildTargets ;
|
|
|
|
|
2014-01-19 03:48:51 +04:00
|
|
|
# specify the Haiku repository contents
|
|
|
|
include [ FDirName $(HAIKU_BUILD_RULES_DIR) repositories Haiku ] ;
|
|
|
|
|
2014-03-17 00:17:22 +04:00
|
|
|
# specify the actual Haiku image contents
|
|
|
|
include [ FDirName $(HAIKU_BUILD_RULES_DIR) images HaikuImage ] ;
|
|
|
|
|
|
|
|
# specify the additional image contents one for each boot type
|
2013-07-07 12:44:43 +04:00
|
|
|
include [ FDirName $(HAIKU_BUILD_RULES_DIR) images NetBootArchive ] ;
|
|
|
|
include [ FDirName $(HAIKU_BUILD_RULES_DIR) images FloppyBootImage ] ;
|
|
|
|
include [ FDirName $(HAIKU_BUILD_RULES_DIR) images CDBootImage ] ;
|
|
|
|
include [ FDirName $(HAIKU_BUILD_RULES_DIR) images HaikuCD ] ;
|
|
|
|
include [ FDirName $(HAIKU_BUILD_RULES_DIR) images AnybootImage ] ;
|
2018-10-18 18:07:12 +03:00
|
|
|
include [ FDirName $(HAIKU_BUILD_RULES_DIR) images MMCImage ] ;
|
2009-02-24 01:33:09 +03:00
|
|
|
|
|
|
|
# Check whether all requested optional packages do actually exist.
|
|
|
|
local package ;
|
|
|
|
local packageError ;
|
|
|
|
for package in $(HAIKU_ADDED_OPTIONAL_PACKAGES) {
|
|
|
|
if ! [ on $(package) return $(HAIKU_OPTIONAL_PACKAGE_EXISTS) ] {
|
|
|
|
Echo "ERROR: Requested optional package \"$(package)\" does not"
|
|
|
|
"exist." ;
|
|
|
|
packageError = 1 ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if $(packageError) {
|
|
|
|
Exit ;
|
|
|
|
}
|
2010-10-24 00:26:08 +04:00
|
|
|
|
|
|
|
# Pseudo-target to build all targets that are localized.
|
2010-10-24 07:31:34 +04:00
|
|
|
NotFile LocalizedTargets ;
|
|
|
|
Depends LocalizedTargets : $(HAIKU_LOCALIZED_TARGETS) ;
|
2010-10-24 20:55:33 +04:00
|
|
|
|
|
|
|
NotFile catalogs ;
|
|
|
|
Depends catalogs : $(HAIKU_LOCALE_CATALOGS) ;
|
|
|
|
|
|
|
|
NotFile catkeys ;
|
|
|
|
Depends catkeys : $(HAIKU_LOCALE_OUTPUT_CATKEYS) ;
|