X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=Makefile.am;h=d9b3acaa5d09f777f4867eb3ccdf056c4190c20f;hb=5470f6df00595f4ab44871e0e633bf15006abc5c;hp=890f40bb99cadd2915717508faed1aed5c569218;hpb=cdb0102e9e6e67cbc49575c54bbf217f1dc88db6;p=platform%2Fupstream%2Fgstreamer.git diff --git a/Makefile.am b/Makefile.am index 890f40b..d9b3aca 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,72 +1,46 @@ -DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc --enable-docbook +DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc -if BUILD_TESTS -## SUBDIRS_TESTS = tests testsuite -## FIXME: write tests from scratch -SUBDIRS_TESTS = -if HAVE_CHECK -SUBDIRS_CHECK = check -else -SUBDIRS_CHECK = -endif -else -SUBDIRS_TESTS = -SUBDIRS_CHECK = -endif - -if BUILD_EXAMPLES -## FIXME: write examples from scratch -# SUBDIRS_EXAMPLES = examples -SUBDIRS_EXAMPLES = -else -SUBDIRS_EXAMPLES = -endif - -all-local: gst-element-check-@GST_MAJORMINOR@.m4 - -gst-element-check-@GST_MAJORMINOR@.m4: gst-element-check.m4 - cp $(srcdir)/gst-element-check.m4 gst-element-check-@GST_MAJORMINOR@.m4 - -ACLOCAL_AMFLAGS = -I common/m4 +# note: keep in sync with configure.ac +ACLOCAL_AMFLAGS = -I m4 -I common/m4 aclocaldir = $(datadir)/aclocal -aclocal_DATA = gst-element-check-@GST_MAJORMINOR@.m4 +aclocal_DATA = gst-element-check-1.0.m4 -SUBDIRS = \ - gst libs tools \ - $(SUBDIRS_CHECK) \ - $(SUBDIRS_TESTS) \ - $(SUBDIRS_EXAMPLES) \ +SUBDIRS = pkgconfig \ + gst libs plugins tests \ docs \ - pkgconfig po \ - common + po \ + m4 \ + common \ + data + +if BUILD_TOOLS +SUBDIRS += tools +endif # These are all the possible subdirs -DIST_SUBDIRS = \ - gst libs tools \ - check \ - tests testsuite \ - examples \ +DIST_SUBDIRS = pkgconfig \ + gst libs plugins tools tests \ docs \ - pkgconfig po \ - common - -win32 = $(shell cat $(top_srcdir)/win32/MANIFEST) + po \ + m4 \ + common \ + data -debug: - echo $(win32) EXTRA_DIST = \ - gstreamer.spec gstreamer.spec.in gst-element-check.m4 \ + gst-element-check-1.0.m4 \ configure.ac autogen.sh depcomp \ - REQUIREMENTS ABOUT-NLS DOCBUILDING DEVEL RELEASE \ - $(win32) + MAINTAINERS ABOUT-NLS RELEASE gstreamer.doap \ + scripts/gst-uninstalled \ + $(shell find "$(top_srcdir)" -type f -name meson.build ! -path "$(top_srcdir)/gstreamer-*" ) \ + meson_options.txt \ + gst/parse/gen_lex.py.in gst/parse/gen_grammar.py.in -CLEANFILES = gst-element-check-@GST_MAJORMINOR@.m4 +DISTCLEANFILES = _stdint.h include $(top_srcdir)/common/release.mak include $(top_srcdir)/common/po.mak - if GST_GCOV_ENABLED clean-gcov: find -name "*.da" -o -name "*.gcov" | xargs rm || true @@ -77,7 +51,7 @@ clean-bbg: GCOV_DIRS=gst libs ## .PHONY so it always rebuilds it -.PHONY: coverage-report.txt test-coverage-report.html +.PHONY: coverage-report.txt coverage-report.txt: BBG_FILES=`find $(GCOV_DIRS) -name "*.bbg"` ; \ @@ -96,33 +70,125 @@ coverage-report.txt: echo $$C_FILES ; \ $(top_builddir)/testsuite/decode-gcov --report $$C_FILES > coverage-report.txt -test-coverage-report.html: - mkdir -p ./coverage - lcov --directory . --zerocounters - -$(MAKE) check - lcov --directory . --capture --output-file ./coverage/$(PACKAGE).info - genhtml -o ./coverage --num-spaces 2 ./coverage/$(PACKAGE).info - check-coverage: clean-gcov all check coverage-report.txt cat coverage-report.txt else coverage-report.txt: echo "Need to reconfigure with --enable-gcov" - -test-coverage-report.html: - echo "Need to reconfigure with --enable-gcov" check-coverage: echo "Need to reconfigure with --enable-gcov" endif +if HAVE_CHECK +check-valgrind: + $(MAKE) -C tests/check check-valgrind + +check-torture: + $(MAKE) -C tests/check torture + +build-checks: + $(MAKE) -C tests/check build-checks +else check-valgrind: - cd check && make check-valgrind + echo "'check' library not installed, skipping" check-torture: - cd check && make torture + echo "'check' library not installed, skipping" + +build-checks: + echo "'check' library not installed, skipping" +endif -win32-update: - for f in gstversion.h gstenumtypes.c gstenumtypes.h; do \ - cp $(top_builddir)/gst/$$f win32/common; done +check-enum-gettypes: $(top_builddir)/gst/gstenumtypes.h + @echo 'Checking if all enum and flag _get_type() funcs are inited in gst_init()'; \ + FUNCS=`grep '_get_type (' gst/gstenumtypes.h | sed -e 's/^.*gst_/gst_/' -e 's/_get_type.*$$/_get_type/'`;\ + MISSING_FUNCS=''; \ + for f in $$FUNCS; do \ + INIT_LINE=`grep $$f $(top_srcdir)/gst/*.c | grep g_type_class_ref`; \ + if test "x$$INIT_LINE" = "x"; then \ + MISSING_FUNCS="$$MISSING_FUNCS $$f"; \ + fi; \ + done; \ + if test "x$$MISSING_FUNCS" != "x"; then \ + echo "FIXME: please add to the following to gst/gst.c init_post():"; \ + for f in $$MISSING_FUNCS; do \ + echo " g_type_class_ref ($$f ());"; \ + done; \ + exit 1; \ + fi; \ + echo 'Checking if all enum and flag _get_type() funcs are deinited in gst_deinit()'; \ + MISSING_FUNCS=''; \ + for f in $$FUNCS; do \ + INIT_LINE=`grep $$f $(top_srcdir)/gst/*.c | grep g_type_class_unref`; \ + if test "x$$INIT_LINE" = "x"; then \ + MISSING_FUNCS="$$MISSING_FUNCS $$f"; \ + fi; \ + done; \ + if test "x$$MISSING_FUNCS" != "x"; then \ + echo "FIXME: please add to the following to gst/gst.c gst_deinit():"; \ + for f in $$MISSING_FUNCS; do \ + echo " g_type_class_unref (g_type_class_peek ($$f ()));"; \ + done; \ + exit 1; \ + fi + +include $(top_srcdir)/common/coverage/lcov.mak + +check: check-enum-gettypes + +# cruft: plugins that have been merged or moved or renamed + +CRUFT_FILES = \ + $(top_builddir)/win32/common/config.h-new \ + $(top_builddir)/common/shave \ + $(top_builddir)/common/shave-libtool \ + $(top_builddir)/common/m4/codeset.m4 \ + $(top_builddir)/common/m4/gettext.m4 \ + $(top_builddir)/common/m4/glibc2.m4 \ + $(top_builddir)/common/m4/glibc21.m4 \ + $(top_builddir)/common/m4/iconv.m4 \ + $(top_builddir)/common/m4/intdiv0.m4 \ + $(top_builddir)/common/m4/intl.m4 \ + $(top_builddir)/common/m4/intldir.m4 \ + $(top_builddir)/common/m4/intlmacosx.m4 \ + $(top_builddir)/common/m4/intmax.m4 \ + $(top_builddir)/common/m4/inttypes-pri.m4 \ + $(top_builddir)/common/m4/inttypes_h.m4 \ + $(top_builddir)/common/m4/lcmessage.m4 \ + $(top_builddir)/common/m4/lib-ld.m4 \ + $(top_builddir)/common/m4/lib-link.m4 \ + $(top_builddir)/common/m4/lib-prefix.m4 \ + $(top_builddir)/common/m4/libtool.m4 \ + $(top_builddir)/common/m4/lock.m4 \ + $(top_builddir)/common/m4/longlong.m4 \ + $(top_builddir)/common/m4/ltoptions.m4 \ + $(top_builddir)/common/m4/ltsugar.m4 \ + $(top_builddir)/common/m4/ltversion.m4 \ + $(top_builddir)/common/m4/lt~obsolete.m4 \ + $(top_builddir)/common/m4/nls.m4 \ + $(top_builddir)/common/m4/po.m4 \ + $(top_builddir)/common/m4/printf-posix.m4 \ + $(top_builddir)/common/m4/progtest.m4 \ + $(top_builddir)/common/m4/size_max.m4 \ + $(top_builddir)/common/m4/stdint_h.m4 \ + $(top_builddir)/common/m4/uintmax_t.m4 \ + $(top_builddir)/common/m4/visibility.m4 \ + $(top_builddir)/common/m4/wchar_t.m4 \ + $(top_builddir)/common/m4/wint_t.m4 \ + $(top_builddir)/common/m4/xsize.m4 + +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_srcdir)/docs/plugins/tmpl + +include $(top_srcdir)/common/cruft.mak + +all-local: check-cruft