diff options
Diffstat (limited to 'gst-libs/gst/Makefile.am')
-rw-r--r-- | gst-libs/gst/Makefile.am | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/gst-libs/gst/Makefile.am b/gst-libs/gst/Makefile.am index 06f12a07..699e5896 100644 --- a/gst-libs/gst/Makefile.am +++ b/gst-libs/gst/Makefile.am @@ -12,12 +12,29 @@ endif SUBDIRS = audio colorbalance floatcast \ $(GCONF_DIR) idct media-info \ - mixer navigation play \ - resample riff tuner video \ + mixer navigation play propertyprobe \ + resample tuner video \ xoverlay $(X_DIR) DIST_SUBDIRS = audio colorbalance floatcast \ gconf idct media-info \ - mixer navigation play \ - resample riff tuner video \ + mixer navigation play propertyprobe \ + resample tuner video \ xoverlay xwindowlistener + + +lib_LTLIBRARIES = libgst-interfaces-@GST_MAJORMINOR@.la + +libgst_interfaces_@GST_MAJORMINOR@_la_SOURCES = + +libgst_interfaces_@GST_MAJORMINOR@_la_LIBADD = \ + colorbalance/libgstcolorbalance.la \ + mixer/libgstmixer.la \ + navigation/libgstnavigation.la \ + propertyprobe/libgstpropertyprobe.la \ + tuner/libgsttuner.la \ + xoverlay/libgstxoverlay.la \ + $(GST_LIBS) + +libgst_interfaces_@GST_MAJORMINOR@_la_LDFLAGS = @GST_PLUGINS_LT_LDFLAGS@ -version-info @GST_PLUGINS_LIBVERSION@ + |