mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
2079938fc2
Original commit message from CVS: * gst/cdxaparse/Makefile.am: * gst/cdxaparse/gstcdxaparse.c: * gst/cdxaparse/gstcdxastrip.c: * gst/cdxaparse/gstcdxastrip.h: * gst/cdxaparse/gstvcdparse.c: * gst/cdxaparse/gstvcdparse.h: Port VCD parser (formerly cdxastrip) from 0.8 to 0.10. Doesn't do anything the 0.8 version didn't do though.
23 lines
431 B
Makefile
23 lines
431 B
Makefile
plugin_LTLIBRARIES = libgstcdxaparse.la
|
|
|
|
libgstcdxaparse_la_SOURCES = \
|
|
gstcdxaparse.c \
|
|
gstvcdparse.c
|
|
|
|
|
|
noinst_HEADERS = \
|
|
gstcdxaparse.h \
|
|
gstvcdparse.h
|
|
|
|
libgstcdxaparse_la_CFLAGS = \
|
|
$(GST_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS)
|
|
|
|
libgstcdxaparse_la_LIBADD = \
|
|
$(GST_LIBS) \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstriff-@GST_MAJORMINOR@
|
|
|
|
libgstcdxaparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|