summaryrefslogtreecommitdiff
path: root/lib/libGL/dri/r300
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu@cvs.openbsd.org>2007-12-04 22:00:29 +0000
committerMatthieu Herrb <matthieu@cvs.openbsd.org>2007-12-04 22:00:29 +0000
commitf5ceb11d426116e2095295d9b4cb1748e4c0e7b5 (patch)
tree86bbe6b9e98fd694e5bd19946d01c1e8c9ebf8ff /lib/libGL/dri/r300
parentd1f8c03b21cc2ace82e45dbb305cd91b81559412 (diff)
Build infrastructure for libGL dri modules.
Work in progress, not connected to the build yet.
Diffstat (limited to 'lib/libGL/dri/r300')
-rw-r--r--lib/libGL/dri/r300/Makefile49
1 files changed, 49 insertions, 0 deletions
diff --git a/lib/libGL/dri/r300/Makefile b/lib/libGL/dri/r300/Makefile
new file mode 100644
index 000000000..c744b30b8
--- /dev/null
+++ b/lib/libGL/dri/r300/Makefile
@@ -0,0 +1,49 @@
+# $OpenBSD: Makefile,v 1.1 2007/12/04 22:00:27 matthieu Exp $
+
+LIB= r300_dri.so
+
+COMMON_SOURCES = \
+ ../../common/driverfuncs.c \
+ ../common/mm.c \
+ ../common/utils.c \
+ ../common/texmem.c \
+ ../common/vblank.c \
+ ../common/xmlconfig.c \
+ ../common/dri_util.c
+
+DRIVER_SOURCES = \
+ radeon_screen.c \
+ radeon_context.c \
+ radeon_ioctl.c \
+ radeon_lock.c \
+ radeon_span.c \
+ radeon_state.c \
+ r300_mem.c \
+ \
+ r300_context.c \
+ r300_ioctl.c \
+ r300_cmdbuf.c \
+ r300_state.c \
+ r300_render.c \
+ r300_texmem.c \
+ r300_tex.c \
+ r300_texstate.c \
+ r300_vertprog.c \
+ r300_fragprog.c \
+ r300_shader.c \
+ r300_emit.c \
+
+SRCS = $(COMMON_SOURCES) $(DRIVER_SOURCES)
+
+DRIVER_DEFINES = -DCOMPILE_R300 -DR200_MERGED=0 \
+ -DRADEON_COMMON=1 -DRADEON_COMMON_FOR_R300 \
+ -I$(MESA)/drivers/dri/r300 \
+ -I$(MESA)/drivers/dri/r300/server \
+ -I$(MESA)/drivers/dri/radeon \
+ -I$(MESA)/drivers/dri/radeon/server
+
+.include <bsd.xorg.mk>
+
+.PATH: $(MESA)/drivers/dri/r300
+.PATH: $(MESA)/drivers/dri/radeon
+