Browse Source

Makefile: protection des arguments avec des quotes

master
Richard Genoud 2 years ago
parent
commit
4a6a9e0a39
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      Makefile

+ 4
- 4
Makefile View File

@ -10,13 +10,13 @@ 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)'
agendadulibre.xml:
$(WGET_BIN) --output-document=$@ 'https://www.agendadulibre.org/events.xml?tag=cagull&future=false'
$(WGET_BIN) --output-document='$@' 'https://www.agendadulibre.org/events.xml?tag=cagull&future=false'
news.md: agendadulibre.xsl agendadulibre.xml
$(XSLTPROC_BIN) $^ > $@
$(XSLTPROC_BIN) '$^' > '$@'

Loading…
Cancel
Save