Allow the user to specify offsets for server-side (hard) shadows.
[dana/xcompmgr.git] / Makefile.am
1 bin_PROGRAMS = xcompmgr
2 man_MANS = xcompmgr.1
3
4 xcompmgr_LDADD = @XCOMPMGR_LIBS@ -lm
5
6 INCLUDES = @XCOMPMGR_CFLAGS@
7
8 EXTRA_DIST = \
9         autogen.sh \
10         ChangeLog \
11         ${man_MANS}
12
13 MAINTAINERCLEANFILES=ChangeLog
14
15 .PHONY: ChangeLog
16
17 ChangeLog:
18         (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)
19
20 dist-hook: ChangeLog
21