gstreamer/gst/playback/Makefile.am
Ronald S. Bultje df916dcfc9 gst/playback/Makefile.am: We need the marshallers for decodebin, too.
Original commit message from CVS:
* gst/playback/Makefile.am:
We need the marshallers for decodebin, too.
2004-10-31 13:37:26 +00:00

53 lines
1.2 KiB
Makefile

glib_enum_define=GST_PLAY
glib_enum_prefix=gst_play
built_sources = gstplay-marshal.c
built_headers = gstplay-marshal.h
plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@
plugin_LTLIBRARIES = libgstplaybin.la libgstdecodebin.la
libgstplaybin_la_SOURCES = \
gstplaybin.c \
gstplaybasebin.c \
gststreaminfo.c
nodist_libgstplaybin_la_SOURCES = $(built_sources)
libgstplaybin_la_CFLAGS = $(GST_CFLAGS)
libgstplaybin_la_LIBADD =
libgstplaybin_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libgstdecodebin_la_SOURCES = gstdecodebin.c
nodist_libgstdecodebin_la_SOURCES = $(built_sources)
libgstdecodebin_la_CFLAGS = $(GST_CFLAGS)
libgstdecodebin_la_LIBADD =
libgstdecodebin_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
noinst_HEADERS = gstplaybasebin.h gststreaminfo.h
noinst_PROGRAMS = test decodetest test2 test3 test4
test_LDADD = $(GST_LIBS)
test_CFLAGS = $(GST_CFLAGS)
test2_LDADD = $(GST_LIBS)
test2_CFLAGS = $(GST_CFLAGS)
test3_LDADD = $(GST_LIBS)
test3_CFLAGS = $(GST_CFLAGS)
test4_LDADD = $(GST_LIBS)
test4_CFLAGS = $(GST_CFLAGS)
decodetest_LDADD = $(GST_LIBS)
decodetest_CFLAGS = $(GST_CFLAGS)
BUILT_SOURCES = $(built_headers) $(built_sources)
EXTRA_DIST = gstplay-marshal.list
CLEANFILES = $(BUILT_SOURCES)
include $(top_srcdir)/common/glib-gen.mak