diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2010-06-02 21:12:09 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2010-06-02 21:12:09 +0200 |
commit | b10392505f0909918d8d3206b5d9ec16ea1ba567 (patch) | |
tree | a0444778b41fdb1961f604021964341fed660b85 | |
parent | c075436a93c93dcd7b191309d2dfc382a071cab2 (diff) | |
download | fetchmail-b10392505f0909918d8d3206b5d9ec16ea1ba567.tar.gz fetchmail-b10392505f0909918d8d3206b5d9ec16ea1ba567.tar.bz2 fetchmail-b10392505f0909918d8d3206b5d9ec16ea1ba567.zip |
BSD make compatibility for asciidoc.
BSD make supports $< only in transformation rules... use them, declare
automake SUFFIXES.
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 910e79d3..0e597d05 100644 --- a/Makefile.am +++ b/Makefile.am @@ -231,7 +231,8 @@ import-translations: rsync -Lrtvz translationproject.org::tp/latest/fetchmail/ $(top_srcdir)/po cd $(top_builddir)/po && $(MAKE) update-po -Mailbox-Names-UTF7.html: Mailbox-Names-UTF7.txt +SUFFIXES = .html .txt +.txt.html: asciidoc --unsafe -a toc -a data-uri -o $@ $< || { rm -f $@ ; exit 1 ; } # The following sets edit modes for GNU EMACS. |