summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r300/Makefile.am
blob: 3b88f7348f347172e5bae721e44d6891723fdf8d (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
include Makefile.sources
include $(top_srcdir)/src/gallium/Automake.inc

noinst_LTLIBRARIES = libr300.la libr300-helper.la
check_PROGRAMS = r300_compiler_tests
testdir = compiler/tests
TESTS = r300_compiler_tests

AM_CFLAGS = \
	-I$(top_srcdir)/src/gallium/drivers \
	-I$(top_srcdir)/include \
	-I$(top_srcdir)/src/mesa \
	-I$(top_srcdir)/src/glsl \
	-I$(top_srcdir)/src/mapi \
	$(VISIBILITY_CFLAGS) \
	$(GALLIUM_CFLAGS) \
	$(LLVM_CFLAGS) \
	$(RADEON_CFLAGS)

r300_compiler_tests_LDADD = libr300.la
r300_compiler_tests_CPPFLAGS = \
	-I$(top_srcdir)/src/gallium/drivers/r300/compiler
r300_compiler_tests_SOURCES = \
	$(testdir)/r300_compiler_tests.c \
	$(testdir)/radeon_compiler_util_tests.c \
	$(testdir)/rc_test_helpers.c \
	$(testdir)/unit_test.c

libr300_la_SOURCES = $(C_SOURCES)

# These two files are included in libmesagallium, which is included in the dri
# targets. So, they were added directly to r300g the dri-r300 target would have
# duplicated symbols, and if they weren't the other *-r300 targets would fail
# with undefined symbols.
#
# Solve this by building them into a separate helper library that can be linked
# in place of libmesagallium.
libr300_helper_la_SOURCES = \
	$(top_srcdir)/src/glsl/ralloc.c \
	$(top_srcdir)/src/mesa/program/register_allocate.c

#XXX: Delete this when all r300 targets are converted to automake.
all-local: libr300.la libr300-helper.la
	ln -f $(builddir)/.libs/libr300.a $(builddir)/libr300.a
	ln -f $(builddir)/.libs/libr300-helper.a $(builddir)/libr300-helper.a