diff options
author | isaacs <i@izs.me> | 2012-04-10 18:29:25 -0700 |
---|---|---|
committer | isaacs <i@izs.me> | 2012-04-10 18:31:12 -0700 |
commit | 8b82abb95327bc8a199136e74a7e6c2bf2577f0b (patch) | |
tree | 7711adb40d515af190c14902443e1785bc6dd5c3 /Makefile | |
parent | d0365fd21f0320c05679b3713238cce5815754ee (diff) | |
download | node-8b82abb95327bc8a199136e74a7e6c2bf2577f0b.tar.gz |
Fix #3089 Build changelog.html for website
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -100,6 +100,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/ @@ -110,6 +111,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' > $@ |