4d6d5a8c52700c94e091fcce15428f3a0a40363d
[platform/upstream/gstreamer.git] / gst / elements / Makefile.am
1 # FIXME:
2 # need to get gstbufferstore.[ch] into its own lib, preferrably 
3 # libs/gst/buifferstore
4 # This requires building libs/gst before this dir, which we currently don't
5 # do.
6
7 plugin_LTLIBRARIES = libgstelements.la
8 AS_LIBTOOL_LIB = libgstelements
9
10 EXTRA_DIST = $(as_libtool_EXTRA_DIST)
11 noinst_DATA = $(as_libtool_noinst_DATA_files)
12
13 # FIXME:
14 # Disable multifilesrc on Windows, cause it uses mmap excessively
15 # and I don't feel like fixing it yet.  See also the disablement
16 # in gstelements.c.
17 if AS_LIBTOOL_WIN32
18 multifilesrc = 
19 pipefilter =
20 else
21 multifilesrc = gstmultifilesrc.c
22 pipefilter = gstpipefilter.c
23 endif
24
25 libgstelements_la_DEPENDENCIES = ../libgstreamer-@GST_MAJORMINOR@.la
26 libgstelements_la_SOURCES =     \
27         gstfakesrc.c            \
28         gstfakesink.c           \
29         gstfilesrc.c            \
30         gstidentity.c           \
31         gstelements.c           \
32         gsttee.c
33
34 #       gstaggregator.c         \
35 #       gstbufferstore.c        \
36 #       gstfilesink.c           \
37 #       gstfdsink.c             \
38 #       gstfdsrc.c              \
39 #       gstmd5sink.c            \
40 #       $(multifilesrc)         \
41 #       $(pipefilter)           \
42 #       gstshaper.c             \
43 #       gststatistics.c         \
44 #       gsttypefindelement.c
45
46 libgstelements_la_CFLAGS = $(GST_OBJ_CFLAGS)
47 libgstelements_la_LIBADD = $(GST_OBJ_LIBS)
48 libgstelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(as_libtool_LDFLAGS) $(top_builddir)/gst/base/libgstbase.la
49
50 noinst_HEADERS =                \
51         gstaggregator.h         \
52         gstbufferstore.h        \
53         gstfakesink.h           \
54         gstfakesrc.h            \
55         gstfdsink.h             \
56         gstfdsrc.h              \
57         gstfilesink.h           \
58         gstfilesrc.h            \
59         gstidentity.h           \
60         gstmd5sink.h            \
61         gstmultifilesrc.h       \
62         gstpipefilter.h         \
63         gstshaper.h             \
64         gststatistics.h         \
65         gsttee.h                \
66         gsttypefindelement.h
67
68 install-data-local: as-libtool-install-data-local
69
70 uninstall-local: as-libtool-uninstall-local
71
72 include $(top_srcdir)/common/as-libtool.mak
73