From: Akos Kiss Date: Sat, 12 Sep 2020 21:44:52 +0000 (+0200) Subject: Ensure that verbosity is applied in avr-gcc recipes X-Git-Tag: v1.7~14^2 X-Git-Url: https://git.htl-mechatronik.at/public/?a=commitdiff_plain;h=da656d6e816cd85239bcc804dd12df0501515225;p=sx%2Fsimavr.git Ensure that verbosity is applied in avr-gcc recipes --- 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 \