1ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
2
3SUBDIRS = \
4	common \
5	dialogs \
6	xfce4-settings-manager \
7	xfce4-settings-editor \
8	xfsettingsd \
9	po \
10	icons
11
12distuninstallcheck_listfiles = 						\
13	find . -type f -print | grep -v ./share/icons/hicolor/icon-theme.cache
14
15EXTRA_DIST = \
16	intltool-extract.in \
17	intltool-merge.in \
18	intltool-update.in \
19	README.md
20
21.PHONY: ChangeLog
22
23ChangeLog: Makefile
24	(GIT_DIR=$(top_srcdir)/.git git log > .changelog.tmp \
25	&& mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) \
26	|| (touch ChangeLog; echo 'Git directory not found: installing possibly empty changelog.' >&2)
27
28dist-hook: ChangeLog
29
30DISTCLEANFILES = \
31	intltool-extract \
32	intltool-merge \
33	intltool-update
34