From 3777530f25fdf2bf3ed00d0d5a4a3b1fc29b178d Mon Sep 17 00:00:00 2001
From: marha <marha@users.sourceforge.net>
Date: Mon, 23 Nov 2009 15:40:15 +0000
Subject: forgotten in previous commit.

---
 mesalib/windows/VC8/mesa/makefile | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 mesalib/windows/VC8/mesa/makefile

(limited to 'mesalib')

diff --git a/mesalib/windows/VC8/mesa/makefile b/mesalib/windows/VC8/mesa/makefile
new file mode 100644
index 000000000..fefdf3d5c
--- /dev/null
+++ b/mesalib/windows/VC8/mesa/makefile
@@ -0,0 +1,26 @@
+SLNFILE=mesa.sln
+
+all: Release\swrast_dri.dll Debug\swrast_dri.dll
+
+ifneq $(which devenv.com),
+VCSTUDIO=devenv.com
+endif
+ifneq $(which vcexpress.exe),
+VCSTUDIO=vcexpress
+endif
+
+ifndef VCSTUDIO
+$(error Environment not set correctly for building Visual Studio projects)
+endif
+
+Debug\swrast_dri.dll:
+	$(VCSTUDIO) $(SLNFILE) /build Debug
+
+Release\swrast_dri.dll:
+	$(VCSTUDIO) $(SLNFILE) /build Release
+
+clean: cleanthis
+
+cleanthis:
+	del -e Debug
+	del -e Release
-- 
cgit v1.2.3