mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
8e6c6266d7
Static and dynamic plugins now have the same interface. The standard --enable-static/--enable-shared toggle are sufficient.
28 lines
613 B
Makefile
28 lines
613 B
Makefile
plugin_LTLIBRARIES = libgstsubparse.la
|
|
|
|
SAMIPARSE_SOURCES = samiparse.c samiparse.h
|
|
|
|
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)
|
|
|
|
noinst_HEADERS = \
|
|
gstssaparse.h \
|
|
gstsubparse.h \
|
|
samiparse.h \
|
|
tmplayerparse.h \
|
|
mpl2parse.h \
|
|
qttextparse.h
|