diff options
author | Andy Wingo <wingo@pobox.com> | 2007-12-17 14:46:26 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2007-12-17 14:46:26 +0000 |
commit | ad6223b448bf527de15f2617fed9b4fa53495854 (patch) | |
tree | 3309c66ca6dfbd3e94bc432b3204e1f2a95fb089 /gst/switch/Makefile.am | |
parent | 9db3f63b135acd7866bedc9a7e097da3a6b294bb (diff) | |
download | gst-plugins-bad-ad6223b448bf527de15f2617fed9b4fa53495854.tar.gz gst-plugins-bad-ad6223b448bf527de15f2617fed9b4fa53495854.tar.bz2 gst-plugins-bad-ad6223b448bf527de15f2617fed9b4fa53495854.zip |
gst/switch/gstswitch.*: Add `block' and `switch' signals.
Original commit message from CVS:
2007-12-17 Andy Wingo <wingo@pobox.com>
* gst/switch/gstswitch.h (struct _GstStreamSelectorClass):
* gst/switch/gstswitch.c (gst_stream_selector_class_init): Add
`block' and `switch' signals.
* gst/switch/Makefile.am:
* gst/switch/gstswitch-marshal.list: Add foo to generate a
marshaller for the `switch' signal. Patch 2/12.
Diffstat (limited to 'gst/switch/Makefile.am')
-rw-r--r-- | gst/switch/Makefile.am | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/gst/switch/Makefile.am b/gst/switch/Makefile.am index b5a55038..b829095d 100644 --- a/gst/switch/Makefile.am +++ b/gst/switch/Makefile.am @@ -1,9 +1,22 @@ +glib_enum_prefix = gst_switch + +include $(top_srcdir)/common/glib-gen.mak + +built_sources = gstswitch-marshal.c +built_headers = gstswitch-marshal.h + +BUILT_SOURCES = $(built_sources) $(built_headers) + +CLEANFILES = $(BUILT_SOURCES) + +EXTRA_DIST = gstswitch-marshal.list plugin_LTLIBRARIES = libgstswitch.la libgstswitch_la_SOURCES = gstswitch.c +nodist_libgstswitch_la_SOURCES = $(built_sources) libgstswitch_la_CFLAGS = $(GST_CFLAGS) libgstswitch_la_LIBADD = libgstswitch_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) -noinst_HEADERS = gstswitch.h +noinst_HEADERS = gstswitch.h $(built_headers) |