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