upload tizen1.0 source
[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         webm-mux.c \
12         lzo.c
13
14 noinst_HEADERS = \
15         ebml-ids.h \
16         ebml-read.h \
17         ebml-write.h \
18         matroska-demux.h \
19         matroska-parse.h \
20         matroska-ids.h \
21         matroska-mux.h \
22         webm-mux.h \
23         lzo.h
24
25 libgstmatroska_la_CFLAGS = \
26         $(GST_PLUGINS_BASE_CFLAGS) \
27         $(GST_BASE_CFLAGS) \
28         $(GST_CFLAGS)
29 libgstmatroska_la_LIBADD = \
30         $(GST_PLUGINS_BASE_LIBS) \
31         -lgstriff-@GST_MAJORMINOR@ \
32         -lgstaudio-@GST_MAJORMINOR@ \
33         -lgsttag-@GST_MAJORMINOR@ \
34         -lgstpbutils-@GST_MAJORMINOR@ \
35         $(GST_BASE_LIBS) \
36         $(GST_LIBS) \
37         $(ZLIB_LIBS) \
38         $(BZ2_LIBS) \
39         $(LIBM)
40 libgstmatroska_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
41 libgstmatroska_la_LIBTOOLFLAGS = --tag=disable-static
42
43
44 Android.mk: Makefile.am $(BUILT_SOURCES)
45         androgenizer \
46         -:PROJECT libgstmatroska -:SHARED libgstmatroska \
47          -:TAGS eng debug \
48          -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
49          -:SOURCES $(libgstmatroska_la_SOURCES) \
50          -:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(CPPFLAGS) $(libgstmatroska_la_CFLAGS) \
51          -:LDFLAGS $(libgstmatroska_la_LDFLAGS) \
52                    $(libgstmatroska_la_LIBADD) \
53                    -ldl \
54          -:PASSTHROUGH LOCAL_ARM_MODE:=arm \
55                        LOCAL_MODULE_PATH:='$$(TARGET_OUT)/lib/gstreamer-0.10' \
56         > $@