mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-04 21:42:25 +00:00
28 lines
539 B
Makefile
28 lines
539 B
Makefile
|
plugin_LTLIBRARIES = libgstproxy.la
|
||
|
|
||
|
libgstproxy_la_SOURCES = \
|
||
|
gstproxy.c \
|
||
|
gstproxysink.c \
|
||
|
gstproxysrc.c
|
||
|
|
||
|
noinst_HEADERS = \
|
||
|
gstproxysink.h \
|
||
|
gstproxysrc.h \
|
||
|
gstproxy-priv.h
|
||
|
|
||
|
libgstproxy_la_CFLAGS = $(GST_CFLAGS)
|
||
|
libgstproxy_la_LIBADD = $(GST_LIBS)
|
||
|
libgstproxy_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||
|
libgstproxy_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||
|
|
||
|
gstproxytest_SOURCES = \
|
||
|
gstproxytest.c
|
||
|
|
||
|
gstproxytest_CFLAGS = \
|
||
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
||
|
$(GST_CFLAGS)
|
||
|
|
||
|
gstproxytest_LDADD = \
|
||
|
$(GST_PLUGINS_BASE_LIBS) \
|
||
|
$(GST_LIBS)
|