1# directfb headers on debian will trigger redundant redeclaration warnings
2ERROR_CFLAGS=
3
4plugin_LTLIBRARIES = libgstdfbvideosink.la
5
6libgstdfbvideosink_la_SOURCES =  dfbvideosink.c
7libgstdfbvideosink_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) \
8			       $(DIRECTFB_CFLAGS)
9libgstdfbvideosink_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
10			       -lgstvideo-$(GST_API_VERSION) \
11			       $(DIRECTFB_LIBS)
12libgstdfbvideosink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
13
14noinst_HEADERS = dfbvideosink.h
15
16noinst_PROGRAMS = dfb-example
17dfb_example_CFLAGS = $(GST_CFLAGS) $(DIRECTFB_CFLAGS)
18dfb_example_LDADD = $(GST_LIBS) $(DIRECTFB_LIBS)
19