diff options
author | Thomas Haller <thaller@redhat.com> | 2017-02-27 23:03:16 (GMT) |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2017-02-27 23:09:06 (GMT) |
commit | 23c00e97a92c68333f05075d5d511141f368868d (patch) | |
tree | a01605696069339c7d4389e5fb230c957c7fc8ca | |
parent | 011b6cc72658ab3e72815237f8454991b1b4b5fd (diff) | |
download | libnl-23c00e97a92c68333f05075d5d511141f368868d.zip libnl-23c00e97a92c68333f05075d5d511141f368868d.tar.gz libnl-23c00e97a92c68333f05075d5d511141f368868d.tar.bz2 |
build: style cleanup in doc/Makefile.am
-rw-r--r-- | doc/Makefile.am | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 7e1fbe9..67ae1fc 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -2,12 +2,15 @@ .PHONY: gendoc api_ref asciidoc -ASCIIDOCOPTS=-a pygments -a language=c -a icons \ - -a toc2 \ - -a numbered \ - -a imagesdir="./images/" \ - -a iconsdir="./images/icons" \ - -a stylesdir="${abs_srcdir}/stylesheets/" +ASCIIDOCOPTS = \ + -a pygments \ + -a language=c \ + -a icons \ + -a toc2 \ + -a numbered \ + -a imagesdir="./images/" \ + -a iconsdir="./images/icons" \ + -a stylesdir="$(abs_srcdir)/stylesheets/" EXTRA_DIST = \ core.txt \ @@ -38,7 +41,7 @@ if LINK_DOC else @echo "Warning: Linking to API reference is disabled, check configure output" endif - + %.html: %.txt link_doc if HAVE_ASCIIDOC @@ -74,4 +77,4 @@ else endif clean-local: - rm -f api/* libnl.dict *.html; + rm -f api/* libnl.dict *.html |