android: make it ready for androgenizer
[platform/upstream/gstreamer.git] / gst / qtmux / Makefile.am
1 # plugindir is set in configure
2
3 plugin_LTLIBRARIES = libgstqtmux.la
4
5 # sources used to compile this plug-in
6 libgstqtmux_la_SOURCES = gstqtmux.c \
7                         gstqtmoovrecover.c \
8                         gstqtmuxplugin.c \
9                         atoms.c \
10                         atomsrecovery.c \
11                         descriptors.c \
12                         properties.c \
13                         gstqtmuxmap.c
14
15 # flags used to compile this plugin
16 # add other _CFLAGS and _LIBS as needed
17 libgstqtmux_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
18 libgstqtmux_la_LIBADD = -lgstinterfaces-$(GST_MAJORMINOR) $(GST_LIBS) $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) -lgsttag-$(GST_MAJORMINOR)
19 libgstqtmux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
20 libgstqtmux_la_LIBTOOLFLAGS = --tag=disable-static
21
22 # headers we need but don't want installed
23 noinst_HEADERS = gstqtmux.h \
24                 gstqtmoovrecover.h \
25                 atoms.h \
26                 atomsrecovery.h \
27                 descriptors.h \
28                 properties.h \
29                 fourcc.h \
30                 ftypcc.h \
31                 gstqtmuxmap.h
32
33 Android.mk: Makefile.am $(BUILT_SOURCES)
34         androgenizer \
35         -:PROJECT libgstqtmux -:SHARED libgstqtmux \
36          -:TAGS eng debug \
37          -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
38          -:SOURCES $(libgstqtmux_la_SOURCES) \
39          -:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(libgstqtmux_la_CFLAGS) \
40          -:LDFLAGS $(libgstqtmux_la_LDFLAGS) \
41                    $(libgstqtmux_la_LIBADD) \
42                    -ldl \
43          -:PASSTHROUGH LOCAL_ARM_MODE:=arm \
44                        LOCAL_MODULE_PATH:='$$(TARGET_OUT)/lib/gstreamer-0.10' \
45         > $@