1@SET_MAKE@
2
3ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
4
5SUBDIRS = \
6	backgrounds \
7	common \
8	doc \
9	po \
10	settings \
11	src \
12	pixmaps
13
14manpagedir = $(mandir)/man1
15manpage_DATA = xfdesktop.1
16
17EXTRA_DIST = \
18	README.md \
19	TODO \
20	intltool-extract.in \
21	intltool-merge.in \
22	intltool-update.in \
23	$(conf_DATA) \
24	$(manpage_DATA)
25
26DISTCLEANFILES = \
27	intltool-extract \
28	intltool-merge \
29	intltool-update
30
31distuninstallcheck_listfiles = \
32	find . -type f -print | grep -v ./share/icons/hicolor/icon-theme.cache
33
34distclean-local:
35	-rm -rf *.cache *~
36
37.PHONY: ChangeLog
38
39ChangeLog: Makefile
40	(GIT_DIR=$(top_srcdir)/.git git log > .changelog.tmp \
41	&& mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) \
42	|| (touch ChangeLog; echo 'Git directory not found: installing possibly empty changelog.' >&2)
43
44dist-hook: ChangeLog
45