radeon: fix scissors harder.
[mesa.git] / src / mesa / drivers / dri / radeon / Makefile
index 8a942cb480799c8021b316d3809762e38d5eb141..8fe9d98a0b2baffc9d58c5db40c5780196cd8bf2 100644 (file)
@@ -4,37 +4,54 @@
 TOP = ../../../../..
 include $(TOP)/configs/current
 
+CFLAGS += $(RADEON_CFLAGS)
+
 LIBNAME = radeon_dri.so
 
 MINIGLX_SOURCES = server/radeon_dri.c 
 
+ifeq ($(RADEON_LDFLAGS),)
+CS_SOURCES = radeon_cs_space_drm.c
+endif
+
+RADEON_COMMON_SOURCES = \
+       radeon_texture.c \
+       radeon_common_context.c \
+       radeon_common.c \
+       radeon_dma.c \
+       radeon_lock.c \
+       radeon_bo_legacy.c \
+       radeon_cs_legacy.c \
+       radeon_mipmap_tree.c \
+       radeon_span.c \
+       radeon_fbo.c \
+       radeon_queryobj.c
+
 DRIVER_SOURCES = \
        radeon_context.c \
        radeon_ioctl.c \
-       radeon_lock.c \
        radeon_screen.c \
        radeon_state.c \
        radeon_state_init.c \
        radeon_tex.c \
-       radeon_texmem.c \
        radeon_texstate.c \
        radeon_tcl.c \
        radeon_swtcl.c \
-       radeon_span.c \
        radeon_maos.c \
        radeon_sanity.c \
-       radeon_vtxfmt.c \
-       radeon_vtxfmt_c.c \
-       radeon_vtxfmt_sse.c \
-       radeon_vtxfmt_x86.c 
+       $(RADEON_COMMON_SOURCES)
 
 C_SOURCES = \
        $(COMMON_SOURCES) \
-       $(DRIVER_SOURCES) 
+       $(DRIVER_SOURCES) \
+       $(CS_SOURCES)
+
+DRIVER_DEFINES = -DRADEON_COMMON=0 \
+                                -Wall
 
+DRI_LIB_DEPS += $(RADEON_LDFLAGS)
 
-X86_SOURCES = \
-       radeon_vtxtmp_x86.S 
+X86_SOURCES = 
 
 include ../Makefile.template