78f4c163d4
Copy: * packages: Haiku -> HaikuBootstrap * images: HaikuImage -> HaikuImageBootstrap ... and remove some unncessary content. Setting the jam variable HAIKU_BOOTSTRAP_BUILD enables using the bootstrap files.
26 lines
477 B
Plaintext
26 lines
477 B
Plaintext
# The packages we build. Each is defined in its own file in the packages/
|
|
# subdirectory.
|
|
local packages =
|
|
HaikuCrossDevel
|
|
HaikuDevel
|
|
HaikuLoader
|
|
HaikuUserguide
|
|
HaikuWelcome
|
|
MakefileEngine
|
|
;
|
|
|
|
if $(HAIKU_BOOTSTRAP_BUILD) {
|
|
packages += HaikuBootstrap ;
|
|
} else {
|
|
packages += Haiku ;
|
|
}
|
|
|
|
|
|
packages = $(packages:G=package-rules) ;
|
|
SEARCH on $(packages) = [ FDirName $(HAIKU_BUILD_RULES_DIR) packages ] ;
|
|
|
|
local package ;
|
|
for package in $(packages) {
|
|
include $(package) ;
|
|
}
|