diff options
author | James Cloos <cloos@jhcloos.com> | 2007-12-06 15:51:03 -0500 |
---|---|---|
committer | James Cloos <cloos@jhcloos.com> | 2007-12-06 15:51:03 -0500 |
commit | 088006f9bb62db2523117dac568d028bd96db488 (patch) | |
tree | 7768f6c1a632dc59fcdff19d62c689a9bdf6ed18 | |
parent | d79bd0857961669aff4c155f4c3205af4c89b18e (diff) |
Add missing PHONY line for automatic ChangeLog generation
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 5960114..fd39304 100644 --- a/Makefile.am +++ b/Makefile.am @@ -82,6 +82,8 @@ EXTRA_DIST = $(APPDEFAULTFILES:%=%.ad) bitmap.icon ChangeLog autogen.sh CLEANFILES = $(APPDEFAULTFILES) 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) |