1
DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc
2
3
if USE_GCONFTOOL
4
GCONF_DIR = gconf
5
else
6
GCONF_DIR =
7
endif
8
9
ALWAYS_SUBDIRS =		\
10
	gst sys ext 		\
11
	tests			\
12
	docs			\
13
	po			\
14
	common			\
15
	m4			\
16
	pkgconfig
17
18
SUBDIRS = 			\
19
	$(ALWAYS_SUBDIRS)	\
20
	$(GCONF_DIR)
21
22
DIST_SUBDIRS = 			\
23
	$(ALWAYS_SUBDIRS)	\
24
	gconf
25
26
27
# include before EXTRA_DIST for win32 assignment
28
include $(top_srcdir)/common/win32.mak
29
30
EXTRA_DIST = \
31
	gst-plugins-good.spec depcomp \
32
	AUTHORS COPYING NEWS README RELEASE REQUIREMENTS \
33
	ChangeLog gst-plugins-good.doap autogen.sh \
34
	$(win32)
35
36
DISTCLEANFILES = _stdint.h
37
38
noinst_HEADERS = \
39
	gst-libs/gst/gettext.h \
40
	gst-libs/gst/gst-i18n-plugin.h
41
42
ACLOCAL_AMFLAGS = -I m4 -I common/m4
43
44
include $(top_srcdir)/common/release.mak
45
include $(top_srcdir)/common/po.mak
46
47
check-valgrind:
48
	cd tests/check && make check-valgrind
49
50
if HAVE_GST_CHECK
51
check-torture:
52
	cd tests/check && make torture
53
else
54
check-torture:
55
	true
56
endif
57
58
win32-update:
59
	cp $(top_builddir)/win32/common/config.h-new \
60
	    $(top_srcdir)/win32/common/config.h
61
62
include $(top_srcdir)/common/coverage/lcov.mak