diff options
author | Chia-I Wu <[email protected]> | 2010-06-03 18:08:48 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-06-11 12:23:38 +0800 |
commit | ce0c837f60d951de4f4798e5d4ab559155c09979 (patch) | |
tree | 9f7b4f7463206d3c3dd968a275359109eee518e5 /src/gallium/winsys/sw/fbdev/Makefile | |
parent | 628cf02d673890fac4f16b9241021a8eda87c96c (diff) |
winsys: Add fbdev software winsys.
This is a simple winsys that mmap()s the framebuffer device and
memcpy()s the contents of display targets to the framebuffer device for
displaying.
Diffstat (limited to 'src/gallium/winsys/sw/fbdev/Makefile')
-rw-r--r-- | src/gallium/winsys/sw/fbdev/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/gallium/winsys/sw/fbdev/Makefile b/src/gallium/winsys/sw/fbdev/Makefile new file mode 100644 index 00000000000..8832aab1934 --- /dev/null +++ b/src/gallium/winsys/sw/fbdev/Makefile @@ -0,0 +1,13 @@ +TOP = ../../../../.. +include $(TOP)/configs/current + +LIBNAME = fbdev + +LIBRARY_INCLUDES = + +LIBRARY_DEFINES = + +C_SOURCES = \ + fbdev_sw_winsys.c + +include ../../../Makefile.template |