mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
25 lines
494 B
Makefile
25 lines
494 B
Makefile
|
plugin_LTLIBRARIES = libgstmfc.la
|
||
|
|
||
|
libgstmfc_la_SOURCES = \
|
||
|
mfc_decoder/mfc_decoder.c \
|
||
|
gstmfc.c \
|
||
|
gstmfcdec.c
|
||
|
|
||
|
noinst_HEADERS = \
|
||
|
mfc_decoder/mfc_decoder.h \
|
||
|
gstmfcdec.h
|
||
|
|
||
|
libgstmfc_la_CFLAGS = \
|
||
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
||
|
$(GST_BASE_CFLAGS) \
|
||
|
$(GST_CFLAGS) \
|
||
|
-I$(srcdir)
|
||
|
libgstmfc_la_LIBADD = \
|
||
|
$(GST_PLUGINS_BASE_LIBS) \
|
||
|
-lgstvideo-@GST_MAJORMINOR@ \
|
||
|
$(GST_BASE_LIBS) \
|
||
|
$(GST_LIBS)
|
||
|
libgstmfc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||
|
libgstmfc_la_LIBTOOLFLAGS = --tag=disable-static
|
||
|
|