haxchi/Makefile
FIX94 9cd3d24992 now includes a homebrew launcher loader! credits to the original go to dimok
compiles in once piece now to a directly usable rom.zip
2016-11-10 04:52:25 +01:00

19 lines
418 B
Makefile

.PHONY := all code550.bin
all: WUP-N-DAAP.nds
code550.bin:
@cd hbl_loader && make && cd ..
haxchi_rop_hook.bin haxchi_rop.bin: code550.bin haxchi_rop.s
armips haxchi_rop.s
WUP-N-DAAP.nds: haxchi_rop_hook.bin haxchi_rop.bin haxchi.s
armips haxchi.s
zip -JXjq9 rom.zip WUP-N-DAAP.nds
clean:
@rm -f *.bin WUP-N-DAAP.nds rom.zip
@cd hbl_loader && make clean && cd ..
@echo "all cleaned up !"