diff mbox

[3/3] doc: process: generate html change log

Message ID 1465586350-24101-3-git-send-email-mike.holmes@linaro.org
State Accepted
Commit 50029e34c284559b942e6b6b8c56f230eca4f01f
Headers show

Commit Message

Mike Holmes June 10, 2016, 7:19 p.m. UTC
Signed-off-by: Mike Holmes <mike.holmes@linaro.org>
---
 doc/process-guide/.gitignore  | 1 +
 doc/process-guide/Makefile.am | 9 +++++++--
 2 files changed, 8 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/doc/process-guide/.gitignore b/doc/process-guide/.gitignore
index 3e14ddf..1acc6dd 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 0851f28..1abaf7e 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