diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-02-14 18:16:28 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-02-16 07:57:30 -0500 |
commit | 52eef84228ba25ed78fe95a230403f91f3399070 (patch) | |
tree | 01b519acdb2c6e08fa62a1d487644ae6cebf06f6 | |
parent | b33ad59e25e3065d061c92c964dddde768d1f889 (diff) | |
download | kutter-52eef84228ba25ed78fe95a230403f91f3399070.tar.gz kutter-52eef84228ba25ed78fe95a230403f91f3399070.tar.xz kutter-52eef84228ba25ed78fe95a230403f91f3399070.zip |
atsamd: Fix typo in Makefile
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | src/atsamd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/atsamd/Makefile b/src/atsamd/Makefile index 06be77c2..7546d1ce 100644 --- a/src/atsamd/Makefile +++ b/src/atsamd/Makefile @@ -52,7 +52,7 @@ $(OUT)samd.ld: $(ldfile-y) $(OUT)board-link target-y += $(OUT)klipper.bin $(OUT)klipper.elf.hex $(OUT)klipper.bin: $(OUT)klipper.elf - @echo " Creating hex file $@" + @echo " Creating bin file $@" $(Q)$(OBJCOPY) -O binary $< $@ $(OUT)klipper.elf.hex: $(OUT)klipper.elf |