~online-accounts/libaccounts-glib/13.04

129.9.82 by David King
Make tests optional at configure time
1
SUBDIRS = libaccounts-glib docs tools
129.4.1 by Alberto Mardegan
Add PyGObject override file
2
if ENABLE_PYTHON
3
SUBDIRS += pygobject
4
endif
129.9.82 by David King
Make tests optional at configure time
5
if ENABLE_TESTS
6
SUBDIRS += tests
7
endif
1 by Alberto Mardegan
Initial push to public repository
8
129.1.2 by Alberto Mardegan
Setup GObject introspection
9
ACLOCAL_AMFLAGS = -I m4
10
11
DISTCHECK_CONFIGURE_FLAGS = \
12
	--enable-gtk-doc \
129.9.61 by David King
Generate and install man pages from documentation
13
	--enable-introspection=yes \
14
	--enable-man
129.1.1 by Alberto Mardegan
Changes for "make distcheck"
15
1 by Alberto Mardegan
Initial push to public repository
16
pkgconfigdir = $(libdir)/pkgconfig
129.9.64 by David King
Update automake syntax in Makefile.am files
17
pkgconfig_in_files = libaccounts-glib.pc.in
18
pkgconfig_DATA = $(pkgconfig_in_files:.pc.in=.pc)
1 by Alberto Mardegan
Initial push to public repository
19
26 by Tomi Suviola
Add backup support for accounts and move database location
20
backupconfdir = ${prefix}/share/backup-framework/applications
21
backupconf_in_files = accounts.conf.in 
129.9.64 by David King
Update automake syntax in Makefile.am files
22
backupconf_DATA = $(backupconf_in_files:.conf.in=.conf)
26 by Tomi Suviola
Add backup support for accounts and move database location
23
129.9.79 by David King
Generate ChangeLog from git log during dist
24
dist-hook: git-changelog-hook
25
26
git-changelog-hook: Makefile
27
	$(AM_V_at)if $(top_srcdir)/build-aux/missing --run git \
28
		--git-dir=$(top_srcdir)/.git --work-tree=$(top_srcdir) log \
29
		--no-merges --date=short --pretty='tformat:%cd  %an  <%ae>%n%n%s%n%n%b' | \
30
		$(SED) -e '/[^  ]/,/^[  ]*$$/ !d' > .ChangeLog.tmp; \
31
	then mv -f .ChangeLog.tmp "$(top_distdir)/ChangeLog"; \
32
	else rm -f .ChangeLog.tmp; exit 1; fi
33
129.1.1 by Alberto Mardegan
Changes for "make distcheck"
34
CLEANFILES = \
35
	$(backupconf_DATA)
36
129.9.64 by David King
Update automake syntax in Makefile.am files
37
DISTCLEANFILES = \
38
	$(pkgconfig_DATA)
39
40
dist_noinst_DATA = \
129.1.1 by Alberto Mardegan
Changes for "make distcheck"
41
	$(backupconf_in_files) \
129.1.2 by Alberto Mardegan
Setup GObject introspection
42
	m4/introspection.m4
26 by Tomi Suviola
Add backup support for accounts and move database location
43
44
$(backupconf_DATA): $(backupconf_in_files) 
129.9.64 by David King
Update automake syntax in Makefile.am files
45
	$(AM_V_GEN)$(SED) -e "s|\@DATABASE_DIR\@|$(DATABASE_DIR)|" $< > $@
129.9.79 by David King
Generate ChangeLog from git log during dist
46
47
.PHONY:  git-changelog-hook