diff options
-rw-r--r-- | ChangeLog | 0 | ||||
-rw-r--r-- | Makefile.am | 12 |
2 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog deleted file mode 100644 index e69de29b..00000000 --- a/ChangeLog +++ /dev/null diff --git a/Makefile.am b/Makefile.am index 2b76b5d4..96b9dea9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1 +1,13 @@ SUBDIRS=src ao-view ao-tools ao-utils + +EXTRA_DIST = ChangeLog + +MAINTAINERCLEANFILES = ChangeLog + +.PHONY: ChangeLog + +ChangeLog: + (GIT_DIR=$(top_srcdir)/.git git log > .changelog.tmp && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) || \ + (touch ChangeLog; echo 'git directory not found: installing possibly empty changelog.' >&2) + +dist-hook: ChangeLog |