mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
dd8b6e6962
Original commit message from CVS: don't build checks if we don't have gstcheck
46 lines
723 B
Makefile
46 lines
723 B
Makefile
DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc
|
|
|
|
if USE_GCONFTOOL
|
|
GCONF_DIR = gconf
|
|
else
|
|
GCONF_DIR =
|
|
endif
|
|
|
|
if HAVE_CHECK
|
|
SUBDIRS_CHECK = check
|
|
else
|
|
SUBDIRS_CHECK =
|
|
endif
|
|
|
|
ALWAYS_SUBDIRS = \
|
|
gst sys ext \
|
|
docs \
|
|
po \
|
|
m4 common
|
|
|
|
SUBDIRS = \
|
|
$(ALWAYS_SUBDIRS) \
|
|
$(SUBDIRS_CHECK) \
|
|
$(GCONF_DIR)
|
|
|
|
DIST_SUBDIRS = \
|
|
$(ALWAYS_SUBDIRS) \
|
|
check \
|
|
gconf
|
|
|
|
EXTRA_DIST = \
|
|
gst-plugins-good.spec depcomp \
|
|
AUTHORS COPYING NEWS README RELEASE REQUIREMENTS \
|
|
ChangeLog autogen.sh
|
|
|
|
DISTCLEANFILES = _stdint.h
|
|
|
|
noinst_HEADERS = \
|
|
gst-libs/gst/gettext.h \
|
|
gst-libs/gst/gst-i18n-plugin.h
|
|
|
|
include $(top_srcdir)/common/release.mak
|
|
# include $(top_srcdir)/common/po.mak
|
|
|
|
check-valgrind:
|
|
cd check && make check-valgrind
|