bare-arm: Change output file from flash.elf to firmware.elf.

store-consts
Damien George 2014-05-10 13:45:47 +01:00
parent ccc85ea0da
commit 2bb179e124
1 changed files with 2 additions and 2 deletions

View File

@ -38,9 +38,9 @@ SRC_S = \
OBJ = $(PY_O) $(addprefix $(BUILD)/, $(SRC_C:.c=.o) $(SRC_S:.s=.o))
all: $(BUILD)/flash.elf
all: $(BUILD)/firmware.elf
$(BUILD)/flash.elf: $(OBJ)
$(BUILD)/firmware.elf: $(OBJ)
$(ECHO) "LINK $@"
$(Q)$(LD) $(LDFLAGS) -o $@ $(OBJ) $(LIBS)
$(Q)$(SIZE) $@