1
DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc
2
3
SUBDIRS =
4
5
if BUILD_MODULE
6
  SUBDIRS += module
7
endif
8
if BUILD_GST
9
  SUBDIRS += \
10
	gst \
11
	bc-app \
12
	common
13
endif
14
15
DIST_SUBDIRS = \
16
	gst \
17
	bc-app \
18
	common \
19
	m4
20
21
# include before EXTRA_DIST for win32 assignment
22
include $(top_srcdir)/common/win32.mak
23
24
EXTRA_DIST = \
25
	depcomp \
26
	AUTHORS COPYING NEWS README RELEASE REQUIREMENTS \
27
	ChangeLog autogen.sh $(win32)
28
29
DISTCLEANFILES = _stdint.h
30
31
ACLOCAL_AMFLAGS = -I m4 -I common/m4
32
33
include $(top_srcdir)/common/release.mak
34
#include $(top_srcdir)/common/po.mak
35
36
check-valgrind:
37
	cd tests/check && make check-valgrind
38
39
if HAVE_GST_CHECK
40
check-torture:
41
	cd tests/check && make torture
42
else
43
check-torture:
44
	true
45
endif
46
47
WIN32_COPY = \
48
	$(top_builddir)/_stdint.h
49
50
win32-update:
51
	for f in $(WIN32_COPY); do cp $$f win32/common;done
52
53
include $(top_srcdir)/common/coverage/lcov.mak
54
55
check: check-exports