mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
c3d4977761
Move include directives for gst-libs into GST_PLUGINS_BAD_CFLAGS, and fix all the Makefiles that use it. This is so that all the include directories are added in the proper order: first the directories in srcdir/builddir, then gst-plugins-base dirs, then gstreamer dirs. If the order is wrong, installed headers may be used instead of local headers and/or uninstalled headers from -base.
39 lines
779 B
Makefile
39 lines
779 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 = $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS)
|
|
libgstdvb_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstdvb_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
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
|
|
|