2005-10-29 20:27:43 +04:00
|
|
|
SubDir HAIKU_TOP ;
|
2002-07-15 02:08:55 +04:00
|
|
|
|
2005-05-15 05:44:35 +04:00
|
|
|
NotFile doc_files ;
|
|
|
|
Depends files : doc_files ;
|
|
|
|
|
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
|
2014-05-01 14:50:11 +04:00
|
|
|
AddHaikuImagePackages [ FFilterByBuildFeatures
|
2015-02-05 20:47:47 +03:00
|
|
|
bash coreutils curl freetype icu libsolv zlib
|
2014-03-20 22:34:42 +04:00
|
|
|
|
|
|
|
regular_image @{
|
2015-08-01 15:04:10 +03:00
|
|
|
bzip2 ctags diffutils expat ffmpeg findutils gawk glu grep gutenprint
|
|
|
|
gzip jasper jpeg
|
2015-05-01 12:55:23 +03:00
|
|
|
less libicns libpcap libpng libpng16 libwebp
|
|
|
|
mesa mesa_devel mesa_swrast
|
2015-03-04 00:43:01 +03:00
|
|
|
netcat
|
2014-11-13 00:59:26 +03:00
|
|
|
sed sharutils
|
2015-05-01 12:55:23 +03:00
|
|
|
tar tcpdump tiff unzip wget which zip
|
2014-03-20 22:34:42 +04:00
|
|
|
}@
|
|
|
|
] ;
|
2014-08-01 01:38:22 +04:00
|
|
|
if $(HAIKU_PACKAGING_ARCHS[1]) != x86_gcc2 {
|
|
|
|
AddHaikuImagePackages [ FFilterByBuildFeatures gcc_syslibs ] ;
|
|
|
|
}
|
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) {
|
|
|
|
AddHaikuImagePackages [ FFilterByBuildFeatures
|
|
|
|
curl freetype icu libsolv zlib
|
|
|
|
|
|
|
|
regular_image @{
|
2014-08-26 22:39:10 +04:00
|
|
|
ffmpeg glu jasper jpeg libicns libpng libwebp mesa
|
2014-08-01 01:38:22 +04:00
|
|
|
}@
|
|
|
|
] ;
|
|
|
|
if $(TARGET_PACKAGING_ARCH) != x86_gcc2 {
|
|
|
|
AddHaikuImagePackages [ FFilterByBuildFeatures gcc_syslibs ] ;
|
|
|
|
}
|
|
|
|
}
|
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 ] {
|
2013-07-05 12:51:42 +04:00
|
|
|
AddHaikuImagePackages 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
|
|
|
|
AddHaikuImagePackages $(HAIKU_IMAGE_ADDITIONAL_PACKAGES) ;
|
|
|
|
|
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 CDBootPPCImage ] ;
|
|
|
|
include [ FDirName $(HAIKU_BUILD_RULES_DIR) images HaikuCD ] ;
|
|
|
|
include [ FDirName $(HAIKU_BUILD_RULES_DIR) images AnybootImage ] ;
|
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) ;
|