mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
53 lines
1.5 KiB
Makefile
53 lines
1.5 KiB
Makefile
plugin_LTLIBRARIES = libgsttcp.la
|
|
|
|
# variables used for enum/marshal generation
|
|
glib_enum_headers = gsttcp.h
|
|
glib_enum_define = GST_TCP
|
|
glib_gen_prefix = gst_tcp
|
|
glib_gen_basename = gsttcp
|
|
|
|
include $(top_srcdir)/common/gst-glib-gen.mak
|
|
|
|
built_sources = gsttcp-enumtypes.c gsttcp-marshal.c
|
|
built_headers = gsttcp-enumtypes.h gsttcp-marshal.h
|
|
|
|
BUILT_SOURCES = $(built_sources) $(built_headers)
|
|
|
|
libgsttcp_la_SOURCES = \
|
|
gsttcpplugin.c \
|
|
gsttcpclientsrc.c gsttcpclientsink.c \
|
|
gstmultisocketsink.c \
|
|
gsttcpserversrc.c gsttcpserversink.c
|
|
|
|
nodist_libgsttcp_la_SOURCES = \
|
|
$(built_sources)
|
|
|
|
libgsttcp_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(GIO_CFLAGS)
|
|
libgsttcp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgsttcp_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(GIO_LIBS)
|
|
libgsttcp_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = \
|
|
gsttcp.h \
|
|
gsttcpclientsrc.h gsttcpclientsink.h \
|
|
gstmultisocketsink.h \
|
|
gsttcpserversrc.h gsttcpserversink.h
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
EXTRA_DIST = gsttcp-marshal.list
|
|
|
|
Android.mk: Makefile.am $(BUILT_SOURCES)
|
|
androgenizer \
|
|
-:PROJECT libgsttcp -:SHARED libgsttcp \
|
|
-:TAGS eng debug \
|
|
-:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
|
|
-:SOURCES $(libgsttcp_la_SOURCES) \
|
|
$(nodist_libgsttcp_la_SOURCES) \
|
|
-:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(libgsttcp_la_CFLAGS) \
|
|
-:LDFLAGS $(libgsttcp_la_LDFLAGS) \
|
|
$(libgsttcp_la_LIBADD) \
|
|
-ldl \
|
|
-:PASSTHROUGH LOCAL_ARM_MODE:=arm \
|
|
LOCAL_MODULE_PATH:='$$(TARGET_OUT)/lib/gstreamer-0.10' \
|
|
> $@
|