xref: /haiku/Jamfile (revision f19ef17518b79b15b123975b6d642186479b2a0e)
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
26950ee984SJérôme Duval	bash coreutils 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
30242c022aSJérôme Duval		less libicns libpng libpng16 libwebp mesa mesa_devel mesa_swrast
31*f19ef175SJérôme Duval		netcat
32242c022aSJérôme Duval		sed sharutils
3322d29642SJérôme Duval		tar tiff unzip wget which zip
346d8c8a9dSOliver Tappe	}@
356d8c8a9dSOliver Tappe] ;
36220d0402SOliver Tappeif $(HAIKU_PACKAGING_ARCHS[1]) != x86_gcc2 {
37220d0402SOliver Tappe	AddHaikuImagePackages [ FFilterByBuildFeatures gcc_syslibs ] ;
38220d0402SOliver Tappe}
39220d0402SOliver Tappe
40220d0402SOliver Tappeif $(HAIKU_PACKAGING_ARCHS[2]) {
41271e9484SIngo Weinhold	# secondary architectures
42271e9484SIngo Weinhold	local architectureObject ;
43271e9484SIngo Weinhold	for architectureObject
44271e9484SIngo Weinhold			in [ MultiArchSubDirSetup $(HAIKU_PACKAGING_ARCHS[2-]) ] {
45271e9484SIngo Weinhold		on $(architectureObject) {
466d8c8a9dSOliver Tappe			AddHaikuImagePackages [ FFilterByBuildFeatures
476d8c8a9dSOliver Tappe				curl freetype icu libsolv zlib
486d8c8a9dSOliver Tappe
496d8c8a9dSOliver Tappe				regular_image @{
5082e60cd5SJérôme Duval					ffmpeg glu jasper jpeg libicns libpng libwebp mesa
516d8c8a9dSOliver Tappe				}@
526d8c8a9dSOliver Tappe			] ;
53220d0402SOliver Tappe			if $(TARGET_PACKAGING_ARCH) != x86_gcc2 {
54220d0402SOliver Tappe				AddHaikuImagePackages [ FFilterByBuildFeatures gcc_syslibs ] ;
55220d0402SOliver Tappe			}
56220d0402SOliver Tappe		}
57271e9484SIngo Weinhold	}
5878f4c163SIngo Weinhold}
59429618d2SMatt Madia
60429618d2SMatt Madia# If enabled, make sure that OpenSSL is added to the image.
6157190167SIngo Weinholdif [ FIsBuildFeatureEnabled openssl ] {
6298c6dfa4SIngo Weinhold	AddHaikuImagePackages openssl ;
63429618d2SMatt Madia}
64a5c31cbbSMatt Madia
6524796718SIngo Weinhold# add additionally requested packages
6624796718SIngo WeinholdAddHaikuImagePackages $(HAIKU_IMAGE_ADDITIONAL_PACKAGES) ;
6724796718SIngo Weinhold
6848d60fa6SIngo Weinhold# Optionally we allow not to include the "src" subdirectory.
6948d60fa6SIngo Weinholdif $(HAIKU_DONT_INCLUDE_SRC) {
7048d60fa6SIngo Weinhold	# Don't include "src", but at least include the stuff needed for the
7148d60fa6SIngo Weinhold	# build.
7248d60fa6SIngo Weinhold	SubInclude HAIKU_TOP src build ;
7348d60fa6SIngo Weinhold	SubInclude HAIKU_TOP src tools ;
7448d60fa6SIngo Weinhold} else {
75338b8dc3SIngo Weinhold	SubInclude HAIKU_TOP src ;
7648d60fa6SIngo Weinhold}
77a7ec9c1dSFrançois Revolif $(HAIKU_INCLUDE_3RDPARTY) {
78a7ec9c1dSFrançois Revol	SubInclude HAIKU_TOP 3rdparty ;
79a7ec9c1dSFrançois Revol}
8048d60fa6SIngo Weinhold
81be8a6e43SIngo Weinhold# Perform deferred SubIncludes.
82be8a6e43SIngo WeinholdExecuteDeferredSubIncludes ;
83be8a6e43SIngo Weinhold
84689e6794SIngo Weinhold# reset subdir
85689e6794SIngo WeinholdSubDir HAIKU_TOP ;
86ad27081fSIngo Weinhold
87ad27081fSIngo Weinhold# Execute post-build-target user config rules.
88ad27081fSIngo WeinholdUserBuildConfigRulePostBuildTargets	;
89689e6794SIngo Weinhold
90be5e6fefSIngo Weinhold# specify the Haiku repository contents
91be5e6fefSIngo Weinholdinclude [ FDirName $(HAIKU_BUILD_RULES_DIR) repositories Haiku ] ;
92be5e6fefSIngo Weinhold
93ff35d6c1SOliver Tappe# specify the actual Haiku image contents
94e8c5236aSIngo Weinholdinclude [ FDirName $(HAIKU_BUILD_RULES_DIR) images HaikuImage ] ;
95ff35d6c1SOliver Tappe
96ff35d6c1SOliver Tappe# specify the additional image contents one for each boot type
97e8c5236aSIngo Weinholdinclude [ FDirName $(HAIKU_BUILD_RULES_DIR) images NetBootArchive ] ;
98e8c5236aSIngo Weinholdinclude [ FDirName $(HAIKU_BUILD_RULES_DIR) images FloppyBootImage ] ;
99e8c5236aSIngo Weinholdinclude [ FDirName $(HAIKU_BUILD_RULES_DIR) images CDBootImage ] ;
100e8c5236aSIngo Weinholdinclude [ FDirName $(HAIKU_BUILD_RULES_DIR) images CDBootPPCImage ] ;
101e8c5236aSIngo Weinholdinclude [ FDirName $(HAIKU_BUILD_RULES_DIR) images HaikuCD ] ;
102e8c5236aSIngo Weinholdinclude [ FDirName $(HAIKU_BUILD_RULES_DIR) images AnybootImage ] ;
10337aefc9cSIngo Weinhold
10437aefc9cSIngo Weinhold# Check whether all requested optional packages do actually exist.
10537aefc9cSIngo Weinholdlocal package ;
10637aefc9cSIngo Weinholdlocal packageError ;
10737aefc9cSIngo Weinholdfor package in $(HAIKU_ADDED_OPTIONAL_PACKAGES) {
10837aefc9cSIngo Weinhold	if ! [ on $(package) return $(HAIKU_OPTIONAL_PACKAGE_EXISTS) ] {
10937aefc9cSIngo Weinhold		Echo "ERROR: Requested optional package \"$(package)\" does not"
11037aefc9cSIngo Weinhold			"exist." ;
11137aefc9cSIngo Weinhold		packageError = 1 ;
11237aefc9cSIngo Weinhold	}
11337aefc9cSIngo Weinhold}
11437aefc9cSIngo Weinholdif $(packageError) {
11537aefc9cSIngo Weinhold	Exit ;
11637aefc9cSIngo Weinhold}
11780ad173eSMatt Madia
11880ad173eSMatt Madia# Pseudo-target to build all targets that are localized.
119a8fcb885SMatt MadiaNotFile LocalizedTargets ;
120a8fcb885SMatt MadiaDepends LocalizedTargets : $(HAIKU_LOCALIZED_TARGETS) ;
1219de5b022SMatt Madia
1229de5b022SMatt MadiaNotFile catalogs ;
1239de5b022SMatt MadiaDepends catalogs : $(HAIKU_LOCALE_CATALOGS) ;
1249de5b022SMatt Madia
1259de5b022SMatt MadiaNotFile catkeys ;
1269de5b022SMatt MadiaDepends catkeys : $(HAIKU_LOCALE_OUTPUT_CATKEYS) ;
127