diff options
author | Corbin Simpson <MostAwesomeDude@gmail.com> | 2009-03-04 15:48:45 -0800 |
---|---|---|
committer | Corbin Simpson <MostAwesomeDude@gmail.com> | 2009-03-04 15:50:01 -0800 |
commit | 1281bac3ba8e4870e9d9e78d405a347bc02c4c16 (patch) | |
tree | 87fde6b6ddfcc7bb0fef1feb5e871076d55e9082 /src/gallium/winsys/drm/radeon/egl/Makefile | |
parent | 07ffb00d30c750f85047485dbf091c3196a2abbf (diff) |
radeon-gallium: Enable EGL and Xorg state trackers.
Compile-tested only, but I have high hopes.
Diffstat (limited to 'src/gallium/winsys/drm/radeon/egl/Makefile')
-rw-r--r-- | src/gallium/winsys/drm/radeon/egl/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/gallium/winsys/drm/radeon/egl/Makefile b/src/gallium/winsys/drm/radeon/egl/Makefile new file mode 100644 index 0000000000..d989b3aa93 --- /dev/null +++ b/src/gallium/winsys/drm/radeon/egl/Makefile @@ -0,0 +1,25 @@ +TOP = ../../../../../.. +GALLIUMDIR = ../../../.. +include $(TOP)/configs/current + +LIBNAME = EGL_r300.so + +PIPE_DRIVERS = \ + $(TOP)/src/gallium/state_trackers/egl/libegldrm.a \ + $(GALLIUMDIR)/winsys/drm/radeon/core/libradeonwinsys.a \ + $(TOP)/src/gallium/drivers/softpipe/libsoftpipe.a \ + $(TOP)/src/gallium/drivers/r300/libr300.a + +DRIVER_SOURCES = + +C_SOURCES = \ + $(COMMON_GALLIUM_SOURCES) \ + $(DRIVER_SOURCES) + +DRIVER_EXTRAS = -ldrm_radeon + +ASM_SOURCES = + +include ../../Makefile.template + +symlinks: |