64bb883062
* Add new package haiku_loader.hpkg and move haiku_loader there. The package is built without compression, so that the stage 1 boot loader has a chance of loading it. * Adjust the stage 1 boot loader to load the haiku_loader package and relocate the boot loader code accordingly.
20 lines
389 B
Plaintext
20 lines
389 B
Plaintext
# The packages we build. Each is defined in its own file in the packages/
|
|
# subdirectory.
|
|
local packages =
|
|
Haiku
|
|
HaikuCrossDevel
|
|
HaikuDevel
|
|
HaikuLoader
|
|
HaikuUserguide
|
|
HaikuWelcome
|
|
MakefileEngine
|
|
;
|
|
|
|
packages = $(packages:G=package-rules) ;
|
|
SEARCH on $(packages) = [ FDirName $(HAIKU_BUILD_RULES_DIR) packages ] ;
|
|
|
|
local package ;
|
|
for package in $(packages) {
|
|
include $(package) ;
|
|
}
|