1
0
Fork 0

AUTHORS, NEWS, and ChangeLog may now be built independently

perfodd
Mike Gerwitz 2013-12-22 00:57:06 -05:00
parent 3d3cb42982
commit b7e891d77e
1 changed files with 8 additions and 4 deletions

View File

@ -97,15 +97,19 @@ else
endif
# generate the familiar files that automake normally checks for
dist-hook:
$(path_tools)/gitlog-to-authors > $(distdir)/AUTHORS
$(path_tools)/gitlog-to-news > $(distdir)/NEWS
dist-hook: AUTHORS NEWS ChangeLog
cp $? $(distdir)
AUTHORS:
$(path_tools)/gitlog-to-authors > AUTHORS
NEWS:
$(path_tools)/gitlog-to-news > NEWS
ChangeLog:
$(path_tools)/gitlog-to-changelog \
--strip-cherry-pick \
--format=%s \
-- \
--no-merges \
> $(distdir)/ChangeLog
> ChangeLog
clean-local:
-rm -rf "$(path_build)"