mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-29 21:21:12 +00:00
3c1041d5eb
This reverts commit d2d79e3bc2
,
which was accidentially pushed.
33 lines
710 B
Makefile
33 lines
710 B
Makefile
plugin_LTLIBRARIES = libgstsubparse.la
|
|
|
|
if USE_XML
|
|
SAMIPARSE_SOURCES = samiparse.c samiparse.h
|
|
else
|
|
SAMIPARSE_SOURCES =
|
|
endif
|
|
|
|
libgstsubparse_la_SOURCES = \
|
|
gstssaparse.c \
|
|
gstssaparse.h \
|
|
gstsubparse.c \
|
|
gstsubparse.h \
|
|
$(SAMIPARSE_SOURCES) \
|
|
tmplayerparse.c \
|
|
tmplayerparse.h \
|
|
mpl2parse.c \
|
|
mpl2parse.h \
|
|
qttextparse.c \
|
|
qttextparse.h
|
|
|
|
libgstsubparse_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS)
|
|
libgstsubparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstsubparse_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS)
|
|
libgstsubparse_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = \
|
|
gstssaparse.h \
|
|
gstsubparse.h \
|
|
samiparse.h \
|
|
tmplayerparse.h \
|
|
mpl2parse.h \
|
|
qttextparse.h
|