diff --git a/src/bin/makebootable/platform/openfirmware/Jamfile b/src/bin/makebootable/platform/openfirmware/Jamfile new file mode 100644 index 0000000000..5e9bd7f18f --- /dev/null +++ b/src/bin/makebootable/platform/openfirmware/Jamfile @@ -0,0 +1,3 @@ +SubDir HAIKU_TOP src bin makebootable platform openfirmware ; + +BinCommand makebootable : makebootable.cpp ; diff --git a/src/bin/makebootable/platform/openfirmware/makebootable.cpp b/src/bin/makebootable/platform/openfirmware/makebootable.cpp new file mode 100644 index 0000000000..8d3ab2762f --- /dev/null +++ b/src/bin/makebootable/platform/openfirmware/makebootable.cpp @@ -0,0 +1,6 @@ +int +main() +{ + return 0; +} + diff --git a/src/tools/makebootable/platform/openfirmware/Jamfile b/src/tools/makebootable/platform/openfirmware/Jamfile new file mode 100644 index 0000000000..b6e04f3f46 --- /dev/null +++ b/src/tools/makebootable/platform/openfirmware/Jamfile @@ -0,0 +1,12 @@ +SubDir HAIKU_TOP src tools makebootable platform openfirmware ; + +SEARCH_SOURCE += [ FDirName $(HAIKU_TOP) src bin makebootable platform + openfirmware ] ; + +#USES_BE_API on makebootable = true ; + +# write the stage 1 boot loader into the makebootable resources +#AddFileDataResource makebootable : RAWT:666:BootCode : stage1.bin ; + +#BuildPlatformMain makebootable : makebootable.cpp : $(HOST_LIBBE) ; +BuildPlatformMain makebootable : makebootable.cpp ;