X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=Makefile.am;h=503ffb3f1b038ca4bdee4dffc0fbd0dd4643a463;hb=4127407823579b2ecee99da0729079472f5fe9ab;hp=f6ddc4a7b0f1c338ad3279e1e84eddbe19a3f819;hpb=c2c977602754ca2c471482839deb421925014025;p=platform%2Fupstream%2Fgstreamer.git diff --git a/Makefile.am b/Makefile.am index f6ddc4a..503ffb3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,14 +4,19 @@ DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc --enable-docbook ACLOCAL_AMFLAGS = -I m4 -I common/m4 aclocaldir = $(datadir)/aclocal -aclocal_DATA = gst-element-check-@GST_MAJORMINOR@.m4 +aclocal_DATA = gst-element-check-@GST_API_VERSION@.m4 SUBDIRS = pkgconfig \ - gst libs plugins tools tests \ + gst libs plugins tests \ docs \ po \ m4 \ - common + common \ + data + +if BUILD_TOOLS +SUBDIRS += tools +endif # These are all the possible subdirs DIST_SUBDIRS = pkgconfig \ @@ -19,20 +24,21 @@ 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 \ $(win32) -CLEANFILES = gst-element-check-@GST_MAJORMINOR@.m4 +CLEANFILES = gst-element-check-@GST_API_VERSION@.m4 DISTCLEANFILES = _stdint.h @@ -81,27 +87,31 @@ 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" # find a way of automating that win32-update: - for f in gstversion.h gstenumtypes.c gstenumtypes.h gstmarshal.c gstmarshal.h; do \ + for f in gstversion.h gstenumtypes.c gstenumtypes.h; do \ cp $(top_builddir)/gst/$$f win32/common; done $(top_srcdir)/tools/gst-indent win32/common/gstenumtypes.c $(top_srcdir)/tools/gst-indent win32/common/gstenumtypes.c - $(top_srcdir)/tools/gst-indent win32/common/gstmarshal.c - $(top_srcdir)/tools/gst-indent win32/common/gstmarshal.c cp $(top_builddir)/win32/common/config.h-new \ $(top_srcdir)/win32/common/config.h @@ -150,8 +160,8 @@ endif check: $(CHECK_EXPORTS) check-enum-gettypes -gst-element-check-@GST_MAJORMINOR@.m4: gst-element-check.m4 - $(AM_V_GEN)cp gst-element-check.m4 gst-element-check-@GST_MAJORMINOR@.m4 +gst-element-check-@GST_API_VERSION@.m4: gst-element-check.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 @@ -195,9 +205,14 @@ 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 -all-local: gst-element-check-@GST_MAJORMINOR@.m4 check-cruft +all-local: gst-element-check-@GST_API_VERSION@.m4 check-cruft