mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +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.
16 lines
395 B
Makefile
16 lines
395 B
Makefile
plugin_LTLIBRARIES = libgstcurl.la
|
|
|
|
libgstcurl_la_SOURCES = gstcurl.c gstcurlsink.c
|
|
libgstcurl_la_CFLAGS = \
|
|
$(GST_PLUGINS_BAD_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(CURL_CFLAGS)
|
|
libgstcurl_la_LIBADD = \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(CURL_LIBS)
|
|
libgstcurl_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstcurl_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = gstcurlsink.h
|