diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2007-12-04 22:00:29 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2007-12-04 22:00:29 +0000 |
commit | f5ceb11d426116e2095295d9b4cb1748e4c0e7b5 (patch) | |
tree | 86bbe6b9e98fd694e5bd19946d01c1e8c9ebf8ff /lib/libGL/dri/i915 | |
parent | d1f8c03b21cc2ace82e45dbb305cd91b81559412 (diff) |
Build infrastructure for libGL dri modules.
Work in progress, not connected to the build yet.
Diffstat (limited to 'lib/libGL/dri/i915')
-rw-r--r-- | lib/libGL/dri/i915/Makefile | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/lib/libGL/dri/i915/Makefile b/lib/libGL/dri/i915/Makefile new file mode 100644 index 000000000..4a392d7df --- /dev/null +++ b/lib/libGL/dri/i915/Makefile @@ -0,0 +1,42 @@ +# $OpenBSD: Makefile,v 1.1 2007/12/04 22:00:27 matthieu Exp $ + +LIB= i915_dri.so + +DRIVER_SOURCES = \ + i915_context.c \ + i915_debug.c \ + i915_fragprog.c \ + i915_metaops.c \ + i915_program.c \ + i915_state.c \ + i915_tex.c \ + i915_texprog.c \ + i915_texstate.c \ + i915_vtbl.c \ + i830_context.c \ + i830_metaops.c \ + i830_state.c \ + i830_texblend.c \ + i830_tex.c \ + i830_texstate.c \ + i830_vtbl.c \ + intel_batchbuffer.c \ + intel_context.c \ + intel_ioctl.c \ + intel_pixel.c \ + intel_render.c \ + intel_rotate.c \ + intel_screen.c \ + intel_span.c \ + intel_state.c \ + intel_tex.c \ + intel_texmem.c \ + intel_tris.c + +SRCS= ${DRIVER_SOURCES} ${COMMON_SOURCES} + +DRIVER_DEFINES= -I$(MESA)/drivers/dri/i915/server + +.include <bsd.xorg.mk> + +.PATH: ${MESA}/drivers/dri/i915 |