mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +00:00
7da65ab6d5
Reorder the list to match the SOURCES. https://bugzilla.gnome.org/show_bug.cgi?id=794320
42 lines
769 B
Makefile
42 lines
769 B
Makefile
plugin_LTLIBRARIES = libgstsrt.la
|
|
|
|
libgstsrt_la_SOURCES = \
|
|
gstsrt.c \
|
|
gstsrtbasesrc.c \
|
|
gstsrtclientsrc.c \
|
|
gstsrtserversrc.c \
|
|
gstsrtbasesink.c \
|
|
gstsrtclientsink.c \
|
|
gstsrtserversink.c \
|
|
$(NULL)
|
|
|
|
libgstsrt_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(GIO_CFLAGS) \
|
|
$(SRT_CFLAGS) \
|
|
$(NULL)
|
|
|
|
libgstsrt_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(GIO_LIBS) \
|
|
-lgstbase-1.0 \
|
|
$(SRT_LIBS) \
|
|
$(NULL)
|
|
|
|
libgstsrt_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
noinst_HEADERS = \
|
|
gstsrt.h \
|
|
gstsrtbasesrc.h \
|
|
gstsrtclientsrc.h \
|
|
gstsrtserversrc.h \
|
|
gstsrtbasesink.h \
|
|
gstsrtclientsink.h \
|
|
gstsrtserversink.h \
|
|
$(NULL)
|
|
|
|
include $(top_srcdir)/common/gst-glib-gen.mak
|