homebrewfilter/Makefile

63 lines
2.0 KiB
Makefile
Raw Normal View History

all:
@echo either use "make compile_installer" or "make compile_installer_vwii"
2012-04-17 23:11:54 +02:00
2012-12-16 18:17:17 +01:00
REV=$(shell grep define svnrev/svnrev.c | gawk '{print $$3}')
dist: compile_installer
@tar cfj HomebrewFilter-rev$(REV).tar.bz2 HomebrewFilter/
2012-12-16 18:20:23 +01:00
@tar cfj HomebrewFilter-Standalone-rev$(REV).tar.bz2 HomebrewFilter.Standalone/
2012-12-16 18:17:17 +01:00
dist_vwii: compile_installer_vwii
@tar cfj HomebrewFilter-vWii-rev$(REV).tar.bz2 HomebrewFilter.vWii/
clean:
@make -C main clean
@make -C boot clean
@make -C installer clean
@make -C nand-loader clean
@make -C libruntimeiospatch clean
clean_vwii:
2012-12-31 18:42:23 +01:00
@make -C main -f Makefile.vWii clean
@make -C boot clean
@make -C installer clean
nand_loader:
@make -C nand-loader
libruntimeiospatch:
@make -C libruntimeiospatch
compile_hbf: clean
@echo "==========================="
@echo "======= HBF for Wii ======="
@echo "==========================="
2012-04-17 23:11:54 +02:00
@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
@cp boot/hbf_boot.dol HomebrewFilter.Standalone/boot.dol
2012-04-17 23:11:54 +02:00
2012-12-08 23:00:45 +01:00
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"
2012-04-17 23:11:54 +02:00
@make -C installer
@cp installer/installer.dol HomebrewFilter/boot.dol
compile_hbf_vwii: clean_vwii
@echo "============================"
@echo "======= HBF for vWii ======="
@echo "============================"
@make -C main -f Makefile.vWii
2013-01-01 09:35:14 +01:00
@cp main/hbf.vwii.dol boot/source/hbf.dol
compile_boot_vwii: compile_hbf_vwii
@make -C boot
2012-12-31 19:03:26 +01:00
@cp boot/hbf_boot.dol installer/wad.vwii/00000002.app
compile_installer_vwii: compile_boot_vwii
@tools/WadMii.exe -input "Z:$(PWD)\installer\wad.vwii" -output "Z:$(PWD)\installer\data\install.wad" || wine tools/WadMii.exe -input "Z:$(PWD)\installer\wad.vwii" -output "Z:$(PWD)\installer\data\install.wad"
@make -C installer
@cp installer/installer.dol HomebrewFilter.vWii/boot.dol