Skip to content
Snippets Groups Projects
Commit 13daaa66 authored by Jean-Noël Avila's avatar Jean-Noël Avila
Browse files

Introduce quiet option in makefile.locale

parent 340c4360
No related branches found
No related tags found
No related merge requests found
......@@ -32,12 +32,17 @@ install-l10n:
else
ifndef V
QUIET_PO4A = @echo ' ' PO4A $(lang) $@;
QUIET_ASCIIDOC = @echo ' ' ASCIIDOC $(lang) $@;
endif
$(HTML_FILTER): %.html: %.txt
asciidoctor -b xhtml5 -d manpage $<
$(QUIET_ASCIIDOC)asciidoctor -b xhtml5 -d manpage $<
MANPAGES=$(patsubst %.txt,%.1,$(MAN_FILTER))
$(MANPAGES): %.1: %.txt
asciidoctor -b manpage -d manpage -o $@ $<
$(QUIET_ASCIIDOC)asciidoctor -b manpage -d manpage -o $@ $<
man: $(MANPAGES)
html: $(HTML_FILTER)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment