AUTHORS, NEWS, and ChangeLog may now be built independently
parent
3d3cb42982
commit
b7e891d77e
12
Makefile.am
12
Makefile.am
|
@ -97,15 +97,19 @@ else
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# generate the familiar files that automake normally checks for
|
# generate the familiar files that automake normally checks for
|
||||||
dist-hook:
|
dist-hook: AUTHORS NEWS ChangeLog
|
||||||
$(path_tools)/gitlog-to-authors > $(distdir)/AUTHORS
|
cp $? $(distdir)
|
||||||
$(path_tools)/gitlog-to-news > $(distdir)/NEWS
|
AUTHORS:
|
||||||
|
$(path_tools)/gitlog-to-authors > AUTHORS
|
||||||
|
NEWS:
|
||||||
|
$(path_tools)/gitlog-to-news > NEWS
|
||||||
|
ChangeLog:
|
||||||
$(path_tools)/gitlog-to-changelog \
|
$(path_tools)/gitlog-to-changelog \
|
||||||
--strip-cherry-pick \
|
--strip-cherry-pick \
|
||||||
--format=%s \
|
--format=%s \
|
||||||
-- \
|
-- \
|
||||||
--no-merges \
|
--no-merges \
|
||||||
> $(distdir)/ChangeLog
|
> ChangeLog
|
||||||
|
|
||||||
clean-local:
|
clean-local:
|
||||||
-rm -rf "$(path_build)"
|
-rm -rf "$(path_build)"
|
||||||
|
|
Loading…
Reference in New Issue