@@ -2,3 +2,4 @@ bylaws-guide.html
release-guide.html
faq.html
CONTRIBUTING.html
+CHANGELOG.html
@@ -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
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(-)