reorganize C/LIB flags add gst_info to gstcompat.h
[platform/upstream/gstreamer.git] / plugins / 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         gstaggregator.c         \
28         gstbufferstore.c        \
29         gstelements.c           \
30         gstfakesink.c           \
31         gstfakesrc.c            \
32         gstfilesink.c           \
33         gstfilesrc.c            \
34         gstfdsink.c             \
35         gstfdsrc.c              \
36         gstidentity.c           \
37         gstmd5sink.c            \
38         $(multifilesrc)         \
39         $(pipefilter)           \
40         gstshaper.c             \
41         gststatistics.c         \
42         gsttee.c                \
43         gsttypefindelement.c
44
45 libgstelements_la_CFLAGS = $(GST_OBJ_CFLAGS)
46 libgstelements_la_LIBADD = $(GST_OBJ_LIBS)
47 libgstelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(as_libtool_LDFLAGS)
48
49 noinst_HEADERS =                \
50         gstaggregator.h         \
51         gstbufferstore.h        \
52         gstfakesink.h           \
53         gstfakesrc.h            \
54         gstfdsink.h             \
55         gstfdsrc.h              \
56         gstfilesink.h           \
57         gstfilesrc.h            \
58         gstidentity.h           \
59         gstmd5sink.h            \
60         gstmultifilesrc.h       \
61         gstpipefilter.h         \
62         gstshaper.h             \
63         gststatistics.h         \
64         gsttee.h                \
65         gsttypefindelement.h
66
67 install-data-local: as-libtool-install-data-local
68
69 uninstall-local: as-libtool-uninstall-local
70
71 include $(top_srcdir)/common/as-libtool.mak
72