diff options
author | marha <marha@users.sourceforge.net> | 2009-11-23 15:40:15 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2009-11-23 15:40:15 +0000 |
commit | 3777530f25fdf2bf3ed00d0d5a4a3b1fc29b178d (patch) | |
tree | 5fca63d1d643985ec2d03533371cb3f466cc39ab /mesalib/windows/VC8 | |
parent | 699ed6596b3b351dbbd88c1c2ef00eb07af9c1ee (diff) | |
download | vcxsrv-3777530f25fdf2bf3ed00d0d5a4a3b1fc29b178d.tar.gz vcxsrv-3777530f25fdf2bf3ed00d0d5a4a3b1fc29b178d.tar.bz2 vcxsrv-3777530f25fdf2bf3ed00d0d5a4a3b1fc29b178d.zip |
forgotten in previous commit.
Diffstat (limited to 'mesalib/windows/VC8')
-rw-r--r-- | mesalib/windows/VC8/mesa/makefile | 26 |
1 files changed, 26 insertions, 0 deletions
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
|