mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
4261692187
Static and dynamic plugins now have the same interface. The standard --enable-static/--enable-shared toggle are sufficient.
38 lines
804 B
Makefile
38 lines
804 B
Makefile
plugin_LTLIBRARIES = libgstdvb.la
|
|
|
|
libgstdvb_la_SOURCES = \
|
|
gstdvb.c \
|
|
gstdvbsrc.c \
|
|
dvbbasebin.c \
|
|
cam.c \
|
|
camdevice.c \
|
|
camswclient.c \
|
|
camutils.c \
|
|
camtransport.c \
|
|
camsession.c \
|
|
camapplication.c \
|
|
camresourcemanager.c \
|
|
camapplicationinfo.c \
|
|
camconditionalaccess.c \
|
|
parsechannels.c
|
|
|
|
libgstdvb_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_CFLAGS)
|
|
libgstdvb_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/mpegts/libgstmpegts-$(GST_API_VERSION).la \
|
|
$(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS)
|
|
libgstdvb_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstdvbsrc.h \
|
|
dvbbasebin.h \
|
|
cam.h \
|
|
camdevice.h \
|
|
camswclient.h \
|
|
camutils.h \
|
|
camtransport.h \
|
|
camsession.h \
|
|
camapplication.h \
|
|
camresourcemanager.h \
|
|
camapplicationinfo.h \
|
|
camconditionalaccess.h \
|
|
parsechannels.h
|