>From 1aeb3e922c7d588e21bf269c63b62b6ea4fd0c7a Mon Sep 17 00:00:00 2001 From: Akira Yokosawa <akiyks@xxxxxxxxx> Date: Sat, 26 Jan 2019 21:56:28 +0900 Subject: [PATCH 2/3] Makefile: Invoke checkfcv.pl in -> .fcv recipes Also suppress echo of commands in these recipes. Signed-off-by: Akira Yokosawa <akiyks@xxxxxxxxx> --- Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 6ef4629..2ed7500 100644 --- a/Makefile +++ b/Makefile @@ -254,15 +254,17 @@ CodeSamples/snippets.d: $(SOURCES_OF_SNIPPET) $(GEN_SNIPPET_D) $(FCVSNIPPETS): @echo "$< --> $@" - utilities/fcvextract.pl $< $(subst +,\\+,$(subst @,:,$(basename $(notdir $@)))) > $@ + @utilities/fcvextract.pl $< $(subst +,\\+,$(subst @,:,$(basename $(notdir $@)))) > $@ + @utilities/checkfcv.pl $@ $(FCVSNIPPETS_VIA_LTMS): @echo "$< --> $@" - utilities/fcvextract.pl $< $(subst +,\\+,$(subst @,:,$(basename $(notdir $@)))) > $@ + @utilities/fcvextract.pl $< $(subst +,\\+,$(subst @,:,$(basename $(notdir $@)))) > $@ + @utilities/checkfcv.pl $@ $(FCVSNIPPETS_LTMS): @echo "$< --> $@" - utilities/reorder_ltms.pl $< > $@ + @utilities/reorder_ltms.pl $< > $@ help: @echo "Official targets (Latin Modern Typewriter for monospace font):" -- 2.7.4