v4l2: Implement GstDeviceMonitor subclass
[platform/upstream/gstreamer.git] / sys / v4l2 / Makefile.am
1 plugin_LTLIBRARIES = libgstvideo4linux2.la
2
3 include $(top_srcdir)/common/gst-glib-gen.mak
4
5 libgstvideo4linux2_la_SOURCES = gstv4l2.c \
6                                 gstv4l2colorbalance.c \
7                                 gstv4l2devicemonitor.c \
8                                 gstv4l2object.c \
9                                 gstv4l2bufferpool.c \
10                                 gstv4l2sink.c \
11                                 gstv4l2src.c \
12                                 gstv4l2radio.c \
13                                 gstv4l2tuner.c \
14                                 gstv4l2videodec.c \
15                                 gstv4l2vidorient.c \
16                                 v4l2_calls.c \
17                                 tuner.c \
18                                 tunerchannel.c \
19                                 tunernorm.c
20
21 libgstvideo4linux2_la_CFLAGS =   $(GST_PLUGINS_BASE_CFLAGS) \
22                                  $(GST_BASE_CFLAGS) \
23                                  $(GST_CFLAGS) \
24                                  $(X_CFLAGS) \
25                                  $(LIBV4L2_CFLAGS) \
26                                  $(GUDEV_CFLAGS)
27
28 libgstvideo4linux2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
29 libgstvideo4linux2_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
30 libgstvideo4linux2_la_LIBADD =   $(GST_PLUGINS_BASE_LIBS) \
31                                  -lgstallocators-$(GST_API_VERSION) \
32                                  -lgstvideo-$(GST_API_VERSION) \
33                                  $(GST_BASE_LIBS) \
34                                  $(GST_LIBS) \
35                                  $(LIBV4L2_LIBS) \
36                                  $(GUDEV_LIBS) \
37                                  $(LIBRT)
38
39 noinst_HEADERS = \
40         gstv4l2bufferpool.h \
41         gstv4l2colorbalance.h \
42         gstv4l2devicemonitor.h \
43         gstv4l2object.h \
44         gstv4l2sink.h \
45         gstv4l2src.h \
46         gstv4l2radio.h \
47         gstv4l2tuner.h \
48         gstv4l2videodec.h \
49         gstv4l2vidorient.h \
50         v4l2_calls.h \
51         tuner.h \
52         tunerchannel.h \
53         tunernorm.h
54