haxchi/Makefile

17 lines
370 B
Makefile
Raw Normal View History

2016-11-07 02:11:18 +01:00
.PHONY := all haxchi/haxchi_code.bin
all: haxchi.srl
haxchi/haxchi_code.bin:
@cd haxchi_code && make clean && make && cd ..
haxchi_rop_hook.bin haxchi_rop.bin: haxchi/haxchi_code.bin haxchi_rop.s
armips haxchi_rop.s
haxchi.srl: haxchi_rop_hook.bin haxchi_rop.bin haxchi.s
armips haxchi.s
clean:
@rm -f *.bin haxchi.srl
@echo "all cleaned up !"