gstreamer/gst/subparse/Makefile.am
Nicolas Dufresne 8e6c6266d7 Remove plugin specific static build option
Static and dynamic plugins now have the same interface. The standard
--enable-static/--enable-shared toggle are sufficient.
2017-05-16 13:42:07 -04:00

29 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