diff options
author | Dave Airlie <[email protected]> | 2010-08-22 17:28:20 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2010-08-25 06:10:01 +1000 |
commit | 37f0654fa56a97c6f4ea6220c97758ee95267e0b (patch) | |
tree | 1d360964b4a41a172304625d6944cfab8b0330eb /src/gallium/targets/dri-r300/Makefile | |
parent | ad58f0d9e021065d8e6d82e1aa7387dcd206f86e (diff) |
r300g: rename radeong_dri.so to r300_dri.so
acked on irc by Corbin + Marek.
Diffstat (limited to 'src/gallium/targets/dri-r300/Makefile')
-rw-r--r-- | src/gallium/targets/dri-r300/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/gallium/targets/dri-r300/Makefile b/src/gallium/targets/dri-r300/Makefile new file mode 100644 index 00000000000..9afbb13276d --- /dev/null +++ b/src/gallium/targets/dri-r300/Makefile @@ -0,0 +1,27 @@ +TOP = ../../../.. +include $(TOP)/configs/current + +LIBNAME = r300_dri.so + +PIPE_DRIVERS = \ + $(TOP)/src/gallium/state_trackers/dri/drm/libdridrm.a \ + $(TOP)/src/gallium/winsys/radeon/drm/libradeonwinsys.a \ + $(TOP)/src/gallium/drivers/softpipe/libsoftpipe.a \ + $(TOP)/src/gallium/drivers/galahad/libgalahad.a \ + $(TOP)/src/gallium/drivers/trace/libtrace.a \ + $(TOP)/src/gallium/drivers/rbug/librbug.a \ + $(TOP)/src/gallium/drivers/r300/libr300.a + +C_SOURCES = \ + target.c \ + $(COMMON_GALLIUM_SOURCES) \ + $(DRIVER_SOURCES) + +DRIVER_DEFINES = \ + -DGALLIUM_RBUG -DGALLIUM_TRACE -DGALLIUM_GALAHAD + +include ../Makefile.dri + +DRI_LIB_DEPS += -ldrm_radeon + +symlinks: |