scons: Play nice with MS Embedded Visual C++.
diff --git a/SConstruct b/SConstruct
index e7c10fc..5f7b6dd 100644
--- a/SConstruct
+++ b/SConstruct
@@ -85,7 +85,7 @@
 # TODO: auto-detect as much as possible
 
 if platform == 'winddk':
-	env.Tool('winddk', ['.'])
+	env.Tool('winddk', ['scons'])
 	
 	env.Append(CPPPATH = [
 		env['SDK_INC_PATH'],
@@ -94,6 +94,9 @@
 		env['CRT_INC_PATH'],
 	])
 
+if platform == 'wince':
+	env.Tool('evc', ['scons'])
+
 common.generate(env)