diff options
Diffstat (limited to 'src/gallium/drivers/r300/Makefile')
-rw-r--r-- | src/gallium/drivers/r300/Makefile | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/Makefile b/src/gallium/drivers/r300/Makefile new file mode 100644 index 0000000000..93c2152edc --- /dev/null +++ b/src/gallium/drivers/r300/Makefile @@ -0,0 +1,42 @@ +TOP = ../../../.. +include $(TOP)/configs/current + +LIBNAME = r300 + +C_SOURCES = \ + r3xx_fs.c \ + r5xx_fs.c \ + r300_chipset.c \ + r300_clear.c \ + r300_context.c \ + r300_debug.c \ + r300_emit.c \ + r300_flush.c \ + r300_fs.c \ + r300_query.c \ + r300_render.c \ + r300_screen.c \ + r300_state.c \ + r300_state_derived.c \ + r300_state_invariant.c \ + r300_vs.c \ + r300_surface.c \ + r300_texture.c \ + r300_tgsi_to_rc.c + +LIBRARY_INCLUDES = \ + -I$(TOP)/src/mesa/drivers/dri/r300/compiler \ + -I$(TOP)/src/mesa \ + -I$(TOP)/include + +COMPILER_ARCHIVE = $(TOP)/src/mesa/drivers/dri/r300/compiler/libr300compiler.a + +EXTRA_OBJECTS = \ + $(COMPILER_ARCHIVE) + +include ../../Makefile.template + +.PHONY : $(COMPILER_ARCHIVE) + +$(COMPILER_ARCHIVE): + cd $(TOP)/src/mesa/drivers/dri/r300/compiler; make |