From dbf6bccea391ca460a087e745ccda6f51e242ae9 Mon Sep 17 00:00:00 2001 From: Michael Friedrich Date: Mon, 4 Feb 2013 18:33:35 +0100 Subject: [PATCH] Documentation: implement make target for asciidoc generation similar to 1.x, 'make create-docs' fixes #3230 --- Makefile.am | 5 +++++ configure.ac | 1 + docs/Makefile.am | 7 +++++++ 3 files changed, 13 insertions(+) create mode 100644 docs/Makefile.am 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