2001-01-14 21:55:41 +00:00
|
|
|
PACKAGE = @PACKAGE@
|
|
|
|
VERSION = @VERSION@
|
|
|
|
|
2001-01-01 08:37:41 +00:00
|
|
|
# if libglade is present, build the player and editor
|
2000-08-18 23:31:30 +00:00
|
|
|
if HAVE_LIBGLADE_GNOME
|
2001-01-01 13:41:27 +00:00
|
|
|
SUBDIRS_LGG = gstplay editor
|
|
|
|
else
|
|
|
|
SUBDIRS_LGG =
|
2000-08-18 23:31:30 +00:00
|
|
|
endif
|
|
|
|
|
2001-02-07 22:23:54 +00:00
|
|
|
if BUILD_DOCS
|
|
|
|
SUBDIRS_DOCS = docs
|
|
|
|
else
|
|
|
|
SUBDIRS_DOCS =
|
|
|
|
endif
|
|
|
|
|
2001-03-09 12:08:38 +00:00
|
|
|
SUBDIRS = include gst libs plugins tools test tests testsuite examples \
|
2001-02-07 22:23:54 +00:00
|
|
|
$(SUBDIRS_LGG) $(SUBDIRS_DOCS)
|
2001-01-01 13:41:27 +00:00
|
|
|
|
2000-08-18 23:31:30 +00:00
|
|
|
# These are all the possible subdirs
|
2001-03-09 12:08:38 +00:00
|
|
|
DIST_SUBDIRS = include gst libs plugins tools test tests testsuite examples gstplay editor docs debian
|
2001-01-01 08:37:41 +00:00
|
|
|
|
2000-01-31 06:49:07 +00:00
|
|
|
|
|
|
|
bin_SCRIPTS = gstreamer-config
|
|
|
|
|
|
|
|
m4datadir = $(datadir)/aclocal
|
|
|
|
m4data_DATA = gstreamer.m4
|
|
|
|
|
2001-05-25 21:00:07 +00:00
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
|
|
pkgconfig_DATA = gstreamer.pc
|
|
|
|
|
2001-03-16 01:06:50 +00:00
|
|
|
man_MANS = gstreamer-config.1
|
|
|
|
|
2001-05-25 21:00:07 +00:00
|
|
|
EXTRA_DIST = gstreamer.spec.in gstreamer-config.in gstreamer.m4 \
|
2001-05-27 21:56:04 +00:00
|
|
|
gstreamer.pc.in gstreamer-uninstalled.pc.in \
|
2001-05-25 21:00:07 +00:00
|
|
|
LICENSE REQUIREMENTS ABOUT-NLS $(man_MANS)
|
2000-01-31 09:43:08 +00:00
|
|
|
|
|
|
|
dist-hook:
|
|
|
|
cp gstreamer.spec $(distdir)
|
2000-01-31 06:49:07 +00:00
|
|
|
|
|
|
|
rpm: dist
|
|
|
|
rpm -ta $(distdir).tar.gz
|
2001-05-29 16:38:29 +00:00
|
|
|
|
|
|
|
# Idiot test to stop the installing of versions with plugin srcdir enabled
|
|
|
|
install-exec-hook:
|
|
|
|
if PLUGINS_USE_SRCDIR
|
|
|
|
@echo "*** ERROR: Cannot install:" 2>&1
|
|
|
|
@echo "GStreamer was configured using the --enable-plugin-srcdir option." 2>&1
|
|
|
|
@echo
|
|
|
|
@echo "This option is for development purposes only: binaries built with" 2>&1
|
|
|
|
@echo "it should be used with code in the build tree only. To build an"
|
|
|
|
@echo "installable version, use ./configure without the --enable-plugin-srcdir"
|
|
|
|
@echo "option. Note that the autogen.sh script supplies the plugin srcdir"
|
|
|
|
@echo "option automatically - it cannot be used to configure installable builds"
|
|
|
|
@echo
|
|
|
|
@/bin/false
|
|
|
|
endif
|