mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-06 01:19:38 +00:00
c5741e1c64
Original commit message from CVS: * configure.ac: * gst/Makefile.am: * gst/gstversion.override.in: * gst/gst-0.10.12.ignore: Add ignore file for 0.10.12 API additions * gst/gst.defs: * gst/base.defs: * gst/gst-types.defs: Add new API definitions * gst/gst-0.10.10.ignore: * gst/gst-0.10.11.ignore: Fixup ignore files. * testsuite/test_segment.py: The update return value is uncertain and will soon be deprecated, don't check against it anymore.
101 lines
3 KiB
Makefile
101 lines
3 KiB
Makefile
common_cflags = $(PYGOBJECT_CFLAGS) $(GST_CFLAGS) $(GST_OPTION_CFLAGS) -fno-strict-aliasing
|
|
common_libadd = $(GST_LIBS) $(GST_OPTION_LIBS)
|
|
common_ldflags = -module -avoid-version
|
|
|
|
pkgpyexecdir = $(pyexecdir)/gst-$(GST_MAJORMINOR)/gst
|
|
|
|
# we install everything in pyexecdir; otherwise you end up with a mess for
|
|
# multilib
|
|
pygstdir = $(pkgpyexecdir)
|
|
pygst_PYTHON = __init__.py
|
|
|
|
pygstexecdir = $(pkgpyexecdir)
|
|
pygstexec_LTLIBRARIES = _gst.la $(interface_lib)
|
|
|
|
interface_lib = interfaces.la
|
|
|
|
defs_DATA = gst-types.defs \
|
|
gst-extrafuncs.defs \
|
|
libs.defs \
|
|
base.defs
|
|
defsdir = $(pkgdatadir)/$(GST_MAJORMINOR)/defs
|
|
|
|
noinst_HEADERS = common.h pygstvalue.h pygstminiobject.h pygstexception.h
|
|
|
|
versioned_overrides = \
|
|
gst-0.10.3.ignore \
|
|
gst-0.10.4.ignore \
|
|
gst-0.10.5.ignore \
|
|
gst-0.10.6.ignore \
|
|
gst-0.10.7.ignore \
|
|
gst-0.10.10.ignore \
|
|
gst-0.10.11.ignore \
|
|
gst-0.10.12.ignore \
|
|
gst-pb-0.10.11.ignore
|
|
|
|
INCLUDES = $(PYTHON_INCLUDES)
|
|
EXTRA_DIST = $(defs_DATA) $(versioned_overrides) common.h arg-types.py
|
|
GEN_FILES = arg-types.py gst-types.defs libs.defs base.defs
|
|
|
|
# GStreamer bindings
|
|
_gst_la_CFLAGS = $(common_cflags)
|
|
_gst_la_LIBADD = $(common_libadd) $(GST_BASE_LIBS)
|
|
_gst_la_LDFLAGS = $(common_ldflags) -export-symbols-regex "^(init_gst|_PyGObject_API).*" \
|
|
$(GST_BASE_LIBS) $(GST_CONTROLLER_LIBS) $(GST_NET_LIBS) $(GST_DP_LIBS)
|
|
_gst_la_SOURCES = \
|
|
gst-argtypes.c \
|
|
gstmodule.c \
|
|
pygstiterator.c \
|
|
pygstminiobject.c \
|
|
pygstvalue.c \
|
|
pygstexception.c
|
|
|
|
nodist__gst_la_SOURCES = gst.c
|
|
GST_OVERRIDES = \
|
|
gst.override \
|
|
gstbin.override \
|
|
gstbuffer.override \
|
|
gstbus.override \
|
|
gstevent.override \
|
|
gstcaps.override \
|
|
gstelement.override \
|
|
gstelementfactory.override \
|
|
gstmessage.override \
|
|
gstobject.override \
|
|
gstquery.override \
|
|
gstpad.override \
|
|
gststructure.override \
|
|
gsttaglist.override \
|
|
gstlibs.override \
|
|
gstbase.override
|
|
|
|
GST_DEFS = gst.defs gst-types.defs gst-extrafuncs.defs libs.defs base.defs
|
|
CLEANFILES = gst.c
|
|
EXTRA_DIST += $(GST_DEFS) $(GST_OVERRIDES) gstversion.override.in
|
|
gst.c: $(GST_DEFS) $(GST_OVERRIDES) $(GEN_FILES) gstversion.override
|
|
|
|
# GStreamer interfaces bindings
|
|
interfaces_la_CFLAGS = $(common_cflags) $(GST_PLUGINS_BASE_CFLAGS)
|
|
interfaces_la_LIBADD = $(common_libadd) -lgstinterfaces-$(GST_MAJORMINOR)
|
|
interfaces_la_LDFLAGS = $(common_ldflags) \
|
|
-export-symbols-regex "^(initinterface|_PyGObject_API).*" $(GST_PLUGINS_BASE_LIBS)
|
|
interfaces_la_SOURCES = interfacesmodule.c
|
|
nodist_interfaces_la_SOURCES = interfaces.c
|
|
INTERFACES_OVERRIDES = interfaces.override xoverlay.override
|
|
INTERFACES_DEFS = interfaces.defs xoverlay.defs xwindowlistener.defs
|
|
CLEANFILES += interfaces.c
|
|
EXTRA_DIST += $(INTERFACES_DEFS) $(INTERFACES_OVERRIDES)
|
|
interfaces.c: $(INTERFACES_DEFS) $(INTERFACES_OVERRIDES) $(GEN_FILES)
|
|
|
|
.defs.c:
|
|
($(PYTHON) $(top_srcdir)/codegen/codegen.py \
|
|
--load-types $(srcdir)/arg-types.py \
|
|
--register $(srcdir)/gst-types.defs \
|
|
--override $(srcdir)/$*.override \
|
|
--extendpath $(top_builddir)/gst/ \
|
|
--extendpath $(srcdir)/ \
|
|
--prefix py$* $<) > gen-$*.c \
|
|
&& cp gen-$*.c $*.c \
|
|
&& rm -f gen-$*.c
|
|
|
|
SUBDIRS = extend
|