Tizen 2.0 Release
[framework/multimedia/gst-plugins-good0.10.git] / gst / matroska / Makefile.am
1 plugin_LTLIBRARIES = libgstmatroska.la
2
3 libgstmatroska_la_SOURCES = \
4         ebml-read.c \
5         ebml-write.c \
6         matroska.c \
7         matroska-demux.c \
8         matroska-parse.c \
9         matroska-ids.c \
10         matroska-mux.c \
11         matroska-read-common.c \
12         webm-mux.c \
13         lzo.c
14
15 noinst_HEADERS = \
16         ebml-ids.h \
17         ebml-read.h \
18         ebml-write.h \
19         matroska-demux.h \
20         matroska-parse.h \
21         matroska-ids.h \
22         matroska-mux.h \
23         matroska-read-common.h \
24         webm-mux.h \
25         lzo.h
26
27 libgstmatroska_la_CFLAGS = \
28         $(GST_PLUGINS_BASE_CFLAGS) \
29         $(GST_BASE_CFLAGS) \
30         $(GST_CFLAGS)
31 libgstmatroska_la_LIBADD = \
32         $(GST_PLUGINS_BASE_LIBS) \
33         -lgstriff-@GST_MAJORMINOR@ \
34         -lgstaudio-@GST_MAJORMINOR@ \
35         -lgsttag-@GST_MAJORMINOR@ \
36         -lgstpbutils-@GST_MAJORMINOR@ \
37         $(GST_BASE_LIBS) \
38         $(GST_LIBS) \
39         $(ZLIB_LIBS) \
40         $(BZ2_LIBS) \
41         $(LIBM)
42 libgstmatroska_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
43 libgstmatroska_la_LIBTOOLFLAGS = --tag=disable-static
44
45
46 Android.mk: Makefile.am $(BUILT_SOURCES)
47         androgenizer \
48         -:PROJECT libgstmatroska -:SHARED libgstmatroska \
49          -:TAGS eng debug \
50          -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
51          -:SOURCES $(libgstmatroska_la_SOURCES) \
52          -:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(CPPFLAGS) $(libgstmatroska_la_CFLAGS) \
53          -:LDFLAGS $(libgstmatroska_la_LDFLAGS) \
54                    $(libgstmatroska_la_LIBADD) \
55                    -ldl \
56          -:PASSTHROUGH LOCAL_ARM_MODE:=arm \
57                        LOCAL_MODULE_PATH:='$$(TARGET_OUT)/lib/gstreamer-0.10' \
58         > $@