From 1507dca8612f76fb1674d3cc62fd15adbf2b4cd0 Mon Sep 17 00:00:00 2001 From: vince Date: Sun, 20 Mar 2022 13:34:10 +0100 Subject: [PATCH] limite les sorties standard du Makefile --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index cbb4880..9d59726 100644 --- a/Makefile +++ b/Makefile @@ -10,17 +10,17 @@ clean: -rm agendadulibre.xml news.md web/style.css: style.css - cp -- '$<' '$@' + @cp -- '$<' '$@' web/%.html: %.md $(TEMPLATE) - $(PANOC_BIN) --from markdown '$<' --output '$@' --standalone --template '$(TEMPLATE)' + @$(PANOC_BIN) --from markdown '$<' --output '$@' --standalone --template '$(TEMPLATE)' .PHONY: agendadulibre.xml agendadulibre.xml: - $(WGET_BIN) --output-document='$@' 'https://www.agendadulibre.org/events.xml?tag=cagull&future=false' + @$(WGET_BIN) --quiet --output-document='$@' 'https://www.agendadulibre.org/events.xml?tag=cagull&future=false' news.md: agendadulibre.xsl agendadulibre.xml - $(XSLTPROC_BIN) $^ > '$@' + @$(XSLTPROC_BIN) $^ > '$@' web/favicon.ico: - wget --quiet --no-clobber --output-document=$@ https://thiscatdoesnotexist.com/ + @$(WGET_BIN) --quiet --no-clobber --output-document=$@ https://thiscatdoesnotexist.com/