Tizen 2.0 Release
[framework/multimedia/gst-plugins-good0.10.git] / gst / videofilter / Makefile.am
1 plugin_LTLIBRARIES = libgstvideofilter.la
2
3 noinst_HEADERS = gstvideoflip.h gstvideobalance.h gstgamma.h
4
5 EXTRA_DIST = gstvideotemplate.c make_filter
6 CLEANFILES = gstvideoexample.c
7
8 libgstvideofilter_la_SOURCES = plugin.c \
9                         gstvideoflip.c \
10                         gstvideobalance.c \
11                         gstgamma.c
12 libgstvideofilter_la_CFLAGS = $(GST_CFLAGS) $(GST_CONTROLLER_CFLAGS) \
13                         $(GST_BASE_CFLAGS) \
14                         $(GST_PLUGINS_BASE_CFLAGS)
15 libgstvideofilter_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
16                         -lgstvideo-@GST_MAJORMINOR@ \
17                         -lgstinterfaces-@GST_MAJORMINOR@ \
18                         $(GST_CONTROLLER_LIBS) \
19                         $(GST_BASE_LIBS) $(GST_LIBS)
20 libgstvideofilter_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
21 libgstvideofilter_la_LIBTOOLFLAGS = --tag=disable-static
22
23 gstvideoexample.c: $(srcdir)/make_filter $(srcdir)/gstvideotemplate.c
24         $(srcdir)/make_filter Videoexample $(srcdir)/gstvideotemplate.c
25
26 Android.mk: Makefile.am $(BUILT_SOURCES)
27         androgenizer \
28         -:PROJECT libgstvideofilter -:SHARED libgstvideofilter \
29          -:TAGS eng debug \
30          -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
31          -:SOURCES $(libgstvideofilter_la_SOURCES) \
32                    $(nodist_libgstvideofilter_la_SOURCES) \
33          -:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(libgstvideofilter_la_CFLAGS) \
34          -:LDFLAGS $(libgstvideofilter_la_LDFLAGS) \
35                    $(libgstvideofilter_la_LIBADD) \
36                    -ldl \
37          -:PASSTHROUGH LOCAL_ARM_MODE:=arm \
38                        LOCAL_MODULE_PATH:='$$(TARGET_OUT)/lib/gstreamer-0.10' \
39         > $@