mirror of https://github.com/zeldaret/mm.git
Avoid changing the last modified date on the built elf files during later parts of the build process
This commit is contained in:
parent
baf0935a47
commit
2ee01ad0b7
4
Makefile
4
Makefile
|
@ -130,7 +130,7 @@ build/decomp/code: build/code.bin
|
||||||
cp $< $@
|
cp $< $@
|
||||||
|
|
||||||
build/decomp/ovl_%: build/code.elf
|
build/decomp/ovl_%: build/code.elf
|
||||||
$(MIPS_BINUTILS_PREFIX)objcopy --dump-section ovl_$*=$@ $<
|
$(MIPS_BINUTILS_PREFIX)objcopy --dump-section ovl_$*=$@ $< /dev/null
|
||||||
|
|
||||||
|
|
||||||
disasm:
|
disasm:
|
||||||
|
@ -142,7 +142,7 @@ disasm:
|
||||||
# Recipes
|
# Recipes
|
||||||
|
|
||||||
build/%.bin: build/code.elf
|
build/%.bin: build/code.elf
|
||||||
$(MIPS_BINUTILS_PREFIX)objcopy --dump-section $*=$@ $<
|
$(MIPS_BINUTILS_PREFIX)objcopy --dump-section $*=$@ $< /dev/null
|
||||||
|
|
||||||
build/baserom/%: baserom/%
|
build/baserom/%: baserom/%
|
||||||
cp $< $@
|
cp $< $@
|
||||||
|
|
Loading…
Reference in New Issue