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