2005-09-04 00:21:01 +00:00
|
|
|
DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc
|
2005-09-03 15:02:24 +00:00
|
|
|
|
2002-06-14 16:44:33 +00:00
|
|
|
if BUILD_EXTERNAL
|
2005-07-07 16:41:21 +00:00
|
|
|
SUBDIRS_EXT = ext
|
2002-06-14 16:44:33 +00:00
|
|
|
else
|
2005-07-07 16:41:21 +00:00
|
|
|
SUBDIRS_EXT =
|
2002-06-14 16:44:33 +00:00
|
|
|
endif
|
|
|
|
|
2004-12-24 11:01:24 +00:00
|
|
|
SUBDIRS = \
|
|
|
|
gst-libs \
|
2005-07-07 16:41:21 +00:00
|
|
|
gst sys $(SUBDIRS_EXT) \
|
2004-12-24 11:01:24 +00:00
|
|
|
tools \
|
2005-11-30 17:42:49 +00:00
|
|
|
tests \
|
2005-06-29 13:35:04 +00:00
|
|
|
docs \
|
2004-12-24 11:01:24 +00:00
|
|
|
po \
|
|
|
|
common \
|
|
|
|
m4 \
|
2004-12-24 13:09:48 +00:00
|
|
|
pkgconfig
|
2003-04-07 21:34:30 +00:00
|
|
|
|
2004-12-24 11:01:24 +00:00
|
|
|
DIST_SUBDIRS = \
|
2005-06-29 13:35:04 +00:00
|
|
|
docs \
|
2004-12-24 11:01:24 +00:00
|
|
|
gst-libs \
|
|
|
|
gst sys ext \
|
|
|
|
tools \
|
2005-11-30 17:42:49 +00:00
|
|
|
tests \
|
2004-12-24 11:01:24 +00:00
|
|
|
po \
|
|
|
|
common \
|
|
|
|
m4 \
|
2004-12-24 13:09:48 +00:00
|
|
|
pkgconfig
|
|
|
|
|
2007-12-17 23:41:14 +00:00
|
|
|
# include before EXTRA_DIST for win32 assignment
|
|
|
|
include $(top_srcdir)/common/win32.mak
|
2005-12-01 16:22:36 +00:00
|
|
|
|
2004-12-24 11:01:24 +00:00
|
|
|
EXTRA_DIST = \
|
2005-05-05 15:06:40 +00:00
|
|
|
gst-plugins-base.spec depcomp \
|
2004-12-24 11:01:24 +00:00
|
|
|
AUTHORS COPYING COPYING.LIB NEWS README RELEASE REQUIREMENTS \
|
2006-12-15 00:20:37 +00:00
|
|
|
ChangeLog gst-plugins-base.doap autogen.sh $(win32)
|
2002-08-09 20:56:56 +00:00
|
|
|
|
2004-12-24 11:01:24 +00:00
|
|
|
DISTCLEANFILES = _stdint.h
|
2004-02-03 02:40:15 +00:00
|
|
|
|
2005-11-27 14:34:11 +00:00
|
|
|
ACLOCAL_AMFLAGS = -I m4 -I common/m4
|
|
|
|
|
2004-03-17 10:59:35 +00:00
|
|
|
include $(top_srcdir)/common/release.mak
|
2004-05-03 13:37:09 +00:00
|
|
|
include $(top_srcdir)/common/po.mak
|
2005-09-18 22:38:36 +00:00
|
|
|
|
|
|
|
check-valgrind:
|
2005-11-30 17:05:56 +00:00
|
|
|
cd tests/check && make check-valgrind
|
2005-11-23 21:25:27 +00:00
|
|
|
|
2007-07-13 16:02:23 +00:00
|
|
|
if HAVE_GST_CHECK
|
2005-11-23 21:25:27 +00:00
|
|
|
check-torture:
|
2005-11-30 17:05:56 +00:00
|
|
|
cd tests/check && make torture
|
2006-03-24 14:11:20 +00:00
|
|
|
else
|
|
|
|
check-torture:
|
|
|
|
true
|
|
|
|
endif
|
2006-01-29 18:21:12 +00:00
|
|
|
|
2006-02-13 20:49:07 +00:00
|
|
|
WIN32_COPY = \
|
|
|
|
$(top_builddir)/gst-libs/gst/*/*-enumtypes.[ch] \
|
|
|
|
$(top_builddir)/_stdint.h
|
|
|
|
|
2006-01-29 18:21:12 +00:00
|
|
|
win32-update:
|
|
|
|
for f in $(WIN32_COPY); do cp $$f win32/common;done
|
2006-07-02 21:48:51 +00:00
|
|
|
|
|
|
|
include $(top_srcdir)/common/coverage/lcov.mak
|
2007-12-13 10:10:35 +00:00
|
|
|
|
|
|
|
check: check-exports
|
|
|
|
|
|
|
|
|