gstreamer/ext/mplex/Makefile.am
Nicolas Dufresne 4261692187 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 14:05:52 -04:00

21 lines
558 B
Makefile

plugin_LTLIBRARIES = libgstmplex.la
libgstmplex_la_SOURCES = \
gstmplex.cc \
gstmplexibitstream.cc \
gstmplexjob.cc \
gstmplexoutputstream.cc
libgstmplex_la_CXXFLAGS = \
$(GST_PLUGINS_BAD_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_CXXFLAGS) $(MPLEX_CFLAGS)
libgstmplex_la_LIBADD = \
$(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
$(GST_LIBS) $(MPLEX_LIBS)
libgstmplex_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(MPLEX_LDFLAGS)
noinst_HEADERS = \
gstmplex.hh \
gstmplexibitstream.hh \
gstmplexjob.hh \
gstmplexoutputstream.hh