summaryrefslogtreecommitdiff
path: root/Makefile.am
blob: 9a90373ecdaaaaa6f4df8debbf43081cba5b7215 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
ACLOCAL_AMFLAGS = -I m4

SUBDIRS = \
    m4 \
    tools \
    spec \
    data \
    telepathy-glib \
    po \
    $(NULL)

if HAVE_INTROSPECTION
if HAVE_VALA
SUBDIRS += vala
endif
endif

if ENABLE_FARSTREAM
SUBDIRS += telepathy-farstream
endif

if ENABLE_LOGGER
SUBDIRS += telepathy-logger
endif

# build examples and tests after all the things under test!
SUBDIRS += \
    examples \
    tests \
    $(NULL)

# do this last, because it's slow - in a compile/test/fix cycle, we don't
# want to bother building the docs until the tests have passed
SUBDIRS += docs

DISTCHECK_CONFIGURE_FLAGS = \
    --enable-gtk-doc \
    --enable-introspection \
    --disable-scrollkeeper \
    --disable-schemas-install \
    $(NULL)

EXTRA_DIST = \
    autogen.sh \
    gtk-doc.make

CLEANFILES = FIXME.out

check-local::
	egrep -A 5 '[F]IXME|[T]ODO|[X]XX' $(srcdir)/telepathy-glib/*.[ch] \
		> FIXME.out || true

check-valgrind:
	$(MAKE) -C tests check-valgrind 2>&1 | tee valgrind.log

maintainer-upload-release: _maintainer-upload-release-local
_maintainer-upload-release-local: _maintainer-upload-release-check
	rsync -rvzPp --chmod=Dg+s,ug+rwX,o=rX $(builddir)/docs/reference/telepathy-glib/html/ \
	telepathy.freedesktop.org:/srv/telepathy.freedesktop.org/www/doc/telepathy-glib-1/
	rsync -rvzPp --chmod=Dg+s,ug+rwX,o=rX docs/reference/telepathy-farstream/html/ \
	telepathy.freedesktop.org:/srv/telepathy.freedesktop.org/www/doc/telepathy-farstream-1/

BRANCH = $(shell sh tools/git-which-branch.sh misc | tr -d '\n' | tr -C "[:alnum:]" _)
UPLOAD_BRANCH_TO = people.freedesktop.org:public_html/telepathy-glib

upload-branch-docs: all
	rsync -rtzvPp --chmod=a+rX docs/reference/telepathy-glib/html/ \
		$(UPLOAD_BRANCH_TO)-$(BRANCH)/
	rsync -rzvPp --chmod=a+rX docs/reference/telepathy-farstream/html/ \
		$(UPLOAD_BRANCH_TO)-$(BRANCH)/telepathy-farstream/

include tools/lcov.am

CHANGELOG_RANGE = ^telepathy-logger-0.8.0 telepathy-glib-0.22.0..
CHECK_FOR_UNRELEASED = \
    $(srcdir)/NEWS \
    $(filter-out %/defs.h,$(wildcard $(srcdir)/telepathy-glib/*.[ch])) \
    $(NULL)

include tools/telepathy.am

# Don't just "make distclean", because that would result in forgetting
# the options we used when we ran configure.
#
# However, we do want to distclean in docs (to get rid of xml, html etc.)
# and in telepathy-glib (to get rid of any stray files in _gen which might
# not exist on the new branch).
clean-for-new-branch:
	$(MAKE) clean
	$(MAKE) -C docs distclean
	$(MAKE) -C telepathy-glib distclean
	$(SHELL) ./config.status --recheck
	$(SHELL) ./config.status

# Workaround broken scrollkeeper that doesn't remove its files on
# uninstall.
distuninstallcheck_listfiles = find . -type f -print | grep -v '^\./var/scrollkeeper'