1plugin_LTLIBRARIES = libgstvideofilter.la
2
3noinst_HEADERS = gstvideoflip.h gstvideobalance.h gstgamma.h gstvideomedian.h
4
5EXTRA_DIST = gstvideotemplate.c make_filter
6CLEANFILES = gstvideoexample.c
7
8libgstvideofilter_la_SOURCES = plugin.c \
9			gstvideoflip.c \
10			gstvideobalance.c \
11			gstgamma.c \
12			gstvideomedian.c
13libgstvideofilter_la_CFLAGS = $(GST_CFLAGS) \
14			$(GST_BASE_CFLAGS) \
15			$(GST_PLUGINS_BASE_CFLAGS)
16libgstvideofilter_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
17			-lgstvideo-@GST_API_VERSION@ \
18			$(GST_BASE_LIBS) $(GST_LIBS)
19libgstvideofilter_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
20
21gstvideoexample.c: $(srcdir)/make_filter $(srcdir)/gstvideotemplate.c
22	$(srcdir)/make_filter Videoexample $(srcdir)/gstvideotemplate.c
23