1ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
2
3SUBDIRS = \
4	common \
5	xfconf \
6	xfconfd \
7	xfconf-query \
8	po \
9	docs \
10	tests
11
12if ENABLE_BASH_COMPLETION
13SUBDIRS += completions
14endif
15
16if XFCONF_ENABLE_GSETTINGS_BACKEND
17SUBDIRS += gsettings-backend
18endif
19
20.PHONY: ChangeLog
21
22ChangeLog: Makefile
23	(GIT_DIR=$(top_srcdir)/.git git log > .changelog.tmp \
24	&& mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) \
25	|| (touch ChangeLog; echo 'Git directory not found: installing possibly empty changelog.' >&2)
26
27dist-hook: ChangeLog
28
29EXTRA_DIST = \
30	AUTHORS \
31	COPYING \
32	ChangeLog \
33	NEWS \
34	README.md \
35	m4/introspection.m4 \
36	m4/vapigen.m4
37
38DISTCHECK_CONFIGURE_FLAGS = \
39	--enable-gtk-doc \
40	--enable-introspection \
41	--disable-vala
42