Avoid changing the last modified date on the built elf files during later parts of the build process

This commit is contained in:
rozlette 2020-02-27 16:58:39 -06:00
parent baf0935a47
commit 2ee01ad0b7

View File

@ -130,7 +130,7 @@ build/decomp/code: build/code.bin
cp $< $@
build/decomp/ovl_%: build/code.elf
$(MIPS_BINUTILS_PREFIX)objcopy --dump-section ovl_$*=$@ $<
$(MIPS_BINUTILS_PREFIX)objcopy --dump-section ovl_$*=$@ $< /dev/null
disasm:
@ -142,7 +142,7 @@ disasm:
# Recipes
build/%.bin: build/code.elf
$(MIPS_BINUTILS_PREFIX)objcopy --dump-section $*=$@ $<
$(MIPS_BINUTILS_PREFIX)objcopy --dump-section $*=$@ $< /dev/null
build/baserom/%: baserom/%
cp $< $@