summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r300/Makefile
blob: 66d900ebb5f35b57b7a051e3940bed3ef012a20f (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
TOP = ../../../..
include $(TOP)/configs/current

LIBNAME = r300

C_SOURCES = \
	r300_blit.c \
	r300_chipset.c \
	r300_context.c \
	r300_debug.c \
	r300_emit.c \
	r300_flush.c \
	r300_fs.c \
	r300_hyperz.c \
	r300_query.c \
	r300_render.c \
	r300_render_stencilref.c \
	r300_render_translate.c \
	r300_resource.c \
	r300_screen.c \
	r300_screen_buffer.c \
	r300_state.c \
	r300_state_derived.c \
	r300_vs.c \
	r300_vs_draw.c \
	r300_texture.c \
	r300_texture_desc.c \
	r300_tgsi_to_rc.c \
	r300_transfer.c

LIBRARY_INCLUDES = \
	-I$(TOP)/src/mesa/drivers/dri/r300/compiler \
	-I$(TOP)/src/gallium/winsys/drm/radeon/core

COMPILER_ARCHIVE = $(TOP)/src/mesa/drivers/dri/r300/compiler/libr300compiler.a

EXTRA_OBJECTS = \
	$(COMPILER_ARCHIVE)

include ../../Makefile.template

.PHONY: $(COMPILER_ARCHIVE)
$(COMPILER_ARCHIVE):
	$(MAKE) -C $(TOP)/src/mesa/drivers/dri/r300/compiler