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
|
@ -18,4 +18,5 @@ src/test.c
|
||||||
*.dump
|
*.dump
|
||||||
tools/ido5.3_compiler/*
|
tools/ido5.3_compiler/*
|
||||||
tools/ido7.1_compiler/*
|
tools/ido7.1_compiler/*
|
||||||
expected/*
|
expected/*
|
||||||
|
tools/qemu-mips
|
||||||
|
|
3
Makefile
3
Makefile
|
@ -3,6 +3,7 @@
|
||||||
AS := $(MIPS_BINUTILS_PREFIX)as
|
AS := $(MIPS_BINUTILS_PREFIX)as
|
||||||
LD := $(MIPS_BINUTILS_PREFIX)ld
|
LD := $(MIPS_BINUTILS_PREFIX)ld
|
||||||
|
|
||||||
|
QEMU_IRIX ?= ./tools/qemu-mips
|
||||||
IRIX_71_ROOT := ./tools/ido7.1_compiler/
|
IRIX_71_ROOT := ./tools/ido7.1_compiler/
|
||||||
IRIX_53_ROOT := ./tools/ido5.3_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
|
$(MIPS_BINUTILS_PREFIX)objdump -d -z --adjust-vma=0x80080790 $< > test.txt
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm $(ROM) -r build
|
rm -f $(ROM) -r build
|
||||||
|
|
||||||
build/baserom/dmadata: $(COMP_FILES) $(DECOMP_FILES) $(BASEROM_BUILD_FILES)
|
build/baserom/dmadata: $(COMP_FILES) $(DECOMP_FILES) $(BASEROM_BUILD_FILES)
|
||||||
./tools/dmadata.py ./tables/dmadata_table.txt $@
|
./tools/dmadata.py ./tables/dmadata_table.txt $@
|
||||||
|
|
Loading…
Reference in New Issue