mirror of
https://github.com/zestydevy/dinosaur-planet.git
synced 2024-12-04 03:01:01 +00:00
move output ROM to build directory
This commit is contained in:
parent
0c496d9b0e
commit
9fe2dbab0e
8
Makefile
8
Makefile
@ -46,10 +46,10 @@ default: all
|
|||||||
TARGET = dino
|
TARGET = dino
|
||||||
LD_SCRIPT = $(TARGET).ld
|
LD_SCRIPT = $(TARGET).ld
|
||||||
|
|
||||||
all: $(BUILD_DIR) $(TARGET).z64 verify
|
all: $(BUILD_DIR) $(BUILD_DIR)/$(TARGET).z64 verify
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf $(BUILD_DIR) $(TARGET).z64
|
rm -rf $(BUILD_DIR)
|
||||||
|
|
||||||
submodules:
|
submodules:
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
@ -84,10 +84,10 @@ $(BUILD_DIR)/$(TARGET).bin: $(BUILD_DIR)/$(TARGET).elf
|
|||||||
$(OBJCOPY) $< $@ -O binary
|
$(OBJCOPY) $< $@ -O binary
|
||||||
|
|
||||||
# final z64 updates checksum
|
# final z64 updates checksum
|
||||||
$(TARGET).z64: $(BUILD_DIR)/$(TARGET).bin
|
$(BUILD_DIR)/$(TARGET).z64: $(BUILD_DIR)/$(TARGET).bin
|
||||||
@cp $< $@
|
@cp $< $@
|
||||||
|
|
||||||
verify: $(TARGET).z64
|
verify: $(BUILD_DIR)/$(TARGET).z64
|
||||||
md5sum -c checksum.md5
|
md5sum -c checksum.md5
|
||||||
|
|
||||||
.PHONY: all clean default split setup
|
.PHONY: all clean default split setup
|
||||||
|
@ -1 +1 @@
|
|||||||
49f7bb346ade39d1915c22e090ffd748 dino.z64
|
49f7bb346ade39d1915c22e090ffd748 build/dino.z64
|
||||||
|
Loading…
Reference in New Issue
Block a user