mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 09:41:07 +00:00
cf0a34528d
Original commit message from CVS: libXv is now linked against by test/* and gstplay if it is present. -lXv isn't leaked all over the place due to AC_CHECK_LIB test. This is still messy though - we shouldn't have to link explicitly with extra things just because we use certain plugins. Build Makefile in tests, but don't recurse into tests when doing the build (tests no longer in SUBDIRS).
27 lines
692 B
Makefile
27 lines
692 B
Makefile
|
|
if HAVE_LIBGLADE_GNOME
|
|
# The following line mustn't be indented - automake is _very_ fussy..
|
|
gstplay_subdir=gstplay
|
|
else
|
|
# The following line mustn't be indented - automake is _very_ fussy..
|
|
gstplay_subdir=
|
|
endif
|
|
|
|
# These are the subdirs which might get used.
|
|
SUBDIRS = gst libs plugins . $(gstplay_subdir) test editor tools docs # tests
|
|
|
|
# These are all the possible subdirs
|
|
DIST_SUBDIRS = gst libs plugins . gstplay test editor tools docs tests
|
|
|
|
bin_SCRIPTS = gstreamer-config
|
|
|
|
m4datadir = $(datadir)/aclocal
|
|
m4data_DATA = gstreamer.m4
|
|
|
|
EXTRA_DIST = gstreamer.spec.in gstreamer-config.in gstreamer.m4 LICENSE
|
|
|
|
dist-hook:
|
|
cp gstreamer.spec $(distdir)
|
|
|
|
rpm: dist
|
|
rpm -ta $(distdir).tar.gz
|