mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +00:00
44 lines
No EOL
821 B
Makefile
44 lines
No EOL
821 B
Makefile
DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc
|
|
|
|
SUBDIRS = \
|
|
gst \
|
|
bindings \
|
|
m4 \
|
|
common \
|
|
pkgconfig \
|
|
docs \
|
|
examples
|
|
|
|
DIST_SUBDIRS = $(SUBDIRS)
|
|
|
|
EXTRA_DIST = \
|
|
ChangeLog autogen.sh depcomp \
|
|
AUTHORS COPYING NEWS README RELEASE REQUIREMENTS \
|
|
gst-rtsp.spec docs/design/gst-rtp-server-design
|
|
|
|
ACLOCAL_AMFLAGS = -I common/m4 -I m4
|
|
|
|
DISTCLEANFILES = _stdint.h gst-rtsp.spec
|
|
|
|
include $(top_srcdir)/common/release.mak
|
|
include $(top_srcdir)/common/po.mak
|
|
|
|
check-valgrind:
|
|
cd tests/check && make check-valgrind
|
|
|
|
if HAVE_CHECK
|
|
check-torture:
|
|
cd tests/check && make torture
|
|
else
|
|
check-torture:
|
|
true
|
|
endif
|
|
|
|
# cruft: plugins that have been merged or moved or renamed
|
|
CRUFT_FILES = \
|
|
$(top_builddir)/common/shave \
|
|
$(top_builddir)/common/shave-libtool
|
|
|
|
include $(top_srcdir)/common/cruft.mak
|
|
|
|
all-local: check-cruft |