merge
This commit is contained in:
commit
3565ff42c7
5
Makefile
5
Makefile
@ -16,7 +16,7 @@ OBJDUMP = avr-objdump
|
||||
SIZE = avr-size -A
|
||||
|
||||
|
||||
all: $(PRG).hex
|
||||
all: $(PRG).hex $(PRG).bin
|
||||
|
||||
$(PRG).elf: $(OBJ)
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS)
|
||||
@ -40,9 +40,12 @@ clean:
|
||||
rm -rf *.lst *.map $(EXTRA_CLEAN_FILES)
|
||||
|
||||
hex: $(PRG).hex
|
||||
bin: $(PRG).bin
|
||||
|
||||
%.hex: %.elf
|
||||
$(OBJCOPY) -j .text -j .data -O ihex $< $@
|
||||
%.bin: %.elf
|
||||
$(OBJCOPY) -j .text -j .data -O binary $< $@
|
||||
|
||||
%.bin: %.elf
|
||||
$(OBJCOPY) -j .text -j .data -O binary $< $@
|
||||
|
Loading…
Reference in New Issue
Block a user