diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2021-10-14 16:17:21 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2021-10-14 16:17:21 +0200 |
commit | ecfab2bb0ea4918b3ab02c3a64292a4a3ac13d01 (patch) | |
tree | f29fefcda5eeb9373629f8b653fcd543de763fe7 /src/arch/stm32f446re-nucleo | |
parent | 6e6bb662a9117567d0898d1795e943fe9117b666 (diff) |
stm32, lm4f: "build/system.elf" is the default target
Diffstat (limited to 'src/arch/stm32f446re-nucleo')
-rw-r--r-- | src/arch/stm32f446re-nucleo/Makefile.inc | 12 |
1 files changed, 6 insertions, 6 deletions
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]' \ |