mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
6bb3f78a0c
Original commit message from CVS: added --disable-plugins option; useful if you are making the switch to gst-plugins
65 lines
1.2 KiB
Makefile
65 lines
1.2 KiB
Makefile
PACKAGE = @PACKAGE@
|
|
VERSION = @VERSION@
|
|
|
|
# if libglade and gnome1 are present, build the player and editor
|
|
# if libglade and gnome2, only the player
|
|
# otherwise none
|
|
|
|
if HAVE_LIBGLADE_GNOME
|
|
if HAVE_GNOME
|
|
SUBDIRS_LGG = gstplay editor
|
|
else
|
|
SUBDIRS_LGG = gstplay
|
|
endif
|
|
else
|
|
SUBDIRS_LGG =
|
|
endif
|
|
|
|
if BUILD_DOCS
|
|
SUBDIRS_DOCS = docs
|
|
else
|
|
SUBDIRS_DOCS =
|
|
endif
|
|
|
|
if BUILD_TESTS
|
|
SUBDIRS_TESTS = test tests testsuite
|
|
else
|
|
SUBDIRS_TESTS =
|
|
endif
|
|
|
|
if BUILD_EXAMPLES
|
|
SUBDIRS_EXAMPLES = examples
|
|
else
|
|
SUBDIRS_EXAMPLES =
|
|
endif
|
|
|
|
if BUILD_PLUGINS
|
|
SUBDIRS_PLUGINS = plugins
|
|
else
|
|
SUBDIRS_PLUGINS =
|
|
endif
|
|
|
|
SUBDIRS = include gst libs $(SUBDIRS_PLUGINS) tools $(SUBDIRS_TESTS) $(SUBDIRS_EXAMPLES) \
|
|
$(SUBDIRS_LGG) $(SUBDIRS_DOCS)
|
|
|
|
# These are all the possible subdirs
|
|
DIST_SUBDIRS = include gst libs plugins tools test tests testsuite examples gstplay editor docs
|
|
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = gstreamer.pc
|
|
|
|
EXTRA_DIST = gstreamer.spec.in \
|
|
gstreamer.pc.in gstreamer-uninstalled.pc.in \
|
|
configure.ac autogen.sh depcomp \
|
|
LICENSE REQUIREMENTS ABOUT-NLS \
|
|
idiottest.mak
|
|
|
|
dist-hook:
|
|
cp gstreamer.spec $(distdir)
|
|
|
|
rpm: dist
|
|
rpm -ta $(distdir).tar.gz
|
|
|
|
include $(top_srcdir)/idiottest.mak
|
|
|