summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2012-04-10 18:29:25 -0700
committerisaacs <i@izs.me>2012-04-10 18:35:01 -0700
commite0660740d9e3cc7487aab46866b7a87f35128b73 (patch)
tree66ff7fabd6e1bd541c5d0f5a2d76f9cd2949d4e0 /Makefile
parent3ba9519fafbbb765875db1ec4a5656d37cd34199 (diff)
downloadandroid-node-v8-e0660740d9e3cc7487aab46866b7a87f35128b73.tar.gz
android-node-v8-e0660740d9e3cc7487aab46866b7a87f35128b73.tar.bz2
android-node-v8-e0660740d9e3cc7487aab46866b7a87f35128b73.zip
Fix #3089 Build changelog.html for website
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index cd388aabf9..56cb631b05 100644
--- a/Makefile
+++ b/Makefile
@@ -115,6 +115,7 @@ website_files = \
out/doc/about/index.html \
out/doc/community/index.html \
out/doc/logos/index.html \
+ out/doc/changelog.html \
$(doc_images)
doc: program $(apidoc_dirs) $(website_files) $(apiassets) $(apidocs) tools/doc/
@@ -125,6 +126,9 @@ $(apidoc_dirs):
out/doc/api/assets/%: doc/api_assets/% out/doc/api/assets/
cp $< $@
+out/doc/changelog.html: ChangeLog doc/changelog-head.html doc/changelog-foot.html tools/build-changelog.sh
+ bash tools/build-changelog.sh
+
out/doc/%.html: doc/%.html
cat $< | sed -e 's|__VERSION__|'$(VERSION)'|g' > $@