]> git.0d.be Git - empathy.git/blob - Makefile.am
add K.Vishnoo Charan Reddy as an artist contributor
[empathy.git] / Makefile.am
1 SUBDIRS = tools extensions po data libempathy libempathy-gtk src help tests
2
3 if HAVE_NST
4 SUBDIRS += nautilus-sendto-plugin
5 endif
6
7 ACLOCAL_AMFLAGS = -I m4
8
9 DISTCHECK_CONFIGURE_FLAGS =             \
10         --disable-scrollkeeper          \
11         --disable-schemas-install
12
13 EXTRA_DIST =                    \
14         ChangeLog               \
15         ChangeLog.old           \
16         README                  \
17         CONTRIBUTORS            \
18         autogen.sh
19
20 DISTCLEANFILES =                \
21         ChangeLog
22
23 # Workaround broken scrollkeeper that doesn't remove its files on
24 # uninstall.
25 distuninstallcheck_listfiles = find . -type f -print | grep -v '^\./var/scrollkeeper'
26
27 distclean-local:
28         if test "x$(srdcir)" = "x."; then :; else \
29                 rm -f ChangeLog; \
30         fi
31
32 ChangeLog:
33         @echo Creating $@
34         @if test -d "$(srcdir)/.git"; then \
35           (GIT_DIR=$(top_srcdir)/.git ./missing --run git log EMPATHY_2_27_1.. --stat) | fmt --split-only > $@.tmp \
36           && mv -f $@.tmp $@ \
37           || ($(RM) $@.tmp; \
38               echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
39               (test -f $@ || echo git-log is required to generate this file >> $@)); \
40         else \
41           test -f $@ || \
42           (echo A git checkout and git-log is required to generate ChangeLog >&2 && \
43           echo A git checkout and git-log is required to generate this file >> $@); \
44         fi
45
46 .PHONY: ChangeLog
47