# DBX_PARAMS="-p doc.publisher.show 1 -p term.breakline 1...
DBX_PARAMS=
-# What file extension to you use for DocBook source files?
+# What file extension do you use for DocBook source files?
DOCBOOK_FILE_EXTENSION = .xml
# -----------------------------------------------------------------
# use the "debug" target to echo variables, etc., to
# test/troubleshoot changes you make to this makefile
debug:
- echo $(DIRS_MAN)
+ @echo $(DIRS_MAN)
# -----------------------------------------------------------------
# pattern rule for making HTML and plain-text output
# -----------------------------------------------------------------
%.html: %.xml
- echo '$(HTML_CUSTOM)' | $(XSLT) $(XSLT_FLAGS) $(HTML_PARAMS) - $< > $@
+ @echo '$(HTML_CUSTOM)' | $(XSLT) $(XSLT_FLAGS) $(HTML_PARAMS) - $< > $@
%.txt: %.html
$(TXT_MAKER) $(TXT_MAKER_FLAGS) ./$< \
# pattern rule for making chunked HTML pages
# -----------------------------------------------------------------
%.$(HTML_MANIFEST_EXT): %.xml
- echo '$(CHNK_CUSTOM)' | $(XSLT) $(XSLT_FLAGS) $(HTML_PARAMS) \
+ @echo '$(CHNK_CUSTOM)' | $(XSLT) $(XSLT_FLAGS) $(HTML_PARAMS) \
--stringparam manifest $@ \
--stringparam base.dir $(basename $@)$(BASEDIR_SUFFIX)/ \
- $<
# pattern rules for making FO and PDF stuff
# -----------------------------------------------------------------
%.fo: %.xml
- echo '$(FO_CUSTOM)' \
+ @echo '$(FO_CUSTOM)' \
| $(XSLT) $(XSLT_FLAGS) $(FO_PARAMS) - $< > $@
ifeq ($(PDF_MAKER),dblatex)