summaryrefslogtreecommitdiff
path: root/Source/DirectFB/gfxdrivers/gl/Makefile.am
blob: ef5deb2b82c6cddb8e13d2ce91b02099a9413eeb (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
## Makefile.am for DirectFB/src/core/gfxcards/gl

INCLUDES = \
	-I$(top_builddir)/include	\
	-I$(top_srcdir)/include	\
	-I$(top_builddir)/lib	\
	-I$(top_srcdir)/lib	\
	-I$(top_srcdir)/src	\
	-I$(top_srcdir)/systems

gl_LTLIBRARIES = libdirectfb_gl.la

if BUILD_STATIC
gl_DATA = $(gl_LTLIBRARIES:.la=.o)
endif

gldir = $(MODULEDIR)/gfxdrivers

libdirectfb_gl_la_SOURCES =	\
	gl_2d.c		\
	gl_2d.h		\
	gl_gfxdriver.c	\
	gl_gfxdriver.h

libdirectfb_gl_la_LDFLAGS = \
	-module			\
	-avoid-version		\
	$(DFB_LDFLAGS) -lGL -lX11

libdirectfb_gl_la_LIBADD = \
	$(top_builddir)/lib/direct/libdirect.la \
	$(top_builddir)/src/libdirectfb.la


include $(top_srcdir)/rules/libobject.make