diff options
author | Thomas Balling Sørensen <tball@tball-laptop.(none)> | 2010-10-28 14:32:54 +0200 |
---|---|---|
committer | Thomas Balling Sørensen <tball@tball-laptop.(none)> | 2010-10-28 14:32:54 +0200 |
commit | 8ba4c96f8204003ff0d5247d71c0855827810560 (patch) | |
tree | cb9ee593f5ba1cfe38116bd0257feac9f2f5e720 /src/gallium/targets/va-r600/Makefile | |
parent | a565f58edaad646942f2174e66ef1343f56ae679 (diff) |
vl: rest of va stubs
Diffstat (limited to 'src/gallium/targets/va-r600/Makefile')
-rw-r--r-- | src/gallium/targets/va-r600/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/gallium/targets/va-r600/Makefile b/src/gallium/targets/va-r600/Makefile new file mode 100644 index 00000000000..03ca8edaf25 --- /dev/null +++ b/src/gallium/targets/va-r600/Makefile @@ -0,0 +1,26 @@ +TOP = ../../../.. +include $(TOP)/configs/current + +LIBBASENAME = r600_drv_video + +DRIVER_DEFINES = -DGALLIUM_SOFTPIPE +DRIVER_INCLUDES = + +PIPE_DRIVERS = \ + $(TOP)/src/gallium/drivers/r600/libr600.a \ + $(TOP)/src/gallium/winsys/g3dvl/dri/libvldri.a \ + $(TOP)/src/gallium/winsys/r600/drm/libr600winsys.a \ + $(TOP)/src/gallium/drivers/softpipe/libsoftpipe.a \ + $(TOP)/src/gallium/drivers/trace/libtrace.a \ + $(TOP)/src/gallium/auxiliary/libgallium.a + +C_SOURCES = \ + target.c \ + $(COMMON_GALLIUM_SOURCES) \ + $(DRIVER_SOURCES) + +DRIVER_LIBS = $(shell pkg-config libdrm_radeon --libs) -lXfixes + +include ../Makefile.va + +symlinks: |