aboutsummaryrefslogtreecommitdiff
path: root/mesalib/windows/VC8/mesa/makefile
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2010-07-29 16:14:04 +0000
committermarha <marha@users.sourceforge.net>2010-07-29 16:14:04 +0000
commit0d6017eaee95de510cc427789a17ddc385f30f5b (patch)
tree4f48e4680397ad2564517d1d2b9296d0ca23be23 /mesalib/windows/VC8/mesa/makefile
parent0c0b98ae72397aeed280ffc146b16eb13065f332 (diff)
downloadvcxsrv-0d6017eaee95de510cc427789a17ddc385f30f5b.tar.gz
vcxsrv-0d6017eaee95de510cc427789a17ddc385f30f5b.tar.bz2
vcxsrv-0d6017eaee95de510cc427789a17ddc385f30f5b.zip
Solved build warnings
Diffstat (limited to 'mesalib/windows/VC8/mesa/makefile')
-rw-r--r--mesalib/windows/VC8/mesa/makefile38
1 files changed, 35 insertions, 3 deletions
diff --git a/mesalib/windows/VC8/mesa/makefile b/mesalib/windows/VC8/mesa/makefile
index 48a5513cf..af644143d 100644
--- a/mesalib/windows/VC8/mesa/makefile
+++ b/mesalib/windows/VC8/mesa/makefile
@@ -5,14 +5,46 @@ else
MHMAKESLNFILE=mesavc10.sln
BUILDCMD=devenv.com $(MHMAKESLNFILE) /build
endif
-SLNFILE=
+
+DEPS:=$(wildcard ..\..\..\src\mesa\swrast\*.c) \
+ $(wildcard ..\..\..\src\mesa\swrast\*.h) \
+ $(wildcard ..\..\..\src\mesa\swrast_setup\*.c) \
+ $(wildcard ..\..\..\src\mesa\swrast_setup\*.h) \
+ $(wildcard ..\..\..\src\mesa\main\*.c) \
+ $(wildcard ..\..\..\src\mesa\main\*.h) \
+ $(wildcard ..\..\..\src\mesa\shader\*.c) \
+ $(wildcard ..\..\..\src\mesa\shader\*.h) \
+ $(wildcard ..\..\..\src\mesa\shader\slang\*.c) \
+ $(wildcard ..\..\..\src\mesa\shader\slang\*.h) \
+ $(wildcard ..\..\..\src\mesa\shader\slang\library\*.c) \
+ $(wildcard ..\..\..\src\mesa\shader\slang\library\*.h) \
+ $(wildcard ..\..\..\src\mesa\glapi\*.c) \
+ $(wildcard ..\..\..\src\mesa\glapi\*.h) \
+ $(wildcard ..\..\..\src\mesa\math\*.c) \
+ $(wildcard ..\..\..\src\mesa\math\*.h) \
+ $(wildcard ..\..\..\src\mesa\tnl\*.c) \
+ $(wildcard ..\..\..\src\mesa\tnl\*.h) \
+ $(wildcard ..\..\..\src\mesa\vbo\*.c) \
+ $(wildcard ..\..\..\src\mesa\vbo\*.h) \
+ $(wildcard ..\..\..\src\glsl\cl\*.c) \
+ $(wildcard ..\..\..\src\glsl\cl\*.h) \
+ $(wildcard ..\..\..\src\glsl\pp\*.c) \
+ $(wildcard ..\..\..\src\glsl\pp\*.h) \
+ $(wildcard ..\..\..\src\glsl\apps\*.c) \
+ $(wildcard ..\..\..\src\glsl\apps\*.h) \
+ $(wildcard ..\..\..\src\mesa\drivers\dri\swrast\*.c) \
+ $(wildcard ..\..\..\src\mesa\drivers\dri\swrast\*.h) \
+ $(wildcard ..\..\..\src\mesa\drivers\dri\common\*.c) \
+ $(wildcard ..\..\..\src\mesa\drivers\dri\common\*.h) \
+ $(wildcard ..\..\..\src\mesa\drivers\common\*.c) \
+ $(wildcard ..\..\..\src\mesa\drivers\common\*.h)
all: Release\swrast_dri.dll Debug\swrast_dri.dll
-Debug\swrast_dri.dll:
+Debug\swrast_dri.dll: $(DEPS)
$(BUILDCMD) "Debug|Win32"
-Release\swrast_dri.dll:
+Release\swrast_dri.dll: $(DEPS)
$(BUILDCMD) "Release|Win32"
clean: cleanthis