From: Michael Friedrich Date: Mon, 4 Feb 2013 17:33:35 +0000 (+0100) Subject: Documentation: implement make target for asciidoc generation X-Git-Tag: v0.0.2~556 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dbf6bccea391ca460a087e745ccda6f51e242ae9;p=icinga2 Documentation: implement make target for asciidoc generation similar to 1.x, 'make create-docs' fixes #3230 --- diff --git a/Makefile.am b/Makefile.am index 2c23f0c39..625231656 100644 --- a/Makefile.am +++ b/Makefile.am @@ -79,3 +79,8 @@ dist-hook: icinga-version.stamp $(SED) -e 's|^#undef GIT_IS_DIST.*|#define GIT_IS_DIST 1|' \ "icinga-version.h" > "$(distdir)/icinga-version.h"; \ fi + +SRC_DOCS = "./docs" + +create-docs: + cd $(SRC_DOCS) && $(MAKE) diff --git a/configure.ac b/configure.ac index c1cc486cb..5fcce5571 100644 --- a/configure.ac +++ b/configure.ac @@ -99,6 +99,7 @@ components/delegation/Makefile components/demo/Makefile components/replication/Makefile docs/Doxyfile +docs/Makefile etc/Makefile etc/icinga2/Makefile etc/init.d/Makefile diff --git a/docs/Makefile.am b/docs/Makefile.am new file mode 100644 index 000000000..2f691f845 --- /dev/null +++ b/docs/Makefile.am @@ -0,0 +1,7 @@ + +all: create-docs + +create-docs: + for file in *.txt; \ + do asciidoc -a toc -a numbered $$file; \ + done