From 27ae5a3ef9efa3b64a57301eb0cc0965eb5d2b7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alberto=20Garci=CC=81a=20Hierro?= Date: Sun, 27 Oct 2019 20:30:39 +0000 Subject: [PATCH] [MAKE] Add elf target to the Makefile Builds the .elf for the current target --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 407a482a52..ae41d6b1b5 100644 --- a/Makefile +++ b/Makefile @@ -380,6 +380,7 @@ $(STFLASH_TARGETS) : st-flash: $(TARGET_BIN) $(V0) st-flash --reset write $< $(FLASH_ORIGIN) +elf: $(TARGET_ELF) binary: $(TARGET_BIN) hex: $(TARGET_HEX)