mirror of
https://gitlab.com/Nanolx/homebrewfilter.git
synced 2024-11-01 15:15:09 +01:00
15 lines
488 B
Makefile
15 lines
488 B
Makefile
all: compile_installer
|
|
|
|
compile_hbf:
|
|
@make -C main
|
|
@cp main/hbf.dol boot/source/hbf.dol
|
|
|
|
compile_boot: compile_hbf
|
|
@make -C boot
|
|
@cp boot/hbf_boot.dol installer/wad/00000001.app
|
|
|
|
compile_installer: compile_boot
|
|
@tools/WadMii.exe -input "Z:$(PWD)\installer\wad" -output "Z:$(PWD)\installer\data\install.wad" || wine tools/WadMii.exe -input "Z:$(PWD)\installer\wad" -output "Z:$(PWD)\installer\data\install.wad"
|
|
@make -C installer
|
|
@cp installer/installer.dol HomebrewFilter/boot.dol
|