summaryrefslogtreecommitdiff
path: root/sys/v4l2/Makefile.am
blob: 5995d84f479a24e0ff1553fb742b8130ccd66a05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45

plugin_LTLIBRARIES = \
	libgstvideo4linux2.la

libgstvideo4linux2_la_SOURCES = \
	gstv4l2element.c v4l2_calls.c \
	v4l2-overlay_calls.c \
	gstv4l2element-marshal.c \
	gstv4l2src.c v4l2src_calls.c \
	gstv4l2.c
libgstvideo4linux2_la_CFLAGS = $(GST_CFLAGS)
libgstvideo4linux2_la_LIBADD =
libgstvideo4linux2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)

noinst_HEADERS = gstv4l2element.h v4l2_calls.h \
		gstv4l2src.h v4l2src_calls.h \
		gstv4l2element-marshal.h

EXTRA_libgstvideo4linux2_la_SOURCES = \
	gstv4l2element-marshal.list

BUILT_SOURCES = \
	gstv4l2element-marshal.c \
	gstv4l2element-marshal.h

gstv4l2element-marshal.h: gstv4l2element-marshal.list
	glib-genmarshal --header --prefix=gstv4l2_cclosure_marshal $(srcdir)/gstv4l2element-marshal.list > gstv4l2element-marshal.h.tmp
	mv gstv4l2element-marshal.h.tmp gstv4l2element-marshal.h

gstv4l2element-marshal.c: gstv4l2element-marshal.list
	echo "#include \"glib.h\"" > gstv4l2element-marshal.c.tmp
	echo "#include \"glib-object.h\"" >> gstv4l2element-marshal.c.tmp
	echo "#include \"gstv4l2element-marshal.h\"" >> gstv4l2element-marshal.c.tmp
	glib-genmarshal --body --prefix=gstv4l2_cclosure_marshal $(srcdir)/gstv4l2element-marshal.list >> gstv4l2element-marshal.c.tmp
	mv gstv4l2element-marshal.c.tmp gstv4l2element-marshal.c

# Don't want the generated marshal files in the dist
dist-hook:
	rm -f $(distdir)/gstv4l2element-marshal.c
	rm -f $(distdir)/gstv4l2element-marshal.h

# Clean generated files
distclean-local:
	rm -f $(top_builddir)/src/element/gstv4l2element-marshal.c
	rm -f $(top_builddir)/src/element/gstv4l2element-marshal.h