mirror of https://github.com/zeldaret/mm.git
Improve Drag & Drop support for IDO Tools
- Add optional default for QEMU_IRIX to Makefile - Add tools/qemu-mips to .gitignore - `make clean` should not fail if rom.z64 doesnt exist
This commit is contained in:
parent
f9149c93a9
commit
8e8d99e6fd
|
@ -19,3 +19,4 @@ src/test.c
|
|||
tools/ido5.3_compiler/*
|
||||
tools/ido7.1_compiler/*
|
||||
expected/*
|
||||
tools/qemu-mips
|
||||
|
|
3
Makefile
3
Makefile
|
@ -3,6 +3,7 @@
|
|||
AS := $(MIPS_BINUTILS_PREFIX)as
|
||||
LD := $(MIPS_BINUTILS_PREFIX)ld
|
||||
|
||||
QEMU_IRIX ?= ./tools/qemu-mips
|
||||
IRIX_71_ROOT := ./tools/ido7.1_compiler/
|
||||
IRIX_53_ROOT := ./tools/ido5.3_compiler/
|
||||
|
||||
|
@ -95,7 +96,7 @@ test.txt: build/src/test.o
|
|||
$(MIPS_BINUTILS_PREFIX)objdump -d -z --adjust-vma=0x80080790 $< > test.txt
|
||||
|
||||
clean:
|
||||
rm $(ROM) -r build
|
||||
rm -f $(ROM) -r build
|
||||
|
||||
build/baserom/dmadata: $(COMP_FILES) $(DECOMP_FILES) $(BASEROM_BUILD_FILES)
|
||||
./tools/dmadata.py ./tables/dmadata_table.txt $@
|
||||
|
|
Loading…
Reference in New Issue