Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thirdpin/libopencm3.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Palsson <karlp@tweak.net.au>2019-06-04 01:28:37 +0300
committerKarl Palsson <karlp@tweak.net.au>2019-06-04 01:29:25 +0300
commit9051480e7f8e1dd1c43c53ea9e492ebc7bcb0bdd (patch)
tree6efe3d7e09a2feaed0e45abcf39ce9d91929ad8c
parentd0c3678f7444a6947919626b044c2b1ca714acab (diff)
irq2nvic: support V=1 make style to see the actual commands.
-rw-r--r--Makefile4
1 files 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)