queue2: add overrun signal
[platform/upstream/gstreamer.git] / Makefile.am
index c8fe12a..503ffb3 100644 (file)
@@ -11,7 +11,8 @@ SUBDIRS = pkgconfig \
        docs \
        po \
        m4 \
-       common
+       common \
+       data
 
 if BUILD_TOOLS
 SUBDIRS += tools
@@ -23,14 +24,15 @@ DIST_SUBDIRS = pkgconfig \
        docs \
        po \
        m4 \
-       common
+       common \
+       data
 
 # include before EXTRA_DIST for win32 assignment
 include $(top_srcdir)/common/win32.mak
 
 EXTRA_DIST = \
        gstreamer.spec gstreamer.spec.in \
-       gst-element-check.m4.in \
+       gst-element-check.m4 \
        configure.ac autogen.sh depcomp \
        MAINTAINERS ABOUT-NLS RELEASE gstreamer.doap \
        scripts/gst-uninstalled \
@@ -85,16 +87,22 @@ endif
 
 if HAVE_CHECK
 check-valgrind:
-       cd tests/check && make check-valgrind
+       $(MAKE) -C tests/check check-valgrind
 
 check-torture:
-       cd tests/check && make torture
+       $(MAKE) -C tests/check torture
+
+build-checks:
+       $(MAKE) -C tests/check build-checks
 else
 check-valgrind:
        echo "'check' library not installed, skipping"
 
 check-torture:
        echo "'check' library not installed, skipping"
+
+build-checks:
+       echo "'check' library not installed, skipping"
 endif
 
 # FIXME: this target should be run every time we do "make release"
@@ -153,7 +161,7 @@ endif
 check: $(CHECK_EXPORTS) check-enum-gettypes
 
 gst-element-check-@GST_API_VERSION@.m4: gst-element-check.m4
-       $(AM_V_GEN)cp gst-element-check.m4 gst-element-check-@GST_API_VERSION@.m4
+       $(AM_V_GEN)cp $(srcdir)/gst-element-check.m4 gst-element-check-@GST_API_VERSION@.m4
 
 # cruft: plugins that have been merged or moved or renamed
 
@@ -197,8 +205,13 @@ CRUFT_FILES = \
 
 CRUFT_DIRS = \
        $(top_builddir)/tests/examples/xml \
+       $(top_builddir)/tests/examples/launch \
+       $(top_builddir)/tests/examples/metadata \
+       $(top_builddir)/tests/examples/queue \
+       $(top_builddir)/tests/examples/typefind \
        $(top_builddir)/gst/tmp-introspect* \
-       $(top_builddir)/libs/gst/*/tmp-introspect*
+       $(top_builddir)/libs/gst/*/tmp-introspect* \
+       $(top_srcdir)/docs/plugins/tmpl
 
 include $(top_srcdir)/common/cruft.mak