1## Process this file with automake to produce Makefile.in
2
3noinst_LTLIBRARIES = libgstgl-egl.la
4
5libgstgl_egl_la_SOURCES = \
6	gstgldisplay_egl.c \
7	gstglcontext_egl.c \
8	gstglmemoryegl.c \
9	gsteglimage.c \
10	gstegl.c
11
12noinst_HEADERS = \
13	gstglcontext_egl.h
14
15libgstgl_eglincludedir = $(includedir)/gstreamer-@GST_API_VERSION@/gst/gl/egl
16libgstgl_eglinclude_HEADERS = \
17	gstgldisplay_egl.h \
18	gstglmemoryegl.h \
19	gsteglimage.h \
20	gstegl.h
21
22libgstgl_egl_la_CFLAGS = \
23	-I$(top_srcdir)/gst-libs \
24	-I$(top_builddir)/gst-libs \
25	-DBUILDING_GST_GL \
26	$(GL_CFLAGS) \
27	$(GST_PLUGINS_BASE_CFLAGS) \
28	$(GST_BASE_CFLAGS) \
29	$(GST_CFLAGS)
30
31libgstgl_egl_la_LDFLAGS = \
32	$(GST_LIB_LDFLAGS) \
33	$(GST_ALL_LDFLAGS)
34