aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Holmes <mike.holmes@linaro.org>2016-06-10 15:19:10 -0400
committerMaxim Uvarov <maxim.uvarov@linaro.org>2016-06-10 23:15:20 +0300
commit50029e34c284559b942e6b6b8c56f230eca4f01f (patch)
treece4efab7031f520eeb19d3bc34e5e185e65cd3c4
parentaded65c62d9ad5e65c6181588d90d1b99f5c8726 (diff)
doc: process: generate html change log
Signed-off-by: Mike Holmes <mike.holmes@linaro.org> Reviewed-and-tested-by: Bill Fischofer <bill.fischofer@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
-rw-r--r--doc/process-guide/.gitignore1
-rw-r--r--doc/process-guide/Makefile.am9
2 files changed, 8 insertions, 2 deletions
diff --git a/doc/process-guide/.gitignore b/doc/process-guide/.gitignore
index 3e14ddfa5..1acc6dd1e 100644
--- a/doc/process-guide/.gitignore
+++ b/doc/process-guide/.gitignore
@@ -2,3 +2,4 @@ bylaws-guide.html
release-guide.html
faq.html
CONTRIBUTING.html
+CHANGELOG.html
diff --git a/doc/process-guide/Makefile.am b/doc/process-guide/Makefile.am
index 0851f2834..1abaf7e4c 100644
--- a/doc/process-guide/Makefile.am
+++ b/doc/process-guide/Makefile.am
@@ -16,13 +16,15 @@ EXTRA_DIST = $(top_srcdir)/doc/process-guide/bylaws-guide.adoc \
all-local: bylaws-guide.html \
release-guide.html \
faq.html \
- CONTRIBUTING.html
+ CONTRIBUTING.html \
+ CHANGELOG.html
clean-local:
rm -f $(builddir)/bylaws-guide.html
rm -f $(builddir)/release-guide.html
rm -f $(builddir)/faq.html
rm -f $(builddir)/CONTRIBUTING.html
+ rm -f $(builddir)/CHANGELOG.html
release-guide.html: $(top_srcdir)/doc/process-guide/release-guide.adoc \
$(top_srcdir)/doc/images/simple_release_git.svg \
@@ -37,6 +39,9 @@ faq.html: $(top_srcdir)/doc/process-guide/faq.adoc \
CONTRIBUTING.html: $(top_srcdir)/CONTRIBUTING
asciidoctor $(ASCIIDOC_FLAGS) --out-file=$@ $<
+CHANGELOG.html: $(top_srcdir)/CHANGELOG
+ asciidoctor $(ASCIIDOC_FLAGS) --out-file=$@ $<
+
#add deps on images
-doc_DATA = bylaws-guide.html release-guide.html CONTRIBUTING.html faq.html
+doc_DATA = bylaws-guide.html release-guide.html CONTRIBUTING.html faq.html CHANGELOG.html