build: Makefile.am cleanups
[platform/upstream/gst-plugins-good.git] / gst / matroska / Makefile.am
1 plugin_LTLIBRARIES = libgstmatroska.la
2
3 libgstmatroska_la_SOURCES = \
4         ebml-read.c \
5         ebml-write.c \
6         matroska.c \
7         matroska-demux.c \
8         matroska-ids.c \
9         matroska-mux.c \
10         lzo.c
11
12 noinst_HEADERS = \
13         ebml-ids.h \
14         ebml-read.h \
15         ebml-write.h \
16         matroska-demux.h \
17         matroska-ids.h \
18         matroska-mux.h \
19         lzo.h
20
21 libgstmatroska_la_CFLAGS = \
22         $(GST_PLUGINS_BASE_CFLAGS) \
23         $(GST_BASE_CFLAGS) \
24         $(GST_CFLAGS)
25 libgstmatroska_la_LIBADD = \
26         $(GST_PLUGINS_BASE_LIBS) \
27         -lgstriff-@GST_MAJORMINOR@ \
28         -lgstaudio-@GST_MAJORMINOR@ \
29         -lgsttag-@GST_MAJORMINOR@ \
30         $(GST_BASE_LIBS) \
31         $(GST_LIBS) \
32         $(ZLIB_LIBS) \
33         $(BZ2_LIBS) \
34         $(LIBM)
35 libgstmatroska_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
36 libgstmatroska_la_LIBTOOLFLAGS = --tag=disable-static
37