1
2SUBDIRS = \
3	themes \
4	$(GTK_SUBDIRS)
5
6DIST_SUBDIRS= \
7	themes \
8	gtk-2.0 \
9	gtk-3.0
10
11distclean-local:
12	rm -rf *.cache *~
13
14.PHONY: ChangeLog
15
16ChangeLog: Makefile
17	(GIT_DIR=$(top_srcdir)/.git git log > .changelog.tmp \
18	&& mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) \
19	|| (touch ChangeLog; echo 'Git directory not found: installing possibly empty changelog.' >&2)
20
21dist-hook: ChangeLog
22