xref: /haiku/Jamfile (revision 242c022af85a97c742a67a30d49bf7bfc5a9ec3b)
1338b8dc3SIngo WeinholdSubDir HAIKU_TOP ;
269b97469SIngo Weinhold
3f35b607dSJérôme DuvalNotFile doc_files ;
4f35b607dSJérôme DuvalDepends files : doc_files ;
5f35b607dSJérôme Duval
6f4eb5cf7SMatt Madia# Prepare the optional build features before parsing the Jamfile tree.
7b0944c78SIngo Weinholdlocal architectureObject ;
8b0944c78SIngo Weinholdfor architectureObject in [ MultiArchSubDirSetup ] {
9b0944c78SIngo Weinhold	on $(architectureObject) {
10f0cacbb3SIngo Weinhold		include [ FDirName $(HAIKU_BUILD_RULES_DIR) BuildFeatures ] ;
11afde4473SOliver Tappe
12afde4473SOliver Tappe		# Let the target platform depend on the external header directories such
13afde4473SOliver Tappe		# that those will be unpacked before anything is built for the target
14afde4473SOliver Tappe		# platform.
15afde4473SOliver Tappe		Depends $(TARGET_PLATFORM) : [
16afde4473SOliver Tappe			BuildFeatureAttribute gcc_syslibs_devel : c++-headers
17afde4473SOliver Tappe		] [
18afde4473SOliver Tappe			BuildFeatureAttribute gcc_syslibs_devel : gcc-headers
19afde4473SOliver Tappe		] ;
20b0944c78SIngo Weinhold	}
21b0944c78SIngo Weinhold}
22f4eb5cf7SMatt Madia
236d8c8a9dSOliver Tappe# Include required packages:
2472e67791SOliver Tappe# primary architecture
256d8c8a9dSOliver TappeAddHaikuImagePackages [ FFilterByBuildFeatures
26d02e38fbSJérôme Duval	bash curl freetype icu libsolv zlib
276d8c8a9dSOliver Tappe
286d8c8a9dSOliver Tappe	regular_image @{
29b2d0f2e7SJérôme Duval		bzip2 ctags ffmpeg findutils gawk glu grep gutenprint jasper jpeg
30*242c022aSJérôme Duval		less libicns libpng libpng16 libwebp mesa mesa_devel mesa_swrast
31*242c022aSJérôme Duval		sed sharutils
328b21b2b9SJérôme Duval		tar tiff wget which
336d8c8a9dSOliver Tappe	}@
346d8c8a9dSOliver Tappe] ;
35220d0402SOliver Tappeif $(HAIKU_PACKAGING_ARCHS[1]) != x86_gcc2 {
36220d0402SOliver Tappe	AddHaikuImagePackages [ FFilterByBuildFeatures gcc_syslibs ] ;
37220d0402SOliver Tappe}
38220d0402SOliver Tappe
39220d0402SOliver Tappeif $(HAIKU_PACKAGING_ARCHS[2]) {
40271e9484SIngo Weinhold	# secondary architectures
41271e9484SIngo Weinhold	local architectureObject ;
42271e9484SIngo Weinhold	for architectureObject
43271e9484SIngo Weinhold			in [ MultiArchSubDirSetup $(HAIKU_PACKAGING_ARCHS[2-]) ] {
44271e9484SIngo Weinhold		on $(architectureObject) {
456d8c8a9dSOliver Tappe			AddHaikuImagePackages [ FFilterByBuildFeatures
466d8c8a9dSOliver Tappe				curl freetype icu libsolv zlib
476d8c8a9dSOliver Tappe
486d8c8a9dSOliver Tappe				regular_image @{
4982e60cd5SJérôme Duval					ffmpeg glu jasper jpeg libicns libpng libwebp mesa
506d8c8a9dSOliver Tappe				}@
516d8c8a9dSOliver Tappe			] ;
52220d0402SOliver Tappe			if $(TARGET_PACKAGING_ARCH) != x86_gcc2 {
53220d0402SOliver Tappe				AddHaikuImagePackages [ FFilterByBuildFeatures gcc_syslibs ] ;
54220d0402SOliver Tappe			}
55220d0402SOliver Tappe		}
56271e9484SIngo Weinhold	}
5778f4c163SIngo Weinhold}
58429618d2SMatt Madia
59429618d2SMatt Madia# If enabled, make sure that OpenSSL is added to the image.
6057190167SIngo Weinholdif [ FIsBuildFeatureEnabled openssl ] {
6198c6dfa4SIngo Weinhold	AddHaikuImagePackages openssl ;
62429618d2SMatt Madia}
63a5c31cbbSMatt Madia
6424796718SIngo Weinhold# add additionally requested packages
6524796718SIngo WeinholdAddHaikuImagePackages $(HAIKU_IMAGE_ADDITIONAL_PACKAGES) ;
6624796718SIngo Weinhold
6748d60fa6SIngo Weinhold# Optionally we allow not to include the "src" subdirectory.
6848d60fa6SIngo Weinholdif $(HAIKU_DONT_INCLUDE_SRC) {
6948d60fa6SIngo Weinhold	# Don't include "src", but at least include the stuff needed for the
7048d60fa6SIngo Weinhold	# build.
7148d60fa6SIngo Weinhold	SubInclude HAIKU_TOP src build ;
7248d60fa6SIngo Weinhold	SubInclude HAIKU_TOP src tools ;
7348d60fa6SIngo Weinhold} else {
74338b8dc3SIngo Weinhold	SubInclude HAIKU_TOP src ;
7548d60fa6SIngo Weinhold}
76a7ec9c1dSFrançois Revolif $(HAIKU_INCLUDE_3RDPARTY) {
77a7ec9c1dSFrançois Revol	SubInclude HAIKU_TOP 3rdparty ;
78a7ec9c1dSFrançois Revol}
7948d60fa6SIngo Weinhold
80be8a6e43SIngo Weinhold# Perform deferred SubIncludes.
81be8a6e43SIngo WeinholdExecuteDeferredSubIncludes ;
82be8a6e43SIngo Weinhold
83689e6794SIngo Weinhold# reset subdir
84689e6794SIngo WeinholdSubDir HAIKU_TOP ;
85ad27081fSIngo Weinhold
86ad27081fSIngo Weinhold# Execute post-build-target user config rules.
87ad27081fSIngo WeinholdUserBuildConfigRulePostBuildTargets	;
88689e6794SIngo Weinhold
89be5e6fefSIngo Weinhold# specify the Haiku repository contents
90be5e6fefSIngo Weinholdinclude [ FDirName $(HAIKU_BUILD_RULES_DIR) repositories Haiku ] ;
91be5e6fefSIngo Weinhold
92ff35d6c1SOliver Tappe# specify the actual Haiku image contents
93e8c5236aSIngo Weinholdinclude [ FDirName $(HAIKU_BUILD_RULES_DIR) images HaikuImage ] ;
94ff35d6c1SOliver Tappe
95ff35d6c1SOliver Tappe# specify the additional image contents one for each boot type
96e8c5236aSIngo Weinholdinclude [ FDirName $(HAIKU_BUILD_RULES_DIR) images NetBootArchive ] ;
97e8c5236aSIngo Weinholdinclude [ FDirName $(HAIKU_BUILD_RULES_DIR) images FloppyBootImage ] ;
98e8c5236aSIngo Weinholdinclude [ FDirName $(HAIKU_BUILD_RULES_DIR) images CDBootImage ] ;
99e8c5236aSIngo Weinholdinclude [ FDirName $(HAIKU_BUILD_RULES_DIR) images CDBootPPCImage ] ;
100e8c5236aSIngo Weinholdinclude [ FDirName $(HAIKU_BUILD_RULES_DIR) images HaikuCD ] ;
101e8c5236aSIngo Weinholdinclude [ FDirName $(HAIKU_BUILD_RULES_DIR) images AnybootImage ] ;
10237aefc9cSIngo Weinhold
10337aefc9cSIngo Weinhold# Check whether all requested optional packages do actually exist.
10437aefc9cSIngo Weinholdlocal package ;
10537aefc9cSIngo Weinholdlocal packageError ;
10637aefc9cSIngo Weinholdfor package in $(HAIKU_ADDED_OPTIONAL_PACKAGES) {
10737aefc9cSIngo Weinhold	if ! [ on $(package) return $(HAIKU_OPTIONAL_PACKAGE_EXISTS) ] {
10837aefc9cSIngo Weinhold		Echo "ERROR: Requested optional package \"$(package)\" does not"
10937aefc9cSIngo Weinhold			"exist." ;
11037aefc9cSIngo Weinhold		packageError = 1 ;
11137aefc9cSIngo Weinhold	}
11237aefc9cSIngo Weinhold}
11337aefc9cSIngo Weinholdif $(packageError) {
11437aefc9cSIngo Weinhold	Exit ;
11537aefc9cSIngo Weinhold}
11680ad173eSMatt Madia
11780ad173eSMatt Madia# Pseudo-target to build all targets that are localized.
118a8fcb885SMatt MadiaNotFile LocalizedTargets ;
119a8fcb885SMatt MadiaDepends LocalizedTargets : $(HAIKU_LOCALIZED_TARGETS) ;
1209de5b022SMatt Madia
1219de5b022SMatt MadiaNotFile catalogs ;
1229de5b022SMatt MadiaDepends catalogs : $(HAIKU_LOCALE_CATALOGS) ;
1239de5b022SMatt Madia
1249de5b022SMatt MadiaNotFile catkeys ;
1259de5b022SMatt MadiaDepends catkeys : $(HAIKU_LOCALE_OUTPUT_CATKEYS) ;
126