mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 10:31:05 +00:00
b541208b77
Remove the android/ top dir Fixe the Makefile.am to be androgenized To build gstreamer for android we are now using androgenizer which generates the needed Android.mk files. Androgenizer can be found here: http://git.collabora.co.uk/?p=user/derek/androgenizer.git
64 lines
1.9 KiB
Makefile
64 lines
1.9 KiB
Makefile
plugin_LTLIBRARIES = libgstrtpmanager.la
|
|
|
|
glib_enum_define = GST_RTP_BIN
|
|
glib_gen_prefix = gst_rtp_bin
|
|
glib_gen_basename = gstrtpbin
|
|
|
|
include $(top_srcdir)/common/gst-glib-gen.mak
|
|
|
|
built_sources = gstrtpbin-marshal.c
|
|
built_headers = gstrtpbin-marshal.h
|
|
|
|
BUILT_SOURCES = $(built_sources) $(built_headers)
|
|
|
|
libgstrtpmanager_la_SOURCES = gstrtpmanager.c \
|
|
gstrtpbin.c \
|
|
gstrtpjitterbuffer.c \
|
|
gstrtpptdemux.c \
|
|
gstrtpssrcdemux.c \
|
|
rtpjitterbuffer.c \
|
|
rtpsession.c \
|
|
rtpsource.c \
|
|
rtpstats.c \
|
|
gstrtpsession.c
|
|
|
|
nodist_libgstrtpmanager_la_SOURCES = \
|
|
$(built_sources)
|
|
|
|
noinst_HEADERS = gstrtpbin.h \
|
|
gstrtpjitterbuffer.h \
|
|
gstrtpptdemux.h \
|
|
gstrtpssrcdemux.h \
|
|
rtpjitterbuffer.h \
|
|
rtpsession.h \
|
|
rtpsource.h \
|
|
rtpstats.h \
|
|
gstrtpsession.h
|
|
|
|
libgstrtpmanager_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
|
|
$(WARNING_CFLAGS) $(ERROR_CFLAGS)
|
|
libgstrtpmanager_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstnetbuffer-@GST_MAJORMINOR@ -lgstrtp-@GST_MAJORMINOR@ \
|
|
$(GST_BASE_LIBS) $(GST_LIBS_LIBS)
|
|
libgstrtpmanager_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstrtpmanager_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
EXTRA_DIST = gstrtpbin-marshal.list
|
|
|
|
|
|
Android.mk: Makefile.am $(BUILT_SOURCES)
|
|
androgenizer \
|
|
-:PROJECT libgstrtpmanager -:SHARED libgstrtpmanager \
|
|
-:TAGS eng debug \
|
|
-:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
|
|
-:SOURCES $(libgstrtpmanager_la_SOURCES) \
|
|
$(nodist_libgstrtpmanager_la_SOURCES) \
|
|
-:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(libgstrtpmanager_la_CFLAGS) \
|
|
-:LDFLAGS $(libgstrtpmanager_la_LDFLAGS) \
|
|
$(libgstrtpmanager_la_LIBADD) \
|
|
-ldl \
|
|
-:PASSTHROUGH LOCAL_ARM_MODE:=arm \
|
|
LOCAL_MODULE_PATH:='$$(TARGET_OUT)/lib/gstreamer-0.10' \
|
|
> $@
|