mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
55 lines
1.5 KiB
Makefile
55 lines
1.5 KiB
Makefile
|
|
plugin_LTLIBRARIES = libgstdebug.la libgstnavigationtest.la
|
|
|
|
noinst_HEADERS = \
|
|
cpureport.h \
|
|
gstcapsdebug.h \
|
|
gstcapssetter.h \
|
|
gstnavigationtest.h \
|
|
gstnavseek.h \
|
|
gstpushfilesrc.h \
|
|
gsttaginject.h \
|
|
progressreport.h \
|
|
tests.h
|
|
|
|
libgstnavigationtest_la_SOURCES = gstnavigationtest.c
|
|
libgstnavigationtest_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS)
|
|
libgstnavigationtest_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_API_VERSION@ $(LIBM)
|
|
libgstnavigationtest_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstnavigationtest_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
libgstdebug_la_SOURCES = \
|
|
gstdebug.c \
|
|
breakmydata.c \
|
|
gstcapssetter.c \
|
|
gstnavseek.c \
|
|
gstpushfilesrc.c \
|
|
gsttaginject.c \
|
|
rndbuffersize.c \
|
|
progressreport.c \
|
|
tests.c \
|
|
cpureport.c \
|
|
testplugin.c
|
|
|
|
# gstcapsdebug.c
|
|
|
|
libgstdebug_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS)
|
|
libgstdebug_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS)
|
|
libgstdebug_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstdebug_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
Android.mk: Makefile.am $(BUILT_SOURCES)
|
|
androgenizer \
|
|
-:PROJECT libgstdebug -:SHARED libgstdebug \
|
|
-:TAGS eng debug \
|
|
-:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
|
|
-:SOURCES $(libgstdebug_la_SOURCES) \
|
|
-:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(libgstdebug_la_CFLAGS) \
|
|
-:LDFLAGS $(libgstdebug_la_LDFLAGS) \
|
|
$(libgstdebug_la_LIBADD) \
|
|
-ldl \
|
|
-:PASSTHROUGH LOCAL_ARM_MODE:=arm \
|
|
LOCAL_MODULE_PATH:='$$(TARGET_OUT)/lib/gstreamer-0.10' \
|
|
> $@
|