1DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc 2 3COMMON_SUBDIRS = ext docs common tests 4SUBDIRS = $(LIBAV_SUBDIRS) $(COMMON_SUBDIRS) pkgconfig 5DIST_SUBDIRS = $(COMMON_SUBDIRS) gst-libs pkgconfig 6 7EXTRA_DIST = \ 8 depcomp autogen.sh \ 9 AUTHORS COPYING NEWS README ChangeLog gst-libav.doap \ 10 meson_options.txt \ 11 $(shell find "$(top_srcdir)" -type f -name meson.build ! -path "$(top_srcdir)/$(PACKAGE_TARNAME)-*" ) 12 13ACLOCAL_AMFLAGS = -I m4 -I common/m4 14 15include $(top_srcdir)/common/release.mak 16 17if HAVE_GST_CHECK 18check-valgrind: 19 $(MAKE) -C tests/check check-valgrind 20 21check-torture: 22 $(MAKE) -C tests/check torture 23 24build-checks: 25 $(MAKE) -C tests/check build-checks 26else 27check-valgrind: 28 echo "'check' library not installed, skipping" 29 30check-torture: 31 echo "'check' library not installed, skipping" 32 33build-checks: 34 echo "'check' library not installed, skipping" 35endif 36 37CRUFT_FILES = \ 38 $(top_builddir)/gst-libav.spec \ 39 $(top_builddir)/common/shave \ 40 $(top_builddir)/common/shave-libtool \ 41 $(top_builddir)/common/m4/libtool.m4 \ 42 $(top_builddir)/common/m4/ltoptions.m4 \ 43 $(top_builddir)/common/m4/ltsugar.m4 \ 44 $(top_builddir)/common/m4/ltversion.m4 \ 45 $(top_builddir)/common/m4/lt~obsolete.m4 46 47CRUFT_DIRS = \ 48 $(top_srcdir)/docs/plugins/tmpl 49 50include $(top_srcdir)/common/cruft.mak 51 52all-local: check-cruft 53