2015-11-26 17:41:36 +00:00
|
|
|
DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc --with-bash-completion-dir=no
|
2009-08-04 15:13:11 +00:00
|
|
|
|
2015-03-12 12:57:28 +00:00
|
|
|
if BUILD_EXAMPLES
|
|
|
|
EXAMPLES_SUBDIRS= examples
|
|
|
|
else
|
|
|
|
EXAMPLES_SUBDIRS=
|
|
|
|
endif
|
|
|
|
|
|
|
|
SUBDIRS = ges tests tools common m4 pkgconfig docs bindings plugins $(EXAMPLES_SUBDIRS)
|
2009-08-04 15:13:11 +00:00
|
|
|
|
2009-09-10 14:22:00 +00:00
|
|
|
DIST_SUBDIRS = $(SUBDIRS)
|
2009-08-04 15:13:11 +00:00
|
|
|
|
|
|
|
EXTRA_DIST = \
|
2016-12-16 17:29:59 +00:00
|
|
|
depcomp \
|
2009-08-04 15:16:31 +00:00
|
|
|
AUTHORS COPYING NEWS README RELEASE \
|
2016-11-18 18:21:45 +00:00
|
|
|
ChangeLog autogen.sh gst-editing-services.doap \
|
2017-02-15 00:58:52 +00:00
|
|
|
$(shell find "$(top_srcdir)" -type f -name meson.build ! -path "$(top_srcdir)/$(PACKAGE_TARNAME)-*" ) \
|
2017-06-10 00:15:26 +00:00
|
|
|
meson_options.txt
|
2009-08-04 15:13:11 +00:00
|
|
|
|
|
|
|
DISTCLEANFILES = _stdint.h
|
|
|
|
|
|
|
|
ACLOCAL_AMFLAGS = -I m4 -I common/m4
|
|
|
|
|
|
|
|
include $(top_srcdir)/common/release.mak
|
|
|
|
include $(top_srcdir)/common/po.mak
|
|
|
|
|
2011-03-25 09:01:45 +00:00
|
|
|
include $(top_srcdir)/common/coverage/lcov.mak
|
|
|
|
|
2009-08-04 15:13:11 +00:00
|
|
|
check-valgrind:
|
2014-10-26 20:23:26 +00:00
|
|
|
$(MAKE) -C tests/check check-valgrind
|
2009-08-04 15:13:11 +00:00
|
|
|
|
2013-04-25 22:03:21 +00:00
|
|
|
# Test actual high-level functionnality.
|
|
|
|
check-integration:
|
2014-10-26 20:23:26 +00:00
|
|
|
$(MAKE) -C tests/check check-integration
|
2013-04-25 22:03:21 +00:00
|
|
|
|
2015-02-20 14:22:25 +00:00
|
|
|
if ENABLE_BASH_COMPLETION
|
|
|
|
bashcompletiondir = $(BASH_COMPLETION_DIR)
|
|
|
|
dist_bashcompletion_DATA = data/completions/ges-launch-1.0
|
|
|
|
endif
|
|
|
|
|
2009-08-04 15:13:11 +00:00
|
|
|
if HAVE_GST_CHECK
|
|
|
|
check-torture:
|
2014-10-26 20:23:26 +00:00
|
|
|
$(MAKE) -C tests/check torture
|
2014-08-01 08:44:57 +00:00
|
|
|
build-checks:
|
2014-10-26 20:23:26 +00:00
|
|
|
$(MAKE) -C tests/check build-checks
|
2009-08-04 15:13:11 +00:00
|
|
|
else
|
|
|
|
check-torture:
|
|
|
|
true
|
2014-08-01 08:44:57 +00:00
|
|
|
build-checks:
|
|
|
|
true
|
2009-08-04 15:13:11 +00:00
|
|
|
endif
|
|
|
|
|
2010-03-12 16:08:00 +00:00
|
|
|
# cruft: plugins that have been merged or moved or renamed
|
|
|
|
CRUFT_FILES = \
|
2016-12-16 17:29:59 +00:00
|
|
|
$(top_builddir)/gst-editing-services.spec \
|
|
|
|
$(top_builddir)/common/shave \
|
|
|
|
$(top_builddir)/common/shave-libtool
|
2009-08-04 15:13:11 +00:00
|
|
|
|
2010-03-12 16:08:00 +00:00
|
|
|
include $(top_srcdir)/common/cruft.mak
|
|
|
|
|
2011-03-25 09:01:45 +00:00
|
|
|
all-local: check-cruft
|