Add new downloadbuffer element
[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         gstdownloadbuffer.c     \
8         gstelements.c           \
9         gstfakesrc.c            \
10         gstfakesink.c           \
11         gstfdsrc.c              \
12         gstfdsink.c             \
13         gstfilesink.c           \
14         gstfilesrc.c            \
15         gstfunnel.c             \
16         gstidentity.c           \
17         gstinputselector.c      \
18         gstoutputselector.c     \
19         gstmultiqueue.c         \
20         gstqueue.c              \
21         gstqueue2.c             \
22         gsttee.c                \
23         gsttypefindelement.c    \
24         gstvalve.c
25
26 libgstcoreelements_la_CFLAGS = $(GST_OBJ_CFLAGS)
27 libgstcoreelements_la_LIBADD = \
28         $(top_builddir)/libs/gst/base/libgstbase-@GST_API_VERSION@.la \
29         $(GST_OBJ_LIBS)
30 libgstcoreelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
31 libgstcoreelements_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
32
33 noinst_HEADERS =                \
34         gstcapsfilter.h         \
35         gstdownloadbuffer.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         gstmultiqueue.h         \
47         gstqueue.h              \
48         gstqueue2.h             \
49         gsttee.h                \
50         gsttypefindelement.h    \
51         gstvalve.h
52
53 EXTRA_DIST = gstfdsrc.c \
54              gstfdsink.c
55
56
57 CLEANFILES = *.gcno *.gcda *.gcov *.gcov.out
58
59 %.c.gcov: .libs/libgstcoreelements_la-%.gcda %.c
60         $(GCOV) -b -f -o $^ > $@.out
61
62 gcov: $(libgstcoreelements_la_SOURCES:=.gcov)
63
64 Android.mk: Makefile.am
65         androgenizer -:PROJECT gstreamer -:SHARED libgstcoreelements -:TAGS eng debug \
66          -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
67          -:SOURCES $(libgstcoreelements_la_SOURCES) \
68          -:CFLAGS $(DEFS) $(libgstcoreelements_la_CFLAGS) \
69          -:LDFLAGS $(libgstcoreelements_la_LDFLAGS) \
70                     $(libgstcoreelements_la_LIBADD) \
71          -:PASSTHROUGH LOCAL_ARM_MODE:=arm \
72                        LOCAL_MODULE_PATH:=$$\(TARGET_OUT\)/lib/gstreamer-@GST_API_VERSION@ \
73         > $@