From ecfab2bb0ea4918b3ab02c3a64292a4a3ac13d01 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Thu, 14 Oct 2021 16:17:21 +0200 Subject: stm32, lm4f: "build/system.elf" is the default target --- src/arch/stm32f446re-nucleo/Makefile.inc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/arch/stm32f446re-nucleo/Makefile.inc') diff --git a/src/arch/stm32f446re-nucleo/Makefile.inc b/src/arch/stm32f446re-nucleo/Makefile.inc index 2b39d62..33872e0 100644 --- a/src/arch/stm32f446re-nucleo/Makefile.inc +++ b/src/arch/stm32f446re-nucleo/Makefile.inc @@ -86,12 +86,6 @@ OBJECTS = ${CXX_TARGETS:.cc=.o} ${C_TARGETS:.c=.o} ${ASM_TARGETS:.S=.o} %.o : %.s | include/config.h ${QUIET}${CC} ${INCLUDES} ${COMMON_FLAGS} -c -o $@ ${@:.o=.S} -ext/libopencm3/Makefile: - git submodule update --init - -ext/libopencm3/lib/libopencm3_stm32f4.a: ext/libopencm3/Makefile - ${MAKE} -C ext/libopencm3 - build/system.elf: ${OBJECTS} ext/libopencm3/lib/libopencm3_stm32f4.a ${QUIET}mkdir -p build ${QUIET}${CXX} ${INCLUDES} ${COMMON_FLAGS} ${CXXFLAGS} \ @@ -102,6 +96,12 @@ build/system.elf: ${OBJECTS} ext/libopencm3/lib/libopencm3_stm32f4.a -o $@ ${QUIET}${SIZE} build/system.elf | tail -n1 | awk '{ print " ROM: " ($$1+$$2) " (" int(($$1+$$2)*100/524288) "%) RAM: " ($$2 + $$3) " (" int(($$2+$$3)*100/131072) "%)" }' +ext/libopencm3/Makefile: + git submodule update --init + +ext/libopencm3/lib/libopencm3_stm32f4.a: ext/libopencm3/Makefile + ${MAKE} -C ext/libopencm3 + program: build/system.elf openocd -c 'source [find interface/stlink-v2-1.cfg]' \ -c 'transport select hla_swd' -c 'source [find target/stm32f4x.cfg]' \ -- cgit v1.2.3