Browse Source

Merge remote-tracking branch 'danielbair/master'

master
Reece H. Dunn 4 years ago
parent
commit
2abfb6c827
2 changed files with 6 additions and 4 deletions
  1. 4
    4
      Makefile.am
  2. 2
    0
      configure.ac

+ 4
- 4
Makefile.am View File

@@ -79,10 +79,10 @@ SUFFIXES=.html .md .ronn .check .test
.md.html: _layouts/webpage.html
@echo " MD $@"
@cat $< | sed -e 's/\.md)/.html)/g' -e 's/\.ronn/.html/g' | \
kramdown --template _layouts/webpage.html > $@
$(KRAMDOWN) --template _layouts/webpage.html > $@

.ronn.html:
ronn --html $<
$(RONN) --html $<

##### vim:

@@ -101,10 +101,10 @@ EXTRA_DIST += $(vim_addons_syntax_DATA)
##### documentation:

src/espeak-ng.1: src/espeak-ng.1.ronn
ronn --roff $<
$(RONN) --roff $<

src/speak-ng.1: src/speak-ng.1.ronn
ronn --roff $<
$(RONN) --roff $<

docs_MARKDOWN != ls docs/*.md docs/*/*.md docs/*/*/*.md
docs_HTML = ${docs_MARKDOWN:.md=.html}

+ 2
- 0
configure.ac View File

@@ -257,6 +257,8 @@ AC_CHECK_PROG(RONN, ronn, ronn, no)

AM_CONDITIONAL(HAVE_RONN, [test ! x"$RONN" = xno])

AC_CHECK_PROG(KRAMDOWN, kramdown, kramdown, no)

dnl ================================================================
dnl Extended dictionary checks.
dnl ================================================================

Loading…
Cancel
Save