1ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
2
3SUBDIRS =
4
5if USE_NLS
6SUBDIRS += po
7endif
8
9if ENABLE_OPEN_TERMINAL
10SUBDIRS += open-terminal
11endif
12
13if ENABLE_SENDTO
14SUBDIRS += sendto
15endif
16
17if ENABLE_IMAGE_CONVERTER
18SUBDIRS += image-converter
19endif
20
21if ENABLE_GKSU
22SUBDIRS += gksu
23endif
24
25if ENABLE_SHARE
26SUBDIRS += share
27endif
28
29if ENABLE_WALLPAPER
30SUBDIRS += wallpaper
31endif
32
33if ENABLE_XATTR_TAGS
34SUBDIRS += xattr-tags
35endif
36
37EXTRA_DIST = autogen.sh
38
39DISTCLEANFILES =
40
41DISTCHECK_CONFIGURE_FLAGS =   \
42	--enable-gtk-doc \
43	--with-cajadir='$${libdir}/caja/extensions-2.0-distcheck' \
44	--enable-compile-warnings=no \
45	CFLAGS='-Wno-deprecated-declarations'
46
47# Build ChangeLog from GIT  history
48ChangeLog:
49	$(AM_V_GEN) if test -d $(top_srcdir)/.git; then \
50		GIT_DIR="$(top_srcdir)/.git" git log --stat > $@; \
51	fi
52
53dist: ChangeLog
54
55.PHONY: ChangeLog
56
57-include $(top_srcdir)/git.mk
58