diff options
author | James Cloos <cloos@jhcloos.com> | 2007-09-03 06:02:50 -0400 |
---|---|---|
committer | James Cloos <cloos@jhcloos.com> | 2007-09-03 06:02:50 -0400 |
commit | 6d56c1f8d25ce84c797c3b72070073bc44d1a7ac (patch) | |
tree | d09121b232be04282ff8fdb272d4788dd186daa2 /Makefile.am | |
parent | c4f7c402ad52c784c01655b5d3a9d4d33c6598d6 (diff) | |
parent | 3decc85623f023a31b8c19526b29092a9f2d0357 (diff) |
Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/app/xset
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index ababd43..1ec91cd 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,7 +21,7 @@ bin_PROGRAMS = xset -xset_CFLAGS = $(XSET_CFLAGS) -D_BSD_SOURCE +AM_CFLAGS = $(XSET_CFLAGS) -D_BSD_SOURCE xset_LDADD = $(XSET_LIBS) xset_SOURCES = \ @@ -35,8 +35,16 @@ appmandir = $(APP_MAN_DIR) appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@) -EXTRA_DIST = $(appman_PRE) +EXTRA_DIST = $(appman_PRE) ChangeLog autogen.sh CLEANFILES = $(appman_DATA) +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 SED = sed |