mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
f8f4620451
_BAD_CFLAGS should always come first, then GST_PLUGINS_BASE_CFLAGS, then GST_BASE_CFLAGS then GST_CFLAGS. Same for libs: first plugins base libs, then GST_BASE_LIB then GST_LIBS.
20 lines
575 B
Makefile
20 lines
575 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) $(GST_LIBS) $(MPLEX_LIBS)
|
|
libgstmplex_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(MPLEX_LDFLAGS)
|
|
libgstmplex_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = \
|
|
gstmplex.hh \
|
|
gstmplexibitstream.hh \
|
|
gstmplexjob.hh \
|
|
gstmplexoutputstream.hh
|