gstreamer/omx/Makefile.am

64 lines
1.6 KiB
Makefile
Raw Normal View History

plugin_LTLIBRARIES = libgstopenmax.la
libgstopenmax_la_SOURCES = \
gstomx.c \
gstomxvideodec.c \
gstomxvideoenc.c \
gstomxaudioenc.c \
gstomxmpeg4videodec.c \
gstomxh264dec.c \
2011-07-25 09:44:56 +00:00
gstomxh263dec.c \
gstomxwmvdec.c \
gstomxmpeg4videoenc.c \
2011-07-25 09:32:51 +00:00
gstomxh264enc.c \
2011-07-29 10:06:21 +00:00
gstomxh263enc.c \
gstomxaacenc.c \
gstomxrecmutex.c
noinst_HEADERS = \
2011-07-13 11:59:50 +00:00
gstomx.h \
gstomxvideodec.h \
gstomxvideoenc.h \
gstomxaudioenc.h \
gstomxmpeg4videodec.h \
gstomxh264dec.h \
2011-07-25 09:44:56 +00:00
gstomxh263dec.h \
gstomxwmvdec.h \
gstomxmpeg4videoenc.h \
2011-07-25 09:32:51 +00:00
gstomxh264enc.h \
2011-07-29 10:06:21 +00:00
gstomxh263enc.h \
gstomxaacenc.h \
gstomxrecmutex.h
libgstopenmax_la_CFLAGS = \
-DGST_USE_UNSTABLE_API=1 \
-I$(abs_srcdir)/openmax \
$(GST_PLUGINS_BASE_CFLAGS) \
$(GST_BASE_CFLAGS) \
$(GST_CFLAGS)
libgstopenmax_la_LIBADD = \
$(GST_PLUGINS_BASE_LIBS) \
2012-04-12 19:57:32 +00:00
-lgstaudio-@GST_API_VERSION@ \
-lgstpbutils-@GST_API_VERSION@ \
-lgstvideo-@GST_API_VERSION@ \
$(GST_BASE_LIBS) \
$(GST_LIBS)
libgstopenmax_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
2011-07-13 12:04:47 +00:00
EXTRA_DIST = openmax gstomx.conf
Android.mk: Makefile.am $(BUILT_SOURCES)
androgenizer \
-:PROJECT libgstopenmax -:SHARED libgstopenmax \
-:TAGS eng debug \
-:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
-:SOURCES $(libgstopenmax_la_SOURCES) \
$(nodist_libgstopenmax_la_SOURCES) \
-:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(libgstopenmax_la_CFLAGS) \
-:LDFLAGS $(libgstopenmax_la_LDFLAGS) \
$(libgstopenmax_la_LIBADD) \
-ldl \
-:PASSTHROUGH LOCAL_ARM_MODE:=arm \
LOCAL_MODULE_PATH:='$$(TARGET_OUT)/lib/gstreamer-$(GST_API_VERSION)' \
> $@