1# $Id$
2
3SUBDIRS =								\
4	po								\
5	thunar-plugin
6
7distclean-local:
8	rm -rf *.spec *.cache *~
9
10.PHONY: ChangeLog
11
12ChangeLog: Makefile
13	(GIT_DIR=$(top_srcdir)/.git git log > .changelog.tmp \
14	&& mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) \
15	|| (touch ChangeLog; echo 'Git directory not found: installing possibly empty changelog.' >&2)
16
17dist-hook: ChangeLog
18
19EXTRA_DIST =								\
20	intltool-extract.in						\
21	intltool-merge.in						\
22	intltool-update.in
23
24DISTCLEANFILES = 							\
25	intltool-extract						\
26	intltool-merge							\
27	intltool-update
28
29# vi:set ts=8 sw=8 noet ai nocindent syntax=automake:
30