From 9051480e7f8e1dd1c43c53ea9e492ebc7bcb0bdd Mon Sep 17 00:00:00 2001 From: Karl Palsson Date: Mon, 3 Jun 2019 22:28:37 +0000 Subject: [PATCH] irq2nvic: support V=1 make style to see the actual commands. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 33443ec6..36e1f2f6 100644 --- a/Makefile +++ b/Makefile @@ -58,11 +58,11 @@ build: lib %.genhdr: @printf " GENHDR $*\n"; - @./scripts/irq2nvic_h ./$*; + $(Q)./scripts/irq2nvic_h ./$*; %.cleanhdr: @printf " CLNHDR $*\n"; - @./scripts/irq2nvic_h --remove ./$* + $(Q)./scripts/irq2nvic_h --remove ./$* LIB_DIRS:=$(wildcard $(addprefix lib/,$(TARGETS))) $(LIB_DIRS): $(IRQ_DEFN_FILES:=.genhdr)