base: make GstQueueArray private to coreelements for now
[platform/upstream/gstreamer.git] / plugins / elements / Makefile.am
1
2 plugin_LTLIBRARIES = libgstcoreelements.la
3
4 libgstcoreelements_la_DEPENDENCIES = $(top_builddir)/gst/libgstreamer-@GST_API_VERSION@.la
5 libgstcoreelements_la_SOURCES = \
6         gstcapsfilter.c         \
7         gstelements.c           \
8         gstfakesrc.c            \
9         gstfakesink.c           \
10         gstfdsrc.c              \
11         gstfdsink.c             \
12         gstfilesink.c           \
13         gstfilesrc.c            \
14         gstfunnel.c             \
15         gstidentity.c           \
16         gstinputselector.c      \
17         gstoutputselector.c     \
18         gstdataqueue.c          \
19         gstmultiqueue.c         \
20         gstqueuearray.c \
21         gstqueue.c              \
22         gstqueue2.c             \
23         gsttee.c                \
24         gsttypefindelement.c    \
25         gstvalve.c
26
27 libgstcoreelements_la_CFLAGS = $(GST_OBJ_CFLAGS)
28 libgstcoreelements_la_LIBADD = \
29         $(top_builddir)/libs/gst/base/libgstbase-@GST_API_VERSION@.la \
30         $(GST_OBJ_LIBS)
31 libgstcoreelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
32 libgstcoreelements_la_LIBTOOLFLAGS = --tag=disable-static
33
34 noinst_HEADERS =                \
35         gstcapsfilter.h         \
36         gstfakesink.h           \
37         gstfakesrc.h            \
38         gstfdsrc.h              \
39         gstfdsink.h             \
40         gstfilesink.h           \
41         gstfilesrc.h            \
42         gstfunnel.h             \
43         gstidentity.h           \
44         gstinputselector.h      \
45         gstoutputselector.h     \
46         gstdataqueue.h          \
47         gstmultiqueue.h         \
48         gstqueuearray.h \
49         gstqueue.h              \
50         gstqueue2.h             \
51         gsttee.h                \
52         gsttypefindelement.h    \
53         gstvalve.h
54
55 EXTRA_DIST = gstfdsrc.c \
56              gstfdsink.c
57
58
59 CLEANFILES = *.gcno *.gcda *.gcov *.gcov.out
60
61 %.c.gcov: .libs/libgstcoreelements_la-%.gcda %.c
62         $(GCOV) -b -f -o $^ > $@.out
63
64 gcov: $(libgstcoreelements_la_SOURCES:=.gcov)
65
66 Android.mk: Makefile.am
67         androgenizer -:PROJECT gstreamer -:SHARED libgstcoreelements -:TAGS eng debug \
68          -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
69          -:SOURCES $(libgstcoreelements_la_SOURCES) \
70          -:CFLAGS $(DEFS) $(libgstcoreelements_la_CFLAGS) \
71          -:LDFLAGS $(libgstcoreelements_la_LDFLAGS) \
72                     $(libgstcoreelements_la_LIBADD) \
73          -:PASSTHROUGH LOCAL_ARM_MODE:=arm \
74                        LOCAL_MODULE_PATH:=$$\(TARGET_OUT\)/lib/gstreamer-@GST_API_VERSION@ \
75         > $@