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 = \
|
2009-09-12 12:01:20 +00:00
|
|
|
pkgconfig \
|
2004-12-24 11:01:24 +00:00
|
|
|
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 \
|
2009-09-12 12:01:20 +00:00
|
|
|
m4
|
2003-04-07 21:34:30 +00:00
|
|
|
|
2004-12-24 11:01:24 +00:00
|
|
|
DIST_SUBDIRS = \
|
2009-09-12 12:01:20 +00:00
|
|
|
pkgconfig \
|
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 \
|
2009-09-12 12:01:20 +00:00
|
|
|
m4
|
2004-12-24 13:09:48 +00:00
|
|
|
|
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:
|
2014-10-13 04:08:41 +00:00
|
|
|
$(MAKE) -C tests/check 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:
|
2014-10-13 04:08:41 +00:00
|
|
|
$(MAKE) -C tests/check torture
|
2014-07-31 16:40:59 +00:00
|
|
|
build-checks:
|
2014-10-13 04:08:41 +00:00
|
|
|
$(MAKE) -C tests/check build-checks
|
2006-03-24 14:11:20 +00:00
|
|
|
else
|
|
|
|
check-torture:
|
|
|
|
true
|
2014-07-31 16:40:59 +00:00
|
|
|
build-checks:
|
|
|
|
true
|
2006-03-24 14:11:20 +00:00
|
|
|
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:
|
2009-03-06 10:35:01 +00:00
|
|
|
for f in $(WIN32_COPY); do cp -v $$f win32/common; done; \
|
|
|
|
for f in win32/common/*-enumtypes.c; do \
|
|
|
|
echo "Indenting $$f"; \
|
|
|
|
gst-indent $$f; gst-indent $$f; \
|
|
|
|
done
|
|
|
|
cp -v $(top_builddir)/win32/common/config.h-new \
|
2009-02-26 04:26:05 +00:00
|
|
|
$(top_srcdir)/win32/common/config.h
|
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
|
|
|
|
|
2010-03-14 22:13:25 +00:00
|
|
|
# cruft: plugins that have been merged or moved or renamed
|
2007-12-13 10:10:35 +00:00
|
|
|
|
2010-03-14 22:13:25 +00:00
|
|
|
CRUFT_FILES = \
|
|
|
|
$(top_builddir)/common/shave \
|
2010-10-30 11:03:39 +00:00
|
|
|
$(top_builddir)/common/shave-libtool \
|
2011-05-28 11:39:06 +00:00
|
|
|
$(top_builddir)/gst-libs/gst/audio/testchannels \
|
2016-05-15 13:43:11 +00:00
|
|
|
$(top_builddir)/gst-libs/gst/app/gstapp-marshal.c \
|
|
|
|
$(top_builddir)/gst-libs/gst/app/gstapp-marshal.h \
|
2012-09-11 00:31:54 +00:00
|
|
|
$(top_builddir)/tests/check/elements/gdppay \
|
|
|
|
$(top_builddir)/tests/check/elements/gdpdepay \
|
|
|
|
$(top_builddir)/tests/check/pipelines/streamheader \
|
2011-12-20 15:34:38 +00:00
|
|
|
$(top_builddir)/tests/examples/audio/testchannels \
|
2011-10-27 07:51:46 +00:00
|
|
|
$(top_builddir)/tests/examples/volume/volume \
|
2010-10-30 11:03:39 +00:00
|
|
|
$(top_builddir)/tools/gst-discoverer
|
|
|
|
|
2011-06-07 19:43:24 +00:00
|
|
|
CRUFT_DIRS = \
|
2015-06-09 12:31:15 +00:00
|
|
|
$(top_srcdir)/docs/plugins/tmpl \
|
2012-01-18 17:21:57 +00:00
|
|
|
$(top_srcdir)/ext/gio \
|
2012-09-11 00:31:54 +00:00
|
|
|
$(top_srcdir)/gst/gdp \
|
2011-06-07 19:43:24 +00:00
|
|
|
$(top_srcdir)/sys/v4l \
|
|
|
|
$(top_srcdir)/tests/examples/v4l
|
2010-03-14 22:13:25 +00:00
|
|
|
|
|
|
|
include $(top_srcdir)/common/cruft.mak
|
|
|
|
|
|
|
|
all-local: check-cruft
|