diff options
author | Jack Humbert <jack.humb@gmail.com> | 2017-08-27 12:53:35 -0400 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2017-08-27 12:53:35 -0400 |
commit | ba2ad57ca8977ba00228109e962f0eb4abf848a6 (patch) | |
tree | 55c7377b6b0a994c1f8e21ecb8f5340f6dd68eb6 /tmk_core | |
parent | 677b89768b5ffba7261a16686ecf34f23d964580 (diff) | |
download | qmk_firmware-ba2ad57ca8977ba00228109e962f0eb4abf848a6.tar.gz qmk_firmware-ba2ad57ca8977ba00228109e962f0eb4abf848a6.zip |
add rule shortcut via @samwho's suggesion
Diffstat (limited to 'tmk_core')
-rw-r--r-- | tmk_core/avr.mk | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tmk_core/avr.mk b/tmk_core/avr.mk index b8045a1d4d..989180f3ca 100644 --- a/tmk_core/avr.mk +++ b/tmk_core/avr.mk @@ -167,10 +167,8 @@ bin: $(BUILD_DIR)/$(TARGET).hex $(OBJCOPY) -Iihex -Obinary $(BUILD_DIR)/$(TARGET).hex $(BUILD_DIR)/$(TARGET).bin $(COPY) $(BUILD_DIR)/$(TARGET).bin $(TARGET).bin; -# Convert hex to bin. -flashbin: $(BUILD_DIR)/$(TARGET).hex - $(OBJCOPY) -Iihex -Obinary $(BUILD_DIR)/$(TARGET).hex $(BUILD_DIR)/$(TARGET).bin - $(COPY) $(BUILD_DIR)/$(TARGET).bin $(TARGET).bin; +# copy bin to FLASH.bin +flashbin: bin $(COPY) $(BUILD_DIR)/$(TARGET).bin FLASH.bin; # Generate avr-gdb config/init file which does the following: |