summaryrefslogtreecommitdiff
path: root/Source/DirectFB/gfxdrivers/radeon/Makefile.am
blob: 322ae30d9bcd8d028c20c87261dc00071ea89dcb (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
46
47
48
49
50
51
52
## Makefile.am for DirectFB/src/core/gfxcards/radeon

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

radeon_LTLIBRARIES = libdirectfb_radeon.la

if BUILD_STATIC
radeon_DATA = $(radeon_LTLIBRARIES:.la=.o)
endif

radeondir = $(MODULEDIR)/gfxdrivers

libdirectfb_radeon_la_SOURCES =	\
	radeon.c			\
	r100_state.c		\
	r200_state.c		\
	r300_state.c		\
	radeon_2d.c		\
	r100_3d.c			\
	r200_3d.c			\
	r300_3d.c			\
	radeon_overlay.c	\
	radeon_crtc1.c		\
	radeon_crtc2.c		\
	radeon.h			\
	radeon_chipsets.h	\
	radeon_regs.h		\
	r300_program.h		\
	radeon_mmio.h		\
	radeon_state.h		\
	radeon_2d.h		\
	radeon_3d.h		\
	vertex_shader.h

libdirectfb_radeon_la_LDFLAGS = \
	-module			\
	-avoid-version		\
	$(DFB_LDFLAGS) -lm

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


include $(top_srcdir)/rules/libobject.make