mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
4261692187
Static and dynamic plugins now have the same interface. The standard --enable-static/--enable-shared toggle are sufficient.
39 lines
851 B
Makefile
39 lines
851 B
Makefile
plugin_LTLIBRARIES = libgstcurl.la
|
|
|
|
if USE_SSH2
|
|
gstcurlsshsink_SOURCES = gstcurlsshsink.c gstcurlsftpsink.c
|
|
else
|
|
gstcurlsshsink_SOURCES =
|
|
endif
|
|
|
|
libgstcurl_la_SOURCES = gstcurl.c \
|
|
gstcurlbasesink.c \
|
|
gstcurltlssink.c \
|
|
gstcurlhttpsink.c \
|
|
gstcurlfilesink.c \
|
|
gstcurlftpsink.c \
|
|
$(gstcurlsshsink_SOURCES) \
|
|
gstcurlsmtpsink.c
|
|
libgstcurl_la_CFLAGS = \
|
|
$(GST_PLUGINS_BAD_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(SSH2_CFLAGS) \
|
|
$(CURL_CFLAGS)
|
|
libgstcurl_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(WINSOCK2_LIBS) \
|
|
$(SSH2_LIBS) \
|
|
$(CURL_LIBS)
|
|
libgstcurl_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstcurlbasesink.h \
|
|
gstcurltlssink.h \
|
|
gstcurlhttpsink.h \
|
|
gstcurlfilesink.h \
|
|
gstcurlftpsink.h \
|
|
gstcurlsmtpsink.h \
|
|
gstcurlsshsink.h \
|
|
gstcurlsftpsink.h
|