diff options
author | Keith Whitwell <[email protected]> | 2007-08-08 09:28:57 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2007-08-08 09:30:45 +0100 |
commit | 01c35b52a1fccbe4253a96b9c0506ef6c991e44f (patch) | |
tree | fd16af3036bf8333f8114f9eed15c6823f160965 /src/mesa/pipe/i915simple/Makefile | |
parent | ddd30d8160dc7db5f24a5ac823fd1c64c43b50be (diff) |
Checkpoint of a super-simplified i915 driver in the pipe model.
Doesn't yet compile, but when it does, it will only draw gouraud tris
and even those will be as simple as possible. Needs some 'winsys' support
also before that can happen.
Diffstat (limited to 'src/mesa/pipe/i915simple/Makefile')
-rw-r--r-- | src/mesa/pipe/i915simple/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/mesa/pipe/i915simple/Makefile b/src/mesa/pipe/i915simple/Makefile new file mode 100644 index 00000000000..4170349893c --- /dev/null +++ b/src/mesa/pipe/i915simple/Makefile @@ -0,0 +1,31 @@ + +TOP = ../../../.. +include $(TOP)/configs/current + +LIBNAME = i915simple + +DRIVER_SOURCES = \ + i915_blit.c \ + i915_buffer.c \ + i915_clear.c \ + i915_context.c \ + i915_context.c \ + i915_debug.c \ + i915_regions.c \ + i915_state.c \ + i915_state_derived.c \ + i915_state_emit.c \ + i915_state_fragprog.c \ + i915_prim_emit.c \ + i915_surface.c + +C_SOURCES = \ + $(COMMON_SOURCES) \ + $(DRIVER_SOURCES) + +ASM_SOURCES = + +include ../Makefile.template + +symlinks: + |