From da656d6e816cd85239bcc804dd12df0501515225 Mon Sep 17 00:00:00 2001 From: Akos Kiss Date: Sat, 12 Sep 2020 23:44:52 +0200 Subject: [PATCH] Ensure that verbosity is applied in avr-gcc recipes --- Makefile.common | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile.common b/Makefile.common index 60df96a..bf1724a 100644 --- a/Makefile.common +++ b/Makefile.common @@ -156,8 +156,10 @@ endif # --mcall-prologues can be used here, but messes up debugging a little %.axf: %.c +ifneq ($(E),) @echo AVR-CC ${<} - @part=${<} ; part=$${part/_*}; \ +endif + ${E}part=${<} ; part=$${part/_*}; \ ${AVR}gcc -Wall -gdwarf-2 -Os -std=gnu99 \ -mmcu=$$part \ -DF_CPU=8000000 \ -- 2.39.5