mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-11 20:01:35 +00:00
17 lines
362 B
Makefile
17 lines
362 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)
|