+- First spec file for Mandrake distribution.
+
+# end of file
diff --git a/3rdparty/SDL-1.3.0-5387/TODO b/3rdparty/SDL-1.3.0-5387/TODO
new file mode 100644
index 0000000000..55af9fe617
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/TODO
@@ -0,0 +1,42 @@
+Eli Gottlieb's checklist for the GSOC shaped windows project. Dated July 9, 2010.
+1. Enable proper linking of the X11 implementation and test it.
+--> Find the place in the build system for platform-specific linking flags. STATUS: DONE
+--> Add a linker flag to bring in libXext.a. STATUS: DONE.
+2. Build the Win32 implementation of shaped-windows functionality.
+--> Add driver functions to the SDL_ShapeDriver in the Win32 driver's SDL_DisplayDevice at the proper point in the code. STATUS: CHECK.
+--> Add a hook in the Windows resize-window code to call Win32_ResizeWindowShape(). STATUS: CHECK.
+--> Get the Windows code to build and run properly. STATUS: IN PROGRESS.
+3. Enable building the testeyes program.
+--> Reprogram it to use the latest shaped-windows API. STATUS: CHECK.
+--> Get it, along with the rest of the test suite in my branch, building successfully. STATUS: DONE.
+--> Debug testeyes and the platform-specific shaped-window implementations in tandem. STATUS: IN PROGRESS.
+4. Implement the SDL shaped-windows API for Mac OS X using Cocoa. STATUS: IN PROGRESS
+--> Locate (once more) the API documentation for shaped windows under Cocoa. STATUS: NEARLY FINISHED.
+--> Design and encode a version of SDL_ShapeData for Cocoa. STATUS: IN PROGRESS.
+--> Write Cocoa_CreateShaper(). STATUS: MOSTLY DONE, AFAIK.
+--> Write Cocoa_ResizeWindowShape(). STATUS: DONE, AFAIK.
+--> Write Cocoa_SetWindowShape(). STATUS: IN PROGRESS.
+--> If necessary, implement functionality adjunct to SDL_CalculateShapeBitmap() for Cocoa usage.
+5. Use testeyes to debug all implementations. STATUS: SPRINT + 2.
+--> Debug Cocoa implementation.
+--> Debug Win32 implementation.
+--> Debug X11 implementation (again).
+
+1.3 release checklist:
+ * http://wiki.libsdl.org/moin.cgi/Roadmap
+
+ * See why windows are being rearranged. Is the shield window not up?
+ * Make sure you can create and show a fullscreen window in one step
+ * Figure out how to handle OpenGL context lost on Mac OS X (does it happen?)
+ * Write automated test case for multi-draw APIs
+ * Make sure you can build SDL without the renderer to slim it down a bunch
+ * Implement assertion code on iPhone
+ * Add __WINDOWS__ in addition to __WIN32__
+
+ * Check 1.2 revisions:
+ 3554 - Need to resolve semantics for locking keys on different platforms
+ 4874 - Do we want screen rotation? At what level?
+ 4974 - Windows file code needs to convert UTF-8 to Unicode, but we don't need to tap dance for Windows 95/98
+ 4484, 4485 - Verify that SDL's Windows keyboard handling works correctly
+ 4865 - See if this is still needed (mouse coordinate clamping)
+ 4866 - See if this is still needed (blocking window repositioning)
diff --git a/3rdparty/SDL-1.3.0-5387/UNDER_CONSTRUCTION.txt b/3rdparty/SDL-1.3.0-5387/UNDER_CONSTRUCTION.txt
new file mode 100644
index 0000000000..cf92fce06a
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/UNDER_CONSTRUCTION.txt
@@ -0,0 +1 @@
+WARNING: This code is under construction, may not build, and is unstable!
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC.html b/3rdparty/SDL-1.3.0-5387/VisualC.html
new file mode 100644
index 0000000000..fdaeecd322
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC.html
@@ -0,0 +1,157 @@
+
+
+ Using SDL with Microsoft Visual C++
+
+
+
+ Using SDL with Microsoft Visual C++ 5,6 and 7
+
+
+
+ You can either use the precompiled libraries from
+ the SDL Download web site , or you can build SDL yourself.
+
+
+ Building SDL
+
+
+ Go into the VisualC directory and double-click on the VC++ file "SDL.dsw
" ("SDL.sln
") . This should open up the IDE.
+
+
+ You may be prompted at this point to upgrade the workspace, should you be using
+ a more recent version of Visual C++. If so, allow the workspace to be upgraded.
+
+
+ Build the .dll
and .lib
files.
+
+
+ This is done by right clicking on each project in turn (Projects are listed in
+ the Workspace panel in the FileView tab), and selecting "Build".
+
+
+ If you get an error about SDL_config.h being missing, you should
+ copy include/SDL_config.h.default to include/SDL_config.h and try again.
+
+
+ You may get a few warnings, but you should not get any errors. You do have to
+ have at least the DirectX 5 SDK installed, however. The latest
+ version of DirectX can be downloaded or purchased on a cheap CD (my
+ recommendation) from Microsoft .
+
+
+ Later, we will refer to the following .lib and .dll files that have just been
+ generated:
+
+
+ SDL.dll
+ SDL.lib
+ SDLmain.lib
+
+
+ Search for these using the Windows Find (Windows-F) utility, if you don't
+ already know where they should be. For those of you with a clue, look inside
+ the Debug or Release directories of the subdirectories of the Project folder.
+ (It might be easier to just use Windows Find if this sounds confusing. And
+ don't worry about needing a clue; we all need visits from the clue fairy
+ frequently.)
+
+
+ Creating a Project with SDL
+
+
+ Create a project as a Win32 Application.
+
+
+ Create a C++ file for your project.
+
+
+ Set the C runtime to "Multi-threaded DLL" in the menu: Project|Settings|C/C++
+ tab|Code Generation|Runtime Library
.
+
+
+ Add the SDL include
directory to your list of includes in the
+ menu: Project|Settings|C/C++ tab|Preprocessor|Additional include directories
+ .
+
+ VC7 Specific: Instead of doing this I find it easier to
+ add the include and library directories to the list that VC7 keeps. Do this by
+ selecting Tools|Options|Projects|VC++ Directories and under the "Show
+ Directories For:" dropbox select "Include Files", and click the "New Directory
+ Icon" and add the [SDLROOT]\include directory (ex. If you installed to
+ c:\SDL-1.2.5\ add c:\SDL-1.2.5\include). Proceed to change the
+ dropbox selection to "Library Files" and add [SDLROOT]\lib.
+
+
+ The "include directory" I am referring to is the include
folder
+ within the main SDL directory (the one that this HTML file located within).
+
+
+ Now we're going to use the files that we had created earlier in the Build SDL
+ step.
+
+
+ Copy the following files into your Project directory:
+
+
+
+ Add the following files to your project (It is not necessary to copy them to
+ your project directory):
+
+
+ SDL.lib
+ SDLmain.lib
+
+
+ (To add them to your project, right click on your project, and select "Add
+ files to project")
+
+ Instead of adding the files to your project it is more
+ desireable to add them to the linker options: Project|Properties|Linker|Command
+ Line and type the names of the libraries to link with in the "Additional
+ Options:" box. Note: This must be done for each build
+ configuration (eg. Release,Debug).
+
+ SDL 101, First Day of Class
+
+
+ Now create the basic body of your project. The body of your program should take
+ the following form:
+
+#include "SDL.h"
+
+int main( int argc, char* argv[] )
+{
+ // Body of the program goes here.
+ return 0;
+}
+
+
+
+
+ That's it!
+
+
+ I hope that this document has helped you get through the most difficult part of
+ using the SDL: installing it. Suggestions for improvements to this document
+ should be sent to the writers of this document.
+
+
+ Thanks to Paulus Esterhazy (pesterhazy@gmx.net), for the work on VC++ port.
+
+
+ This document was originally called "VisualC.txt", and was written by
+ Sam Lantinga .
+
+
+ Later, it was converted to HTML and expanded into the document that you see
+ today by Lion Kimbro .
+
+ Minor Fixes and Visual C++ 7 Information (In Green) was added by James Turk
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/SDL/SDL_VS2005.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/SDL/SDL_VS2005.vcproj
new file mode 100644
index 0000000000..75031a04a3
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/SDL/SDL_VS2005.vcproj
@@ -0,0 +1,1317 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/SDL/SDL_VS2008.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/SDL/SDL_VS2008.vcproj
new file mode 100644
index 0000000000..ce85d20a19
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/SDL/SDL_VS2008.vcproj
@@ -0,0 +1,1302 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/SDL/SDL_VS2010.vcxproj b/3rdparty/SDL-1.3.0-5387/VisualC/SDL/SDL_VS2010.vcxproj
new file mode 100644
index 0000000000..2f2b4aa198
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/SDL/SDL_VS2010.vcxproj
@@ -0,0 +1,449 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Debug
+ x64
+
+
+ Release
+ Win32
+
+
+ Release
+ x64
+
+
+
+ SDL
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ SDL
+
+
+
+ DynamicLibrary
+ false
+
+
+ DynamicLibrary
+ false
+
+
+ DynamicLibrary
+ false
+
+
+ DynamicLibrary
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\Debug\
+ .\Debug\
+ $(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ .\Release\
+ .\Release\
+ $(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Debug/SDL.tlb
+
+
+ Disabled
+ ..\..\include;%(AdditionalIncludeDirectories)
+ _DEBUG;_WINDOWS;_WIN32_WINNT=0x0400;__MMX__;__3dNOW__;__SSE__;__SSE2__;%(PreprocessorDefinitions)
+ MultiThreadedDebugDLL
+ false
+
+
+ Level3
+ true
+ EditAndContinue
+ Default
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ msvcrt.lib;msimg32.lib;version.lib;winmm.lib;imm32.lib;%(AdditionalDependencies)
+ $(IntDir)SDL.dll
+ true
+ true
+ Windows
+ false
+
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ X64
+ .\Debug/SDL.tlb
+
+
+ Disabled
+ ..\..\include;%(AdditionalIncludeDirectories)
+ _DEBUG;_WINDOWS;_WIN32_WINNT=0x0400;__SSE__;__SSE2__;%(PreprocessorDefinitions)
+ MultiThreadedDLL
+ false
+
+
+ Level3
+ ProgramDatabase
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ msimg32.lib;winmm.lib;%(AdditionalDependencies)
+ $(IntDir)SDL.dll
+ true
+ true
+ Windows
+ MachineX64
+ false
+
+
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Release/SDL.tlb
+
+
+ OnlyExplicitInline
+ false
+ ..\..\include;%(AdditionalIncludeDirectories)
+ NDEBUG;_WINDOWS;_WIN32_WINNT=0x0400;__MMX__;__3dNOW__;__SSE__;__SSE2__;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDLL
+ false
+ true
+
+
+ Level3
+ true
+ Default
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ msimg32.lib;winmm.lib;%(AdditionalDependencies)
+ $(IntDir)SDL.dll
+ true
+ Windows
+
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ X64
+ .\Release/SDL.tlb
+
+
+ OnlyExplicitInline
+ false
+ ..\..\include;%(AdditionalIncludeDirectories)
+ NDEBUG;_WINDOWS;_WIN32_WINNT=0x0400;__SSE__;__SSE2__;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDLL
+ false
+ true
+
+
+ Level3
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ msimg32.lib;winmm.lib;%(AdditionalDependencies)
+ $(IntDir)SDL.dll
+ true
+ Windows
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/SDL/Version.rc b/3rdparty/SDL-1.3.0-5387/VisualC/SDL/Version.rc
new file mode 100644
index 0000000000..8bb85a73b0
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/SDL/Version.rc
@@ -0,0 +1,105 @@
+//Microsoft Developer Studio generated resource script.
+//
+#include "resource.h"
+
+#define APSTUDIO_READONLY_SYMBOLS
+/////////////////////////////////////////////////////////////////////////////
+//
+// Generated from the TEXTINCLUDE 2 resource.
+//
+#include "winresrc.h"
+
+/////////////////////////////////////////////////////////////////////////////
+#undef APSTUDIO_READONLY_SYMBOLS
+
+/////////////////////////////////////////////////////////////////////////////
+// English (U.S.) resources
+
+#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
+#ifdef _WIN32
+LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
+#pragma code_page(1252)
+#endif //_WIN32
+
+#ifndef _MAC
+/////////////////////////////////////////////////////////////////////////////
+//
+// Version
+//
+
+VS_VERSION_INFO VERSIONINFO
+ FILEVERSION 1,3,0,0
+ PRODUCTVERSION 1,3,0,0
+ FILEFLAGSMASK 0x3fL
+#ifdef _DEBUG
+ FILEFLAGS 0x1L
+#else
+ FILEFLAGS 0x0L
+#endif
+ FILEOS 0x40004L
+ FILETYPE 0x2L
+ FILESUBTYPE 0x0L
+BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "040904b0"
+ BEGIN
+ VALUE "CompanyName", "\0"
+ VALUE "FileDescription", "SDL\0"
+ VALUE "FileVersion", "1, 3, 0, 0\0"
+ VALUE "InternalName", "SDL\0"
+ VALUE "LegalCopyright", "Copyright 2009 Sam Lantinga\0"
+ VALUE "OriginalFilename", "SDL.dll\0"
+ VALUE "ProductName", "Simple DirectMedia Layer\0"
+ VALUE "ProductVersion", "1, 3, 0, 0\0"
+ END
+ END
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x409, 1200
+ END
+END
+
+#endif // !_MAC
+
+
+#ifdef APSTUDIO_INVOKED
+/////////////////////////////////////////////////////////////////////////////
+//
+// TEXTINCLUDE
+//
+
+1 TEXTINCLUDE DISCARDABLE
+BEGIN
+ "resource.h\0"
+END
+
+2 TEXTINCLUDE DISCARDABLE
+BEGIN
+ "#include ""afxres.h""\r\n"
+ "\0"
+END
+
+3 TEXTINCLUDE DISCARDABLE
+BEGIN
+ "\r\n"
+ "\0"
+END
+
+#endif // APSTUDIO_INVOKED
+
+#endif // English (U.S.) resources
+/////////////////////////////////////////////////////////////////////////////
+
+
+
+#ifndef APSTUDIO_INVOKED
+/////////////////////////////////////////////////////////////////////////////
+//
+// Generated from the TEXTINCLUDE 3 resource.
+//
+
+
+/////////////////////////////////////////////////////////////////////////////
+#endif // not APSTUDIO_INVOKED
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/SDL/resource.h b/3rdparty/SDL-1.3.0-5387/VisualC/SDL/resource.h
new file mode 100644
index 0000000000..cbfd81d4ed
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/SDL/resource.h
@@ -0,0 +1,15 @@
+//{{NO_DEPENDENCIES}}
+// Microsoft Developer Studio generated include file.
+// Used by Version.rc
+//
+
+// Next default values for new objects
+//
+#ifdef APSTUDIO_INVOKED
+#ifndef APSTUDIO_READONLY_SYMBOLS
+#define _APS_NEXT_RESOURCE_VALUE 101
+#define _APS_NEXT_COMMAND_VALUE 40001
+#define _APS_NEXT_CONTROL_VALUE 1000
+#define _APS_NEXT_SYMED_VALUE 101
+#endif
+#endif
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/SDL_VS2005.sln b/3rdparty/SDL-1.3.0-5387/VisualC/SDL_VS2005.sln
new file mode 100644
index 0000000000..937cf40706
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/SDL_VS2005.sln
@@ -0,0 +1,45 @@
+Microsoft Visual Studio Solution File, Format Version 9.00
+# Visual Studio 2005
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SDL", "SDL\SDL_VS2005.vcproj", "{81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SDLmain", "SDLmain\SDLmain_VS2005.vcproj", "{DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Win32 = Debug|Win32
+ Debug|x64 = Debug|x64
+ Release_NoSTDIO|Win32 = Release_NoSTDIO|Win32
+ Release_NoSTDIO|x64 = Release_NoSTDIO|x64
+ Release|Win32 = Release|Win32
+ Release|x64 = Release|x64
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|Win32.ActiveCfg = Debug|Win32
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|Win32.Build.0 = Debug|Win32
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|x64.ActiveCfg = Debug|x64
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|x64.Build.0 = Debug|x64
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release_NoSTDIO|Win32.ActiveCfg = Release|Win32
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release_NoSTDIO|Win32.Build.0 = Release|Win32
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release_NoSTDIO|x64.ActiveCfg = Release|x64
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release_NoSTDIO|x64.Build.0 = Release|x64
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|Win32.ActiveCfg = Release|Win32
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|Win32.Build.0 = Release|Win32
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|x64.ActiveCfg = Release|x64
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|x64.Build.0 = Release|x64
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|Win32.ActiveCfg = Debug|Win32
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|Win32.Build.0 = Debug|Win32
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|x64.ActiveCfg = Debug|x64
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|x64.Build.0 = Debug|x64
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release_NoSTDIO|Win32.ActiveCfg = Release_NoSTDIO|Win32
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release_NoSTDIO|Win32.Build.0 = Release_NoSTDIO|Win32
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release_NoSTDIO|x64.ActiveCfg = Release_NoSTDIO|x64
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release_NoSTDIO|x64.Build.0 = Release_NoSTDIO|x64
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|Win32.ActiveCfg = Release|Win32
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|Win32.Build.0 = Release|Win32
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|x64.ActiveCfg = Release|x64
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|x64.Build.0 = Release|x64
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/SDL_VS2008.sln b/3rdparty/SDL-1.3.0-5387/VisualC/SDL_VS2008.sln
new file mode 100644
index 0000000000..0b2016f2f6
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/SDL_VS2008.sln
@@ -0,0 +1,338 @@
+Microsoft Visual Studio Solution File, Format Version 10.00
+# Visual Studio 2008
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SDL", "SDL\SDL_VS2008.vcproj", "{81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SDLmain", "SDLmain\SDLmain_VS2008.vcproj", "{DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}"
+EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{CE748C1F-3C21-4825-AA6A-F895A023F7E7}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "automated", "tests\automated\automated_VS2008.vcproj", "{DDD710DB-EC7B-4CCB-BD75-535D401A2FE0}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "checkkeys", "tests\checkkeys\checkkeys_VS2008.vcproj", "{26828762-C95D-4637-9CB1-7F0979523813}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "graywin", "tests\graywin\graywin_VS2008.vcproj", "{0BCCA0BF-073E-439E-BCE0-C9353C177487}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "loopwave", "tests\loopwave\loopwave_VS2008.vcproj", "{AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testalpha", "tests\testalpha\testalpha_VS2008.vcproj", "{7814D54B-65D3-4677-AD77-E0B980B4FA2D}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testdraw2", "tests\testdraw2\testdraw2_VS2008.vcproj", "{8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testfile", "tests\testfile\testfile_VS2008.vcproj", "{CAE4F1D0-314F-4B10-805B-0EFD670133A0}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testgamma", "tests\testgamma\testgamma_VS2008.vcproj", "{D974A0DF-3E2E-445C-A2EB-E899E9B582CB}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testgl", "tests\testgl\testgl_VS2008.vcproj", "{272D976B-A1DF-4DEB-BD7F-5C0D330E0C7D}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testgl2", "tests\testgl2\testgl2_VS2008.vcproj", "{8B5CFB38-CCBA-40A8-AD7A-89C57B070884}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testjoystick", "tests\testjoystick\testjoystick_VS2008.vcproj", "{55812185-D13C-4022-9C81-32E0F4A08304}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testoverlay", "tests\testoverlay\testoverlay_VS2008.vcproj", "{9E320A14-B443-4DD7-8725-B7020DCFF730}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testoverlay2", "tests\testoverlay2\testoverlay2_VS2008.vcproj", "{B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testplatform", "tests\testplatform\testplatform_VS2008.vcproj", "{26932B24-EFC6-4E3A-B277-ED653DA37968}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testpower", "tests\testpower\testpower_VS2008.vcproj", "{C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testsprite", "tests\testsprite\testsprite_VS2008.vcproj", "{5D0930C0-7C91-4ECE-9014-7B7DDE9502E5}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testsprite2", "tests\testsprite2\testsprite2_VS2008.vcproj", "{40FB7794-D3C3-4CFE-BCF4-A80C96635682}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testvidinfo", "tests\testvidinfo\testvidinfo_VS2008.vcproj", "{575FD095-EDAB-4BD4-B733-CD4A874F6FB0}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testwin", "tests\testwin\testwin_VS2008.vcproj", "{0FFD1A21-11DB-492C-A989-E4F195B0C441}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testwm", "tests\testwm\testwm_VS2008.vcproj", "{6AF0724B-BAC1-4C9D-AFBF-F63B4A2FB8FB}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testshape", "tests\testshape\testshape_VS2008.vcproj", "{31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testgesture", "tests\testgesture\testgesture_VS2008.vcproj", "{79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testatomic", "tests\testatomic\testatomic_VS2008.vcproj", "{66B32F7E-5716-48D0-B5B9-D832FD052DD5}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Win32 = Debug|Win32
+ Debug|x64 = Debug|x64
+ Release|Win32 = Release|Win32
+ Release|x64 = Release|x64
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|Win32.ActiveCfg = Debug|Win32
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|Win32.Build.0 = Debug|Win32
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|x64.ActiveCfg = Debug|x64
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|x64.Build.0 = Debug|x64
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|Win32.ActiveCfg = Release|Win32
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|Win32.Build.0 = Release|Win32
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|x64.ActiveCfg = Release|x64
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|x64.Build.0 = Release|x64
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|Win32.ActiveCfg = Debug|Win32
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|Win32.Build.0 = Debug|Win32
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|x64.ActiveCfg = Debug|x64
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|x64.Build.0 = Debug|x64
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|Win32.ActiveCfg = Release|Win32
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|Win32.Build.0 = Release|Win32
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|x64.ActiveCfg = Release|x64
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|x64.Build.0 = Release|x64
+ {DDD710DB-EC7B-4CCB-BD75-535D401A2FE0}.Debug|Win32.ActiveCfg = Debug|Win32
+ {DDD710DB-EC7B-4CCB-BD75-535D401A2FE0}.Debug|Win32.Build.0 = Debug|Win32
+ {DDD710DB-EC7B-4CCB-BD75-535D401A2FE0}.Debug|x64.ActiveCfg = Debug|Win32
+ {DDD710DB-EC7B-4CCB-BD75-535D401A2FE0}.Release|Win32.ActiveCfg = Release|Win32
+ {DDD710DB-EC7B-4CCB-BD75-535D401A2FE0}.Release|Win32.Build.0 = Release|Win32
+ {DDD710DB-EC7B-4CCB-BD75-535D401A2FE0}.Release|x64.ActiveCfg = Release|Win32
+ {26828762-C95D-4637-9CB1-7F0979523813}.Debug|Win32.ActiveCfg = Debug|Win32
+ {26828762-C95D-4637-9CB1-7F0979523813}.Debug|Win32.Build.0 = Debug|Win32
+ {26828762-C95D-4637-9CB1-7F0979523813}.Debug|x64.ActiveCfg = Debug|Win32
+ {26828762-C95D-4637-9CB1-7F0979523813}.Release|Win32.ActiveCfg = Release|Win32
+ {26828762-C95D-4637-9CB1-7F0979523813}.Release|Win32.Build.0 = Release|Win32
+ {26828762-C95D-4637-9CB1-7F0979523813}.Release|x64.ActiveCfg = Release|Win32
+ {0BCCA0BF-073E-439E-BCE0-C9353C177487}.Debug|Win32.ActiveCfg = Debug|Win32
+ {0BCCA0BF-073E-439E-BCE0-C9353C177487}.Debug|Win32.Build.0 = Debug|Win32
+ {0BCCA0BF-073E-439E-BCE0-C9353C177487}.Debug|x64.ActiveCfg = Debug|Win32
+ {0BCCA0BF-073E-439E-BCE0-C9353C177487}.Release|Win32.ActiveCfg = Release|Win32
+ {0BCCA0BF-073E-439E-BCE0-C9353C177487}.Release|Win32.Build.0 = Release|Win32
+ {0BCCA0BF-073E-439E-BCE0-C9353C177487}.Release|x64.ActiveCfg = Release|Win32
+ {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Debug|Win32.ActiveCfg = Debug|Win32
+ {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Debug|Win32.Build.0 = Debug|Win32
+ {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Debug|x64.ActiveCfg = Debug|Win32
+ {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Release|Win32.ActiveCfg = Release|Win32
+ {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Release|Win32.Build.0 = Release|Win32
+ {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Release|x64.ActiveCfg = Release|Win32
+ {7814D54B-65D3-4677-AD77-E0B980B4FA2D}.Debug|Win32.ActiveCfg = Debug|Win32
+ {7814D54B-65D3-4677-AD77-E0B980B4FA2D}.Debug|Win32.Build.0 = Debug|Win32
+ {7814D54B-65D3-4677-AD77-E0B980B4FA2D}.Debug|x64.ActiveCfg = Debug|Win32
+ {7814D54B-65D3-4677-AD77-E0B980B4FA2D}.Release|Win32.ActiveCfg = Release|Win32
+ {7814D54B-65D3-4677-AD77-E0B980B4FA2D}.Release|Win32.Build.0 = Release|Win32
+ {7814D54B-65D3-4677-AD77-E0B980B4FA2D}.Release|x64.ActiveCfg = Release|Win32
+ {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Debug|Win32.ActiveCfg = Debug|Win32
+ {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Debug|Win32.Build.0 = Debug|Win32
+ {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Debug|x64.ActiveCfg = Debug|Win32
+ {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Release|Win32.ActiveCfg = Release|Win32
+ {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Release|Win32.Build.0 = Release|Win32
+ {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Release|x64.ActiveCfg = Release|Win32
+ {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Debug|Win32.ActiveCfg = Debug|Win32
+ {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Debug|Win32.Build.0 = Debug|Win32
+ {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Debug|x64.ActiveCfg = Debug|Win32
+ {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Release|Win32.ActiveCfg = Release|Win32
+ {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Release|Win32.Build.0 = Release|Win32
+ {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Release|x64.ActiveCfg = Release|Win32
+ {D974A0DF-3E2E-445C-A2EB-E899E9B582CB}.Debug|Win32.ActiveCfg = Debug|Win32
+ {D974A0DF-3E2E-445C-A2EB-E899E9B582CB}.Debug|Win32.Build.0 = Debug|Win32
+ {D974A0DF-3E2E-445C-A2EB-E899E9B582CB}.Debug|x64.ActiveCfg = Debug|Win32
+ {D974A0DF-3E2E-445C-A2EB-E899E9B582CB}.Release|Win32.ActiveCfg = Release|Win32
+ {D974A0DF-3E2E-445C-A2EB-E899E9B582CB}.Release|Win32.Build.0 = Release|Win32
+ {D974A0DF-3E2E-445C-A2EB-E899E9B582CB}.Release|x64.ActiveCfg = Release|Win32
+ {272D976B-A1DF-4DEB-BD7F-5C0D330E0C7D}.Debug|Win32.ActiveCfg = Debug|Win32
+ {272D976B-A1DF-4DEB-BD7F-5C0D330E0C7D}.Debug|Win32.Build.0 = Debug|Win32
+ {272D976B-A1DF-4DEB-BD7F-5C0D330E0C7D}.Debug|x64.ActiveCfg = Debug|Win32
+ {272D976B-A1DF-4DEB-BD7F-5C0D330E0C7D}.Release|Win32.ActiveCfg = Release|Win32
+ {272D976B-A1DF-4DEB-BD7F-5C0D330E0C7D}.Release|Win32.Build.0 = Release|Win32
+ {272D976B-A1DF-4DEB-BD7F-5C0D330E0C7D}.Release|x64.ActiveCfg = Release|Win32
+ {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Debug|Win32.ActiveCfg = Debug|Win32
+ {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Debug|Win32.Build.0 = Debug|Win32
+ {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Debug|x64.ActiveCfg = Debug|Win32
+ {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Release|Win32.ActiveCfg = Release|Win32
+ {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Release|Win32.Build.0 = Release|Win32
+ {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Release|x64.ActiveCfg = Release|Win32
+ {55812185-D13C-4022-9C81-32E0F4A08304}.Debug|Win32.ActiveCfg = Debug|Win32
+ {55812185-D13C-4022-9C81-32E0F4A08304}.Debug|Win32.Build.0 = Debug|Win32
+ {55812185-D13C-4022-9C81-32E0F4A08304}.Debug|x64.ActiveCfg = Debug|Win32
+ {55812185-D13C-4022-9C81-32E0F4A08304}.Release|Win32.ActiveCfg = Release|Win32
+ {55812185-D13C-4022-9C81-32E0F4A08304}.Release|Win32.Build.0 = Release|Win32
+ {55812185-D13C-4022-9C81-32E0F4A08304}.Release|x64.ActiveCfg = Release|Win32
+ {9E320A14-B443-4DD7-8725-B7020DCFF730}.Debug|Win32.ActiveCfg = Debug|Win32
+ {9E320A14-B443-4DD7-8725-B7020DCFF730}.Debug|Win32.Build.0 = Debug|Win32
+ {9E320A14-B443-4DD7-8725-B7020DCFF730}.Debug|x64.ActiveCfg = Debug|Win32
+ {9E320A14-B443-4DD7-8725-B7020DCFF730}.Release|Win32.ActiveCfg = Release|Win32
+ {9E320A14-B443-4DD7-8725-B7020DCFF730}.Release|Win32.Build.0 = Release|Win32
+ {9E320A14-B443-4DD7-8725-B7020DCFF730}.Release|x64.ActiveCfg = Release|Win32
+ {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Debug|Win32.ActiveCfg = Debug|Win32
+ {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Debug|Win32.Build.0 = Debug|Win32
+ {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Debug|x64.ActiveCfg = Debug|Win32
+ {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Release|Win32.ActiveCfg = Release|Win32
+ {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Release|Win32.Build.0 = Release|Win32
+ {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Release|x64.ActiveCfg = Release|Win32
+ {26932B24-EFC6-4E3A-B277-ED653DA37968}.Debug|Win32.ActiveCfg = Debug|Win32
+ {26932B24-EFC6-4E3A-B277-ED653DA37968}.Debug|Win32.Build.0 = Debug|Win32
+ {26932B24-EFC6-4E3A-B277-ED653DA37968}.Debug|x64.ActiveCfg = Debug|Win32
+ {26932B24-EFC6-4E3A-B277-ED653DA37968}.Release|Win32.ActiveCfg = Release|Win32
+ {26932B24-EFC6-4E3A-B277-ED653DA37968}.Release|Win32.Build.0 = Release|Win32
+ {26932B24-EFC6-4E3A-B277-ED653DA37968}.Release|x64.ActiveCfg = Release|Win32
+ {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Debug|Win32.ActiveCfg = Debug|Win32
+ {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Debug|Win32.Build.0 = Debug|Win32
+ {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Debug|x64.ActiveCfg = Debug|Win32
+ {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Release|Win32.ActiveCfg = Release|Win32
+ {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Release|Win32.Build.0 = Release|Win32
+ {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Release|x64.ActiveCfg = Release|Win32
+ {5D0930C0-7C91-4ECE-9014-7B7DDE9502E5}.Debug|Win32.ActiveCfg = Debug|Win32
+ {5D0930C0-7C91-4ECE-9014-7B7DDE9502E5}.Debug|Win32.Build.0 = Debug|Win32
+ {5D0930C0-7C91-4ECE-9014-7B7DDE9502E5}.Debug|x64.ActiveCfg = Debug|Win32
+ {5D0930C0-7C91-4ECE-9014-7B7DDE9502E5}.Release|Win32.ActiveCfg = Release|Win32
+ {5D0930C0-7C91-4ECE-9014-7B7DDE9502E5}.Release|Win32.Build.0 = Release|Win32
+ {5D0930C0-7C91-4ECE-9014-7B7DDE9502E5}.Release|x64.ActiveCfg = Release|Win32
+ {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Debug|Win32.ActiveCfg = Debug|Win32
+ {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Debug|Win32.Build.0 = Debug|Win32
+ {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Debug|x64.ActiveCfg = Debug|Win32
+ {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Release|Win32.ActiveCfg = Release|Win32
+ {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Release|Win32.Build.0 = Release|Win32
+ {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Release|x64.ActiveCfg = Release|Win32
+ {575FD095-EDAB-4BD4-B733-CD4A874F6FB0}.Debug|Win32.ActiveCfg = Debug|Win32
+ {575FD095-EDAB-4BD4-B733-CD4A874F6FB0}.Debug|Win32.Build.0 = Debug|Win32
+ {575FD095-EDAB-4BD4-B733-CD4A874F6FB0}.Debug|x64.ActiveCfg = Debug|Win32
+ {575FD095-EDAB-4BD4-B733-CD4A874F6FB0}.Release|Win32.ActiveCfg = Release|Win32
+ {575FD095-EDAB-4BD4-B733-CD4A874F6FB0}.Release|Win32.Build.0 = Release|Win32
+ {575FD095-EDAB-4BD4-B733-CD4A874F6FB0}.Release|x64.ActiveCfg = Release|Win32
+ {0FFD1A21-11DB-492C-A989-E4F195B0C441}.Debug|Win32.ActiveCfg = Debug|Win32
+ {0FFD1A21-11DB-492C-A989-E4F195B0C441}.Debug|Win32.Build.0 = Debug|Win32
+ {0FFD1A21-11DB-492C-A989-E4F195B0C441}.Debug|x64.ActiveCfg = Debug|Win32
+ {0FFD1A21-11DB-492C-A989-E4F195B0C441}.Release|Win32.ActiveCfg = Release|Win32
+ {0FFD1A21-11DB-492C-A989-E4F195B0C441}.Release|Win32.Build.0 = Release|Win32
+ {0FFD1A21-11DB-492C-A989-E4F195B0C441}.Release|x64.ActiveCfg = Release|Win32
+ {6AF0724B-BAC1-4C9D-AFBF-F63B4A2FB8FB}.Debug|Win32.ActiveCfg = Debug|Win32
+ {6AF0724B-BAC1-4C9D-AFBF-F63B4A2FB8FB}.Debug|Win32.Build.0 = Debug|Win32
+ {6AF0724B-BAC1-4C9D-AFBF-F63B4A2FB8FB}.Debug|x64.ActiveCfg = Debug|Win32
+ {6AF0724B-BAC1-4C9D-AFBF-F63B4A2FB8FB}.Release|Win32.ActiveCfg = Release|Win32
+ {6AF0724B-BAC1-4C9D-AFBF-F63B4A2FB8FB}.Release|Win32.Build.0 = Release|Win32
+ {6AF0724B-BAC1-4C9D-AFBF-F63B4A2FB8FB}.Release|x64.ActiveCfg = Release|Win32
+ {31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2}.Debug|Win32.ActiveCfg = Debug|Win32
+ {31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2}.Debug|Win32.Build.0 = Debug|Win32
+ {31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2}.Debug|x64.ActiveCfg = Debug|Win32
+ {31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2}.Release|Win32.ActiveCfg = Release|Win32
+ {31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2}.Release|Win32.Build.0 = Release|Win32
+ {31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2}.Release|x64.ActiveCfg = Release|Win32
+ {79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF}.Debug|Win32.ActiveCfg = Debug|Win32
+ {79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF}.Debug|Win32.Build.0 = Debug|Win32
+ {79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF}.Debug|x64.ActiveCfg = Debug|Win32
+ {79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF}.Release|Win32.ActiveCfg = Release|Win32
+ {79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF}.Release|Win32.Build.0 = Release|Win32
+ {79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF}.Release|x64.ActiveCfg = Release|Win32
+ {66B32F7E-5716-48D0-B5B9-D832FD052DD5}.Debug|Win32.ActiveCfg = Debug|Win32
+ {66B32F7E-5716-48D0-B5B9-D832FD052DD5}.Debug|Win32.Build.0 = Debug|Win32
+ {66B32F7E-5716-48D0-B5B9-D832FD052DD5}.Debug|x64.ActiveCfg = Debug|Win32
+ {66B32F7E-5716-48D0-B5B9-D832FD052DD5}.Release|Win32.ActiveCfg = Release|Win32
+ {66B32F7E-5716-48D0-B5B9-D832FD052DD5}.Release|Win32.Build.0 = Release|Win32
+ {66B32F7E-5716-48D0-B5B9-D832FD052DD5}.Release|x64.ActiveCfg = Release|Win32
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(NestedProjects) = preSolution
+ {DDD710DB-EC7B-4CCB-BD75-535D401A2FE0} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {26828762-C95D-4637-9CB1-7F0979523813} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {0BCCA0BF-073E-439E-BCE0-C9353C177487} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {7814D54B-65D3-4677-AD77-E0B980B4FA2D} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {CAE4F1D0-314F-4B10-805B-0EFD670133A0} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {D974A0DF-3E2E-445C-A2EB-E899E9B582CB} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {272D976B-A1DF-4DEB-BD7F-5C0D330E0C7D} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {8B5CFB38-CCBA-40A8-AD7A-89C57B070884} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {55812185-D13C-4022-9C81-32E0F4A08304} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {9E320A14-B443-4DD7-8725-B7020DCFF730} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {26932B24-EFC6-4E3A-B277-ED653DA37968} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {5D0930C0-7C91-4ECE-9014-7B7DDE9502E5} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {40FB7794-D3C3-4CFE-BCF4-A80C96635682} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {575FD095-EDAB-4BD4-B733-CD4A874F6FB0} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {0FFD1A21-11DB-492C-A989-E4F195B0C441} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {6AF0724B-BAC1-4C9D-AFBF-F63B4A2FB8FB} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {66B32F7E-5716-48D0-B5B9-D832FD052DD5} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ EndGlobalSection
+EndGlobal
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/SDL_VS2010.sln b/3rdparty/SDL-1.3.0-5387/VisualC/SDL_VS2010.sln
new file mode 100644
index 0000000000..4dc8d3684f
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/SDL_VS2010.sln
@@ -0,0 +1,312 @@
+
+Microsoft Visual Studio Solution File, Format Version 11.00
+# Visual Studio 2010
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SDL", "SDL\SDL_VS2010.vcxproj", "{81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SDLmain", "SDLmain\SDLmain_VS2010.vcxproj", "{DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}"
+EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{CE748C1F-3C21-4825-AA6A-F895A023F7E7}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "automated", "tests\automated\automated_VS2010.vcxproj", "{DDD710DB-EC7B-4CCB-BD75-535D401A2FE0}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "graywin", "tests\graywin\graywin_VS2010.vcxproj", "{0BCCA0BF-073E-439E-BCE0-C9353C177487}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "loopwave", "tests\loopwave\loopwave_VS2010.vcxproj", "{AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testalpha", "tests\testalpha\testalpha_VS2010.vcxproj", "{7814D54B-65D3-4677-AD77-E0B980B4FA2D}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testgamma", "tests\testgamma\testgamma_VS2010.vcxproj", "{D974A0DF-3E2E-445C-A2EB-E899E9B582CB}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testgl", "tests\testgl\testgl_VS2010.vcxproj", "{272D976B-A1DF-4DEB-BD7F-5C0D330E0C7D}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testjoystick", "tests\testjoystick\testjoystick_VS2010.vcxproj", "{55812185-D13C-4022-9C81-32E0F4A08304}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testvidinfo", "tests\testvidinfo\testvidinfo_VS2010.vcxproj", "{575FD095-EDAB-4BD4-B733-CD4A874F6FB0}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testwin", "tests\testwin\testwin_VS2010.vcxproj", "{0FFD1A21-11DB-492C-A989-E4F195B0C441}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testwm", "tests\testwm\testwm_VS2010.vcxproj", "{6AF0724B-BAC1-4C9D-AFBF-F63B4A2FB8FB}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testplatform", "tests\testplatform\testplatform_VS2010.vcxproj", "{26932B24-EFC6-4E3A-B277-ED653DA37968}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testfile", "tests\testfile\testfile_VS2010.vcxproj", "{CAE4F1D0-314F-4B10-805B-0EFD670133A0}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testgl2", "tests\testgl2\testgl2_VS2010.vcxproj", "{8B5CFB38-CCBA-40A8-AD7A-89C57B070884}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "checkkeys", "tests\checkkeys\checkkeys_VS2010.vcxproj", "{26828762-C95D-4637-9CB1-7F0979523813}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testoverlay", "tests\testoverlay\testoverlay_VS2010.vcxproj", "{9E320A14-B443-4DD7-8725-B7020DCFF730}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testoverlay2", "tests\testoverlay2\testoverlay2_VS2010.vcxproj", "{B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testsprite", "tests\testsprite\testsprite_VS2010.vcxproj", "{5D0930C0-7C91-4ECE-9014-7B7DDE9502E5}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testsprite2", "tests\testsprite2\testsprite2_VS2010.vcxproj", "{40FB7794-D3C3-4CFE-BCF4-A80C96635682}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testshape", "tests\testshape\testshape_VS2010.vcxproj", "{EDEA9D00-AF64-45DE-8F60-5957048F2F0F}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testdraw2", "tests\testdraw2\testdraw2_VS2010.vcxproj", "{8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testpower", "tests\testpower\testpower_VS2010.vcxproj", "{C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}"
+ ProjectSection(ProjectDependencies) = postProject
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} = {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} = {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+ EndProjectSection
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Win32 = Debug|Win32
+ Debug|x64 = Debug|x64
+ Release|Win32 = Release|Win32
+ Release|x64 = Release|x64
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|Win32.ActiveCfg = Debug|Win32
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|Win32.Build.0 = Debug|Win32
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|x64.ActiveCfg = Debug|x64
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|x64.Build.0 = Debug|x64
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|Win32.ActiveCfg = Release|Win32
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|Win32.Build.0 = Release|Win32
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|x64.ActiveCfg = Release|x64
+ {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|x64.Build.0 = Release|x64
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|Win32.ActiveCfg = Debug|Win32
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|Win32.Build.0 = Debug|Win32
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|x64.ActiveCfg = Debug|x64
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|x64.Build.0 = Debug|x64
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|Win32.ActiveCfg = Release|Win32
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|Win32.Build.0 = Release|Win32
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|x64.ActiveCfg = Release|x64
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|x64.Build.0 = Release|x64
+ {DDD710DB-EC7B-4CCB-BD75-535D401A2FE0}.Debug|Win32.ActiveCfg = Debug|Win32
+ {DDD710DB-EC7B-4CCB-BD75-535D401A2FE0}.Debug|Win32.Build.0 = Debug|Win32
+ {DDD710DB-EC7B-4CCB-BD75-535D401A2FE0}.Debug|x64.ActiveCfg = Debug|Win32
+ {DDD710DB-EC7B-4CCB-BD75-535D401A2FE0}.Release|Win32.ActiveCfg = Release|Win32
+ {DDD710DB-EC7B-4CCB-BD75-535D401A2FE0}.Release|Win32.Build.0 = Release|Win32
+ {DDD710DB-EC7B-4CCB-BD75-535D401A2FE0}.Release|x64.ActiveCfg = Release|Win32
+ {0BCCA0BF-073E-439E-BCE0-C9353C177487}.Debug|Win32.ActiveCfg = Debug|Win32
+ {0BCCA0BF-073E-439E-BCE0-C9353C177487}.Debug|Win32.Build.0 = Debug|Win32
+ {0BCCA0BF-073E-439E-BCE0-C9353C177487}.Debug|x64.ActiveCfg = Debug|Win32
+ {0BCCA0BF-073E-439E-BCE0-C9353C177487}.Release|Win32.ActiveCfg = Release|Win32
+ {0BCCA0BF-073E-439E-BCE0-C9353C177487}.Release|Win32.Build.0 = Release|Win32
+ {0BCCA0BF-073E-439E-BCE0-C9353C177487}.Release|x64.ActiveCfg = Release|Win32
+ {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Debug|Win32.ActiveCfg = Debug|Win32
+ {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Debug|Win32.Build.0 = Debug|Win32
+ {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Debug|x64.ActiveCfg = Debug|Win32
+ {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Release|Win32.ActiveCfg = Release|Win32
+ {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Release|Win32.Build.0 = Release|Win32
+ {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Release|x64.ActiveCfg = Release|Win32
+ {7814D54B-65D3-4677-AD77-E0B980B4FA2D}.Debug|Win32.ActiveCfg = Debug|Win32
+ {7814D54B-65D3-4677-AD77-E0B980B4FA2D}.Debug|Win32.Build.0 = Debug|Win32
+ {7814D54B-65D3-4677-AD77-E0B980B4FA2D}.Debug|x64.ActiveCfg = Debug|Win32
+ {7814D54B-65D3-4677-AD77-E0B980B4FA2D}.Release|Win32.ActiveCfg = Release|Win32
+ {7814D54B-65D3-4677-AD77-E0B980B4FA2D}.Release|Win32.Build.0 = Release|Win32
+ {7814D54B-65D3-4677-AD77-E0B980B4FA2D}.Release|x64.ActiveCfg = Release|Win32
+ {D974A0DF-3E2E-445C-A2EB-E899E9B582CB}.Debug|Win32.ActiveCfg = Debug|Win32
+ {D974A0DF-3E2E-445C-A2EB-E899E9B582CB}.Debug|Win32.Build.0 = Debug|Win32
+ {D974A0DF-3E2E-445C-A2EB-E899E9B582CB}.Debug|x64.ActiveCfg = Debug|Win32
+ {D974A0DF-3E2E-445C-A2EB-E899E9B582CB}.Release|Win32.ActiveCfg = Release|Win32
+ {D974A0DF-3E2E-445C-A2EB-E899E9B582CB}.Release|Win32.Build.0 = Release|Win32
+ {D974A0DF-3E2E-445C-A2EB-E899E9B582CB}.Release|x64.ActiveCfg = Release|Win32
+ {272D976B-A1DF-4DEB-BD7F-5C0D330E0C7D}.Debug|Win32.ActiveCfg = Debug|Win32
+ {272D976B-A1DF-4DEB-BD7F-5C0D330E0C7D}.Debug|Win32.Build.0 = Debug|Win32
+ {272D976B-A1DF-4DEB-BD7F-5C0D330E0C7D}.Debug|x64.ActiveCfg = Debug|Win32
+ {272D976B-A1DF-4DEB-BD7F-5C0D330E0C7D}.Release|Win32.ActiveCfg = Release|Win32
+ {272D976B-A1DF-4DEB-BD7F-5C0D330E0C7D}.Release|Win32.Build.0 = Release|Win32
+ {272D976B-A1DF-4DEB-BD7F-5C0D330E0C7D}.Release|x64.ActiveCfg = Release|Win32
+ {55812185-D13C-4022-9C81-32E0F4A08304}.Debug|Win32.ActiveCfg = Debug|Win32
+ {55812185-D13C-4022-9C81-32E0F4A08304}.Debug|Win32.Build.0 = Debug|Win32
+ {55812185-D13C-4022-9C81-32E0F4A08304}.Debug|x64.ActiveCfg = Debug|Win32
+ {55812185-D13C-4022-9C81-32E0F4A08304}.Release|Win32.ActiveCfg = Release|Win32
+ {55812185-D13C-4022-9C81-32E0F4A08304}.Release|Win32.Build.0 = Release|Win32
+ {55812185-D13C-4022-9C81-32E0F4A08304}.Release|x64.ActiveCfg = Release|Win32
+ {575FD095-EDAB-4BD4-B733-CD4A874F6FB0}.Debug|Win32.ActiveCfg = Debug|Win32
+ {575FD095-EDAB-4BD4-B733-CD4A874F6FB0}.Debug|Win32.Build.0 = Debug|Win32
+ {575FD095-EDAB-4BD4-B733-CD4A874F6FB0}.Debug|x64.ActiveCfg = Debug|Win32
+ {575FD095-EDAB-4BD4-B733-CD4A874F6FB0}.Release|Win32.ActiveCfg = Release|Win32
+ {575FD095-EDAB-4BD4-B733-CD4A874F6FB0}.Release|Win32.Build.0 = Release|Win32
+ {575FD095-EDAB-4BD4-B733-CD4A874F6FB0}.Release|x64.ActiveCfg = Release|Win32
+ {0FFD1A21-11DB-492C-A989-E4F195B0C441}.Debug|Win32.ActiveCfg = Debug|Win32
+ {0FFD1A21-11DB-492C-A989-E4F195B0C441}.Debug|Win32.Build.0 = Debug|Win32
+ {0FFD1A21-11DB-492C-A989-E4F195B0C441}.Debug|x64.ActiveCfg = Debug|Win32
+ {0FFD1A21-11DB-492C-A989-E4F195B0C441}.Release|Win32.ActiveCfg = Release|Win32
+ {0FFD1A21-11DB-492C-A989-E4F195B0C441}.Release|Win32.Build.0 = Release|Win32
+ {0FFD1A21-11DB-492C-A989-E4F195B0C441}.Release|x64.ActiveCfg = Release|Win32
+ {6AF0724B-BAC1-4C9D-AFBF-F63B4A2FB8FB}.Debug|Win32.ActiveCfg = Debug|Win32
+ {6AF0724B-BAC1-4C9D-AFBF-F63B4A2FB8FB}.Debug|Win32.Build.0 = Debug|Win32
+ {6AF0724B-BAC1-4C9D-AFBF-F63B4A2FB8FB}.Debug|x64.ActiveCfg = Debug|Win32
+ {6AF0724B-BAC1-4C9D-AFBF-F63B4A2FB8FB}.Release|Win32.ActiveCfg = Release|Win32
+ {6AF0724B-BAC1-4C9D-AFBF-F63B4A2FB8FB}.Release|Win32.Build.0 = Release|Win32
+ {6AF0724B-BAC1-4C9D-AFBF-F63B4A2FB8FB}.Release|x64.ActiveCfg = Release|Win32
+ {26932B24-EFC6-4E3A-B277-ED653DA37968}.Debug|Win32.ActiveCfg = Debug|Win32
+ {26932B24-EFC6-4E3A-B277-ED653DA37968}.Debug|Win32.Build.0 = Debug|Win32
+ {26932B24-EFC6-4E3A-B277-ED653DA37968}.Debug|x64.ActiveCfg = Debug|Win32
+ {26932B24-EFC6-4E3A-B277-ED653DA37968}.Release|Win32.ActiveCfg = Release|Win32
+ {26932B24-EFC6-4E3A-B277-ED653DA37968}.Release|Win32.Build.0 = Release|Win32
+ {26932B24-EFC6-4E3A-B277-ED653DA37968}.Release|x64.ActiveCfg = Release|Win32
+ {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Debug|Win32.ActiveCfg = Debug|Win32
+ {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Debug|Win32.Build.0 = Debug|Win32
+ {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Debug|x64.ActiveCfg = Debug|Win32
+ {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Release|Win32.ActiveCfg = Release|Win32
+ {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Release|Win32.Build.0 = Release|Win32
+ {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Release|x64.ActiveCfg = Release|Win32
+ {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Debug|Win32.ActiveCfg = Debug|Win32
+ {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Debug|Win32.Build.0 = Debug|Win32
+ {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Debug|x64.ActiveCfg = Debug|Win32
+ {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Release|Win32.ActiveCfg = Release|Win32
+ {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Release|Win32.Build.0 = Release|Win32
+ {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Release|x64.ActiveCfg = Release|Win32
+ {26828762-C95D-4637-9CB1-7F0979523813}.Debug|Win32.ActiveCfg = Debug|Win32
+ {26828762-C95D-4637-9CB1-7F0979523813}.Debug|Win32.Build.0 = Debug|Win32
+ {26828762-C95D-4637-9CB1-7F0979523813}.Debug|x64.ActiveCfg = Debug|Win32
+ {26828762-C95D-4637-9CB1-7F0979523813}.Release|Win32.ActiveCfg = Release|Win32
+ {26828762-C95D-4637-9CB1-7F0979523813}.Release|Win32.Build.0 = Release|Win32
+ {26828762-C95D-4637-9CB1-7F0979523813}.Release|x64.ActiveCfg = Release|Win32
+ {9E320A14-B443-4DD7-8725-B7020DCFF730}.Debug|Win32.ActiveCfg = Debug|Win32
+ {9E320A14-B443-4DD7-8725-B7020DCFF730}.Debug|Win32.Build.0 = Debug|Win32
+ {9E320A14-B443-4DD7-8725-B7020DCFF730}.Debug|x64.ActiveCfg = Debug|Win32
+ {9E320A14-B443-4DD7-8725-B7020DCFF730}.Release|Win32.ActiveCfg = Release|Win32
+ {9E320A14-B443-4DD7-8725-B7020DCFF730}.Release|Win32.Build.0 = Release|Win32
+ {9E320A14-B443-4DD7-8725-B7020DCFF730}.Release|x64.ActiveCfg = Release|Win32
+ {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Debug|Win32.ActiveCfg = Debug|Win32
+ {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Debug|Win32.Build.0 = Debug|Win32
+ {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Debug|x64.ActiveCfg = Debug|Win32
+ {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Release|Win32.ActiveCfg = Release|Win32
+ {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Release|Win32.Build.0 = Release|Win32
+ {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Release|x64.ActiveCfg = Release|Win32
+ {5D0930C0-7C91-4ECE-9014-7B7DDE9502E5}.Debug|Win32.ActiveCfg = Debug|Win32
+ {5D0930C0-7C91-4ECE-9014-7B7DDE9502E5}.Debug|Win32.Build.0 = Debug|Win32
+ {5D0930C0-7C91-4ECE-9014-7B7DDE9502E5}.Debug|x64.ActiveCfg = Debug|Win32
+ {5D0930C0-7C91-4ECE-9014-7B7DDE9502E5}.Release|Win32.ActiveCfg = Release|Win32
+ {5D0930C0-7C91-4ECE-9014-7B7DDE9502E5}.Release|Win32.Build.0 = Release|Win32
+ {5D0930C0-7C91-4ECE-9014-7B7DDE9502E5}.Release|x64.ActiveCfg = Release|Win32
+ {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Debug|Win32.ActiveCfg = Debug|Win32
+ {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Debug|Win32.Build.0 = Debug|Win32
+ {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Debug|x64.ActiveCfg = Debug|Win32
+ {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Release|Win32.ActiveCfg = Release|Win32
+ {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Release|Win32.Build.0 = Release|Win32
+ {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Release|x64.ActiveCfg = Release|Win32
+ {EDEA9D00-AF64-45DE-8F60-5957048F2F0F}.Debug|Win32.ActiveCfg = Debug|Win32
+ {EDEA9D00-AF64-45DE-8F60-5957048F2F0F}.Debug|Win32.Build.0 = Debug|Win32
+ {EDEA9D00-AF64-45DE-8F60-5957048F2F0F}.Debug|x64.ActiveCfg = Debug|Win32
+ {EDEA9D00-AF64-45DE-8F60-5957048F2F0F}.Release|Win32.ActiveCfg = Release|Win32
+ {EDEA9D00-AF64-45DE-8F60-5957048F2F0F}.Release|x64.ActiveCfg = Release|Win32
+ {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Debug|Win32.ActiveCfg = Debug|Win32
+ {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Debug|Win32.Build.0 = Debug|Win32
+ {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Debug|x64.ActiveCfg = Debug|Win32
+ {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Release|Win32.ActiveCfg = Release|Win32
+ {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Release|Win32.Build.0 = Release|Win32
+ {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Release|x64.ActiveCfg = Release|Win32
+ {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Debug|Win32.ActiveCfg = Debug|Win32
+ {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Debug|Win32.Build.0 = Debug|Win32
+ {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Debug|x64.ActiveCfg = Debug|Win32
+ {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Release|Win32.ActiveCfg = Release|Win32
+ {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Release|Win32.Build.0 = Release|Win32
+ {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Release|x64.ActiveCfg = Release|Win32
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(NestedProjects) = preSolution
+ {DDD710DB-EC7B-4CCB-BD75-535D401A2FE0} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {0BCCA0BF-073E-439E-BCE0-C9353C177487} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {7814D54B-65D3-4677-AD77-E0B980B4FA2D} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {D974A0DF-3E2E-445C-A2EB-E899E9B582CB} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {272D976B-A1DF-4DEB-BD7F-5C0D330E0C7D} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {55812185-D13C-4022-9C81-32E0F4A08304} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {575FD095-EDAB-4BD4-B733-CD4A874F6FB0} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {0FFD1A21-11DB-492C-A989-E4F195B0C441} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {6AF0724B-BAC1-4C9D-AFBF-F63B4A2FB8FB} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {26932B24-EFC6-4E3A-B277-ED653DA37968} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {CAE4F1D0-314F-4B10-805B-0EFD670133A0} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {8B5CFB38-CCBA-40A8-AD7A-89C57B070884} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {26828762-C95D-4637-9CB1-7F0979523813} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {9E320A14-B443-4DD7-8725-B7020DCFF730} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {5D0930C0-7C91-4ECE-9014-7B7DDE9502E5} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {40FB7794-D3C3-4CFE-BCF4-A80C96635682} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {EDEA9D00-AF64-45DE-8F60-5957048F2F0F} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3} = {CE748C1F-3C21-4825-AA6A-F895A023F7E7}
+ EndGlobalSection
+EndGlobal
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/SDLmain/SDLmain_VS2005.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/SDLmain/SDLmain_VS2005.vcproj
new file mode 100644
index 0000000000..d5ffd980b9
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/SDLmain/SDLmain_VS2005.vcproj
@@ -0,0 +1,434 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/SDLmain/SDLmain_VS2008.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/SDLmain/SDLmain_VS2008.vcproj
new file mode 100644
index 0000000000..60810e42a3
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/SDLmain/SDLmain_VS2008.vcproj
@@ -0,0 +1,365 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/SDLmain/SDLmain_VS2010.vcxproj b/3rdparty/SDL-1.3.0-5387/VisualC/SDLmain/SDLmain_VS2010.vcxproj
new file mode 100644
index 0000000000..c0568df8fa
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/SDLmain/SDLmain_VS2010.vcxproj
@@ -0,0 +1,161 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Debug
+ x64
+
+
+ Release
+ Win32
+
+
+ Release
+ x64
+
+
+
+ SDLmain
+ {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}
+
+
+
+ StaticLibrary
+ false
+
+
+ StaticLibrary
+ false
+
+
+ StaticLibrary
+ false
+
+
+ StaticLibrary
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\Release\
+ .\Release\
+ $(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+ .\Debug\
+ .\Debug\
+ $(Platform)\$(Configuration)\
+ $(Platform)\$(Configuration)\
+
+
+
+
+ OnlyExplicitInline
+ ..\..\include;..\..\include\SDL;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDLL
+ true
+
+
+ Level3
+ true
+ Default
+
+
+ .\Release\SDLmain.lib
+ true
+
+
+
+
+ X64
+
+
+ OnlyExplicitInline
+ ..\..\include;..\..\include\SDL;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDLL
+ true
+
+
+ .\Release/SDLmain.pch
+ Level3
+ true
+ Default
+
+
+ $(IntDir)SDLmain.lib
+
+
+
+
+
+ Disabled
+ ..\..\include;..\..\include\SDL;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ MultiThreadedDebugDLL
+
+
+ Level3
+ true
+ OldStyle
+ Default
+
+
+ .\Debug\SDLmain.lib
+ true
+
+
+
+
+ X64
+
+
+ Disabled
+ ..\..\include;..\..\include\SDL;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ MultiThreadedDLL
+
+
+ .\Debug/SDLmain.pch
+ Level3
+ true
+ OldStyle
+ Default
+
+
+ $(IntDir)SDLmain.lib
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/automated/automated_VS2008.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/automated/automated_VS2008.vcproj
new file mode 100644
index 0000000000..97eb4c71e2
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/automated/automated_VS2008.vcproj
@@ -0,0 +1,263 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/automated/automated_VS2010.vcxproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/automated/automated_VS2010.vcxproj
new file mode 100644
index 0000000000..e1fde866d6
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/automated/automated_VS2010.vcxproj
@@ -0,0 +1,126 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ automated
+ {DDD710DB-EC7B-4CCB-BD75-535D401A2FE0}
+ automated
+ Win32Proj
+
+
+
+ Application
+ Unicode
+ true
+
+
+ Application
+ Unicode
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ $(SolutionDir)$(Configuration)\
+ $(Configuration)\
+ true
+ $(SolutionDir)$(Configuration)\
+ $(Configuration)\
+ false
+
+
+
+ Disabled
+ $(SolutionDir)\..\include;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebugDLL
+
+
+ Level3
+ EditAndContinue
+
+
+ true
+ Windows
+ MachineX86
+
+
+
+
+ MaxSpeed
+ true
+ $(SolutionDir)\..\include;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ MultiThreadedDLL
+ true
+
+
+ Level3
+ ProgramDatabase
+
+
+ true
+ Windows
+ true
+ true
+ MachineX86
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {da956fd3-e142-46f2-9dd5-c78bebb56b7a}
+ false
+ true
+ false
+ true
+ false
+
+
+ {81ce8daf-ebb2-4761-8e45-b71abcca8c68}
+
+
+
+
+
+
\ No newline at end of file
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/checkkeys/checkkeys_VS2005.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/checkkeys/checkkeys_VS2005.vcproj
new file mode 100644
index 0000000000..8c41820960
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/checkkeys/checkkeys_VS2005.vcproj
@@ -0,0 +1,217 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/checkkeys/checkkeys_VS2008.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/checkkeys/checkkeys_VS2008.vcproj
new file mode 100644
index 0000000000..3330eef060
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/checkkeys/checkkeys_VS2008.vcproj
@@ -0,0 +1,213 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/checkkeys/checkkeys_VS2010.vcxproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/checkkeys/checkkeys_VS2010.vcxproj
new file mode 100644
index 0000000000..3ce70b130c
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/checkkeys/checkkeys_VS2010.vcxproj
@@ -0,0 +1,144 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ checkkeys
+ checkkeys
+ {26828762-C95D-4637-9CB1-7F0979523813}
+
+
+
+ Application
+ false
+
+
+ Application
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\Debug\
+ .\Debug\
+ true
+ .\Release\
+ .\Release\
+ false
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Debug/checkkeys.tlb
+
+
+ Disabled
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ MultiThreadedDebugDLL
+
+
+ .\Debug/checkkeys.pch
+ .\Debug/
+ .\Debug/
+ .\Debug/
+ Level3
+ true
+ EditAndContinue
+ Default
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Debug/checkkeys.exe
+ true
+ true
+ .\Debug/checkkeys.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Release/checkkeys.tlb
+
+
+ OnlyExplicitInline
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDLL
+ true
+
+
+ .\Release/checkkeys.pch
+ .\Release/
+ .\Release/
+ .\Release/
+ Level3
+ true
+ Default
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Release/checkkeys.exe
+ true
+ .\Release/checkkeys.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/graywin/graywin_VS2005.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/graywin/graywin_VS2005.vcproj
new file mode 100644
index 0000000000..cd1e3aedf6
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/graywin/graywin_VS2005.vcproj
@@ -0,0 +1,217 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/graywin/graywin_VS2008.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/graywin/graywin_VS2008.vcproj
new file mode 100644
index 0000000000..1ff2a5f433
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/graywin/graywin_VS2008.vcproj
@@ -0,0 +1,213 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/graywin/graywin_VS2010.vcxproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/graywin/graywin_VS2010.vcxproj
new file mode 100644
index 0000000000..69157d3b22
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/graywin/graywin_VS2010.vcxproj
@@ -0,0 +1,144 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ graywin
+ graywin
+ {0BCCA0BF-073E-439E-BCE0-C9353C177487}
+
+
+
+ Application
+ false
+
+
+ Application
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\Debug\
+ .\Debug\
+ true
+ .\Release\
+ .\Release\
+ false
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Debug/graywin.tlb
+
+
+ Disabled
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ MultiThreadedDebugDLL
+
+
+ .\Debug/graywin.pch
+ .\Debug/
+ .\Debug/
+ .\Debug/
+ Level3
+ true
+ EditAndContinue
+ Default
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Debug/graywin.exe
+ true
+ true
+ .\Debug/graywin.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Release/graywin.tlb
+
+
+ OnlyExplicitInline
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDLL
+ true
+
+
+ .\Release/graywin.pch
+ .\Release/
+ .\Release/
+ .\Release/
+ Level3
+ true
+ Default
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Release/graywin.exe
+ true
+ .\Release/graywin.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/loopwave/loopwave_VS2005.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/loopwave/loopwave_VS2005.vcproj
new file mode 100644
index 0000000000..86f428c192
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/loopwave/loopwave_VS2005.vcproj
@@ -0,0 +1,217 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/loopwave/loopwave_VS2008.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/loopwave/loopwave_VS2008.vcproj
new file mode 100644
index 0000000000..217125966e
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/loopwave/loopwave_VS2008.vcproj
@@ -0,0 +1,213 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/loopwave/loopwave_VS2010.vcxproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/loopwave/loopwave_VS2010.vcxproj
new file mode 100644
index 0000000000..3bda501515
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/loopwave/loopwave_VS2010.vcxproj
@@ -0,0 +1,144 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ loopwave
+ loopwave
+ {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}
+
+
+
+ Application
+ false
+
+
+ Application
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\Release\
+ .\Release\
+ false
+ .\Debug\
+ .\Debug\
+ true
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Release/loopwave.tlb
+
+
+ OnlyExplicitInline
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDLL
+ true
+
+
+ .\Release/loopwave.pch
+ .\Release/
+ .\Release/
+ .\Release/
+ Level3
+ true
+ Default
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Release/loopwave.exe
+ true
+ .\Release/loopwave.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Debug/loopwave.tlb
+
+
+ Disabled
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ MultiThreadedDebugDLL
+
+
+ .\Debug/loopwave.pch
+ .\Debug/
+ .\Debug/
+ .\Debug/
+ Level3
+ true
+ EditAndContinue
+ Default
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Debug/loopwave.exe
+ true
+ true
+ .\Debug/loopwave.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testalpha/testalpha_VS2005.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testalpha/testalpha_VS2005.vcproj
new file mode 100644
index 0000000000..d4d2e723fd
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testalpha/testalpha_VS2005.vcproj
@@ -0,0 +1,217 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testalpha/testalpha_VS2008.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testalpha/testalpha_VS2008.vcproj
new file mode 100644
index 0000000000..8a0c760d14
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testalpha/testalpha_VS2008.vcproj
@@ -0,0 +1,213 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testalpha/testalpha_VS2010.vcxproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testalpha/testalpha_VS2010.vcxproj
new file mode 100644
index 0000000000..2b82666317
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testalpha/testalpha_VS2010.vcxproj
@@ -0,0 +1,146 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ testalpha
+ testalpha
+ {7814D54B-65D3-4677-AD77-E0B980B4FA2D}
+
+
+
+ Application
+ false
+
+
+ Application
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\Debug\
+ .\Debug\
+ true
+ .\Release\
+ .\Release\
+ false
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Debug/testalpha.tlb
+
+
+ Disabled
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ MultiThreadedDebugDLL
+
+
+ .\Debug/testalpha.pch
+ .\Debug/
+ .\Debug/
+ .\Debug/
+ Level3
+ true
+ EditAndContinue
+ Default
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Debug/testalpha.exe
+ true
+ true
+ .\Debug/testalpha.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+copy $(SolutionDir)\..\test\icon.bmp $(ProjectDir)\icon.bmp
+
+
+ Copy SDL and data files
+
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Release/testalpha.tlb
+
+
+ OnlyExplicitInline
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDLL
+ true
+
+
+ .\Release/testalpha.pch
+ .\Release/
+ .\Release/
+ .\Release/
+ Level3
+ true
+ Default
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Release/testalpha.exe
+ true
+ .\Release/testalpha.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+copy $(SolutionDir)\..\test\icon.bmp $(ProjectDir)\icon.bmp
+
+
+ Copy SDL and data files
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testatomic/testatomic_VS2005.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testatomic/testatomic_VS2005.vcproj
new file mode 100644
index 0000000000..74375fc558
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testatomic/testatomic_VS2005.vcproj
@@ -0,0 +1,226 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testatomic/testatomic_VS2008.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testatomic/testatomic_VS2008.vcproj
new file mode 100644
index 0000000000..e25566df15
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testatomic/testatomic_VS2008.vcproj
@@ -0,0 +1,213 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testatomic/testatomic_VS2010.vcxproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testatomic/testatomic_VS2010.vcxproj
new file mode 100644
index 0000000000..bac44109f6
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testatomic/testatomic_VS2010.vcxproj
@@ -0,0 +1,134 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ testatomic
+ {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}
+ testatomic
+
+
+
+ Application
+ false
+
+
+ Application
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\Debug\
+ .\Debug\
+ true
+ .\Release\
+ .\Release\
+ false
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Debug/testatomic.tlb
+
+
+ Disabled
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ MultiThreadedDLL
+
+
+ .\Debug/testatomic.pch
+ .\Debug/
+ .\Debug/
+ .\Debug/
+ Level3
+ true
+ EditAndContinue
+ Default
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Debug/testatomic.exe
+ true
+ true
+ .\Debug/testatomic.pdb
+ Windows
+
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Release/testatomic.tlb
+
+
+ OnlyExplicitInline
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDLL
+ true
+
+
+ .\Release/testatomic.pch
+ .\Release/
+ .\Release/
+ .\Release/
+ Level3
+ true
+ Default
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Release/testatomic.exe
+ true
+ .\Release/testatomic.pdb
+ Windows
+
+
+
+
+
+
+
+
+ .\Debug/testatomic.pch
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testdraw2/testdraw2_VS2005.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testdraw2/testdraw2_VS2005.vcproj
new file mode 100644
index 0000000000..659b27a6c3
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testdraw2/testdraw2_VS2005.vcproj
@@ -0,0 +1,221 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testdraw2/testdraw2_VS2008.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testdraw2/testdraw2_VS2008.vcproj
new file mode 100644
index 0000000000..6721c816e9
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testdraw2/testdraw2_VS2008.vcproj
@@ -0,0 +1,217 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testdraw2/testdraw2_VS2010.vcxproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testdraw2/testdraw2_VS2010.vcxproj
new file mode 100644
index 0000000000..3dd523612b
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testdraw2/testdraw2_VS2010.vcxproj
@@ -0,0 +1,145 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ testdraw2
+ testdraw2
+ {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}
+
+
+
+ Application
+ false
+
+
+ Application
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\Release\
+ .\Release\
+ false
+ .\Debug\
+ .\Debug\
+ true
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Release/testdraw2.tlb
+
+
+ OnlyExplicitInline
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDLL
+ true
+
+
+ .\Release/testdraw2.pch
+ .\Release/
+ .\Release/
+ .\Release/
+ Level3
+ true
+ Default
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Release/testdraw2.exe
+ true
+ .\Release/testdraw2.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Debug/testdraw2.tlb
+
+
+ Disabled
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ MultiThreadedDebugDLL
+
+
+ .\Debug/testdraw2.pch
+ .\Debug/
+ .\Debug/
+ .\Debug/
+ Level3
+ true
+ EditAndContinue
+ Default
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Debug/testdraw2.exe
+ true
+ true
+ .\Debug/testdraw2.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testfile/testfile_VS2005.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testfile/testfile_VS2005.vcproj
new file mode 100644
index 0000000000..d882685b28
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testfile/testfile_VS2005.vcproj
@@ -0,0 +1,217 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testfile/testfile_VS2008.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testfile/testfile_VS2008.vcproj
new file mode 100644
index 0000000000..d5fe7e0e11
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testfile/testfile_VS2008.vcproj
@@ -0,0 +1,213 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testfile/testfile_VS2010.vcxproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testfile/testfile_VS2010.vcxproj
new file mode 100644
index 0000000000..ab67378d69
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testfile/testfile_VS2010.vcxproj
@@ -0,0 +1,144 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ testfile
+ testfile
+ {CAE4F1D0-314F-4B10-805B-0EFD670133A0}
+
+
+
+ Application
+ false
+
+
+ Application
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\Debug\
+ .\Debug\
+ true
+ .\Release\
+ .\Release\
+ false
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Debug/testfile.tlb
+
+
+ Disabled
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ MultiThreadedDebugDLL
+
+
+ .\Debug/testfile.pch
+ .\Debug/
+ .\Debug/
+ .\Debug/
+ Level3
+ true
+ EditAndContinue
+ Default
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Debug/testfile.exe
+ true
+ true
+ .\Debug/testfile.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Release/testfile.tlb
+
+
+ OnlyExplicitInline
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDLL
+ true
+
+
+ .\Release/testfile.pch
+ .\Release/
+ .\Release/
+ .\Release/
+ Level3
+ true
+ Default
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Release/testfile.exe
+ true
+ .\Release/testfile.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgamma/testgamma_VS2005.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgamma/testgamma_VS2005.vcproj
new file mode 100644
index 0000000000..020ef098fa
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgamma/testgamma_VS2005.vcproj
@@ -0,0 +1,217 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgamma/testgamma_VS2008.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgamma/testgamma_VS2008.vcproj
new file mode 100644
index 0000000000..3f737a0fe8
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgamma/testgamma_VS2008.vcproj
@@ -0,0 +1,213 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgamma/testgamma_VS2010.vcxproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgamma/testgamma_VS2010.vcxproj
new file mode 100644
index 0000000000..a65d160d3e
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgamma/testgamma_VS2010.vcxproj
@@ -0,0 +1,144 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ testgamma
+ testgamma
+ {D974A0DF-3E2E-445C-A2EB-E899E9B582CB}
+
+
+
+ Application
+ false
+
+
+ Application
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\Debug\
+ .\Debug\
+ true
+ .\Release\
+ .\Release\
+ false
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Debug/testgamma.tlb
+
+
+ Disabled
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ MultiThreadedDebugDLL
+
+
+ .\Debug/testgamma.pch
+ .\Debug/
+ .\Debug/
+ .\Debug/
+ Level3
+ true
+ EditAndContinue
+ Default
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Debug/testgamma.exe
+ true
+ true
+ .\Debug/testgamma.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Release/testgamma.tlb
+
+
+ OnlyExplicitInline
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDLL
+ true
+
+
+ .\Release/testgamma.pch
+ .\Release/
+ .\Release/
+ .\Release/
+ Level3
+ true
+ Default
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Release/testgamma.exe
+ true
+ .\Release/testgamma.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgesture/testgesture_VS2005.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgesture/testgesture_VS2005.vcproj
new file mode 100644
index 0000000000..c7d639cd42
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgesture/testgesture_VS2005.vcproj
@@ -0,0 +1,226 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgesture/testgesture_VS2008.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgesture/testgesture_VS2008.vcproj
new file mode 100644
index 0000000000..560fe2cdec
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgesture/testgesture_VS2008.vcproj
@@ -0,0 +1,213 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgesture/testgesture_VS2010.vcxproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgesture/testgesture_VS2010.vcxproj
new file mode 100644
index 0000000000..4dc2be9ef2
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgesture/testgesture_VS2010.vcxproj
@@ -0,0 +1,134 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ testgesture
+ {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}
+ testgesture
+
+
+
+ Application
+ false
+
+
+ Application
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\Debug\
+ .\Debug\
+ true
+ .\Release\
+ .\Release\
+ false
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Debug/testgesture.tlb
+
+
+ Disabled
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ MultiThreadedDLL
+
+
+ .\Debug/testgesture.pch
+ .\Debug/
+ .\Debug/
+ .\Debug/
+ Level3
+ true
+ EditAndContinue
+ Default
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Debug/testgesture.exe
+ true
+ true
+ .\Debug/testgesture.pdb
+ Windows
+
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Release/testgesture.tlb
+
+
+ OnlyExplicitInline
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDLL
+ true
+
+
+ .\Release/testgesture.pch
+ .\Release/
+ .\Release/
+ .\Release/
+ Level3
+ true
+ Default
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Release/testgesture.exe
+ true
+ .\Release/testgesture.pdb
+ Windows
+
+
+
+
+
+
+
+
+ .\Debug/testgesture.pch
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgl/testgl_VS2005.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgl/testgl_VS2005.vcproj
new file mode 100644
index 0000000000..3116fb8990
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgl/testgl_VS2005.vcproj
@@ -0,0 +1,219 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgl/testgl_VS2008.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgl/testgl_VS2008.vcproj
new file mode 100644
index 0000000000..6965f3afb4
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgl/testgl_VS2008.vcproj
@@ -0,0 +1,215 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgl/testgl_VS2010.vcxproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgl/testgl_VS2010.vcxproj
new file mode 100644
index 0000000000..02d8af5d31
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgl/testgl_VS2010.vcxproj
@@ -0,0 +1,146 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ testgl
+ testgl
+ {272D976B-A1DF-4DEB-BD7F-5C0D330E0C7D}
+
+
+
+ Application
+ false
+
+
+ Application
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\Debug\
+ .\Debug\
+ true
+ .\Release\
+ .\Release\
+ false
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Debug/testgl.tlb
+
+
+ Disabled
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ _DEBUG;WIN32;_WINDOWS;HAVE_OPENGL;%(PreprocessorDefinitions)
+ MultiThreadedDebugDLL
+
+
+ .\Debug/testgl.pch
+ .\Debug/
+ .\Debug/
+ .\Debug/
+ Level3
+ true
+ EditAndContinue
+ Default
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ opengl32.lib;%(AdditionalDependencies)
+ .\Debug/testgl.exe
+ true
+ true
+ .\Debug/testgl.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Release/testgl.tlb
+
+
+ OnlyExplicitInline
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ NDEBUG;WIN32;_WINDOWS;HAVE_OPENGL;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDLL
+ true
+
+
+ .\Release/testgl.pch
+ .\Release/
+ .\Release/
+ .\Release/
+ Level3
+ true
+ Default
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ opengl32.lib;%(AdditionalDependencies)
+ .\Release/testgl.exe
+ true
+ .\Release/testgl.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgl2/testgl2_VS2005.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgl2/testgl2_VS2005.vcproj
new file mode 100644
index 0000000000..8359125d7e
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgl2/testgl2_VS2005.vcproj
@@ -0,0 +1,223 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgl2/testgl2_VS2008.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgl2/testgl2_VS2008.vcproj
new file mode 100644
index 0000000000..66752399b1
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgl2/testgl2_VS2008.vcproj
@@ -0,0 +1,219 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgl2/testgl2_VS2010.vcxproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgl2/testgl2_VS2010.vcxproj
new file mode 100644
index 0000000000..2b284ff020
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testgl2/testgl2_VS2010.vcxproj
@@ -0,0 +1,147 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ testgl2
+ testgl2
+ {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}
+
+
+
+ Application
+ false
+
+
+ Application
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\Debug\
+ .\Debug\
+ true
+ .\Release\
+ .\Release\
+ false
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Debug/testgl2.tlb
+
+
+ Disabled
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ _DEBUG;WIN32;_WINDOWS;HAVE_OPENGL;%(PreprocessorDefinitions)
+ MultiThreadedDebugDLL
+
+
+ .\Debug/testgl2.pch
+ .\Debug/
+ .\Debug/
+ .\Debug/
+ Level3
+ true
+ EditAndContinue
+ Default
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ opengl32.lib;%(AdditionalDependencies)
+ .\Debug/testgl2.exe
+ true
+ true
+ .\Debug/testgl2.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Release/testgl2.tlb
+
+
+ OnlyExplicitInline
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ NDEBUG;WIN32;_WINDOWS;HAVE_OPENGL;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDLL
+ true
+
+
+ .\Release/testgl2.pch
+ .\Release/
+ .\Release/
+ .\Release/
+ Level3
+ true
+ Default
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ opengl32.lib;%(AdditionalDependencies)
+ .\Release/testgl2.exe
+ true
+ .\Release/testgl2.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testjoystick/testjoystick_VS2005.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testjoystick/testjoystick_VS2005.vcproj
new file mode 100644
index 0000000000..7f03866ddc
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testjoystick/testjoystick_VS2005.vcproj
@@ -0,0 +1,217 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testjoystick/testjoystick_VS2008.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testjoystick/testjoystick_VS2008.vcproj
new file mode 100644
index 0000000000..731976af19
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testjoystick/testjoystick_VS2008.vcproj
@@ -0,0 +1,213 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testjoystick/testjoystick_VS2010.vcxproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testjoystick/testjoystick_VS2010.vcxproj
new file mode 100644
index 0000000000..4994dce037
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testjoystick/testjoystick_VS2010.vcxproj
@@ -0,0 +1,144 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ testjoystick
+ testjoystick
+ {55812185-D13C-4022-9C81-32E0F4A08304}
+
+
+
+ Application
+ false
+
+
+ Application
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\Release\
+ .\Release\
+ false
+ .\Debug\
+ .\Debug\
+ true
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Release/testjoystick.tlb
+
+
+ OnlyExplicitInline
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDLL
+ true
+
+
+ .\Release/testjoystick.pch
+ .\Release/
+ .\Release/
+ .\Release/
+ Level3
+ true
+ Default
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Release/testjoystick.exe
+ true
+ .\Release/testjoystick.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Debug/testjoystick.tlb
+
+
+ Disabled
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ MultiThreadedDebugDLL
+
+
+ .\Debug/testjoystick.pch
+ .\Debug/
+ .\Debug/
+ .\Debug/
+ Level3
+ true
+ EditAndContinue
+ Default
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Debug/testjoystick.exe
+ true
+ true
+ .\Debug/testjoystick.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testoverlay/testoverlay_VS2005.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testoverlay/testoverlay_VS2005.vcproj
new file mode 100644
index 0000000000..e5b80cac46
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testoverlay/testoverlay_VS2005.vcproj
@@ -0,0 +1,217 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testoverlay/testoverlay_VS2008.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testoverlay/testoverlay_VS2008.vcproj
new file mode 100644
index 0000000000..63ccdaaa46
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testoverlay/testoverlay_VS2008.vcproj
@@ -0,0 +1,213 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testoverlay/testoverlay_VS2010.vcxproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testoverlay/testoverlay_VS2010.vcxproj
new file mode 100644
index 0000000000..76ddd2327a
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testoverlay/testoverlay_VS2010.vcxproj
@@ -0,0 +1,146 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ testoverlay
+ testoverlay
+ {9E320A14-B443-4DD7-8725-B7020DCFF730}
+
+
+
+ Application
+ false
+
+
+ Application
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\Release\
+ .\Release\
+ false
+ .\Debug\
+ .\Debug\
+ true
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Release/testoverlay.tlb
+
+
+ OnlyExplicitInline
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDLL
+ true
+
+
+ .\Release/testoverlay.pch
+ .\Release/
+ .\Release/
+ .\Release/
+ Level3
+ true
+ Default
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Release/testoverlay.exe
+ true
+ .\Release/testoverlay.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+copy $(SolutionDir)\..\test\sample.bmp $(ProjectDir)\sample.bmp
+
+
+ Copy SDL and data files
+
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Debug/testoverlay.tlb
+
+
+ Disabled
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ MultiThreadedDebugDLL
+
+
+ .\Debug/testoverlay.pch
+ .\Debug/
+ .\Debug/
+ .\Debug/
+ Level3
+ true
+ EditAndContinue
+ Default
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Debug/testoverlay.exe
+ true
+ true
+ .\Debug/testoverlay.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+copy $(SolutionDir)\..\test\sample.bmp $(ProjectDir)\sample.bmp
+
+
+ Copy SDL and data files
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testoverlay2/testoverlay2_VS2005.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testoverlay2/testoverlay2_VS2005.vcproj
new file mode 100644
index 0000000000..1cd1e44da0
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testoverlay2/testoverlay2_VS2005.vcproj
@@ -0,0 +1,217 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testoverlay2/testoverlay2_VS2008.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testoverlay2/testoverlay2_VS2008.vcproj
new file mode 100644
index 0000000000..8c5b468444
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testoverlay2/testoverlay2_VS2008.vcproj
@@ -0,0 +1,213 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testoverlay2/testoverlay2_VS2010.vcxproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testoverlay2/testoverlay2_VS2010.vcxproj
new file mode 100644
index 0000000000..195852b46d
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testoverlay2/testoverlay2_VS2010.vcxproj
@@ -0,0 +1,146 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ testoverlay2
+ testoverlay2
+ {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}
+
+
+
+ Application
+ false
+
+
+ Application
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\Release\
+ .\Release\
+ false
+ .\Debug\
+ .\Debug\
+ true
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Release/testoverlay2.tlb
+
+
+ OnlyExplicitInline
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDLL
+ true
+
+
+ .\Release/testoverlay2.pch
+ .\Release/
+ .\Release/
+ .\Release/
+ Level3
+ true
+ Default
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Release/testoverlay2.exe
+ true
+ .\Release/testoverlay2.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+copy $(SolutionDir)\..\test\moose.dat $(ProjectDir)\moose.dat
+
+
+ Copy SDL and data files
+
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Debug/testoverlay2.tlb
+
+
+ Disabled
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ MultiThreadedDebugDLL
+
+
+ .\Debug/testoverlay2.pch
+ .\Debug/
+ .\Debug/
+ .\Debug/
+ Level3
+ true
+ EditAndContinue
+ Default
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Debug/testoverlay2.exe
+ true
+ true
+ .\Debug/testoverlay2.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+copy $(SolutionDir)\..\test\moose.dat $(ProjectDir)\moose.dat
+
+
+ Copy SDL and data files
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testplatform/testplatform_VS2005.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testplatform/testplatform_VS2005.vcproj
new file mode 100644
index 0000000000..2517030357
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testplatform/testplatform_VS2005.vcproj
@@ -0,0 +1,239 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testplatform/testplatform_VS2008.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testplatform/testplatform_VS2008.vcproj
new file mode 100644
index 0000000000..1f2ba10ca1
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testplatform/testplatform_VS2008.vcproj
@@ -0,0 +1,217 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testplatform/testplatform_VS2010.vcxproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testplatform/testplatform_VS2010.vcxproj
new file mode 100644
index 0000000000..329785c5db
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testplatform/testplatform_VS2010.vcxproj
@@ -0,0 +1,157 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ testplatform
+ testplatform
+ {26932B24-EFC6-4E3A-B277-ED653DA37968}
+
+
+
+ Application
+ false
+
+
+ Application
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\Debug\
+ .\Debug\
+ true
+ .\Release\
+ .\Release\
+ false
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Debug/testplatform.tlb
+
+
+
+
+ Disabled
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebugDLL
+ .\Debug/testplatform.pch
+ .\Debug/
+ .\Debug/
+ .\Debug/
+ Level3
+ true
+ EditAndContinue
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ .\Debug/testplatform.exe
+ true
+ true
+ .\Debug/testplatform.pdb
+ Windows
+ MachineX86
+
+
+ true
+ .\Debug/testplatform.bsc
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Release/testplatform.tlb
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDLL
+ true
+ .\Release/testplatform.pch
+ .\Release/
+ .\Release/
+ .\Release/
+ Level3
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ .\Release/testplatform.exe
+ true
+ .\Release/testplatform.pdb
+ Windows
+ MachineX86
+
+
+ true
+ .\Release/testplatform.bsc
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+
+
+
+
+ %(AdditionalIncludeDirectories)
+ %(PreprocessorDefinitions)
+ %(AdditionalIncludeDirectories)
+ %(PreprocessorDefinitions)
+
+
+
+
+
+
\ No newline at end of file
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testpower/testpower_VS2005.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testpower/testpower_VS2005.vcproj
new file mode 100644
index 0000000000..6c0b5948f0
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testpower/testpower_VS2005.vcproj
@@ -0,0 +1,226 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testpower/testpower_VS2008.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testpower/testpower_VS2008.vcproj
new file mode 100644
index 0000000000..5658d4ba4c
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testpower/testpower_VS2008.vcproj
@@ -0,0 +1,213 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testpower/testpower_VS2010.vcxproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testpower/testpower_VS2010.vcxproj
new file mode 100644
index 0000000000..17896f8679
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testpower/testpower_VS2010.vcxproj
@@ -0,0 +1,146 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ testpower
+ {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}
+ testpower
+
+
+
+ Application
+ false
+
+
+ Application
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\Debug\
+ .\Debug\
+ true
+ .\Release\
+ .\Release\
+ false
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Debug/testpower.tlb
+
+
+ Disabled
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ MultiThreadedDebugDLL
+
+
+ .\Debug/testpower.pch
+ .\Debug/
+ .\Debug/
+ .\Debug/
+ Level3
+ true
+ EditAndContinue
+ Default
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Debug/testpower.exe
+ true
+ true
+ .\Debug/testpower.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Release/testpower.tlb
+
+
+ OnlyExplicitInline
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDLL
+ true
+
+
+ .\Release/testpower.pch
+ .\Release/
+ .\Release/
+ .\Release/
+ Level3
+ true
+ Default
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Release/testpower.exe
+ true
+ .\Release/testpower.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+
+
+
+
+ .\Debug/testpower.pch
+
+
+
+
+
+
\ No newline at end of file
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testscale/testscale_VS2005.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testscale/testscale_VS2005.vcproj
new file mode 100644
index 0000000000..183b7b8126
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testscale/testscale_VS2005.vcproj
@@ -0,0 +1,221 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testshape/testshape_VS2008.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testshape/testshape_VS2008.vcproj
new file mode 100644
index 0000000000..1224484411
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testshape/testshape_VS2008.vcproj
@@ -0,0 +1,213 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testshape/testshape_VS2010.vcxproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testshape/testshape_VS2010.vcxproj
new file mode 100644
index 0000000000..39026fbf4a
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testshape/testshape_VS2010.vcxproj
@@ -0,0 +1,144 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ testshape
+ testshape
+ {EDEA9D00-AF64-45DE-8F60-5957048F2F0F}
+
+
+
+ Application
+ false
+
+
+ Application
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\Release\
+ .\Release\
+ false
+ .\Debug\
+ .\Debug\
+ true
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Release/testshape.tlb
+
+
+ OnlyExplicitInline
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDLL
+ true
+
+
+ .\Release/testshape.pch
+ .\Release/
+ .\Release/
+ .\Release/
+ Level3
+ true
+ Default
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Release/testshape.exe
+ true
+ .\Release/testshape.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Debug/testshape.tlb
+
+
+ Disabled
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ MultiThreadedDebugDLL
+
+
+ .\Debug/testshape.pch
+ .\Debug/
+ .\Debug/
+ .\Debug/
+ Level3
+ true
+ EditAndContinue
+ Default
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Debug/testshape.exe
+ true
+ true
+ .\Debug/testshape.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testsprite/testsprite_VS2005.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testsprite/testsprite_VS2005.vcproj
new file mode 100644
index 0000000000..2d2cd45c05
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testsprite/testsprite_VS2005.vcproj
@@ -0,0 +1,217 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testsprite/testsprite_VS2008.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testsprite/testsprite_VS2008.vcproj
new file mode 100644
index 0000000000..6f9c5192ee
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testsprite/testsprite_VS2008.vcproj
@@ -0,0 +1,213 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testsprite/testsprite_VS2010.vcxproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testsprite/testsprite_VS2010.vcxproj
new file mode 100644
index 0000000000..cae235f422
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testsprite/testsprite_VS2010.vcxproj
@@ -0,0 +1,146 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ testsprite
+ testsprite
+ {5D0930C0-7C91-4ECE-9014-7B7DDE9502E5}
+
+
+
+ Application
+ false
+
+
+ Application
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\Release\
+ .\Release\
+ false
+ .\Debug\
+ .\Debug\
+ true
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Release/testsprite.tlb
+
+
+ OnlyExplicitInline
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDLL
+ true
+
+
+ .\Release/testsprite.pch
+ .\Release/
+ .\Release/
+ .\Release/
+ Level3
+ true
+ Default
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Release/testsprite.exe
+ true
+ .\Release/testsprite.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+copy $(SolutionDir)\..\test\icon.bmp $(ProjectDir)\icon.bmp
+
+
+ Copy SDL and data files
+
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Debug/testsprite.tlb
+
+
+ Disabled
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ MultiThreadedDebugDLL
+
+
+ .\Debug/testsprite.pch
+ .\Debug/
+ .\Debug/
+ .\Debug/
+ Level3
+ true
+ EditAndContinue
+ Default
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Debug/testsprite.exe
+ true
+ true
+ .\Debug/testsprite.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+copy $(SolutionDir)\..\test\icon.bmp $(ProjectDir)\icon.bmp
+
+
+ Copy SDL and data files
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testsprite2/testsprite2_VS2005.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testsprite2/testsprite2_VS2005.vcproj
new file mode 100644
index 0000000000..e44adb0544
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testsprite2/testsprite2_VS2005.vcproj
@@ -0,0 +1,221 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testsprite2/testsprite2_VS2008.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testsprite2/testsprite2_VS2008.vcproj
new file mode 100644
index 0000000000..8bdbe2895d
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testsprite2/testsprite2_VS2008.vcproj
@@ -0,0 +1,217 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testsprite2/testsprite2_VS2010.vcxproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testsprite2/testsprite2_VS2010.vcxproj
new file mode 100644
index 0000000000..02678bcc1d
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testsprite2/testsprite2_VS2010.vcxproj
@@ -0,0 +1,147 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ testsprite2
+ testsprite2
+ {40FB7794-D3C3-4CFE-BCF4-A80C96635682}
+
+
+
+ Application
+ false
+
+
+ Application
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\Release\
+ .\Release\
+ false
+ .\Debug\
+ .\Debug\
+ true
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Release/testsprite2.tlb
+
+
+ OnlyExplicitInline
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDLL
+ true
+
+
+ .\Release/testsprite2.pch
+ .\Release/
+ .\Release/
+ .\Release/
+ Level3
+ true
+ Default
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Release/testsprite2.exe
+ true
+ .\Release/testsprite2.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+copy $(SolutionDir)\..\test\icon.bmp $(ProjectDir)\icon.bmp
+
+
+ Copy SDL and data files
+
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Debug/testsprite2.tlb
+
+
+ Disabled
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ MultiThreadedDebugDLL
+
+
+ .\Debug/testsprite2.pch
+ .\Debug/
+ .\Debug/
+ .\Debug/
+ Level3
+ true
+ EditAndContinue
+ Default
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Debug/testsprite2.exe
+ true
+ true
+ .\Debug/testsprite2.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+copy $(SolutionDir)\..\test\icon.bmp $(ProjectDir)\icon.bmp
+
+
+ Copy SDL and data files
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testvidinfo/testvidinfo_VS2005.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testvidinfo/testvidinfo_VS2005.vcproj
new file mode 100644
index 0000000000..a2033c8a09
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testvidinfo/testvidinfo_VS2005.vcproj
@@ -0,0 +1,217 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testvidinfo/testvidinfo_VS2008.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testvidinfo/testvidinfo_VS2008.vcproj
new file mode 100644
index 0000000000..fff885ab4f
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testvidinfo/testvidinfo_VS2008.vcproj
@@ -0,0 +1,213 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testvidinfo/testvidinfo_VS2010.vcxproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testvidinfo/testvidinfo_VS2010.vcxproj
new file mode 100644
index 0000000000..9e8e9e78dd
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testvidinfo/testvidinfo_VS2010.vcxproj
@@ -0,0 +1,144 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ testvidinfo
+ testvidinfo
+ {575FD095-EDAB-4BD4-B733-CD4A874F6FB0}
+
+
+
+ Application
+ false
+
+
+ Application
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\Release\
+ .\Release\
+ false
+ .\Debug\
+ .\Debug\
+ true
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Release/testvidinfo.tlb
+
+
+ OnlyExplicitInline
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDLL
+ true
+
+
+ .\Release/testvidinfo.pch
+ .\Release/
+ .\Release/
+ .\Release/
+ Level3
+ true
+ Default
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Release/testvidinfo.exe
+ true
+ .\Release/testvidinfo.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Debug/testvidinfo.tlb
+
+
+ Disabled
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ MultiThreadedDebugDLL
+
+
+ .\Debug/testvidinfo.pch
+ .\Debug/
+ .\Debug/
+ .\Debug/
+ Level3
+ true
+ EditAndContinue
+ Default
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Debug/testvidinfo.exe
+ true
+ true
+ .\Debug/testvidinfo.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testwin/testwin_VS2005.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testwin/testwin_VS2005.vcproj
new file mode 100644
index 0000000000..330afb5310
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testwin/testwin_VS2005.vcproj
@@ -0,0 +1,217 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testwin/testwin_VS2008.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testwin/testwin_VS2008.vcproj
new file mode 100644
index 0000000000..ca68ad13d2
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testwin/testwin_VS2008.vcproj
@@ -0,0 +1,213 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testwin/testwin_VS2010.vcxproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testwin/testwin_VS2010.vcxproj
new file mode 100644
index 0000000000..cb14cb0ea7
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testwin/testwin_VS2010.vcxproj
@@ -0,0 +1,146 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ testwin
+ testwin
+ {0FFD1A21-11DB-492C-A989-E4F195B0C441}
+
+
+
+ Application
+ false
+
+
+ Application
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\Debug\
+ .\Debug\
+ true
+ .\Release\
+ .\Release\
+ false
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Debug/testwin.tlb
+
+
+ Disabled
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ MultiThreadedDebugDLL
+
+
+ .\Debug/testwin.pch
+ .\Debug/
+ .\Debug/
+ .\Debug/
+ Level3
+ true
+ EditAndContinue
+ Default
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Debug/testwin.exe
+ true
+ true
+ .\Debug/testwin.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+copy $(SolutionDir)\..\test\sample.bmp $(ProjectDir)\sample.bmp
+
+
+ Copy SDL and data files
+
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Release/testwin.tlb
+
+
+ OnlyExplicitInline
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDLL
+ true
+
+
+ .\Release/testwin.pch
+ .\Release/
+ .\Release/
+ .\Release/
+ Level3
+ true
+ Default
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Release/testwin.exe
+ true
+ .\Release/testwin.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+copy $(SolutionDir)\..\test\sample.bmp $(ProjectDir)\sample.bmp
+
+
+ Copy SDL and data files
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testwm/testwm_VS2005.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testwm/testwm_VS2005.vcproj
new file mode 100644
index 0000000000..0a6178461a
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testwm/testwm_VS2005.vcproj
@@ -0,0 +1,217 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testwm/testwm_VS2008.vcproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testwm/testwm_VS2008.vcproj
new file mode 100644
index 0000000000..6cb5ad9b5e
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testwm/testwm_VS2008.vcproj
@@ -0,0 +1,213 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualC/tests/testwm/testwm_VS2010.vcxproj b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testwm/testwm_VS2010.vcxproj
new file mode 100644
index 0000000000..1a4ecc80d0
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualC/tests/testwm/testwm_VS2010.vcxproj
@@ -0,0 +1,144 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ testwm
+ testwm
+ {6AF0724B-BAC1-4C9D-AFBF-F63B4A2FB8FB}
+
+
+
+ Application
+ false
+
+
+ Application
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\Debug\
+ .\Debug\
+ true
+ .\Release\
+ .\Release\
+ false
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Debug/testwm.tlb
+
+
+ Disabled
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ MultiThreadedDebugDLL
+
+
+ .\Debug/testwm.pch
+ .\Debug/
+ .\Debug/
+ .\Debug/
+ Level3
+ true
+ EditAndContinue
+ Default
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Debug/testwm.exe
+ true
+ true
+ .\Debug/testwm.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\Release/testwm.tlb
+
+
+ OnlyExplicitInline
+ ..\..\..\include;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDLL
+ true
+
+
+ .\Release/testwm.pch
+ .\Release/
+ .\Release/
+ .\Release/
+ Level3
+ true
+ Default
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ /MACHINE:I386 %(AdditionalOptions)
+ .\Release/testwm.exe
+ true
+ .\Release/testwm.pdb
+ Windows
+
+
+ copy $(SolutionDir)\SDL\$(ConfigurationName)\SDL.dll $(TargetDir)\SDL.dll
+
+
+ Copy SDL
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/3rdparty/SDL-1.3.0-5387/VisualCE/SDL.sln b/3rdparty/SDL-1.3.0-5387/VisualCE/SDL.sln
new file mode 100644
index 0000000000..8e17b70a84
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualCE/SDL.sln
@@ -0,0 +1,149 @@
+
+Microsoft Visual Studio Solution File, Format Version 10.00
+# Visual Studio 2008
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SDL", "SDL\SDL.vcproj", "{C598024D-8030-4F9C-AB76-69BF4CA0645F}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SDLmain", "SDLmain\SDLmain.vcproj", "{5AC88B84-5EAA-4C1E-948D-332DA34227F6}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C598024D-8030-4F9C-AB76-69BF4CA0645F} = {C598024D-8030-4F9C-AB76-69BF4CA0645F}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testalpha", "testalpha\testalpha.vcproj", "{DF401CB3-6F70-4485-996B-B7C357CF7EE7}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C598024D-8030-4F9C-AB76-69BF4CA0645F} = {C598024D-8030-4F9C-AB76-69BF4CA0645F}
+ {5AC88B84-5EAA-4C1E-948D-332DA34227F6} = {5AC88B84-5EAA-4C1E-948D-332DA34227F6}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testwin", "testwin\testwin.vcproj", "{DC516978-88CB-4F9A-A39A-C351C258613B}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C598024D-8030-4F9C-AB76-69BF4CA0645F} = {C598024D-8030-4F9C-AB76-69BF4CA0645F}
+ {5AC88B84-5EAA-4C1E-948D-332DA34227F6} = {5AC88B84-5EAA-4C1E-948D-332DA34227F6}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "loopwave", "loopwave\loopwave.vcproj", "{6F642636-CB11-4DC7-855E-27FE1744003A}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C598024D-8030-4F9C-AB76-69BF4CA0645F} = {C598024D-8030-4F9C-AB76-69BF4CA0645F}
+ {5AC88B84-5EAA-4C1E-948D-332DA34227F6} = {5AC88B84-5EAA-4C1E-948D-332DA34227F6}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testtimer", "testtimer\testtimer.vcproj", "{D482D7EE-6FF0-4254-9027-C59F8F03AB1F}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C598024D-8030-4F9C-AB76-69BF4CA0645F} = {C598024D-8030-4F9C-AB76-69BF4CA0645F}
+ {5AC88B84-5EAA-4C1E-948D-332DA34227F6} = {5AC88B84-5EAA-4C1E-948D-332DA34227F6}
+ EndProjectSection
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Pocket PC 2003 (ARMV4) = Debug|Pocket PC 2003 (ARMV4)
+ Debug|Smartphone 2003 (ARMV4) = Debug|Smartphone 2003 (ARMV4)
+ Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ Release|Pocket PC 2003 (ARMV4) = Release|Pocket PC 2003 (ARMV4)
+ Release|Smartphone 2003 (ARMV4) = Release|Smartphone 2003 (ARMV4)
+ Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I) = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {C598024D-8030-4F9C-AB76-69BF4CA0645F}.Debug|Pocket PC 2003 (ARMV4).ActiveCfg = Debug|Pocket PC 2003 (ARMV4)
+ {C598024D-8030-4F9C-AB76-69BF4CA0645F}.Debug|Pocket PC 2003 (ARMV4).Build.0 = Debug|Pocket PC 2003 (ARMV4)
+ {C598024D-8030-4F9C-AB76-69BF4CA0645F}.Debug|Pocket PC 2003 (ARMV4).Deploy.0 = Debug|Pocket PC 2003 (ARMV4)
+ {C598024D-8030-4F9C-AB76-69BF4CA0645F}.Debug|Smartphone 2003 (ARMV4).ActiveCfg = Debug|Smartphone 2003 (ARMV4)
+ {C598024D-8030-4F9C-AB76-69BF4CA0645F}.Debug|Smartphone 2003 (ARMV4).Build.0 = Debug|Smartphone 2003 (ARMV4)
+ {C598024D-8030-4F9C-AB76-69BF4CA0645F}.Debug|Smartphone 2003 (ARMV4).Deploy.0 = Debug|Smartphone 2003 (ARMV4)
+ {C598024D-8030-4F9C-AB76-69BF4CA0645F}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {C598024D-8030-4F9C-AB76-69BF4CA0645F}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {C598024D-8030-4F9C-AB76-69BF4CA0645F}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {C598024D-8030-4F9C-AB76-69BF4CA0645F}.Release|Pocket PC 2003 (ARMV4).ActiveCfg = Release|Pocket PC 2003 (ARMV4)
+ {C598024D-8030-4F9C-AB76-69BF4CA0645F}.Release|Pocket PC 2003 (ARMV4).Build.0 = Release|Pocket PC 2003 (ARMV4)
+ {C598024D-8030-4F9C-AB76-69BF4CA0645F}.Release|Pocket PC 2003 (ARMV4).Deploy.0 = Release|Pocket PC 2003 (ARMV4)
+ {C598024D-8030-4F9C-AB76-69BF4CA0645F}.Release|Smartphone 2003 (ARMV4).ActiveCfg = Release|Smartphone 2003 (ARMV4)
+ {C598024D-8030-4F9C-AB76-69BF4CA0645F}.Release|Smartphone 2003 (ARMV4).Build.0 = Release|Smartphone 2003 (ARMV4)
+ {C598024D-8030-4F9C-AB76-69BF4CA0645F}.Release|Smartphone 2003 (ARMV4).Deploy.0 = Release|Smartphone 2003 (ARMV4)
+ {C598024D-8030-4F9C-AB76-69BF4CA0645F}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {C598024D-8030-4F9C-AB76-69BF4CA0645F}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {C598024D-8030-4F9C-AB76-69BF4CA0645F}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {5AC88B84-5EAA-4C1E-948D-332DA34227F6}.Debug|Pocket PC 2003 (ARMV4).ActiveCfg = Debug|Pocket PC 2003 (ARMV4)
+ {5AC88B84-5EAA-4C1E-948D-332DA34227F6}.Debug|Pocket PC 2003 (ARMV4).Build.0 = Debug|Pocket PC 2003 (ARMV4)
+ {5AC88B84-5EAA-4C1E-948D-332DA34227F6}.Debug|Pocket PC 2003 (ARMV4).Deploy.0 = Debug|Pocket PC 2003 (ARMV4)
+ {5AC88B84-5EAA-4C1E-948D-332DA34227F6}.Debug|Smartphone 2003 (ARMV4).ActiveCfg = Debug|Smartphone 2003 (ARMV4)
+ {5AC88B84-5EAA-4C1E-948D-332DA34227F6}.Debug|Smartphone 2003 (ARMV4).Build.0 = Debug|Smartphone 2003 (ARMV4)
+ {5AC88B84-5EAA-4C1E-948D-332DA34227F6}.Debug|Smartphone 2003 (ARMV4).Deploy.0 = Debug|Smartphone 2003 (ARMV4)
+ {5AC88B84-5EAA-4C1E-948D-332DA34227F6}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {5AC88B84-5EAA-4C1E-948D-332DA34227F6}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {5AC88B84-5EAA-4C1E-948D-332DA34227F6}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {5AC88B84-5EAA-4C1E-948D-332DA34227F6}.Release|Pocket PC 2003 (ARMV4).ActiveCfg = Release|Pocket PC 2003 (ARMV4)
+ {5AC88B84-5EAA-4C1E-948D-332DA34227F6}.Release|Pocket PC 2003 (ARMV4).Build.0 = Release|Pocket PC 2003 (ARMV4)
+ {5AC88B84-5EAA-4C1E-948D-332DA34227F6}.Release|Pocket PC 2003 (ARMV4).Deploy.0 = Release|Pocket PC 2003 (ARMV4)
+ {5AC88B84-5EAA-4C1E-948D-332DA34227F6}.Release|Smartphone 2003 (ARMV4).ActiveCfg = Release|Smartphone 2003 (ARMV4)
+ {5AC88B84-5EAA-4C1E-948D-332DA34227F6}.Release|Smartphone 2003 (ARMV4).Build.0 = Release|Smartphone 2003 (ARMV4)
+ {5AC88B84-5EAA-4C1E-948D-332DA34227F6}.Release|Smartphone 2003 (ARMV4).Deploy.0 = Release|Smartphone 2003 (ARMV4)
+ {5AC88B84-5EAA-4C1E-948D-332DA34227F6}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {5AC88B84-5EAA-4C1E-948D-332DA34227F6}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {5AC88B84-5EAA-4C1E-948D-332DA34227F6}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {DF401CB3-6F70-4485-996B-B7C357CF7EE7}.Debug|Pocket PC 2003 (ARMV4).ActiveCfg = Debug|Pocket PC 2003 (ARMV4)
+ {DF401CB3-6F70-4485-996B-B7C357CF7EE7}.Debug|Pocket PC 2003 (ARMV4).Build.0 = Debug|Pocket PC 2003 (ARMV4)
+ {DF401CB3-6F70-4485-996B-B7C357CF7EE7}.Debug|Pocket PC 2003 (ARMV4).Deploy.0 = Debug|Pocket PC 2003 (ARMV4)
+ {DF401CB3-6F70-4485-996B-B7C357CF7EE7}.Debug|Smartphone 2003 (ARMV4).ActiveCfg = Debug|Smartphone 2003 (ARMV4)
+ {DF401CB3-6F70-4485-996B-B7C357CF7EE7}.Debug|Smartphone 2003 (ARMV4).Build.0 = Debug|Smartphone 2003 (ARMV4)
+ {DF401CB3-6F70-4485-996B-B7C357CF7EE7}.Debug|Smartphone 2003 (ARMV4).Deploy.0 = Debug|Smartphone 2003 (ARMV4)
+ {DF401CB3-6F70-4485-996B-B7C357CF7EE7}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {DF401CB3-6F70-4485-996B-B7C357CF7EE7}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {DF401CB3-6F70-4485-996B-B7C357CF7EE7}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {DF401CB3-6F70-4485-996B-B7C357CF7EE7}.Release|Pocket PC 2003 (ARMV4).ActiveCfg = Release|Pocket PC 2003 (ARMV4)
+ {DF401CB3-6F70-4485-996B-B7C357CF7EE7}.Release|Pocket PC 2003 (ARMV4).Build.0 = Release|Pocket PC 2003 (ARMV4)
+ {DF401CB3-6F70-4485-996B-B7C357CF7EE7}.Release|Pocket PC 2003 (ARMV4).Deploy.0 = Release|Pocket PC 2003 (ARMV4)
+ {DF401CB3-6F70-4485-996B-B7C357CF7EE7}.Release|Smartphone 2003 (ARMV4).ActiveCfg = Release|Smartphone 2003 (ARMV4)
+ {DF401CB3-6F70-4485-996B-B7C357CF7EE7}.Release|Smartphone 2003 (ARMV4).Build.0 = Release|Smartphone 2003 (ARMV4)
+ {DF401CB3-6F70-4485-996B-B7C357CF7EE7}.Release|Smartphone 2003 (ARMV4).Deploy.0 = Release|Smartphone 2003 (ARMV4)
+ {DF401CB3-6F70-4485-996B-B7C357CF7EE7}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {DF401CB3-6F70-4485-996B-B7C357CF7EE7}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {DF401CB3-6F70-4485-996B-B7C357CF7EE7}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {DC516978-88CB-4F9A-A39A-C351C258613B}.Debug|Pocket PC 2003 (ARMV4).ActiveCfg = Debug|Pocket PC 2003 (ARMV4)
+ {DC516978-88CB-4F9A-A39A-C351C258613B}.Debug|Pocket PC 2003 (ARMV4).Build.0 = Debug|Pocket PC 2003 (ARMV4)
+ {DC516978-88CB-4F9A-A39A-C351C258613B}.Debug|Pocket PC 2003 (ARMV4).Deploy.0 = Debug|Pocket PC 2003 (ARMV4)
+ {DC516978-88CB-4F9A-A39A-C351C258613B}.Debug|Smartphone 2003 (ARMV4).ActiveCfg = Debug|Smartphone 2003 (ARMV4)
+ {DC516978-88CB-4F9A-A39A-C351C258613B}.Debug|Smartphone 2003 (ARMV4).Build.0 = Debug|Smartphone 2003 (ARMV4)
+ {DC516978-88CB-4F9A-A39A-C351C258613B}.Debug|Smartphone 2003 (ARMV4).Deploy.0 = Debug|Smartphone 2003 (ARMV4)
+ {DC516978-88CB-4F9A-A39A-C351C258613B}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {DC516978-88CB-4F9A-A39A-C351C258613B}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {DC516978-88CB-4F9A-A39A-C351C258613B}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {DC516978-88CB-4F9A-A39A-C351C258613B}.Release|Pocket PC 2003 (ARMV4).ActiveCfg = Release|Pocket PC 2003 (ARMV4)
+ {DC516978-88CB-4F9A-A39A-C351C258613B}.Release|Pocket PC 2003 (ARMV4).Build.0 = Release|Pocket PC 2003 (ARMV4)
+ {DC516978-88CB-4F9A-A39A-C351C258613B}.Release|Pocket PC 2003 (ARMV4).Deploy.0 = Release|Pocket PC 2003 (ARMV4)
+ {DC516978-88CB-4F9A-A39A-C351C258613B}.Release|Smartphone 2003 (ARMV4).ActiveCfg = Release|Smartphone 2003 (ARMV4)
+ {DC516978-88CB-4F9A-A39A-C351C258613B}.Release|Smartphone 2003 (ARMV4).Build.0 = Release|Smartphone 2003 (ARMV4)
+ {DC516978-88CB-4F9A-A39A-C351C258613B}.Release|Smartphone 2003 (ARMV4).Deploy.0 = Release|Smartphone 2003 (ARMV4)
+ {DC516978-88CB-4F9A-A39A-C351C258613B}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {DC516978-88CB-4F9A-A39A-C351C258613B}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {DC516978-88CB-4F9A-A39A-C351C258613B}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {6F642636-CB11-4DC7-855E-27FE1744003A}.Debug|Pocket PC 2003 (ARMV4).ActiveCfg = Debug|Pocket PC 2003 (ARMV4)
+ {6F642636-CB11-4DC7-855E-27FE1744003A}.Debug|Pocket PC 2003 (ARMV4).Build.0 = Debug|Pocket PC 2003 (ARMV4)
+ {6F642636-CB11-4DC7-855E-27FE1744003A}.Debug|Pocket PC 2003 (ARMV4).Deploy.0 = Debug|Pocket PC 2003 (ARMV4)
+ {6F642636-CB11-4DC7-855E-27FE1744003A}.Debug|Smartphone 2003 (ARMV4).ActiveCfg = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {6F642636-CB11-4DC7-855E-27FE1744003A}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {6F642636-CB11-4DC7-855E-27FE1744003A}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {6F642636-CB11-4DC7-855E-27FE1744003A}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {6F642636-CB11-4DC7-855E-27FE1744003A}.Release|Pocket PC 2003 (ARMV4).ActiveCfg = Release|Pocket PC 2003 (ARMV4)
+ {6F642636-CB11-4DC7-855E-27FE1744003A}.Release|Pocket PC 2003 (ARMV4).Build.0 = Release|Pocket PC 2003 (ARMV4)
+ {6F642636-CB11-4DC7-855E-27FE1744003A}.Release|Pocket PC 2003 (ARMV4).Deploy.0 = Release|Pocket PC 2003 (ARMV4)
+ {6F642636-CB11-4DC7-855E-27FE1744003A}.Release|Smartphone 2003 (ARMV4).ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {6F642636-CB11-4DC7-855E-27FE1744003A}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {6F642636-CB11-4DC7-855E-27FE1744003A}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {6F642636-CB11-4DC7-855E-27FE1744003A}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {D482D7EE-6FF0-4254-9027-C59F8F03AB1F}.Debug|Pocket PC 2003 (ARMV4).ActiveCfg = Debug|Pocket PC 2003 (ARMV4)
+ {D482D7EE-6FF0-4254-9027-C59F8F03AB1F}.Debug|Pocket PC 2003 (ARMV4).Build.0 = Debug|Pocket PC 2003 (ARMV4)
+ {D482D7EE-6FF0-4254-9027-C59F8F03AB1F}.Debug|Pocket PC 2003 (ARMV4).Deploy.0 = Debug|Pocket PC 2003 (ARMV4)
+ {D482D7EE-6FF0-4254-9027-C59F8F03AB1F}.Debug|Smartphone 2003 (ARMV4).ActiveCfg = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {D482D7EE-6FF0-4254-9027-C59F8F03AB1F}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {D482D7EE-6FF0-4254-9027-C59F8F03AB1F}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {D482D7EE-6FF0-4254-9027-C59F8F03AB1F}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {D482D7EE-6FF0-4254-9027-C59F8F03AB1F}.Release|Pocket PC 2003 (ARMV4).ActiveCfg = Release|Pocket PC 2003 (ARMV4)
+ {D482D7EE-6FF0-4254-9027-C59F8F03AB1F}.Release|Pocket PC 2003 (ARMV4).Build.0 = Release|Pocket PC 2003 (ARMV4)
+ {D482D7EE-6FF0-4254-9027-C59F8F03AB1F}.Release|Pocket PC 2003 (ARMV4).Deploy.0 = Release|Pocket PC 2003 (ARMV4)
+ {D482D7EE-6FF0-4254-9027-C59F8F03AB1F}.Release|Smartphone 2003 (ARMV4).ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {D482D7EE-6FF0-4254-9027-C59F8F03AB1F}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {D482D7EE-6FF0-4254-9027-C59F8F03AB1F}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Build.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ {D482D7EE-6FF0-4254-9027-C59F8F03AB1F}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).Deploy.0 = Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
diff --git a/3rdparty/SDL-1.3.0-5387/VisualCE/SDL.vcw b/3rdparty/SDL-1.3.0-5387/VisualCE/SDL.vcw
new file mode 100644
index 0000000000..8393d2f9b5
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualCE/SDL.vcw
@@ -0,0 +1,116 @@
+Microsoft eMbedded Visual Tools Workspace File, Format Version 3.00
+# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
+
+###############################################################################
+
+Project: "loopwave"=.\loopwave\loopwave.vcp - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name SDL
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name SDLmain
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "SDL"=.\SDL\SDL.VCP - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+}}}
+
+###############################################################################
+
+Project: "SDLmain"=.\SDLmain\SDLmain.vcp - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name SDL
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "testtimer"=.\testtimer\testtimer.vcp - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name SDL
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name SDLmain
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "testalpha"=.\testalpha\testalpha.vcp - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name SDL
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name SDLmain
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "testwin"=.\testwin\testwin.vcp - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name SDL
+ End Project Dependency
+ Begin Project Dependency
+ Project_Dep_Name SDLmain
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Global:
+
+Package=<5>
+{{{
+}}}
+
+Package=<3>
+{{{
+}}}
+
+###############################################################################
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualCE/SDL/SDL.vcp b/3rdparty/SDL-1.3.0-5387/VisualCE/SDL/SDL.vcp
new file mode 100644
index 0000000000..7527b39f08
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualCE/SDL/SDL.vcp
@@ -0,0 +1,42066 @@
+# Microsoft eMbedded Visual Tools Project File - Name="SDL" - Package Owner=<4>
+# Microsoft eMbedded Visual Tools Generated Build File, Format Version 6.02
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (WCE MIPSIV) Dynamic-Link Library" 0x9602
+# TARGTYPE "Win32 (WCE ARMV4T) Dynamic-Link Library" 0xa402
+# TARGTYPE "Win32 (WCE MIPSIV_FP) Dynamic-Link Library" 0x9202
+# TARGTYPE "Win32 (WCE SH3) Dynamic-Link Library" 0x8102
+# TARGTYPE "Win32 (WCE MIPSII_FP) Dynamic-Link Library" 0xa202
+# TARGTYPE "Win32 (WCE x86) Dynamic-Link Library" 0x8302
+# TARGTYPE "Win32 (WCE ARM) Dynamic-Link Library" 0x8502
+# TARGTYPE "Win32 (WCE emulator) Dynamic-Link Library" 0xa602
+# TARGTYPE "Win32 (WCE SH4) Dynamic-Link Library" 0x8602
+# TARGTYPE "Win32 (WCE ARMV4) Dynamic-Link Library" 0xa302
+# TARGTYPE "Win32 (WCE MIPS) Dynamic-Link Library" 0x8202
+# TARGTYPE "Win32 (WCE MIPS16) Dynamic-Link Library" 0x8902
+# TARGTYPE "Win32 (WCE ARMV4I) Dynamic-Link Library" 0xa502
+# TARGTYPE "Win32 (WCE MIPSII) Dynamic-Link Library" 0xa102
+
+CFG=SDL - Win32 (WCE MIPSII_FP) Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "SDL.VCN".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "SDL.VCN" CFG="SDL - Win32 (WCE MIPSII_FP) Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "SDL - Win32 (WCE MIPSII_FP) Release" (based on "Win32 (WCE MIPSII_FP) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE MIPSII_FP) Debug" (based on "Win32 (WCE MIPSII_FP) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE MIPSII) Release" (based on "Win32 (WCE MIPSII) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE MIPSII) Debug" (based on "Win32 (WCE MIPSII) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE SH4) Release" (based on "Win32 (WCE SH4) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE SH4) Debug" (based on "Win32 (WCE SH4) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE SH3) Debug" (based on "Win32 (WCE SH3) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE MIPSIV) Release" (based on "Win32 (WCE MIPSIV) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE MIPSIV) Debug" (based on "Win32 (WCE MIPSIV) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE emulator) Release" (based on "Win32 (WCE emulator) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE emulator) Debug" (based on "Win32 (WCE emulator) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE ARMV4I) Release" (based on "Win32 (WCE ARMV4I) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE ARMV4I) Debug" (based on "Win32 (WCE ARMV4I) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE MIPSIV_FP) Release" (based on "Win32 (WCE MIPSIV_FP) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE MIPSIV_FP) Debug" (based on "Win32 (WCE MIPSIV_FP) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE ARMV4) Release" (based on "Win32 (WCE ARMV4) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE ARMV4) Debug" (based on "Win32 (WCE ARMV4) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE MIPS16) Release" (based on "Win32 (WCE MIPS16) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE MIPS16) Debug" (based on "Win32 (WCE MIPS16) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE ARMV4T) Release" (based on "Win32 (WCE ARMV4T) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE ARMV4T) Debug" (based on "Win32 (WCE ARMV4T) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE x86) Release" (based on "Win32 (WCE x86) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE x86) Debug" (based on "Win32 (WCE x86) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE ARM) Debug" (based on "Win32 (WCE ARM) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE ARM) Release" (based on "Win32 (WCE ARM) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE MIPS) Debug" (based on "Win32 (WCE MIPS) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE MIPS) Release" (based on "Win32 (WCE MIPS) Dynamic-Link Library")
+!MESSAGE "SDL - Win32 (WCE SH3) Release" (based on "Win32 (WCE SH3) Dynamic-Link Library")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+# PROP ATL_Project 2
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "MIPSII_FPRel"
+# PROP BASE Intermediate_Dir "MIPSII_FPRel"
+# PROP BASE CPU_ID "{D8AC856C-B213-4895-9E83-9EC51A55201E}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "MIPSII_FPRel"
+# PROP Intermediate_Dir "MIPSII_FPRel"
+# PROP CPU_ID "{D8AC856C-B213-4895-9E83-9EC51A55201E}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPSII_FP" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "SDL_EXPORTS" /YX /QMmips2 /QMFPE- /O2 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /Oxt /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPSII_FP" /D "NDEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /QMmips2 /QMFPE- /M$(CECrtMT) /c
+# SUBTRACT CPP /YX
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /d "R4000" /d "MIPSII" /d "MIPSII_FP" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /d "R4000" /d "MIPSII" /d "MIPSII_FP" /r
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "MIPSII_FPDbg"
+# PROP BASE Intermediate_Dir "MIPSII_FPDbg"
+# PROP BASE CPU_ID "{D8AC856C-B213-4895-9E83-9EC51A55201E}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "MIPSII_FPDbg"
+# PROP Intermediate_Dir "MIPSII_FPDbg"
+# PROP CPU_ID "{D8AC856C-B213-4895-9E83-9EC51A55201E}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPSII_FP" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /YX /QMmips2 /QMFPE- /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "DEBUG" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPSII_FP" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /QMmips2 /QMFPE- /M$(CECrtMTDebug) /c
+# SUBTRACT CPP /YX
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /d "R4000" /d "MIPSII" /d "MIPSII_FP" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /d "R4000" /d "MIPSII" /d "MIPSII_FP" /r
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "MIPSIIRel"
+# PROP BASE Intermediate_Dir "MIPSIIRel"
+# PROP BASE CPU_ID "{689DDC64-9D9D-11D5-96F8-00207802C01C}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "MIPSIIRel"
+# PROP Intermediate_Dir "MIPSIIRel"
+# PROP CPU_ID "{689DDC64-9D9D-11D5-96F8-00207802C01C}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "SDL_EXPORTS" /YX /QMmips2 /QMFPE /O2 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /Oxt /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "NDEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /QMmips2 /QMFPE /M$(CECrtMT) /c
+# SUBTRACT CPP /YX
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /d "R4000" /d "MIPSII" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /d "R4000" /d "MIPSII" /r
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "MIPSIIDbg"
+# PROP BASE Intermediate_Dir "MIPSIIDbg"
+# PROP BASE CPU_ID "{689DDC64-9D9D-11D5-96F8-00207802C01C}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "MIPSIIDbg"
+# PROP Intermediate_Dir "MIPSIIDbg"
+# PROP CPU_ID "{689DDC64-9D9D-11D5-96F8-00207802C01C}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /YX /QMmips2 /QMFPE /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "DEBUG" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /QMmips2 /QMFPE /M$(CECrtMTDebug) /c
+# SUBTRACT CPP /YX
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /d "R4000" /d "MIPSII" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /d "R4000" /d "MIPSII" /r
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "SH4Rel"
+# PROP BASE Intermediate_Dir "SH4Rel"
+# PROP BASE CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "SH4Rel"
+# PROP Intermediate_Dir "SH4Rel"
+# PROP CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "SHx" /d "SH4" /d "_SH4_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "SHx" /d "SH4" /d "_SH4_" /r
+CPP=shcl.exe
+# ADD BASE CPP /nologo /W3 /O2 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "SDL_EXPORTS" /YX /Qsh4 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /O2 /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "SHx" /D "SH4" /D "_SH4_" /D "NDEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /Oxt /Qsh4 /M$(CECrtMT) /c
+# SUBTRACT CPP /YX
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH4
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH4
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "SH4Dbg"
+# PROP BASE Intermediate_Dir "SH4Dbg"
+# PROP BASE CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "SH4Dbg"
+# PROP Intermediate_Dir "SH4Dbg"
+# PROP CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "SHx" /d "SH4" /d "_SH4_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "SHx" /d "SH4" /d "_SH4_" /r
+CPP=shcl.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /YX /Qsh4 /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "DEBUG" /D "SHx" /D "SH4" /D "_SH4_" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /Qsh4 /M$(CECrtMTDebug) /c
+# SUBTRACT CPP /YX
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH4
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH4
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "SH3Dbg"
+# PROP BASE Intermediate_Dir "SH3Dbg"
+# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "SH3Dbg"
+# PROP Intermediate_Dir "SH3Dbg"
+# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r
+CPP=shcl.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /I "../../src/video/windib" /I "../../src/video/gapi" /D "DEBUG" /D "SHx" /D "SH3" /D "_SH3_" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /M$(CECrtMTDebug) /c
+# SUBTRACT CPP /YX
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "MIPSIVRel"
+# PROP BASE Intermediate_Dir "MIPSIVRel"
+# PROP BASE CPU_ID "{0B2FE524-26C5-4194-8CEF-B1582DEB5A98}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "MIPSIVRel"
+# PROP Intermediate_Dir "MIPSIVRel"
+# PROP CPU_ID "{0B2FE524-26C5-4194-8CEF-B1582DEB5A98}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPSFPU
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPSFPU
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "SDL_EXPORTS" /YX /QMmips4 /QMn32 /QMFPE /O2 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /Oxt /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D "NDEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /QMmips4 /QMn32 /QMFPE /M$(CECrtMT) /c
+# SUBTRACT CPP /YX
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "MIPSIVDbg"
+# PROP BASE Intermediate_Dir "MIPSIVDbg"
+# PROP BASE CPU_ID "{0B2FE524-26C5-4194-8CEF-B1582DEB5A98}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "MIPSIVDbg"
+# PROP Intermediate_Dir "MIPSIVDbg"
+# PROP CPU_ID "{0B2FE524-26C5-4194-8CEF-B1582DEB5A98}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPSFPU
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPSFPU
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /YX /QMmips4 /QMn32 /QMFPE /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "DEBUG" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /QMmips4 /QMn32 /QMFPE /M$(CECrtMTDebug) /c
+# SUBTRACT CPP /YX
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "emulatorRel"
+# PROP BASE Intermediate_Dir "emulatorRel"
+# PROP BASE CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "emulatorRel"
+# PROP Intermediate_Dir "emulatorRel"
+# PROP CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /D "SDL_EXPORTS" /YX /Gs8192 /GF /O2 /c
+# ADD CPP /nologo /W3 /Oxt /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "_i386_" /D "_X86_" /D "x86" /D "NDEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /Gs8192 /GF /c
+# SUBTRACT CPP /YX
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "emulatorDbg"
+# PROP BASE Intermediate_Dir "emulatorDbg"
+# PROP BASE CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "emulatorDbg"
+# PROP Intermediate_Dir "emulatorDbg"
+# PROP CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "SDL_EXPORTS" /YX /Gs8192 /GF /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /I "../../src/video/windib" /I "../../src/video/gapi" /D "DEBUG" /D "_i386_" /D "_X86_" /D "x86" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /Gs8192 /GF /c
+# SUBTRACT CPP /YX
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "ARMV4IRel"
+# PROP BASE Intermediate_Dir "ARMV4IRel"
+# PROP BASE CPU_ID "{DC70F430-E78B-494F-A9D5-62ADC56443B8}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "ARMV4IRel"
+# PROP Intermediate_Dir "ARMV4IRel"
+# PROP CPU_ID "{DC70F430-E78B-494F-A9D5-62ADC56443B8}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:THUMB
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:THUMB
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "ARM" /D "_ARM_" /D "$(CePlatform)" /D "ARMV4I" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "SDL_EXPORTS" /YX /QRarch4T /QRinterwork-return /O2 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /Oxt /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "ARM" /D "_ARM_" /D "ARMV4I" /D "NDEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /QRarch4T /QRinterwork-return /M$(CECrtMT) /c
+# SUBTRACT CPP /YX
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "THUMB" /d "_THUMB_" /d "ARM" /d "_ARM_" /d "ARMV4I" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "THUMB" /d "_THUMB_" /d "ARM" /d "_ARM_" /d "ARMV4I" /r
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "ARMV4IDbg"
+# PROP BASE Intermediate_Dir "ARMV4IDbg"
+# PROP BASE CPU_ID "{DC70F430-E78B-494F-A9D5-62ADC56443B8}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "ARMV4IDbg"
+# PROP Intermediate_Dir "ARMV4IDbg"
+# PROP CPU_ID "{DC70F430-E78B-494F-A9D5-62ADC56443B8}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:THUMB
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:THUMB
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "ARM" /D "_ARM_" /D "$(CePlatform)" /D "ARMV4I" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /YX /QRarch4T /QRinterwork-return /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "DEBUG" /D "ARM" /D "_ARM_" /D "ARMV4I" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /QRarch4T /QRinterwork-return /M$(CECrtMTDebug) /c
+# SUBTRACT CPP /YX
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "THUMB" /d "_THUMB_" /d "ARM" /d "_ARM_" /d "ARMV4I" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "THUMB" /d "_THUMB_" /d "ARM" /d "_ARM_" /d "ARMV4I" /r
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "MIPSIV_FPRel"
+# PROP BASE Intermediate_Dir "MIPSIV_FPRel"
+# PROP BASE CPU_ID "{046A430D-7770-48AB-89B5-24C2D300B03F}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "MIPSIV_FPRel"
+# PROP Intermediate_Dir "MIPSIV_FPRel"
+# PROP CPU_ID "{046A430D-7770-48AB-89B5-24C2D300B03F}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPSFPU
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPSFPU
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D "MIPSIV_FP" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "SDL_EXPORTS" /YX /QMmips4 /QMn32 /QMFPE- /O2 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /Oxt /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D "MIPSIV_FP" /D "NDEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /QMmips4 /QMn32 /QMFPE- /M$(CECrtMT) /c
+# SUBTRACT CPP /YX
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "MIPSIV_FPDbg"
+# PROP BASE Intermediate_Dir "MIPSIV_FPDbg"
+# PROP BASE CPU_ID "{046A430D-7770-48AB-89B5-24C2D300B03F}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "MIPSIV_FPDbg"
+# PROP Intermediate_Dir "MIPSIV_FPDbg"
+# PROP CPU_ID "{046A430D-7770-48AB-89B5-24C2D300B03F}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPSFPU
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPSFPU
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D "MIPSIV_FP" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /YX /QMmips4 /QMn32 /QMFPE- /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "DEBUG" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D "MIPSIV_FP" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /QMmips4 /QMn32 /QMFPE- /M$(CECrtMTDebug) /c
+# SUBTRACT CPP /YX
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "ARMV4Rel"
+# PROP BASE Intermediate_Dir "ARMV4Rel"
+# PROP BASE CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "ARMV4Rel"
+# PROP Intermediate_Dir "ARMV4Rel"
+# PROP CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "SDL_EXPORTS" /YX /O2 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /Oxt /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /I "../../src/video/windib" /I "../../src/video/gapi" /D "ARM" /D "_ARM_" /D "ARMV4" /D "NDEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /M$(CECrtMT) /c
+# SUBTRACT CPP /YX
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "ARMV4Dbg"
+# PROP BASE Intermediate_Dir "ARMV4Dbg"
+# PROP BASE CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "ARMV4Dbg"
+# PROP Intermediate_Dir "ARMV4Dbg"
+# PROP CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /I "../../src/video/windib" /I "../../src/video/gapi" /D "DEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /M$(CECrtMTDebug) /c
+# SUBTRACT CPP /YX
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "MIPS16Rel"
+# PROP BASE Intermediate_Dir "MIPS16Rel"
+# PROP BASE CPU_ID "{D6519013-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "MIPS16Rel"
+# PROP Intermediate_Dir "MIPS16Rel"
+# PROP CPU_ID "{D6519013-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "MIPS16SUPPORT" /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /d "R4000" /d "MIPSII" /d "MIPS16" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "MIPS16SUPPORT" /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /d "R4000" /d "MIPSII" /d "MIPS16" /r
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /O2 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPS16" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_MIPS16_" /D "MIPS16SUPPORT" /D "SDL_EXPORTS" /YX /QMmips16 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPS16" /D "NDEBUG" /D "_MIPS16_" /D "MIPS16SUPPORT" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /Oxt /QMmips16 /M$(CECrtMT) /c
+# SUBTRACT CPP /YX
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS16 /ALIGN:4096
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS16 /ALIGN:4096
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "MIPS16Dbg"
+# PROP BASE Intermediate_Dir "MIPS16Dbg"
+# PROP BASE CPU_ID "{D6519013-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "MIPS16Dbg"
+# PROP Intermediate_Dir "MIPS16Dbg"
+# PROP CPU_ID "{D6519013-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "MIPS16SUPPORT" /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /d "R4000" /d "MIPSII" /d "MIPS16" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "MIPS16SUPPORT" /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /d "R4000" /d "MIPSII" /d "MIPS16" /r
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPS16" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_MIPS16_" /D "MIPS16SUPPORT" /D "SDL_EXPORTS" /YX /QMmips16 /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "DEBUG" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPS16" /D "_MIPS16_" /D "MIPS16SUPPORT" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /QMmips16 /M$(CECrtMTDebug) /c
+# SUBTRACT CPP /YX
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS16 /ALIGN:4096
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS16 /ALIGN:4096
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "ARMV4TRel"
+# PROP BASE Intermediate_Dir "ARMV4TRel"
+# PROP BASE CPU_ID "{F52316A9-3B7C-4FE7-A67F-68350B41240D}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "ARMV4TRel"
+# PROP Intermediate_Dir "ARMV4TRel"
+# PROP CPU_ID "{F52316A9-3B7C-4FE7-A67F-68350B41240D}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:THUMB
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:THUMB
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+CPP=clthumb.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "ARM" /D "_ARM_" /D "$(CePlatform)" /D "THUMB" /D "_THUMB_" /D "ARMV4T" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "SDL_EXPORTS" /YX /QRarch4T /QRinterwork-return /O2 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /Oxt /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "ARM" /D "_ARM_" /D "THUMB" /D "_THUMB_" /D "ARMV4T" /D "NDEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /QRarch4T /QRinterwork-return /M$(CECrtMT) /c
+# SUBTRACT CPP /YX
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "THUMB" /d "_THUMB_" /d "ARM" /d "_ARM_" /d "ARMV4T" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "THUMB" /d "_THUMB_" /d "ARM" /d "_ARM_" /d "ARMV4T" /r
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "ARMV4TDbg"
+# PROP BASE Intermediate_Dir "ARMV4TDbg"
+# PROP BASE CPU_ID "{F52316A9-3B7C-4FE7-A67F-68350B41240D}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "ARMV4TDbg"
+# PROP Intermediate_Dir "ARMV4TDbg"
+# PROP CPU_ID "{F52316A9-3B7C-4FE7-A67F-68350B41240D}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:THUMB
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:THUMB
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+CPP=clthumb.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "ARM" /D "_ARM_" /D "$(CePlatform)" /D "THUMB" /D "_THUMB_" /D "ARMV4T" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /YX /QRarch4T /QRinterwork-return /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "DEBUG" /D "ARM" /D "_ARM_" /D "THUMB" /D "_THUMB_" /D "ARMV4T" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /QRarch4T /QRinterwork-return /M$(CECrtMTDebug) /c
+# SUBTRACT CPP /YX
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "THUMB" /d "_THUMB_" /d "ARM" /d "_ARM_" /d "ARMV4T" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "THUMB" /d "_THUMB_" /d "ARM" /d "_ARM_" /d "ARMV4T" /r
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "X86Rel"
+# PROP BASE Intermediate_Dir "X86Rel"
+# PROP BASE CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "X86Rel"
+# PROP Intermediate_Dir "X86Rel"
+# PROP CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /O2 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /D "SDL_EXPORTS" /YX /Gs8192 /GF /c
+# ADD CPP /nologo /W3 /O2 /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "_i386_" /D "_X86_" /D "x86" /D "NDEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /Gs8192 /Oxt /GF /c
+# SUBTRACT CPP /YX
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "X86Dbg"
+# PROP BASE Intermediate_Dir "X86Dbg"
+# PROP BASE CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "X86Dbg"
+# PROP Intermediate_Dir "X86Dbg"
+# PROP CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "SDL_EXPORTS" /YX /Gs8192 /GF /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "DEBUG" /D "_i386_" /D "_X86_" /D "x86" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /Gs8192 /GF /c
+# SUBTRACT CPP /YX
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "ARMDbg"
+# PROP BASE Intermediate_Dir "ARMDbg"
+# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "ARMDbg"
+# PROP Intermediate_Dir "ARMDbg"
+# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /I "../../src/video/windib" /I "../../src/video/gapi" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "ARMRel"
+# PROP BASE Intermediate_Dir "ARMRel"
+# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "ARMRel"
+# PROP Intermediate_Dir "ARMRel"
+# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /O2 /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /I "../../src/video/windib" /I "../../src/video/gapi" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "MIPSDbg"
+# PROP BASE Intermediate_Dir "MIPSDbg"
+# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "MIPSDbg"
+# PROP Intermediate_Dir "MIPSDbg"
+# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /I "../../src/video/windib" /I "../../src/video/gapi" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "MIPSRel"
+# PROP BASE Intermediate_Dir "MIPSRel"
+# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "MIPSRel"
+# PROP Intermediate_Dir "MIPSRel"
+# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /O2 /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /I "../../src/video/windib" /I "../../src/video/gapi" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "SH3Rel"
+# PROP BASE Intermediate_Dir "SH3Rel"
+# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "SH3Rel"
+# PROP Intermediate_Dir "SH3Rel"
+# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r
+CPP=shcl.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /O2 /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /I "../../src/video/windib" /I "../../src/video/gapi" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3
+
+!ENDIF
+
+# Begin Target
+
+# Name "SDL - Win32 (WCE MIPSII_FP) Release"
+# Name "SDL - Win32 (WCE MIPSII_FP) Debug"
+# Name "SDL - Win32 (WCE MIPSII) Release"
+# Name "SDL - Win32 (WCE MIPSII) Debug"
+# Name "SDL - Win32 (WCE SH4) Release"
+# Name "SDL - Win32 (WCE SH4) Debug"
+# Name "SDL - Win32 (WCE SH3) Debug"
+# Name "SDL - Win32 (WCE MIPSIV) Release"
+# Name "SDL - Win32 (WCE MIPSIV) Debug"
+# Name "SDL - Win32 (WCE emulator) Release"
+# Name "SDL - Win32 (WCE emulator) Debug"
+# Name "SDL - Win32 (WCE ARMV4I) Release"
+# Name "SDL - Win32 (WCE ARMV4I) Debug"
+# Name "SDL - Win32 (WCE MIPSIV_FP) Release"
+# Name "SDL - Win32 (WCE MIPSIV_FP) Debug"
+# Name "SDL - Win32 (WCE ARMV4) Release"
+# Name "SDL - Win32 (WCE ARMV4) Debug"
+# Name "SDL - Win32 (WCE MIPS16) Release"
+# Name "SDL - Win32 (WCE MIPS16) Debug"
+# Name "SDL - Win32 (WCE ARMV4T) Release"
+# Name "SDL - Win32 (WCE ARMV4T) Debug"
+# Name "SDL - Win32 (WCE x86) Release"
+# Name "SDL - Win32 (WCE x86) Debug"
+# Name "SDL - Win32 (WCE ARM) Debug"
+# Name "SDL - Win32 (WCE ARM) Release"
+# Name "SDL - Win32 (WCE MIPS) Debug"
+# Name "SDL - Win32 (WCE MIPS) Release"
+# Name "SDL - Win32 (WCE SH3) Release"
+# Begin Group "Source Files"
+
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+# Begin Source File
+
+SOURCE=..\..\src\SDL.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_C=\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+NODEP_CPP_SDL_C=\
+ "..\include\SDL_endian.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_C=\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+NODEP_CPP_SDL_C=\
+ "..\include\SDL_endian.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_C=\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+NODEP_CPP_SDL_C=\
+ "..\include\SDL_endian.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_C=\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+NODEP_CPP_SDL_C=\
+ "..\include\SDL_endian.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_C=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+NODEP_CPP_SDL_C=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_C=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+NODEP_CPP_SDL_C=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_C=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_C=\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+NODEP_CPP_SDL_C=\
+ "..\include\SDL_endian.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_C=\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+NODEP_CPP_SDL_C=\
+ "..\include\SDL_endian.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_C=\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+NODEP_CPP_SDL_C=\
+ "..\include\SDL_endian.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_C=\
+ "..\..\include\SDL.h"\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+NODEP_CPP_SDL_C=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_C=\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+NODEP_CPP_SDL_C=\
+ "..\include\SDL_endian.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_C=\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+NODEP_CPP_SDL_C=\
+ "..\include\SDL_endian.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_C=\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+NODEP_CPP_SDL_C=\
+ "..\include\SDL_endian.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_C=\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+NODEP_CPP_SDL_C=\
+ "..\include\SDL_endian.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_C=\
+ "..\..\include\SDL.h"\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+NODEP_CPP_SDL_C=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_C=\
+ "..\..\include\SDL.h"\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+NODEP_CPP_SDL_C=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_C=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+NODEP_CPP_SDL_C=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_C=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+NODEP_CPP_SDL_C=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_C=\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+NODEP_CPP_SDL_C=\
+ "..\include\SDL_endian.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_C=\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+NODEP_CPP_SDL_C=\
+ "..\include\SDL_endian.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_C=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+NODEP_CPP_SDL_C=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_C=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_C=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_C=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+NODEP_CPP_SDL_C=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_C=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+NODEP_CPP_SDL_C=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_getenv.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_C=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+NODEP_CPP_SDL_C=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_getenv.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_C=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\SDL_fatal.h"\
+ "..\..\src\video\SDL_leaks.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\events\SDL_active.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_A=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_A=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_A=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_A=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_A=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_A=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_A=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_A=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_A=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_A=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_A=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_A=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_A=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_A=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_A=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_A=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_A=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_A=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_A=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_A=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_A=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_A=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_A=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_A=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_A=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_A=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_A=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_A=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_A=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_A=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_A=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_A=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_A=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_A=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_A=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_A=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_A=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_A=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_A=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_A=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_A=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_A=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_A=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_A=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_A=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_A=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_A=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_A=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_A=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_A=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_A=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_A=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\audio\SDL_audio.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_AU=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_AU=\
+ "..\include\SDL_thread.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_AU=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_AU=\
+ "..\include\SDL_thread.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_AU=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_AU=\
+ "..\include\SDL_thread.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_AU=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_AU=\
+ "..\include\SDL_thread.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_AU=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_AU=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_AU=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_AU=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_AU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_AU=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_AU=\
+ "..\include\SDL_thread.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_AU=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_AU=\
+ "..\include\SDL_thread.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_AU=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_AU=\
+ "..\include\SDL_thread.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_AU=\
+ "..\..\include\SDL.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_AU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_AU=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_AU=\
+ "..\include\SDL_thread.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_AU=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_AU=\
+ "..\include\SDL_thread.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_AU=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_AU=\
+ "..\include\SDL_thread.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_AU=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_AU=\
+ "..\include\SDL_thread.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_AU=\
+ "..\..\include\SDL.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_AU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_AU=\
+ "..\..\include\SDL.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_AU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_AU=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_AU=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_AU=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_AU=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_AU=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_AU=\
+ "..\include\SDL_thread.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_AU=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_AU=\
+ "..\include\SDL_thread.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_AU=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_AU=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_AU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_AU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_AU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_AU=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_AU=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_AU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_getenv.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_AU=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_AU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_getenv.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_AU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\audio\SDL_audiocvt.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_AUD=\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_AUD=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_rwops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_AUD=\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_AUD=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_rwops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_AUD=\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_AUD=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_rwops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_AUD=\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_AUD=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_rwops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_AUD=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_AUD=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_AUD=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_AUD=\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_AUD=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_rwops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_AUD=\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_AUD=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_rwops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_AUD=\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_AUD=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_rwops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+NODEP_CPP_SDL_AUD=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_AUD=\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_AUD=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_rwops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_AUD=\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_AUD=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_rwops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_AUD=\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_AUD=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_rwops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_AUD=\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_AUD=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_rwops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+NODEP_CPP_SDL_AUD=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+NODEP_CPP_SDL_AUD=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_AUD=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_AUD=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_AUD=\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_AUD=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_rwops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_AUD=\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_AUD=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_rwops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_AUD=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_AUD=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_AUD=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_AUD=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+
+NODEP_CPP_SDL_AUD=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_AUD=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+
+NODEP_CPP_SDL_AUD=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_AUD=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+
+NODEP_CPP_SDL_AUD=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_AUD=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\audio\SDL_audiodev.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+NODEP_CPP_SDL_AUDI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+NODEP_CPP_SDL_AUDI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+NODEP_CPP_SDL_AUDI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+NODEP_CPP_SDL_AUDI=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_AUDI=\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_blit.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_B=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_B=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_B=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_B=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_B=\
+ "..\..\src\video\SDL_memops.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_B=\
+ "..\..\src\video\SDL_memops.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_B=\
+ "..\..\src\video\SDL_memops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_B=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_B=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_B=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_B=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_B=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_B=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_B=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_B=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_B=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_B=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_B=\
+ "..\..\src\video\SDL_memops.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_B=\
+ "..\..\src\video\SDL_memops.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_B=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_B=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_B=\
+ "..\..\src\video\SDL_memops.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_B=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_B=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_B=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_B=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_B=\
+ "..\..\src\video\SDL_memops.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_blit_0.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+NODEP_CPP_SDL_BL=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+NODEP_CPP_SDL_BL=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+NODEP_CPP_SDL_BL=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+NODEP_CPP_SDL_BL=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_BL=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+NODEP_CPP_SDL_BL=\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_BL=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+NODEP_CPP_SDL_BL=\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_BL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+NODEP_CPP_SDL_BL=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+NODEP_CPP_SDL_BL=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+NODEP_CPP_SDL_BL=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+NODEP_CPP_SDL_BL=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+NODEP_CPP_SDL_BL=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+NODEP_CPP_SDL_BL=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+NODEP_CPP_SDL_BL=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+NODEP_CPP_SDL_BL=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+NODEP_CPP_SDL_BL=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+NODEP_CPP_SDL_BL=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_BL=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+NODEP_CPP_SDL_BL=\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_BL=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+NODEP_CPP_SDL_BL=\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+NODEP_CPP_SDL_BL=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+NODEP_CPP_SDL_BL=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_BL=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+NODEP_CPP_SDL_BL=\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_BL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_BL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_BL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+NODEP_CPP_SDL_BL=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_BL=\
+ "..\..\include\SDL_endian.h"\
+
+NODEP_CPP_SDL_BL=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_BL=\
+ "..\..\include\SDL_endian.h"\
+
+NODEP_CPP_SDL_BL=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_BL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_blit_1.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_BLI=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_BLI=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_BLI=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_BLI=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_BLI=\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_BLI=\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_BLI=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_BLI=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_BLI=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_BLI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_BLI=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_BLI=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_BLI=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_BLI=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_BLI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_BLI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_BLI=\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_BLI=\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_BLI=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_BLI=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_BLI=\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_BLI=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_BLI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_BLI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_BLI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_blit_A.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\src\video\mmx.h"\
+
+NODEP_CPP_SDL_BLIT=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\src\video\mmx.h"\
+
+NODEP_CPP_SDL_BLIT=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\src\video\mmx.h"\
+
+NODEP_CPP_SDL_BLIT=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\src\video\mmx.h"\
+
+NODEP_CPP_SDL_BLIT=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+NODEP_CPP_SDL_BLIT=\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+NODEP_CPP_SDL_BLIT=\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\src\video\mmx.h"\
+
+NODEP_CPP_SDL_BLIT=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\src\video\mmx.h"\
+
+NODEP_CPP_SDL_BLIT=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\src\video\mmx.h"\
+
+NODEP_CPP_SDL_BLIT=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\src\video\mmx.h"\
+
+NODEP_CPP_SDL_BLIT=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\src\video\mmx.h"\
+
+NODEP_CPP_SDL_BLIT=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\src\video\mmx.h"\
+
+NODEP_CPP_SDL_BLIT=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\src\video\mmx.h"\
+
+NODEP_CPP_SDL_BLIT=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\src\video\mmx.h"\
+
+NODEP_CPP_SDL_BLIT=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\src\video\mmx.h"\
+
+NODEP_CPP_SDL_BLIT=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\src\video\mmx.h"\
+
+NODEP_CPP_SDL_BLIT=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+NODEP_CPP_SDL_BLIT=\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+NODEP_CPP_SDL_BLIT=\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\src\video\mmx.h"\
+
+NODEP_CPP_SDL_BLIT=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\src\video\mmx.h"\
+
+NODEP_CPP_SDL_BLIT=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+NODEP_CPP_SDL_BLIT=\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+NODEP_CPP_SDL_BLIT=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\video\mmx.h"\
+
+NODEP_CPP_SDL_BLIT=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\video\mmx.h"\
+
+NODEP_CPP_SDL_BLIT=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_BLIT=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_blit_N.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+NODEP_CPP_SDL_BLIT_=\
+ "..\..\src\video\HeadMMX.h"\
+ "..\..\src\video\HeadX86.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+NODEP_CPP_SDL_BLIT_=\
+ "..\..\src\video\HeadMMX.h"\
+ "..\..\src\video\HeadX86.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+NODEP_CPP_SDL_BLIT_=\
+ "..\..\src\video\HeadMMX.h"\
+ "..\..\src\video\HeadX86.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+NODEP_CPP_SDL_BLIT_=\
+ "..\..\src\video\HeadMMX.h"\
+ "..\..\src\video\HeadX86.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_BLIT_=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+NODEP_CPP_SDL_BLIT_=\
+ "..\..\src\video\HeadMMX.h"\
+ "..\..\src\video\HeadX86.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_BLIT_=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+NODEP_CPP_SDL_BLIT_=\
+ "..\..\src\video\HeadMMX.h"\
+ "..\..\src\video\HeadX86.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_BLIT_=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+NODEP_CPP_SDL_BLIT_=\
+ "..\..\src\video\HeadMMX.h"\
+ "..\..\src\video\HeadX86.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+NODEP_CPP_SDL_BLIT_=\
+ "..\..\src\video\HeadMMX.h"\
+ "..\..\src\video\HeadX86.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+NODEP_CPP_SDL_BLIT_=\
+ "..\..\src\video\HeadMMX.h"\
+ "..\..\src\video\HeadX86.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+NODEP_CPP_SDL_BLIT_=\
+ "..\..\src\video\HeadMMX.h"\
+ "..\..\src\video\HeadX86.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_BLIT_=\
+ "..\..\src\hermes\HeadMMX.h"\
+ "..\..\src\hermes\HeadX86.h"\
+
+NODEP_CPP_SDL_BLIT_=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+NODEP_CPP_SDL_BLIT_=\
+ "..\..\src\video\HeadMMX.h"\
+ "..\..\src\video\HeadX86.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+NODEP_CPP_SDL_BLIT_=\
+ "..\..\src\video\HeadMMX.h"\
+ "..\..\src\video\HeadX86.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+NODEP_CPP_SDL_BLIT_=\
+ "..\..\src\video\HeadMMX.h"\
+ "..\..\src\video\HeadX86.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+NODEP_CPP_SDL_BLIT_=\
+ "..\..\src\video\HeadMMX.h"\
+ "..\..\src\video\HeadX86.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_BLIT_=\
+ "..\..\src\hermes\HeadMMX.h"\
+ "..\..\src\hermes\HeadX86.h"\
+
+NODEP_CPP_SDL_BLIT_=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_BLIT_=\
+ "..\..\src\hermes\HeadMMX.h"\
+ "..\..\src\hermes\HeadX86.h"\
+
+NODEP_CPP_SDL_BLIT_=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_BLIT_=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+NODEP_CPP_SDL_BLIT_=\
+ "..\..\src\video\HeadMMX.h"\
+ "..\..\src\video\HeadX86.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_BLIT_=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+NODEP_CPP_SDL_BLIT_=\
+ "..\..\src\video\HeadMMX.h"\
+ "..\..\src\video\HeadX86.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+NODEP_CPP_SDL_BLIT_=\
+ "..\..\src\video\HeadMMX.h"\
+ "..\..\src\video\HeadX86.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+NODEP_CPP_SDL_BLIT_=\
+ "..\..\src\video\HeadMMX.h"\
+ "..\..\src\video\HeadX86.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_BLIT_=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+NODEP_CPP_SDL_BLIT_=\
+ "..\..\src\video\HeadMMX.h"\
+ "..\..\src\video\HeadX86.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_BLIT_=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\hermes\HeadMMX.h"\
+ "..\..\src\hermes\HeadX86.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_BLIT_=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\hermes\HeadMMX.h"\
+ "..\..\src\hermes\HeadX86.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_BLIT_=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\hermes\HeadMMX.h"\
+ "..\..\src\hermes\HeadX86.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+NODEP_CPP_SDL_BLIT_=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_BLIT_=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+
+NODEP_CPP_SDL_BLIT_=\
+ "..\..\src\video\HeadMMX.h"\
+ "..\..\src\video\HeadX86.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_BLIT_=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+
+NODEP_CPP_SDL_BLIT_=\
+ "..\..\src\video\HeadMMX.h"\
+ "..\..\src\video\HeadX86.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_BLIT_=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+NODEP_CPP_SDL_BLIT_=\
+ "..\..\src\video\HeadMMX.h"\
+ "..\..\src\video\HeadX86.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_bmp.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+NODEP_CPP_SDL_BM=\
+ "..\include\SDL_endian.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+NODEP_CPP_SDL_BM=\
+ "..\include\SDL_endian.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+NODEP_CPP_SDL_BM=\
+ "..\include\SDL_endian.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+NODEP_CPP_SDL_BM=\
+ "..\include\SDL_endian.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_BM=\
+ "..\..\include\SDL_endian.h"\
+
+NODEP_CPP_SDL_BM=\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_BM=\
+ "..\..\include\SDL_endian.h"\
+
+NODEP_CPP_SDL_BM=\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_BM=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+NODEP_CPP_SDL_BM=\
+ "..\include\SDL_endian.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+NODEP_CPP_SDL_BM=\
+ "..\include\SDL_endian.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+NODEP_CPP_SDL_BM=\
+ "..\include\SDL_endian.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+NODEP_CPP_SDL_BM=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+NODEP_CPP_SDL_BM=\
+ "..\include\SDL_endian.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+NODEP_CPP_SDL_BM=\
+ "..\include\SDL_endian.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+NODEP_CPP_SDL_BM=\
+ "..\include\SDL_endian.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+NODEP_CPP_SDL_BM=\
+ "..\include\SDL_endian.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+NODEP_CPP_SDL_BM=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+NODEP_CPP_SDL_BM=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_BM=\
+ "..\..\include\SDL_endian.h"\
+
+NODEP_CPP_SDL_BM=\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_BM=\
+ "..\..\include\SDL_endian.h"\
+
+NODEP_CPP_SDL_BM=\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+NODEP_CPP_SDL_BM=\
+ "..\include\SDL_endian.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+NODEP_CPP_SDL_BM=\
+ "..\include\SDL_endian.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_BM=\
+ "..\..\include\SDL_endian.h"\
+
+NODEP_CPP_SDL_BM=\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_BM=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_BM=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_BM=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+
+NODEP_CPP_SDL_BM=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_BM=\
+ "..\..\include\SDL_endian.h"\
+
+NODEP_CPP_SDL_BM=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_BM=\
+ "..\..\include\SDL_endian.h"\
+
+NODEP_CPP_SDL_BM=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_BM=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_video.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\cpuinfo\SDL_cpuinfo.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+NODEP_CPP_SDL_CP=\
+ "..\include\SDL_cpuinfo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+NODEP_CPP_SDL_CP=\
+ "..\include\SDL_cpuinfo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+NODEP_CPP_SDL_CP=\
+ "..\include\SDL_cpuinfo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+NODEP_CPP_SDL_CP=\
+ "..\include\SDL_cpuinfo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_CP=\
+ "..\..\include\SDL_cpuinfo.h"\
+
+NODEP_CPP_SDL_CP=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_CP=\
+ "..\..\include\SDL_cpuinfo.h"\
+
+NODEP_CPP_SDL_CP=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_CP=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+NODEP_CPP_SDL_CP=\
+ "..\include\SDL_cpuinfo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+NODEP_CPP_SDL_CP=\
+ "..\include\SDL_cpuinfo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+NODEP_CPP_SDL_CP=\
+ "..\include\SDL_cpuinfo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_CP=\
+ "..\..\include\SDL.h"\
+
+NODEP_CPP_SDL_CP=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+NODEP_CPP_SDL_CP=\
+ "..\include\SDL_cpuinfo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+NODEP_CPP_SDL_CP=\
+ "..\include\SDL_cpuinfo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+NODEP_CPP_SDL_CP=\
+ "..\include\SDL_cpuinfo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+NODEP_CPP_SDL_CP=\
+ "..\include\SDL_cpuinfo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_CP=\
+ "..\..\include\SDL.h"\
+
+NODEP_CPP_SDL_CP=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_CP=\
+ "..\..\include\SDL.h"\
+
+NODEP_CPP_SDL_CP=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_CP=\
+ "..\..\include\SDL_cpuinfo.h"\
+
+NODEP_CPP_SDL_CP=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_CP=\
+ "..\..\include\SDL_cpuinfo.h"\
+
+NODEP_CPP_SDL_CP=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+NODEP_CPP_SDL_CP=\
+ "..\include\SDL_cpuinfo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+NODEP_CPP_SDL_CP=\
+ "..\include\SDL_cpuinfo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_CP=\
+ "..\..\include\SDL_cpuinfo.h"\
+
+NODEP_CPP_SDL_CP=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_CP=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_CP=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_CP=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+
+NODEP_CPP_SDL_CP=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_CP=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+
+NODEP_CPP_SDL_CP=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_getenv.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_CP=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+
+NODEP_CPP_SDL_CP=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_getenv.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_CP=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_cursor.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_CU=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_CU=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_CU=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_CU=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_CU=\
+ ".\DL_active.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_CU=\
+ ".\DL_active.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_CU=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_CU=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_CU=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_CU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_CU=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_CU=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_CU=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_CU=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_CU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_CU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_CU=\
+ ".\DL_active.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_CU=\
+ ".\DL_active.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_CU=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_CU=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_CU=\
+ ".\DL_active.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_CU=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_CU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_CU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_CU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\default_cursor.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\audio\windib\SDL_dibaudio.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_D=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+ "..\include\SDL_thread.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_D=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+ "..\include\SDL_thread.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_D=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+ "..\include\SDL_thread.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_D=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+ "..\include\SDL_thread.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_D=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_D=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_D=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_D=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+ "..\include\SDL_thread.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_D=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+ "..\include\SDL_thread.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_D=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+ "..\include\SDL_thread.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_D=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_D=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+ "..\include\SDL_thread.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_D=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+ "..\include\SDL_thread.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_D=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+ "..\include\SDL_thread.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_D=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+ "..\include\SDL_thread.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_D=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_D=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_D=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_D=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_D=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+ "..\include\SDL_thread.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_D=\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+ "..\include\SDL_thread.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_D=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_D=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_D=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_D=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_D=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_D=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_D=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+ "..\..\src\audio\windib\SDL_dibaudio.h"\
+
+NODEP_CPP_SDL_D=\
+ "..\..\src\audio\windib\win_ce_semaphore.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\windib\SDL_dibevents.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+NODEP_CPP_SDL_DI=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+NODEP_CPP_SDL_DI=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+NODEP_CPP_SDL_DI=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+NODEP_CPP_SDL_DI=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+NODEP_CPP_SDL_DI=\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+NODEP_CPP_SDL_DI=\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+NODEP_CPP_SDL_DI=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+NODEP_CPP_SDL_DI=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+NODEP_CPP_SDL_DI=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+NODEP_CPP_SDL_DI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+NODEP_CPP_SDL_DI=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+NODEP_CPP_SDL_DI=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+NODEP_CPP_SDL_DI=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+NODEP_CPP_SDL_DI=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+NODEP_CPP_SDL_DI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+NODEP_CPP_SDL_DI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+NODEP_CPP_SDL_DI=\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+NODEP_CPP_SDL_DI=\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+NODEP_CPP_SDL_DI=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+NODEP_CPP_SDL_DI=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+NODEP_CPP_SDL_DI=\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+NODEP_CPP_SDL_DI=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+NODEP_CPP_SDL_DI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+NODEP_CPP_SDL_DI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_DI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+ "..\..\src\video\windib\SDL_vkeys.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\windib\SDL_dibvideo.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+NODEP_CPP_SDL_DIB=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+NODEP_CPP_SDL_DIB=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+NODEP_CPP_SDL_DIB=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+NODEP_CPP_SDL_DIB=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+NODEP_CPP_SDL_DIB=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+NODEP_CPP_SDL_DIB=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+NODEP_CPP_SDL_DIB=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+NODEP_CPP_SDL_DIB=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+NODEP_CPP_SDL_DIB=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+NODEP_CPP_SDL_DIB=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+NODEP_CPP_SDL_DIB=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+NODEP_CPP_SDL_DIB=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+NODEP_CPP_SDL_DIB=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+NODEP_CPP_SDL_DIB=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+NODEP_CPP_SDL_DIB=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+NODEP_CPP_SDL_DIB=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+NODEP_CPP_SDL_DIB=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+NODEP_CPP_SDL_DIB=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+NODEP_CPP_SDL_DIB=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+NODEP_CPP_SDL_DIB=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+NODEP_CPP_SDL_DIB=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+NODEP_CPP_SDL_DIB=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+NODEP_CPP_SDL_DIB=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_getenv.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+NODEP_CPP_SDL_DIB=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_getenv.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_DIB=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+ "..\..\src\video\windib\SDL_dibvideo.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\audio\disk\SDL_diskaudio.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_DIS=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\disk\SDL_diskaudio.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_DIS=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\disk\SDL_diskaudio.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_DIS=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\disk\SDL_diskaudio.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_DIS=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\disk\SDL_diskaudio.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_DIS=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\disk\SDL_diskaudio.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_DIS=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\disk\SDL_diskaudio.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_DIS=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\disk\SDL_diskaudio.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_DIS=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\disk\SDL_diskaudio.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_DIS=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\disk\SDL_diskaudio.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_DIS=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\disk\SDL_diskaudio.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_DIS=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\disk\SDL_diskaudio.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_DIS=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\disk\SDL_diskaudio.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\audio\dummy\SDL_dummyaudio.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_DU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\dummy\SDL_dummyaudio.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_DU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\dummy\SDL_dummyaudio.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_DU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\dummy\SDL_dummyaudio.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_DU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\dummy\SDL_dummyaudio.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_DU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\dummy\SDL_dummyaudio.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_DU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\dummy\SDL_dummyaudio.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_DU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\dummy\SDL_dummyaudio.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_DU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\dummy\SDL_dummyaudio.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_DU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\dummy\SDL_dummyaudio.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_DU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\dummy\SDL_dummyaudio.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_DU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\dummy\SDL_dummyaudio.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_DU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\dummy\SDL_dummyaudio.h"\
+ "..\..\src\audio\SDL_audio_c.h"\
+ "..\..\src\audio\SDL_audiodev_c.h"\
+ "..\..\src\audio\SDL_audiomem.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\SDL_error.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+NODEP_CPP_SDL_E=\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+NODEP_CPP_SDL_E=\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+NODEP_CPP_SDL_E=\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+NODEP_CPP_SDL_E=\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_E=\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\generic\SDL_systhread_c.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+
+NODEP_CPP_SDL_E=\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_E=\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\generic\SDL_systhread_c.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+
+NODEP_CPP_SDL_E=\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_E=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\generic\SDL_systhread_c.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+NODEP_CPP_SDL_E=\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+NODEP_CPP_SDL_E=\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+NODEP_CPP_SDL_E=\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+NODEP_CPP_SDL_E=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\src\SDL_error_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+NODEP_CPP_SDL_E=\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+NODEP_CPP_SDL_E=\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+NODEP_CPP_SDL_E=\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+NODEP_CPP_SDL_E=\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+NODEP_CPP_SDL_E=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\src\SDL_error_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+NODEP_CPP_SDL_E=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\src\SDL_error_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_E=\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\generic\SDL_systhread_c.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+
+NODEP_CPP_SDL_E=\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_E=\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\generic\SDL_systhread_c.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+
+NODEP_CPP_SDL_E=\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+NODEP_CPP_SDL_E=\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+NODEP_CPP_SDL_E=\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_E=\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\generic\SDL_systhread_c.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+
+NODEP_CPP_SDL_E=\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_E=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\src\SDL_error_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_E=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\src\SDL_error_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_E=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\src\SDL_error_c.h"\
+
+NODEP_CPP_SDL_E=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_E=\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\generic\SDL_systhread_c.h"\
+
+NODEP_CPP_SDL_E=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_getenv.h"\
+ "..\include\SDL_types.h"\
+ "..\src\thread\SDL_thread_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_E=\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\generic\SDL_systhread_c.h"\
+
+NODEP_CPP_SDL_E=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_getenv.h"\
+ "..\include\SDL_types.h"\
+ "..\src\thread\SDL_thread_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_E=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\generic\SDL_systhread_c.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\events\SDL_events.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_EV=\
+ "..\include\SDL_thread.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_EV=\
+ "..\include\SDL_thread.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_EV=\
+ "..\include\SDL_thread.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_EV=\
+ "..\include\SDL_thread.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_EV=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_EV=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_EV=\
+ "..\include\SDL_thread.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_EV=\
+ "..\include\SDL_thread.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_EV=\
+ "..\include\SDL_thread.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_EV=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_EV=\
+ "..\include\SDL_thread.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_EV=\
+ "..\include\SDL_thread.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_EV=\
+ "..\include\SDL_thread.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_EV=\
+ "..\include\SDL_thread.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_EV=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_EV=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_EV=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_EV=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_EV=\
+ "..\include\SDL_thread.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_EV=\
+ "..\include\SDL_thread.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_EV=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_EV=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_EV=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_getenv.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_EV=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_getenv.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_EV=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\events\SDL_expose.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_EX=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_EX=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_EX=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_EX=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_EX=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_EX=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_EX=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_EX=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_EX=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_EX=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_EX=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_EX=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_EX=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_EX=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_EX=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_EX=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_EX=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_EX=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_EX=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_EX=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_EX=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_EX=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_EX=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_EX=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_EX=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_EX=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_EX=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_EX=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_EX=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_EX=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_EX=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_EX=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_EX=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_EX=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_EX=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_EX=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_EX=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_EX=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_EX=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_EX=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_EX=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_EX=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_EX=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_EX=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_EX=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_EX=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_EX=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_EX=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_EX=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_EX=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_EX=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_EX=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\SDL_fatal.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_F=\
+ "..\..\src\SDL_fatal.h"\
+
+NODEP_CPP_SDL_F=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_F=\
+ "..\..\src\SDL_fatal.h"\
+
+NODEP_CPP_SDL_F=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_F=\
+ "..\..\src\SDL_fatal.h"\
+
+NODEP_CPP_SDL_F=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_F=\
+ "..\..\src\SDL_fatal.h"\
+
+NODEP_CPP_SDL_F=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_F=\
+ "..\..\src\SDL_fatal.h"\
+
+NODEP_CPP_SDL_F=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_F=\
+ "..\..\src\SDL_fatal.h"\
+
+NODEP_CPP_SDL_F=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_F=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\SDL_fatal.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_F=\
+ "..\..\src\SDL_fatal.h"\
+
+NODEP_CPP_SDL_F=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_F=\
+ "..\..\src\SDL_fatal.h"\
+
+NODEP_CPP_SDL_F=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_F=\
+ "..\..\src\SDL_fatal.h"\
+
+NODEP_CPP_SDL_F=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_F=\
+ "..\..\include\SDL.h"\
+ "..\..\src\SDL_fatal.h"\
+
+NODEP_CPP_SDL_F=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_F=\
+ "..\..\src\SDL_fatal.h"\
+
+NODEP_CPP_SDL_F=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_F=\
+ "..\..\src\SDL_fatal.h"\
+
+NODEP_CPP_SDL_F=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_F=\
+ "..\..\src\SDL_fatal.h"\
+
+NODEP_CPP_SDL_F=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_F=\
+ "..\..\src\SDL_fatal.h"\
+
+NODEP_CPP_SDL_F=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_F=\
+ "..\..\include\SDL.h"\
+ "..\..\src\SDL_fatal.h"\
+
+NODEP_CPP_SDL_F=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_F=\
+ "..\..\include\SDL.h"\
+ "..\..\src\SDL_fatal.h"\
+
+NODEP_CPP_SDL_F=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_F=\
+ "..\..\src\SDL_fatal.h"\
+
+NODEP_CPP_SDL_F=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_F=\
+ "..\..\src\SDL_fatal.h"\
+
+NODEP_CPP_SDL_F=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_F=\
+ "..\..\src\SDL_fatal.h"\
+
+NODEP_CPP_SDL_F=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_F=\
+ "..\..\src\SDL_fatal.h"\
+
+NODEP_CPP_SDL_F=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_F=\
+ "..\..\src\SDL_fatal.h"\
+
+NODEP_CPP_SDL_F=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_F=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\SDL_fatal.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_F=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\SDL_fatal.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_F=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\SDL_fatal.h"\
+
+NODEP_CPP_SDL_F=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_F=\
+ "..\..\include\SDL.h"\
+ "..\..\src\SDL_fatal.h"\
+
+NODEP_CPP_SDL_F=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_getenv.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_F=\
+ "..\..\include\SDL.h"\
+ "..\..\src\SDL_fatal.h"\
+
+NODEP_CPP_SDL_F=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_getenv.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_F=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\SDL_fatal.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_gamma.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_G=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_G=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_G=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_G=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_G=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_G=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_G=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_G=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_G=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\SDL_name.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\e_log.h"\
+ "..\..\src\video\e_pow.h"\
+ "..\..\src\video\e_sqrt.h"\
+ "..\..\src\video\math_private.h"\
+
+NODEP_CPP_SDL_G=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_G=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_G=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_G=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_G=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\SDL_name.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\e_log.h"\
+ "..\..\src\video\e_pow.h"\
+ "..\..\src\video\e_sqrt.h"\
+ "..\..\src\video\math_private.h"\
+
+NODEP_CPP_SDL_G=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\SDL_name.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\e_log.h"\
+ "..\..\src\video\e_pow.h"\
+ "..\..\src\video\e_sqrt.h"\
+ "..\..\src\video\math_private.h"\
+
+NODEP_CPP_SDL_G=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_G=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_G=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_G=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\SDL_syswm.h"\
+
+NODEP_CPP_SDL_G=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_G=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_name.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\e_log.h"\
+ "..\..\src\video\e_pow.h"\
+ "..\..\src\video\e_sqrt.h"\
+ "..\..\src\video\math_private.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_name.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\e_log.h"\
+ "..\..\src\video\e_pow.h"\
+ "..\..\src\video\e_sqrt.h"\
+ "..\..\src\video\math_private.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_name.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\e_log.h"\
+ "..\..\src\video\e_pow.h"\
+ "..\..\src\video\e_sqrt.h"\
+ "..\..\src\video\math_private.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_G=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_G=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_G=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_G=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\gapi\SDL_gapivideo.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_GA=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\gapi\sdl_gapivideo.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_GA=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\gapi\sdl_gapivideo.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_GA=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\gapi\sdl_gapivideo.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_GA=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\gapi\sdl_gapivideo.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_GA=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\gapi\sdl_gapivideo.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_GA=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\gapi\sdl_gapivideo.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_GA=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\gapi\sdl_gapivideo.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_GA=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\gapi\sdl_gapivideo.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_GA=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\gapi\sdl_gapivideo.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_GA=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\gapi\sdl_gapivideo.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_GA=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\gapi\sdl_gapivideo.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_GA=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\gapi\sdl_gapivideo.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\windib\SDL_dibevents_c.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\stdlib\SDL_getenv.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+NODEP_CPP_SDL_GE=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+NODEP_CPP_SDL_GE=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+NODEP_CPP_SDL_GE=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+NODEP_CPP_SDL_GE=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_GE=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_GE=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_GE=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_GE=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_GE=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_GE=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+NODEP_CPP_SDL_GE=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+NODEP_CPP_SDL_GE=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+NODEP_CPP_SDL_GE=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+NODEP_CPP_SDL_GE=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+NODEP_CPP_SDL_GE=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+NODEP_CPP_SDL_GE=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+NODEP_CPP_SDL_GE=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+NODEP_CPP_SDL_GE=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+NODEP_CPP_SDL_GE=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+NODEP_CPP_SDL_GE=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_GE=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_GE=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_GE=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_GE=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+NODEP_CPP_SDL_GE=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+NODEP_CPP_SDL_GE=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_GE=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_GE=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_GE=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_GE=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_GE=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_GE=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_GE=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_GE=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_GE=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_GE=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_GE=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_GE=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\stdlib\SDL_iconv.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_I=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_I=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_I=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_I=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_I=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_I=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_I=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_I=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_I=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_I=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_I=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_I=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\joystick\SDL_joystick.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_J=\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_J=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_J=\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_J=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_J=\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_J=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_J=\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_J=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_J=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_J=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_J=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_J=\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_J=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_J=\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_J=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_J=\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_J=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_J=\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_J=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_J=\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_J=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_J=\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_J=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_J=\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_J=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_J=\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_J=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_J=\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_J=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_J=\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_J=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_J=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_J=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_J=\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_J=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_J=\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_J=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_J=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_J=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_J=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_J=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_J=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_J=\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_J=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_J=\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_J=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_J=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\events\SDL_keyboard.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+
+NODEP_CPP_SDL_K=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+
+NODEP_CPP_SDL_K=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+
+NODEP_CPP_SDL_K=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+
+NODEP_CPP_SDL_K=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_K=\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_K=\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+
+NODEP_CPP_SDL_K=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+
+NODEP_CPP_SDL_K=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+
+NODEP_CPP_SDL_K=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+
+NODEP_CPP_SDL_K=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+
+NODEP_CPP_SDL_K=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+
+NODEP_CPP_SDL_K=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+
+NODEP_CPP_SDL_K=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+
+NODEP_CPP_SDL_K=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+
+NODEP_CPP_SDL_K=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+
+NODEP_CPP_SDL_K=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_K=\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_K=\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+
+NODEP_CPP_SDL_K=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+
+NODEP_CPP_SDL_K=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_K=\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_K=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_K=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_K=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_K=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\stdlib\SDL_malloc.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_M=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_M=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_M=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_M=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_M=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_M=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_M=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_M=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_M=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+ "..\..\..\..\usr\include\pthread.h"\
+ "..\include\SDL_config_wince.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_select_lib.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\onfig\vc_select_lib.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_M=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+ "..\..\..\..\usr\include\pthread.h"\
+ "..\include\SDL_config_wince.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_select_lib.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\onfig\vc_select_lib.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_M=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+ "..\..\..\..\usr\include\pthread.h"\
+ "..\include\SDL_config_wince.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_select_lib.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\onfig\vc_select_lib.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_M=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_M=\
+ "..\..\..\..\usr\include\malloc.h"\
+ "..\include\SDL_config_wince.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\audio\SDL_mixer.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_MI=\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_MI=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_thread.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_MI=\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_MI=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_thread.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_MI=\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_MI=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_thread.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_MI=\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_MI=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_thread.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_MI=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_MI=\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_MI=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_MI=\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_MI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_MI=\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_MI=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_thread.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_MI=\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_MI=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_thread.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_MI=\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_MI=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_thread.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_MI=\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_MI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_MI=\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_MI=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_thread.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_MI=\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_MI=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_thread.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_MI=\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_MI=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_thread.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_MI=\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_MI=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_thread.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_MI=\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_MI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_MI=\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_MI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_MI=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_MI=\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_MI=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_MI=\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_MI=\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_MI=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_thread.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_MI=\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_MI=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_thread.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_MI=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_MI=\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_MI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_MI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_MI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_MI=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_MI=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_MI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_MI=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+NODEP_CPP_SDL_MI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_MI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\audio\SDL_mixer_m68k.h"\
+ "..\..\src\audio\SDL_mixer_MMX.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+ "..\..\src\audio\SDL_sysaudio.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\audio\SDL_mixer_MMX_VC.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+NODEP_CPP_SDL_MIX=\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+NODEP_CPP_SDL_MIX=\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+NODEP_CPP_SDL_MIX=\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+NODEP_CPP_SDL_MIX=\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+NODEP_CPP_SDL_MIX=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+NODEP_CPP_SDL_MIX=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+NODEP_CPP_SDL_MIX=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+NODEP_CPP_SDL_MIX=\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+NODEP_CPP_SDL_MIX=\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+NODEP_CPP_SDL_MIX=\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+NODEP_CPP_SDL_MIX=\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+NODEP_CPP_SDL_MIX=\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+NODEP_CPP_SDL_MIX=\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+NODEP_CPP_SDL_MIX=\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+NODEP_CPP_SDL_MIX=\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+NODEP_CPP_SDL_MIX=\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+NODEP_CPP_SDL_MIX=\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+NODEP_CPP_SDL_MIX=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+NODEP_CPP_SDL_MIX=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+NODEP_CPP_SDL_MIX=\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+NODEP_CPP_SDL_MIX=\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+NODEP_CPP_SDL_MIX=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+NODEP_CPP_SDL_MIX=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+NODEP_CPP_SDL_MIX=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+NODEP_CPP_SDL_MIX=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_MIX=\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\src\audio\SDL_mixer_MMX_VC.h"\
+
+NODEP_CPP_SDL_MIX=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\events\SDL_mouse.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+
+NODEP_CPP_SDL_MO=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+
+NODEP_CPP_SDL_MO=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+
+NODEP_CPP_SDL_MO=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+
+NODEP_CPP_SDL_MO=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_MO=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_MO=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+
+NODEP_CPP_SDL_MO=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+
+NODEP_CPP_SDL_MO=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+
+NODEP_CPP_SDL_MO=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+
+NODEP_CPP_SDL_MO=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+
+NODEP_CPP_SDL_MO=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+
+NODEP_CPP_SDL_MO=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+
+NODEP_CPP_SDL_MO=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+
+NODEP_CPP_SDL_MO=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+
+NODEP_CPP_SDL_MO=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+
+NODEP_CPP_SDL_MO=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_MO=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_MO=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+
+NODEP_CPP_SDL_MO=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+
+NODEP_CPP_SDL_MO=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_MO=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_MO=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_MO=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_MO=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_MO=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\dummy\SDL_nullevents.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_N=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\dummy\SDL_nullevents_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_N=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\dummy\SDL_nullevents_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_N=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\dummy\SDL_nullevents_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_N=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\dummy\SDL_nullevents_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_N=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\dummy\SDL_nullevents_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_N=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\dummy\SDL_nullevents_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_N=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\dummy\SDL_nullevents_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_N=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\dummy\SDL_nullevents_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_N=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\dummy\SDL_nullevents_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_N=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\dummy\SDL_nullevents_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_N=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\dummy\SDL_nullevents_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_N=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\dummy\SDL_nullevents_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\dummy\SDL_nullmouse.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_NU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\dummy\SDL_nullmouse_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_NU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\dummy\SDL_nullmouse_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_NU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\dummy\SDL_nullmouse_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_NU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\dummy\SDL_nullmouse_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_NU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\dummy\SDL_nullmouse_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_NU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\dummy\SDL_nullmouse_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_NU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\dummy\SDL_nullmouse_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_NU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\dummy\SDL_nullmouse_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_NU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\dummy\SDL_nullmouse_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_NU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\dummy\SDL_nullmouse_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_NU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\dummy\SDL_nullmouse_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_NU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\dummy\SDL_nullmouse_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\dummy\SDL_nullvideo.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_NUL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\dummy\SDL_nullevents_c.h"\
+ "..\..\src\video\dummy\SDL_nullmouse_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_NUL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\dummy\SDL_nullevents_c.h"\
+ "..\..\src\video\dummy\SDL_nullmouse_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_NUL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\dummy\SDL_nullevents_c.h"\
+ "..\..\src\video\dummy\SDL_nullmouse_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_NUL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\dummy\SDL_nullevents_c.h"\
+ "..\..\src\video\dummy\SDL_nullmouse_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_NUL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\dummy\SDL_nullevents_c.h"\
+ "..\..\src\video\dummy\SDL_nullmouse_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_NUL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\dummy\SDL_nullevents_c.h"\
+ "..\..\src\video\dummy\SDL_nullmouse_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_NUL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\dummy\SDL_nullevents_c.h"\
+ "..\..\src\video\dummy\SDL_nullmouse_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_NUL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\dummy\SDL_nullevents_c.h"\
+ "..\..\src\video\dummy\SDL_nullmouse_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_NUL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\dummy\SDL_nullevents_c.h"\
+ "..\..\src\video\dummy\SDL_nullmouse_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_NUL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\dummy\SDL_nullevents_c.h"\
+ "..\..\src\video\dummy\SDL_nullmouse_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_NUL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\dummy\SDL_nullevents_c.h"\
+ "..\..\src\video\dummy\SDL_nullmouse_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_NUL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\dummy\SDL_nullevents_c.h"\
+ "..\..\src\video\dummy\SDL_nullmouse_c.h"\
+ "..\..\src\video\dummy\SDL_nullvideo.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_pixels.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_P=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_P=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_P=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_P=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_P=\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_P=\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_P=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_P=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_P=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_P=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_P=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_P=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_P=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_P=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_P=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_P=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_P=\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_P=\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_P=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_P=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_P=\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_P=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_P=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_P=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_P=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\stdlib\SDL_qsort.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+NODEP_CPP_SDL_Q=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+NODEP_CPP_SDL_Q=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+NODEP_CPP_SDL_Q=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+NODEP_CPP_SDL_Q=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_Q=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_Q=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_Q=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_Q=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_Q=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_Q=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+NODEP_CPP_SDL_Q=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+NODEP_CPP_SDL_Q=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+NODEP_CPP_SDL_Q=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+NODEP_CPP_SDL_Q=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+NODEP_CPP_SDL_Q=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+NODEP_CPP_SDL_Q=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+NODEP_CPP_SDL_Q=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+NODEP_CPP_SDL_Q=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+NODEP_CPP_SDL_Q=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+NODEP_CPP_SDL_Q=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_Q=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_Q=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_Q=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_Q=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+NODEP_CPP_SDL_Q=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+NODEP_CPP_SDL_Q=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_Q=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_Q=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_Q=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_Q=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_Q=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_Q=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_Q=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_Q=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_Q=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_Q=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_Q=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_Q=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\events\SDL_quit.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_QU=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_QU=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_QU=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_QU=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_QU=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_QU=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_QU=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_QU=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_QU=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_QU=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_QU=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_QU=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_QU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_QU=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_QU=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_QU=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_QU=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_QU=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_QU=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_QU=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_QU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_QU=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_QU=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_QU=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_QU=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_QU=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_QU=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_QU=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_QU=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_QU=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_QU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_QU=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_QU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_QU=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_QU=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_QU=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_QU=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_QU=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_QU=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_QU=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_QU=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_QU=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_QU=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_QU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_QU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_QU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_QU=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_QU=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_QU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_QU=\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_QU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_QU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\events\SDL_resize.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_R=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_R=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_R=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_R=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_R=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_R=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_R=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_R=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_R=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_R=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_R=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_R=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_R=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_R=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_R=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_R=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_R=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_R=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_R=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+
+NODEP_CPP_SDL_R=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_R=\
+ ".\DL_active.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_R=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_R=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_R=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_R=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_RLEaccel.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_RL=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_RL=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_RL=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_RL=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_RL=\
+ "..\..\src\video\SDL_memops.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_RL=\
+ "..\..\src\video\SDL_memops.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_RL=\
+ "..\..\src\video\SDL_memops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_RL=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_RL=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_RL=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_RL=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_RL=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_RL=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_RL=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_RL=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_RL=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_RL=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_RL=\
+ "..\..\src\video\SDL_memops.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_RL=\
+ "..\..\src\video\SDL_memops.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_RL=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_RL=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_RL=\
+ "..\..\src\video\SDL_memops.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_RL=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_RL=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_RL=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_RL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\mmx.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_RL=\
+ "..\..\src\video\SDL_memops.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\file\SDL_rwops.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_RW=\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_RW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_rwops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_RW=\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_RW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_rwops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_RW=\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_RW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_rwops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_RW=\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_RW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_rwops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_RW=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_RW=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_RW=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_RW=\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_RW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_rwops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_RW=\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_RW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_rwops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_RW=\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_RW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_rwops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+NODEP_CPP_SDL_RW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_RW=\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_RW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_rwops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_RW=\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_RW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_rwops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_RW=\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_RW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_rwops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_RW=\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_RW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_rwops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+NODEP_CPP_SDL_RW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+NODEP_CPP_SDL_RW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_RW=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_RW=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_RW=\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_RW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_rwops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_RW=\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_RW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_rwops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_RW=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_RW=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_RW=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_RW=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_RW=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_RW=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_RW=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_RW=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_RW=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_RW=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_stretch.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+NODEP_CPP_SDL_S=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+NODEP_CPP_SDL_S=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+NODEP_CPP_SDL_S=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+NODEP_CPP_SDL_S=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_S=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+NODEP_CPP_SDL_S=\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_S=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+NODEP_CPP_SDL_S=\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_S=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+NODEP_CPP_SDL_S=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+NODEP_CPP_SDL_S=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+NODEP_CPP_SDL_S=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+NODEP_CPP_SDL_S=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+NODEP_CPP_SDL_S=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+NODEP_CPP_SDL_S=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+NODEP_CPP_SDL_S=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+NODEP_CPP_SDL_S=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+NODEP_CPP_SDL_S=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+NODEP_CPP_SDL_S=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_S=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+NODEP_CPP_SDL_S=\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_S=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+NODEP_CPP_SDL_S=\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+NODEP_CPP_SDL_S=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+NODEP_CPP_SDL_S=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_S=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+NODEP_CPP_SDL_S=\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_S=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_S=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_S=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+NODEP_CPP_SDL_S=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_S=\
+ "..\..\include\SDL_endian.h"\
+
+NODEP_CPP_SDL_S=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_S=\
+ "..\..\include\SDL_endian.h"\
+
+NODEP_CPP_SDL_S=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_S=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\stdlib\SDL_string.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+NODEP_CPP_SDL_ST=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+NODEP_CPP_SDL_ST=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+NODEP_CPP_SDL_ST=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+NODEP_CPP_SDL_ST=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_ST=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_ST=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_ST=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_ST=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_ST=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_ST=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+NODEP_CPP_SDL_ST=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+NODEP_CPP_SDL_ST=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+NODEP_CPP_SDL_ST=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+NODEP_CPP_SDL_ST=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+NODEP_CPP_SDL_ST=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+NODEP_CPP_SDL_ST=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+NODEP_CPP_SDL_ST=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+NODEP_CPP_SDL_ST=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+NODEP_CPP_SDL_ST=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+NODEP_CPP_SDL_ST=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_ST=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_ST=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_ST=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_ST=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+NODEP_CPP_SDL_ST=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+NODEP_CPP_SDL_ST=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_ST=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_ST=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_ST=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_ST=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_ST=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_ST=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_ST=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_ST=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_ST=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_ST=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_ST=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_ST=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_surface.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_SU=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_SU=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_SU=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_SU=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_SU=\
+ "..\..\src\video\SDL_memops.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_SU=\
+ "..\..\src\video\SDL_memops.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_SU=\
+ "..\..\src\video\SDL_memops.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_SU=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_SU=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_SU=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_SU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_SU=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_SU=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_SU=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_SU=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_SU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_SU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_SU=\
+ "..\..\src\video\SDL_memops.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_SU=\
+ "..\..\src\video\SDL_memops.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_SU=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+
+NODEP_CPP_SDL_SU=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_SU=\
+ "..\..\src\video\SDL_memops.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_SU=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_SU=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_SU=\
+ "..\..\src\video\SDL_memops.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_SU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_leaks.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_RLEaccel_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_SU=\
+ "..\..\src\video\SDL_memops.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\cdrom\dummy\SDL_syscdrom.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_SY=\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+NODEP_CPP_SDL_SY=\
+ ".\DL_cdrom.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_SY=\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+NODEP_CPP_SDL_SY=\
+ ".\DL_cdrom.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_SY=\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+NODEP_CPP_SDL_SY=\
+ ".\DL_cdrom.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_SY=\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+NODEP_CPP_SDL_SY=\
+ ".\DL_cdrom.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_SY=\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+NODEP_CPP_SDL_SY=\
+ ".\DL_cdrom.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_SY=\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+NODEP_CPP_SDL_SY=\
+ ".\DL_cdrom.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_SY=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_SY=\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+NODEP_CPP_SDL_SY=\
+ ".\DL_cdrom.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_SY=\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+NODEP_CPP_SDL_SY=\
+ ".\DL_cdrom.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_SY=\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+NODEP_CPP_SDL_SY=\
+ ".\DL_cdrom.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_SY=\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+NODEP_CPP_SDL_SY=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_SY=\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+NODEP_CPP_SDL_SY=\
+ ".\DL_cdrom.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_SY=\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+NODEP_CPP_SDL_SY=\
+ ".\DL_cdrom.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_SY=\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+NODEP_CPP_SDL_SY=\
+ ".\DL_cdrom.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_SY=\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+NODEP_CPP_SDL_SY=\
+ ".\DL_cdrom.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_SY=\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+NODEP_CPP_SDL_SY=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_SY=\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+NODEP_CPP_SDL_SY=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_SY=\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+NODEP_CPP_SDL_SY=\
+ ".\DL_cdrom.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_SY=\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+NODEP_CPP_SDL_SY=\
+ ".\DL_cdrom.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_SY=\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+NODEP_CPP_SDL_SY=\
+ ".\DL_cdrom.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_SY=\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+NODEP_CPP_SDL_SY=\
+ ".\DL_cdrom.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_SY=\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+NODEP_CPP_SDL_SY=\
+ ".\DL_cdrom.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_SY=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_SY=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_SY=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+NODEP_CPP_SDL_SY=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_SY=\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+NODEP_CPP_SDL_SY=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_SY=\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+NODEP_CPP_SDL_SY=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_SY=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\cdrom\SDL_syscdrom.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\thread\generic\SDL_syscond.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+NODEP_CPP_SDL_SYS=\
+ "..\include\SDL_thread.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+NODEP_CPP_SDL_SYS=\
+ "..\include\SDL_thread.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+NODEP_CPP_SDL_SYS=\
+ "..\include\SDL_thread.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+NODEP_CPP_SDL_SYS=\
+ "..\include\SDL_thread.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_SYS=\
+ "..\..\include\SDL_thread.h"\
+
+NODEP_CPP_SDL_SYS=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_SYS=\
+ "..\..\include\SDL_thread.h"\
+
+NODEP_CPP_SDL_SYS=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_SYS=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+NODEP_CPP_SDL_SYS=\
+ "..\include\SDL_thread.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+NODEP_CPP_SDL_SYS=\
+ "..\include\SDL_thread.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+NODEP_CPP_SDL_SYS=\
+ "..\include\SDL_thread.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+NODEP_CPP_SDL_SYS=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+NODEP_CPP_SDL_SYS=\
+ "..\include\SDL_thread.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+NODEP_CPP_SDL_SYS=\
+ "..\include\SDL_thread.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+NODEP_CPP_SDL_SYS=\
+ "..\include\SDL_thread.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+NODEP_CPP_SDL_SYS=\
+ "..\include\SDL_thread.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+NODEP_CPP_SDL_SYS=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+NODEP_CPP_SDL_SYS=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_SYS=\
+ "..\..\include\SDL_thread.h"\
+
+NODEP_CPP_SDL_SYS=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_SYS=\
+ "..\..\include\SDL_thread.h"\
+
+NODEP_CPP_SDL_SYS=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+NODEP_CPP_SDL_SYS=\
+ "..\include\SDL_thread.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+NODEP_CPP_SDL_SYS=\
+ "..\include\SDL_thread.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_SYS=\
+ "..\..\include\SDL_thread.h"\
+
+NODEP_CPP_SDL_SYS=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_SYS=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_SYS=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_SYS=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+
+NODEP_CPP_SDL_SYS=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_SYS=\
+ "..\..\include\SDL_thread.h"\
+
+NODEP_CPP_SDL_SYS=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_SYS=\
+ "..\..\include\SDL_thread.h"\
+
+NODEP_CPP_SDL_SYS=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_SYS=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_types.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\wincommon\SDL_sysevents.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+NODEP_CPP_SDL_SYSE=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+NODEP_CPP_SDL_SYSE=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+NODEP_CPP_SDL_SYSE=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+NODEP_CPP_SDL_SYSE=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+NODEP_CPP_SDL_SYSE=\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+NODEP_CPP_SDL_SYSE=\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+NODEP_CPP_SDL_SYSE=\
+ "..\..\src\video\wincommon\SDL_gapivideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+NODEP_CPP_SDL_SYSE=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+NODEP_CPP_SDL_SYSE=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+NODEP_CPP_SDL_SYSE=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\gapi\sdl_gapivideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+NODEP_CPP_SDL_SYSE=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+NODEP_CPP_SDL_SYSE=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+NODEP_CPP_SDL_SYSE=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+NODEP_CPP_SDL_SYSE=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+NODEP_CPP_SDL_SYSE=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\gapi\sdl_gapivideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+NODEP_CPP_SDL_SYSE=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\gapi\sdl_gapivideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+NODEP_CPP_SDL_SYSE=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+NODEP_CPP_SDL_SYSE=\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+NODEP_CPP_SDL_SYSE=\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+NODEP_CPP_SDL_SYSE=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+NODEP_CPP_SDL_SYSE=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+NODEP_CPP_SDL_SYSE=\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\gapi\sdl_gapivideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\gapi\sdl_gapivideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\gapi\sdl_gapivideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+NODEP_CPP_SDL_SYSE=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+NODEP_CPP_SDL_SYSE=\
+ "..\..\src\video\wincommon\SDL_gapivideo.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_getenv.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\gapi\sdl_gapivideo.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+NODEP_CPP_SDL_SYSE=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_getenv.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_SYSE=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\gapi\sdl_gapivideo.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\wmmsg.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\joystick\dummy\SDL_sysjoystick.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_SYSJ=\
+ ".\DL_error.h"\
+ ".\DL_joystick.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_SYSJ=\
+ ".\DL_error.h"\
+ ".\DL_joystick.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_SYSJ=\
+ ".\DL_error.h"\
+ ".\DL_joystick.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_SYSJ=\
+ ".\DL_error.h"\
+ ".\DL_joystick.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_SYSJ=\
+ ".\DL_error.h"\
+ ".\DL_joystick.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_SYSJ=\
+ ".\DL_error.h"\
+ ".\DL_joystick.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_SYSJ=\
+ ".\DL_error.h"\
+ ".\DL_joystick.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_SYSJ=\
+ ".\DL_error.h"\
+ ".\DL_joystick.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_SYSJ=\
+ ".\DL_error.h"\
+ ".\DL_joystick.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_SYSJ=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_SYSJ=\
+ ".\DL_error.h"\
+ ".\DL_joystick.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_SYSJ=\
+ ".\DL_error.h"\
+ ".\DL_joystick.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_SYSJ=\
+ ".\DL_error.h"\
+ ".\DL_joystick.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_SYSJ=\
+ ".\DL_error.h"\
+ ".\DL_joystick.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_SYSJ=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_SYSJ=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_SYSJ=\
+ ".\DL_error.h"\
+ ".\DL_joystick.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_SYSJ=\
+ ".\DL_error.h"\
+ ".\DL_joystick.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_SYSJ=\
+ ".\DL_error.h"\
+ ".\DL_joystick.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_SYSJ=\
+ ".\DL_error.h"\
+ ".\DL_joystick.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_SYSJ=\
+ ".\DL_error.h"\
+ ".\DL_joystick.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_SYSJ=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_SYSJ=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+NODEP_CPP_SDL_SYSJ=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_SYSJ=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\joystick\SDL_joystick_c.h"\
+ "..\..\src\joystick\SDL_sysjoystick.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\loadso\win32\SDL_sysloadso.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+NODEP_CPP_SDL_SYSL=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+NODEP_CPP_SDL_SYSL=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+NODEP_CPP_SDL_SYSL=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+NODEP_CPP_SDL_SYSL=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_SYSL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_SYSL=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_SYSL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_SYSL=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_SYSL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_SYSL=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+NODEP_CPP_SDL_SYSL=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+NODEP_CPP_SDL_SYSL=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+NODEP_CPP_SDL_SYSL=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+NODEP_CPP_SDL_SYSL=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+NODEP_CPP_SDL_SYSL=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+NODEP_CPP_SDL_SYSL=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+NODEP_CPP_SDL_SYSL=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+NODEP_CPP_SDL_SYSL=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+NODEP_CPP_SDL_SYSL=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+NODEP_CPP_SDL_SYSL=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_SYSL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_SYSL=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_SYSL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_SYSL=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+NODEP_CPP_SDL_SYSL=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+NODEP_CPP_SDL_SYSL=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_SYSL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_SYSL=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_SYSL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_SYSL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_SYSL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_SYSL=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_SYSL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_SYSL=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_SYSL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_SYSL=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_SYSL=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_SYSL=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\wincommon\SDL_sysmouse.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+NODEP_CPP_SDL_SYSM=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+NODEP_CPP_SDL_SYSM=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+NODEP_CPP_SDL_SYSM=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+NODEP_CPP_SDL_SYSM=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+NODEP_CPP_SDL_SYSM=\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+NODEP_CPP_SDL_SYSM=\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+NODEP_CPP_SDL_SYSM=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+NODEP_CPP_SDL_SYSM=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+NODEP_CPP_SDL_SYSM=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+NODEP_CPP_SDL_SYSM=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+NODEP_CPP_SDL_SYSM=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+NODEP_CPP_SDL_SYSM=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+NODEP_CPP_SDL_SYSM=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+NODEP_CPP_SDL_SYSM=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+NODEP_CPP_SDL_SYSM=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+NODEP_CPP_SDL_SYSM=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+NODEP_CPP_SDL_SYSM=\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+NODEP_CPP_SDL_SYSM=\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+NODEP_CPP_SDL_SYSM=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+NODEP_CPP_SDL_SYSM=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+NODEP_CPP_SDL_SYSM=\
+ ".\DL_active.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+NODEP_CPP_SDL_SYSM=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+NODEP_CPP_SDL_SYSM=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+NODEP_CPP_SDL_SYSM=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_SYSM=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_sysmouse_c.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\thread\win32\SDL_sysmutex.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_SYSMU=\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_SYSMU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_SYSMU=\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_SYSMU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_SYSMU=\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_SYSMU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_SYSMU=\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_SYSMU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_SYSMU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_SYSMU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_SYSMU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_SYSMU=\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_SYSMU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_SYSMU=\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_SYSMU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_SYSMU=\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_SYSMU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+NODEP_CPP_SDL_SYSMU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_SYSMU=\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_SYSMU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_SYSMU=\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_SYSMU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_SYSMU=\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_SYSMU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_SYSMU=\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_SYSMU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+NODEP_CPP_SDL_SYSMU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+NODEP_CPP_SDL_SYSMU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_SYSMU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_SYSMU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_SYSMU=\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_SYSMU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_SYSMU=\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_SDL_SYSMU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_SYSMU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_SYSMU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_SYSMU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_SYSMU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_SYSMU=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_SYSMU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_SYSMU=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_SYSMU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_SYSMU=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_SYSMU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_types.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\thread\win32\SDL_syssem.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+NODEP_CPP_SDL_SYSS=\
+ "..\include\SDL_thread.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+NODEP_CPP_SDL_SYSS=\
+ "..\include\SDL_thread.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+NODEP_CPP_SDL_SYSS=\
+ "..\include\SDL_thread.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+NODEP_CPP_SDL_SYSS=\
+ "..\include\SDL_thread.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+NODEP_CPP_SDL_SYSS=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+NODEP_CPP_SDL_SYSS=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+NODEP_CPP_SDL_SYSS=\
+ "..\include\SDL_thread.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+NODEP_CPP_SDL_SYSS=\
+ "..\include\SDL_thread.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+NODEP_CPP_SDL_SYSS=\
+ "..\include\SDL_thread.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+NODEP_CPP_SDL_SYSS=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+NODEP_CPP_SDL_SYSS=\
+ "..\include\SDL_thread.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+NODEP_CPP_SDL_SYSS=\
+ "..\include\SDL_thread.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+NODEP_CPP_SDL_SYSS=\
+ "..\include\SDL_thread.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+NODEP_CPP_SDL_SYSS=\
+ "..\include\SDL_thread.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+NODEP_CPP_SDL_SYSS=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+NODEP_CPP_SDL_SYSS=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+NODEP_CPP_SDL_SYSS=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+NODEP_CPP_SDL_SYSS=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+NODEP_CPP_SDL_SYSS=\
+ "..\include\SDL_thread.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+NODEP_CPP_SDL_SYSS=\
+ "..\include\SDL_thread.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+NODEP_CPP_SDL_SYSS=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+NODEP_CPP_SDL_SYSS=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+NODEP_CPP_SDL_SYSS=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+NODEP_CPP_SDL_SYSS=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_SYSS=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\thread\win32\SDL_systhread.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_SYST=\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ "..\src\thread\win32\SDL_systhread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_SYST=\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ "..\src\thread\win32\SDL_systhread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_SYST=\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ "..\src\thread\win32\SDL_systhread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_SYST=\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ "..\src\thread\win32\SDL_systhread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+ "..\..\src\thread\win32\SDL_systhread_c.h"\
+
+NODEP_CPP_SDL_SYST=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+ "..\..\src\thread\win32\SDL_systhread_c.h"\
+
+NODEP_CPP_SDL_SYST=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+ "..\..\src\thread\win32\SDL_systhread_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_SYST=\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ "..\src\thread\win32\SDL_systhread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_SYST=\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ "..\src\thread\win32\SDL_systhread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_SYST=\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ "..\src\thread\win32\SDL_systhread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+
+NODEP_CPP_SDL_SYST=\
+ "..\..\src\thread\amigaos\mydebug.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\amigaos\SDL_systhread_c.h"\
+ "..\src\thread\beos\SDL_systhread_c.h"\
+ "..\src\thread\dc\SDL_systhread_c.h"\
+ "..\src\thread\epoc\SDL_systhread_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\irix\SDL_systhread_c.h"\
+ "..\src\thread\os2\SDL_systhread_c.h"\
+ "..\src\thread\pth\SDL_systhread_c.h"\
+ "..\src\thread\pthread\SDL_systhread_c.h"\
+ "..\src\thread\win32\SDL_systhread_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_SYST=\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ "..\src\thread\win32\SDL_systhread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_SYST=\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ "..\src\thread\win32\SDL_systhread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_SYST=\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ "..\src\thread\win32\SDL_systhread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_SYST=\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ "..\src\thread\win32\SDL_systhread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+
+NODEP_CPP_SDL_SYST=\
+ "..\..\src\thread\amigaos\mydebug.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\amigaos\SDL_systhread_c.h"\
+ "..\src\thread\beos\SDL_systhread_c.h"\
+ "..\src\thread\dc\SDL_systhread_c.h"\
+ "..\src\thread\epoc\SDL_systhread_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\irix\SDL_systhread_c.h"\
+ "..\src\thread\os2\SDL_systhread_c.h"\
+ "..\src\thread\pth\SDL_systhread_c.h"\
+ "..\src\thread\pthread\SDL_systhread_c.h"\
+ "..\src\thread\win32\SDL_systhread_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+
+NODEP_CPP_SDL_SYST=\
+ "..\..\src\thread\amigaos\mydebug.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\amigaos\SDL_systhread_c.h"\
+ "..\src\thread\beos\SDL_systhread_c.h"\
+ "..\src\thread\dc\SDL_systhread_c.h"\
+ "..\src\thread\epoc\SDL_systhread_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\irix\SDL_systhread_c.h"\
+ "..\src\thread\os2\SDL_systhread_c.h"\
+ "..\src\thread\pth\SDL_systhread_c.h"\
+ "..\src\thread\pthread\SDL_systhread_c.h"\
+ "..\src\thread\win32\SDL_systhread_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+ "..\..\src\thread\win32\SDL_systhread_c.h"\
+
+NODEP_CPP_SDL_SYST=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+ "..\..\src\thread\win32\SDL_systhread_c.h"\
+
+NODEP_CPP_SDL_SYST=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_SYST=\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ "..\src\thread\win32\SDL_systhread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_SYST=\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ "..\src\thread\win32\SDL_systhread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+ "..\..\src\thread\win32\SDL_systhread_c.h"\
+
+NODEP_CPP_SDL_SYST=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\amigaos\SDL_systhread_c.h"\
+ "..\..\src\thread\beos\SDL_systhread_c.h"\
+ "..\..\src\thread\dc\SDL_systhread_c.h"\
+ "..\..\src\thread\epoc\SDL_systhread_c.h"\
+ "..\..\src\thread\generic\SDL_systhread_c.h"\
+ "..\..\src\thread\irix\SDL_systhread_c.h"\
+ "..\..\src\thread\os2\SDL_systhread_c.h"\
+ "..\..\src\thread\pth\SDL_systhread_c.h"\
+ "..\..\src\thread\pthread\SDL_systhread_c.h"\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+ "..\..\src\thread\win32\SDL_systhread_c.h"\
+
+NODEP_CPP_SDL_SYST=\
+ "..\..\src\thread\amigaos\mydebug.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\amigaos\SDL_systhread_c.h"\
+ "..\..\src\thread\beos\SDL_systhread_c.h"\
+ "..\..\src\thread\dc\SDL_systhread_c.h"\
+ "..\..\src\thread\epoc\SDL_systhread_c.h"\
+ "..\..\src\thread\generic\SDL_systhread_c.h"\
+ "..\..\src\thread\irix\SDL_systhread_c.h"\
+ "..\..\src\thread\os2\SDL_systhread_c.h"\
+ "..\..\src\thread\pth\SDL_systhread_c.h"\
+ "..\..\src\thread\pthread\SDL_systhread_c.h"\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+ "..\..\src\thread\win32\SDL_systhread_c.h"\
+
+NODEP_CPP_SDL_SYST=\
+ "..\..\src\thread\amigaos\mydebug.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\amigaos\SDL_systhread_c.h"\
+ "..\..\src\thread\beos\SDL_systhread_c.h"\
+ "..\..\src\thread\dc\SDL_systhread_c.h"\
+ "..\..\src\thread\epoc\SDL_systhread_c.h"\
+ "..\..\src\thread\generic\SDL_systhread_c.h"\
+ "..\..\src\thread\irix\SDL_systhread_c.h"\
+ "..\..\src\thread\os2\SDL_systhread_c.h"\
+ "..\..\src\thread\pth\SDL_systhread_c.h"\
+ "..\..\src\thread\pthread\SDL_systhread_c.h"\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+ "..\..\src\thread\win32\SDL_systhread_c.h"\
+
+NODEP_CPP_SDL_SYST=\
+ "..\..\..\..\usr\include\pthread.h"\
+ "..\..\src\thread\amigaos\mydebug.h"\
+ "..\include\SDL_config_wince.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_select_lib.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\onfig\vc_select_lib.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\win32\SDL_systhread_c.h"\
+
+NODEP_CPP_SDL_SYST=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_types.h"\
+ "..\src\thread\SDL_thread_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\win32\SDL_systhread_c.h"\
+
+NODEP_CPP_SDL_SYST=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_types.h"\
+ "..\src\thread\SDL_thread_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_SYST=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+ "..\..\src\thread\win32\SDL_systhread_c.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\timer\wince\SDL_systimer.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_SYSTI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_timer.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_SYSTI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_timer.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_SYSTI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_timer.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_SYSTI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_timer.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_SYSTI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_timer.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_SYSTI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_timer.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_SYSTI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_timer.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_SYSTI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_timer.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_SYSTI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_timer.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_SYSTI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_timer.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_SYSTI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_timer.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_SYSTI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_timer.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_SYSTI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_timer.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_SYSTI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_timer.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_SYSTI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_timer.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_SYSTI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_timer.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_SYSTI=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_SYSTI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_SYSTI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_SYSTI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\wincommon\SDL_syswm.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_SYSW=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_SYSW=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_SYSW=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_SYSW=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_SYSW=\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_SYSW=\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_SYSW=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_SYSW=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_SYSW=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_SYSW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_SYSW=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_SYSW=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_SYSW=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_SYSW=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_SYSW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_SYSW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_SYSW=\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_SYSW=\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_SYSW=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_SYSW=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_SYSW=\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_SYSW=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_SYSW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_SYSW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_SYSW=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_syswm_c.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\thread\SDL_thread.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_T=\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_T=\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_T=\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_T=\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_T=\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_T=\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_T=\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_T=\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_T=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\generic\SDL_systhread_c.h"\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+
+NODEP_CPP_SDL_T=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_T=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\generic\SDL_systhread_c.h"\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+
+NODEP_CPP_SDL_T=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_T=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\generic\SDL_systhread_c.h"\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_T=\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_T=\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_T=\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_T=\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_T=\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_T=\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_T=\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+
+NODEP_CPP_SDL_T=\
+ "..\..\src\thread\amigaos\mydebug.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\amigaos\SDL_systhread_c.h"\
+ "..\src\thread\beos\SDL_systhread_c.h"\
+ "..\src\thread\dc\SDL_systhread_c.h"\
+ "..\src\thread\epoc\SDL_systhread_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\irix\SDL_systhread_c.h"\
+ "..\src\thread\os2\SDL_systhread_c.h"\
+ "..\src\thread\pth\SDL_systhread_c.h"\
+ "..\src\thread\pthread\SDL_systhread_c.h"\
+ "..\src\thread\win32\SDL_systhread_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_T=\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_T=\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_T=\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_T=\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_T=\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_T=\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_T=\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_T=\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_T=\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+
+NODEP_CPP_SDL_T=\
+ "..\..\src\thread\amigaos\mydebug.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\amigaos\SDL_systhread_c.h"\
+ "..\src\thread\beos\SDL_systhread_c.h"\
+ "..\src\thread\dc\SDL_systhread_c.h"\
+ "..\src\thread\epoc\SDL_systhread_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\irix\SDL_systhread_c.h"\
+ "..\src\thread\os2\SDL_systhread_c.h"\
+ "..\src\thread\pth\SDL_systhread_c.h"\
+ "..\src\thread\pthread\SDL_systhread_c.h"\
+ "..\src\thread\win32\SDL_systhread_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_T=\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+
+NODEP_CPP_SDL_T=\
+ "..\..\src\thread\amigaos\mydebug.h"\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\amigaos\SDL_systhread_c.h"\
+ "..\src\thread\beos\SDL_systhread_c.h"\
+ "..\src\thread\dc\SDL_systhread_c.h"\
+ "..\src\thread\epoc\SDL_systhread_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\irix\SDL_systhread_c.h"\
+ "..\src\thread\os2\SDL_systhread_c.h"\
+ "..\src\thread\pth\SDL_systhread_c.h"\
+ "..\src\thread\pthread\SDL_systhread_c.h"\
+ "..\src\thread\win32\SDL_systhread_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_T=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\generic\SDL_systhread_c.h"\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+
+NODEP_CPP_SDL_T=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_T=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\generic\SDL_systhread_c.h"\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+
+NODEP_CPP_SDL_T=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_T=\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_T=\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_T=\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_T=\
+ "..\include\SDL_thread.h"\
+ "..\src\SDL_error_c.h"\
+ "..\src\thread\generic\SDL_systhread_c.h"\
+ "..\src\thread\SDL_thread_c.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_T=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\generic\SDL_systhread_c.h"\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+
+NODEP_CPP_SDL_T=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_T=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\amigaos\SDL_systhread_c.h"\
+ "..\..\src\thread\beos\SDL_systhread_c.h"\
+ "..\..\src\thread\dc\SDL_systhread_c.h"\
+ "..\..\src\thread\epoc\SDL_systhread_c.h"\
+ "..\..\src\thread\generic\SDL_systhread_c.h"\
+ "..\..\src\thread\irix\SDL_systhread_c.h"\
+ "..\..\src\thread\os2\SDL_systhread_c.h"\
+ "..\..\src\thread\pth\SDL_systhread_c.h"\
+ "..\..\src\thread\pthread\SDL_systhread_c.h"\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+ "..\..\src\thread\win32\SDL_systhread_c.h"\
+
+NODEP_CPP_SDL_T=\
+ "..\..\src\thread\amigaos\mydebug.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_T=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\amigaos\SDL_systhread_c.h"\
+ "..\..\src\thread\beos\SDL_systhread_c.h"\
+ "..\..\src\thread\dc\SDL_systhread_c.h"\
+ "..\..\src\thread\epoc\SDL_systhread_c.h"\
+ "..\..\src\thread\generic\SDL_systhread_c.h"\
+ "..\..\src\thread\irix\SDL_systhread_c.h"\
+ "..\..\src\thread\os2\SDL_systhread_c.h"\
+ "..\..\src\thread\pth\SDL_systhread_c.h"\
+ "..\..\src\thread\pthread\SDL_systhread_c.h"\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+ "..\..\src\thread\win32\SDL_systhread_c.h"\
+
+NODEP_CPP_SDL_T=\
+ "..\..\src\thread\amigaos\mydebug.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_T=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\amigaos\SDL_systhread_c.h"\
+ "..\..\src\thread\beos\SDL_systhread_c.h"\
+ "..\..\src\thread\dc\SDL_systhread_c.h"\
+ "..\..\src\thread\epoc\SDL_systhread_c.h"\
+ "..\..\src\thread\generic\SDL_systhread_c.h"\
+ "..\..\src\thread\irix\SDL_systhread_c.h"\
+ "..\..\src\thread\os2\SDL_systhread_c.h"\
+ "..\..\src\thread\pth\SDL_systhread_c.h"\
+ "..\..\src\thread\pthread\SDL_systhread_c.h"\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+ "..\..\src\thread\win32\SDL_systhread_c.h"\
+
+NODEP_CPP_SDL_T=\
+ "..\..\..\..\usr\include\pthread.h"\
+ "..\..\src\thread\amigaos\mydebug.h"\
+ "..\include\SDL_config_wince.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_select_lib.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\onfig\vc_select_lib.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_T=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\generic\SDL_systhread_c.h"\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_T=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_types.h"\
+ "..\src\thread\SDL_thread_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_T=\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\generic\SDL_systhread_c.h"\
+ "..\..\src\thread\SDL_systhread.h"\
+
+NODEP_CPP_SDL_T=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_types.h"\
+ "..\src\thread\SDL_thread_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_T=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\SDL_error_c.h"\
+ "..\..\src\thread\generic\SDL_systhread_c.h"\
+ "..\..\src\thread\SDL_systhread.h"\
+ "..\..\src\thread\SDL_thread_c.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\timer\SDL_timer.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_TI=\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_TI=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_TI=\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_TI=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_TI=\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_TI=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_TI=\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_TI=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_TI=\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_TI=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_TI=\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_TI=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_TI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_TI=\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_TI=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_TI=\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_TI=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_TI=\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_TI=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_TI=\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_TI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_timer.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_TI=\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_TI=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_TI=\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_TI=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_TI=\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_TI=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_TI=\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_TI=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_TI=\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_TI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_timer.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_TI=\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_TI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_timer.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_TI=\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_TI=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_TI=\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_TI=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_TI=\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_TI=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_TI=\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_TI=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_TI=\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_TI=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mutex.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_TI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_TI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_TI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_TI=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_TI=\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_TI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_TI=\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+NODEP_CPP_SDL_TI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_TI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\timer\SDL_systimer.h"\
+ "..\..\src\timer\SDL_timer_c.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_video.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_V=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_V=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_V=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_V=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_V=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_V=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_V=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_V=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_V=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_V=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_V=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_V=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_V=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_V=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_V=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_V=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_V=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_V=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_V=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+
+NODEP_CPP_SDL_V=\
+ "..\include\SDL_endian.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_V=\
+ ".\DL.h"\
+ ".\DL_active.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_cdrom.h"\
+ ".\DL_error.h"\
+ ".\DL_events.h"\
+ ".\DL_getenv.h"\
+ ".\DL_joystick.h"\
+ ".\DL_keyboard.h"\
+ ".\DL_keysym.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_quit.h"\
+ ".\DL_rwops.h"\
+ ".\DL_timer.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_V=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_V=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_getenv.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+NODEP_CPP_SDL_V=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_getenv.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_blit.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_V=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\events\SDL_events_c.h"\
+ "..\..\src\events\SDL_sysevents.h"\
+ "..\..\src\video\SDL_blit.h"\
+ "..\..\src\video\SDL_cursor_c.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_pixels_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\audio\SDL_wave.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\src\audio\SDL_wave.h"\
+
+NODEP_CPP_SDL_W=\
+ "..\include\SDL_endian.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\src\audio\SDL_wave.h"\
+
+NODEP_CPP_SDL_W=\
+ "..\include\SDL_endian.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\src\audio\SDL_wave.h"\
+
+NODEP_CPP_SDL_W=\
+ "..\include\SDL_endian.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\src\audio\SDL_wave.h"\
+
+NODEP_CPP_SDL_W=\
+ "..\include\SDL_endian.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\audio\SDL_wave.h"\
+
+NODEP_CPP_SDL_W=\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\audio\SDL_wave.h"\
+
+NODEP_CPP_SDL_W=\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\audio\SDL_wave.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\src\audio\SDL_wave.h"\
+
+NODEP_CPP_SDL_W=\
+ "..\include\SDL_endian.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\src\audio\SDL_wave.h"\
+
+NODEP_CPP_SDL_W=\
+ "..\include\SDL_endian.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\src\audio\SDL_wave.h"\
+
+NODEP_CPP_SDL_W=\
+ "..\include\SDL_endian.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\src\audio\SDL_wave.h"\
+
+NODEP_CPP_SDL_W=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\src\audio\SDL_wave.h"\
+
+NODEP_CPP_SDL_W=\
+ "..\include\SDL_endian.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\src\audio\SDL_wave.h"\
+
+NODEP_CPP_SDL_W=\
+ "..\include\SDL_endian.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\src\audio\SDL_wave.h"\
+
+NODEP_CPP_SDL_W=\
+ "..\include\SDL_endian.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\src\audio\SDL_wave.h"\
+
+NODEP_CPP_SDL_W=\
+ "..\include\SDL_endian.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\src\audio\SDL_wave.h"\
+
+NODEP_CPP_SDL_W=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\src\audio\SDL_wave.h"\
+
+NODEP_CPP_SDL_W=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\audio\SDL_wave.h"\
+
+NODEP_CPP_SDL_W=\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\audio\SDL_wave.h"\
+
+NODEP_CPP_SDL_W=\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\src\audio\SDL_wave.h"\
+
+NODEP_CPP_SDL_W=\
+ "..\include\SDL_endian.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\src\audio\SDL_wave.h"\
+
+NODEP_CPP_SDL_W=\
+ "..\include\SDL_endian.h"\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\audio\SDL_wave.h"\
+
+NODEP_CPP_SDL_W=\
+ ".\DL_audio.h"\
+ ".\DL_byteorder.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\audio\SDL_wave.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\audio\SDL_wave.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\src\audio\SDL_wave.h"\
+
+NODEP_CPP_SDL_W=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\audio\SDL_wave.h"\
+
+NODEP_CPP_SDL_W=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL_endian.h"\
+ "..\..\src\audio\SDL_wave.h"\
+
+NODEP_CPP_SDL_W=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_byteorder.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\src\audio\SDL_wave.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\wincommon\SDL_wingl.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_WI=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_WI=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_WI=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_WI=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_WI=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_WI=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_WI=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_WI=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_WI=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_WI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_WI=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_WI=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_WI=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_WI=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_WI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_WI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_WI=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_WI=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_WI=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_WI=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_WI=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_WI=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_WI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+NODEP_CPP_SDL_WI=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\wincommon\SDL_lowvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_WI=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\wincommon\SDL_lowvideo.h"\
+ "..\..\src\video\wincommon\SDL_wingl_c.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_yuv.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_Y=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_Y=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_Y=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_Y=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_Y=\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_Y=\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_Y=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_Y=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_Y=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_Y=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_Y=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_Y=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_Y=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_Y=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_Y=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_Y=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_Y=\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_Y=\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_Y=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_Y=\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_Y=\
+ ".\DL_error.h"\
+ ".\DL_getenv.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_Y=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_Y=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_getenv.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_Y=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_getenv.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_Y=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_yuv_mmx.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_YU=\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_YU=\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_YU=\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_YU=\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_YU=\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_YU=\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_YU=\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_YU=\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_YU=\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_YU=\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+NODEP_CPP_SDL_YU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_YU=\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_YU=\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_YU=\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_YU=\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+NODEP_CPP_SDL_YU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+NODEP_CPP_SDL_YU=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_YU=\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_YU=\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_YU=\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_YU=\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_YU=\
+ "..\..\include\SDL_types.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_YU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_YU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_YU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_YU=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_YU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_YU=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_YU=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_stdinc.h"\
+
+NODEP_CPP_SDL_YU=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_YU=\
+ "..\..\include\SDL_types.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_yuv_sw.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_YUV=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_YUV=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_YUV=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_YUV=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_YUV=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_YUV=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_YUV=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_YUV=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_YUV=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_YUV=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_YUV=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_YUV=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_YUV=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_YUV=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_YUV=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_YUV=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_dreamcast.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_os2.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_YUV=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_YUV=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_YUV=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_YUV=\
+ "..\include\SDL_cpuinfo.h"\
+ "..\src\video\SDL_glfuncs.h"\
+ "..\src\video\SDL_sysvideo.h"\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_YUV=\
+ ".\DL_error.h"\
+ ".\DL_main.h"\
+ ".\DL_mouse.h"\
+ ".\DL_mutex.h"\
+ ".\DL_rwops.h"\
+ ".\DL_types.h"\
+ ".\DL_version.h"\
+ ".\DL_video.h"\
+ ".\egin_code.h"\
+ ".\lose_code.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_dreamcast.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_os2.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_opengl.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_YUV=\
+ "..\include\SDL_config_wince.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_YUV=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+NODEP_CPP_SDL_YUV=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_types.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+ "..\src\video\SDL_glfuncs.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_YUV=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+ "..\..\src\video\SDL_glfuncs.h"\
+ "..\..\src\video\SDL_stretch_c.h"\
+ "..\..\src\video\SDL_sysvideo.h"\
+ "..\..\src\video\SDL_yuv_sw_c.h"\
+ "..\..\src\video\SDL_yuvfuncs.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\thread\win32\win_ce_semaphore.c
+
+!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release"
+
+DEP_CPP_WIN_C=\
+ "..\..\src\thread\win32\win_ce_semaphore.h"\
+
+
+!ENDIF
+
+# End Source File
+# End Group
+# Begin Group "Header Files"
+
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
+# Begin Source File
+
+SOURCE=..\..\include\begin_code.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\blank_cursor.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\close_code.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\default_cursor.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\hermes\HeadMMX.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\hermes\HeadX86.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\mmx.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_active.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_audio.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\audio\SDL_audio_c.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\audio\SDL_audiodev_c.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\audio\SDL_audiomem.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_blit.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_byteorder.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_cdrom.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_copying.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_cpuinfo.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_cursor_c.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\audio\windib\SDL_dibaudio.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\windib\SDL_dibevents_c.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\windib\SDL_dibvideo.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\audio\disk\SDL_diskaudio.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\audio\dummy\SDL_dummyaudio.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_endian.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_error.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\SDL_error_c.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_events.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\events\SDL_events_c.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\SDL_fatal.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\gapi\sdl_gapivideo.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_getenv.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_glfuncs.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_joystick.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\joystick\SDL_joystick_c.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_keyboard.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_keysym.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_leaks.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_loadso.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\wincommon\SDL_lowvideo.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_main.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_memops.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\audio\SDL_mixer_m68k.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\audio\SDL_mixer_MMX.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\audio\SDL_mixer_MMX_VC.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_mouse.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_mutex.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_name.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\dummy\SDL_nullevents_c.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\dummy\SDL_nullmouse_c.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\dummy\SDL_nullvideo.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_opengl.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_pixels_c.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_quit.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_RLEaccel_c.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_rwops.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_stretch_c.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\audio\SDL_sysaudio.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\cdrom\SDL_syscdrom.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\thread\generic\SDL_syscond_c.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\events\SDL_sysevents.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\joystick\SDL_sysjoystick.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\wincommon\SDL_sysmouse_c.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\thread\generic\SDL_sysmutex_c.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\thread\generic\SDL_syssem_c.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\thread\SDL_systhread.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\thread\generic\SDL_systhread_c.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\thread\win32\SDL_systhread_c.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\timer\SDL_systimer.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_sysvideo.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_syswm.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\wincommon\SDL_syswm_c.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_thread.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\thread\SDL_thread_c.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_timer.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\timer\SDL_timer_c.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_types.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_version.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\include\SDL_video.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\windib\SDL_vkeys.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\audio\SDL_wave.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\wincommon\SDL_wingl_c.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_yuv_sw_c.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\SDL_yuvfuncs.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\thread\win32\win_ce_semaphore.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\video\wincommon\wmmsg.h
+# End Source File
+# End Group
+# Begin Group "Resource Files"
+
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
+# End Group
+# End Target
+# End Project
diff --git a/3rdparty/SDL-1.3.0-5387/VisualCE/SDL/SDL.vcproj b/3rdparty/SDL-1.3.0-5387/VisualCE/SDL/SDL.vcproj
new file mode 100644
index 0000000000..de2df60abb
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualCE/SDL/SDL.vcproj
@@ -0,0 +1,1442 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualCE/SDLMain/SDLmain.vcp b/3rdparty/SDL-1.3.0-5387/VisualCE/SDLMain/SDLmain.vcp
new file mode 100644
index 0000000000..b5bc168b24
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualCE/SDLMain/SDLmain.vcp
@@ -0,0 +1,1649 @@
+# Microsoft eMbedded Visual Tools Project File - Name="SDLmain" - Package Owner=<4>
+# Microsoft eMbedded Visual Tools Generated Build File, Format Version 6.02
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (WCE x86) Static Library" 0x8304
+# TARGTYPE "Win32 (WCE MIPS) Static Library" 0x8204
+# TARGTYPE "Win32 (WCE MIPS16) Static Library" 0x8904
+# TARGTYPE "Win32 (WCE SH4) Static Library" 0x8604
+# TARGTYPE "Win32 (WCE MIPSII) Static Library" 0xa104
+# TARGTYPE "Win32 (WCE MIPSIV_FP) Static Library" 0x9204
+# TARGTYPE "Win32 (WCE ARM) Static Library" 0x8504
+# TARGTYPE "Win32 (WCE SH3) Static Library" 0x8104
+# TARGTYPE "Win32 (WCE ARMV4) Static Library" 0xa304
+# TARGTYPE "Win32 (WCE ARMV4I) Static Library" 0xa504
+# TARGTYPE "Win32 (WCE emulator) Static Library" 0xa604
+# TARGTYPE "Win32 (WCE MIPSII_FP) Static Library" 0xa204
+# TARGTYPE "Win32 (WCE ARMV4T) Static Library" 0xa404
+# TARGTYPE "Win32 (WCE MIPSIV) Static Library" 0x9604
+
+CFG=SDLmain - Win32 (WCE MIPSII_FP) Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "SDLmain.vcn".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "SDLmain.vcn" CFG="SDLmain - Win32 (WCE MIPSII_FP) Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "SDLmain - Win32 (WCE MIPSII_FP) Release" (based on "Win32 (WCE MIPSII_FP) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE MIPSII_FP) Debug" (based on "Win32 (WCE MIPSII_FP) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE MIPSII) Release" (based on "Win32 (WCE MIPSII) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE MIPSII) Debug" (based on "Win32 (WCE MIPSII) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE SH4) Release" (based on "Win32 (WCE SH4) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE SH4) Debug" (based on "Win32 (WCE SH4) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE SH3) Release" (based on "Win32 (WCE SH3) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE SH3) Debug" (based on "Win32 (WCE SH3) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE MIPSIV) Release" (based on "Win32 (WCE MIPSIV) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE MIPSIV) Debug" (based on "Win32 (WCE MIPSIV) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE emulator) Release" (based on "Win32 (WCE emulator) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE emulator) Debug" (based on "Win32 (WCE emulator) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE ARMV4I) Release" (based on "Win32 (WCE ARMV4I) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE ARMV4I) Debug" (based on "Win32 (WCE ARMV4I) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE MIPSIV_FP) Release" (based on "Win32 (WCE MIPSIV_FP) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE MIPSIV_FP) Debug" (based on "Win32 (WCE MIPSIV_FP) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE ARMV4) Release" (based on "Win32 (WCE ARMV4) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE ARMV4) Debug" (based on "Win32 (WCE ARMV4) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE MIPS16) Release" (based on "Win32 (WCE MIPS16) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE MIPS16) Debug" (based on "Win32 (WCE MIPS16) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE ARMV4T) Release" (based on "Win32 (WCE ARMV4T) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE ARMV4T) Debug" (based on "Win32 (WCE ARMV4T) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE x86) Release" (based on "Win32 (WCE x86) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE x86) Debug" (based on "Win32 (WCE x86) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE ARM) Debug" (based on "Win32 (WCE ARM) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE ARM) Release" (based on "Win32 (WCE ARM) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE MIPS) Debug" (based on "Win32 (WCE MIPS) Static Library")
+!MESSAGE "SDLmain - Win32 (WCE MIPS) Release" (based on "Win32 (WCE MIPS) Static Library")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+# PROP ATL_Project 2
+
+!IF "$(CFG)" == "SDLmain - Win32 (WCE MIPSII_FP) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "MIPSII_FPRel"
+# PROP BASE Intermediate_Dir "MIPSII_FPRel"
+# PROP BASE CPU_ID "{D8AC856C-B213-4895-9E83-9EC51A55201E}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "MIPSII_FPRel"
+# PROP Intermediate_Dir "MIPSII_FPRel"
+# PROP CPU_ID "{D8AC856C-B213-4895-9E83-9EC51A55201E}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPSII_FP" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /QMmips2 /QMFPE- /O2 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /Oxt /Ob2 /I "../../include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPSII_FP" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /QMmips2 /QMFPE- /M$(CECrtMT) /c
+# SUBTRACT CPP /YX
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE MIPSII_FP) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "MIPSII_FPDbg"
+# PROP BASE Intermediate_Dir "MIPSII_FPDbg"
+# PROP BASE CPU_ID "{D8AC856C-B213-4895-9E83-9EC51A55201E}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "MIPSII_FPDbg"
+# PROP Intermediate_Dir "MIPSII_FPDbg"
+# PROP CPU_ID "{D8AC856C-B213-4895-9E83-9EC51A55201E}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPSII_FP" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /QMmips2 /QMFPE- /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPSII_FP" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /QMmips2 /QMFPE- /M$(CECrtMTDebug) /c
+# SUBTRACT CPP /YX
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE MIPSII) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "MIPSIIRel"
+# PROP BASE Intermediate_Dir "MIPSIIRel"
+# PROP BASE CPU_ID "{689DDC64-9D9D-11D5-96F8-00207802C01C}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "MIPSIIRel"
+# PROP Intermediate_Dir "MIPSIIRel"
+# PROP CPU_ID "{689DDC64-9D9D-11D5-96F8-00207802C01C}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /QMmips2 /QMFPE /O2 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /Oxt /Ob2 /I "../../include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /QMmips2 /QMFPE /M$(CECrtMT) /c
+# SUBTRACT CPP /YX
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE MIPSII) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "MIPSIIDbg"
+# PROP BASE Intermediate_Dir "MIPSIIDbg"
+# PROP BASE CPU_ID "{689DDC64-9D9D-11D5-96F8-00207802C01C}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "MIPSIIDbg"
+# PROP Intermediate_Dir "MIPSIIDbg"
+# PROP CPU_ID "{689DDC64-9D9D-11D5-96F8-00207802C01C}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /QMmips2 /QMFPE /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /QMmips2 /QMFPE /M$(CECrtMTDebug) /c
+# SUBTRACT CPP /YX
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE SH4) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "SH4Rel"
+# PROP BASE Intermediate_Dir "SH4Rel"
+# PROP BASE CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "SH4Rel"
+# PROP Intermediate_Dir "SH4Rel"
+# PROP CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=shcl.exe
+# ADD BASE CPP /nologo /W3 /O2 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Qsh4 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /O2 /Ob2 /I "../../include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /Oxt /Qsh4 /M$(CECrtMT) /c
+# SUBTRACT CPP /YX
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE SH4) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "SH4Dbg"
+# PROP BASE Intermediate_Dir "SH4Dbg"
+# PROP BASE CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "SH4Dbg"
+# PROP Intermediate_Dir "SH4Dbg"
+# PROP CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=shcl.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /Qsh4 /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /Qsh4 /M$(CECrtMTDebug) /c
+# SUBTRACT CPP /YX
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE SH3) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "SH3Rel"
+# PROP BASE Intermediate_Dir "SH3Rel"
+# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "SH3Rel"
+# PROP Intermediate_Dir "SH3Rel"
+# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=shcl.exe
+# ADD BASE CPP /nologo /W3 /O2 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /O2 /Ob1 /I "../../include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /Oxt /M$(CECrtMT) /c
+# SUBTRACT CPP /YX
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE SH3) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "SH3Dbg"
+# PROP BASE Intermediate_Dir "SH3Dbg"
+# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "SH3Dbg"
+# PROP Intermediate_Dir "SH3Dbg"
+# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=shcl.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /M$(CECrtMTDebug) /c
+# SUBTRACT CPP /YX
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE MIPSIV) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "MIPSIVRel"
+# PROP BASE Intermediate_Dir "MIPSIVRel"
+# PROP BASE CPU_ID "{0B2FE524-26C5-4194-8CEF-B1582DEB5A98}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "MIPSIVRel"
+# PROP Intermediate_Dir "MIPSIVRel"
+# PROP CPU_ID "{0B2FE524-26C5-4194-8CEF-B1582DEB5A98}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /QMmips4 /QMn32 /QMFPE /O2 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /Oxt /Ob2 /I "../../include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /QMmips4 /QMn32 /QMFPE /M$(CECrtMT) /c
+# SUBTRACT CPP /YX
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE MIPSIV) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "MIPSIVDbg"
+# PROP BASE Intermediate_Dir "MIPSIVDbg"
+# PROP BASE CPU_ID "{0B2FE524-26C5-4194-8CEF-B1582DEB5A98}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "MIPSIVDbg"
+# PROP Intermediate_Dir "MIPSIVDbg"
+# PROP CPU_ID "{0B2FE524-26C5-4194-8CEF-B1582DEB5A98}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /QMmips4 /QMn32 /QMFPE /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /QMmips4 /QMn32 /QMFPE /M$(CECrtMTDebug) /c
+# SUBTRACT CPP /YX
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE emulator) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "emulatorRel"
+# PROP BASE Intermediate_Dir "emulatorRel"
+# PROP BASE CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "emulatorRel"
+# PROP Intermediate_Dir "emulatorRel"
+# PROP CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /D "_LIB" /YX /Gs8192 /GF /O2 /c
+# ADD CPP /nologo /W3 /Oxt /Ob2 /I "../../include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /D "_LIB" /Gs8192 /GF /c
+# SUBTRACT CPP /YX
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE emulator) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "emulatorDbg"
+# PROP BASE Intermediate_Dir "emulatorDbg"
+# PROP BASE CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "emulatorDbg"
+# PROP Intermediate_Dir "emulatorDbg"
+# PROP CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "_LIB" /YX /Gs8192 /GF /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "_LIB" /Gs8192 /GF /c
+# SUBTRACT CPP /YX
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE ARMV4I) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "ARMV4IRel"
+# PROP BASE Intermediate_Dir "ARMV4IRel"
+# PROP BASE CPU_ID "{DC70F430-E78B-494F-A9D5-62ADC56443B8}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "ARMV4IRel"
+# PROP Intermediate_Dir "ARMV4IRel"
+# PROP CPU_ID "{DC70F430-E78B-494F-A9D5-62ADC56443B8}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "ARM" /D "_ARM_" /D "$(CePlatform)" /D "ARMV4I" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /QRarch4T /QRinterwork-return /O2 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /Oxt /Ob2 /I "../../include" /D _WIN32_WCE=$(CEVersion) /D "ARM" /D "_ARM_" /D "$(CePlatform)" /D "ARMV4I" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /QRarch4T /QRinterwork-return /M$(CECrtMT) /c
+# SUBTRACT CPP /YX
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE ARMV4I) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "ARMV4IDbg"
+# PROP BASE Intermediate_Dir "ARMV4IDbg"
+# PROP BASE CPU_ID "{DC70F430-E78B-494F-A9D5-62ADC56443B8}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "ARMV4IDbg"
+# PROP Intermediate_Dir "ARMV4IDbg"
+# PROP CPU_ID "{DC70F430-E78B-494F-A9D5-62ADC56443B8}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "ARM" /D "_ARM_" /D "$(CePlatform)" /D "ARMV4I" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /QRarch4T /QRinterwork-return /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "ARM" /D "_ARM_" /D "$(CePlatform)" /D "ARMV4I" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /QRarch4T /QRinterwork-return /M$(CECrtMTDebug) /c
+# SUBTRACT CPP /YX
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE MIPSIV_FP) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "MIPSIV_FPRel"
+# PROP BASE Intermediate_Dir "MIPSIV_FPRel"
+# PROP BASE CPU_ID "{046A430D-7770-48AB-89B5-24C2D300B03F}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "MIPSIV_FPRel"
+# PROP Intermediate_Dir "MIPSIV_FPRel"
+# PROP CPU_ID "{046A430D-7770-48AB-89B5-24C2D300B03F}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D "MIPSIV_FP" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /QMmips4 /QMn32 /QMFPE- /O2 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /Oxt /Ob2 /I "../../include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D "MIPSIV_FP" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /QMmips4 /QMn32 /QMFPE- /M$(CECrtMT) /c
+# SUBTRACT CPP /YX
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE MIPSIV_FP) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "MIPSIV_FPDbg"
+# PROP BASE Intermediate_Dir "MIPSIV_FPDbg"
+# PROP BASE CPU_ID "{046A430D-7770-48AB-89B5-24C2D300B03F}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "MIPSIV_FPDbg"
+# PROP Intermediate_Dir "MIPSIV_FPDbg"
+# PROP CPU_ID "{046A430D-7770-48AB-89B5-24C2D300B03F}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D "MIPSIV_FP" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /QMmips4 /QMn32 /QMFPE- /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D "MIPSIV_FP" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /QMmips4 /QMn32 /QMFPE- /M$(CECrtMTDebug) /c
+# SUBTRACT CPP /YX
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE ARMV4) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "ARMV4Rel"
+# PROP BASE Intermediate_Dir "ARMV4Rel"
+# PROP BASE CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "ARMV4Rel"
+# PROP Intermediate_Dir "ARMV4Rel"
+# PROP CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "NDEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /O2 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /Oxt /Ob2 /I "../../include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "NDEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /M$(CECrtMT) /c
+# SUBTRACT CPP /YX
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE ARMV4) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "ARMV4Dbg"
+# PROP BASE Intermediate_Dir "ARMV4Dbg"
+# PROP BASE CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "ARMV4Dbg"
+# PROP Intermediate_Dir "ARMV4Dbg"
+# PROP CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /M$(CECrtMTDebug) /c
+# SUBTRACT CPP /YX
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE MIPS16) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "MIPS16Rel"
+# PROP BASE Intermediate_Dir "MIPS16Rel"
+# PROP BASE CPU_ID "{D6519013-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "MIPS16Rel"
+# PROP Intermediate_Dir "MIPS16Rel"
+# PROP CPU_ID "{D6519013-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /O2 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPS16" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_MIPS16_" /D "MIPS16SUPPORT" /D "_LIB" /YX /QMmips16 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /O2 /Ob2 /I "../../include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPS16" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_MIPS16_" /D "MIPS16SUPPORT" /D "_LIB" /Oxt /QMmips16 /M$(CECrtMT) /c
+# SUBTRACT CPP /YX
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE MIPS16) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "MIPS16Dbg"
+# PROP BASE Intermediate_Dir "MIPS16Dbg"
+# PROP BASE CPU_ID "{D6519013-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "MIPS16Dbg"
+# PROP Intermediate_Dir "MIPS16Dbg"
+# PROP CPU_ID "{D6519013-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPS16" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_MIPS16_" /D "MIPS16SUPPORT" /D "_LIB" /YX /QMmips16 /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPS16" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_MIPS16_" /D "MIPS16SUPPORT" /D "_LIB" /QMmips16 /M$(CECrtMTDebug) /c
+# SUBTRACT CPP /YX
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE ARMV4T) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "ARMV4TRel"
+# PROP BASE Intermediate_Dir "ARMV4TRel"
+# PROP BASE CPU_ID "{F52316A9-3B7C-4FE7-A67F-68350B41240D}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "ARMV4TRel"
+# PROP Intermediate_Dir "ARMV4TRel"
+# PROP CPU_ID "{F52316A9-3B7C-4FE7-A67F-68350B41240D}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=clthumb.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "ARM" /D "_ARM_" /D "$(CePlatform)" /D "THUMB" /D "_THUMB_" /D "ARMV4T" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /QRarch4T /QRinterwork-return /O2 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /Oxt /Ob2 /I "../../include" /D _WIN32_WCE=$(CEVersion) /D "ARM" /D "_ARM_" /D "$(CePlatform)" /D "THUMB" /D "_THUMB_" /D "ARMV4T" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /QRarch4T /QRinterwork-return /M$(CECrtMT) /c
+# SUBTRACT CPP /YX
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE ARMV4T) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "ARMV4TDbg"
+# PROP BASE Intermediate_Dir "ARMV4TDbg"
+# PROP BASE CPU_ID "{F52316A9-3B7C-4FE7-A67F-68350B41240D}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "ARMV4TDbg"
+# PROP Intermediate_Dir "ARMV4TDbg"
+# PROP CPU_ID "{F52316A9-3B7C-4FE7-A67F-68350B41240D}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=clthumb.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "ARM" /D "_ARM_" /D "$(CePlatform)" /D "THUMB" /D "_THUMB_" /D "ARMV4T" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /QRarch4T /QRinterwork-return /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "ARM" /D "_ARM_" /D "$(CePlatform)" /D "THUMB" /D "_THUMB_" /D "ARMV4T" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /QRarch4T /QRinterwork-return /M$(CECrtMTDebug) /c
+# SUBTRACT CPP /YX
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE x86) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "X86Rel"
+# PROP BASE Intermediate_Dir "X86Rel"
+# PROP BASE CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "X86Rel"
+# PROP Intermediate_Dir "X86Rel"
+# PROP CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /O2 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /D "_LIB" /YX /Gs8192 /GF /c
+# ADD CPP /nologo /W3 /O2 /Ob2 /I "../../include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /D "_LIB" /Gs8192 /Oxt /GF /c
+# SUBTRACT CPP /YX
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE x86) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "X86Dbg"
+# PROP BASE Intermediate_Dir "X86Dbg"
+# PROP BASE CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "X86Dbg"
+# PROP Intermediate_Dir "X86Dbg"
+# PROP CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "_LIB" /YX /Gs8192 /GF /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "_LIB" /Gs8192 /GF /c
+# SUBTRACT CPP /YX
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE ARM) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "ARMDbg"
+# PROP BASE Intermediate_Dir "ARMDbg"
+# PROP BASE CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "ARMDbg"
+# PROP Intermediate_Dir "ARMDbg"
+# PROP CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /Gs8192 /GF /c
+# SUBTRACT BASE CPP /YX
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /Gs8192 /GF /c
+# SUBTRACT CPP /YX
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE ARM) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "ARMRel"
+# PROP BASE Intermediate_Dir "ARMRel"
+# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "ARMRel"
+# PROP Intermediate_Dir "ARMRel"
+# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "NDEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /YX /Oxs /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /O2 /Ob2 /I "../../include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "NDEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /YX /Oxs /M$(CECrtMT) /c
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE MIPS) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "MIPSDbg"
+# PROP BASE Intermediate_Dir "MIPSDbg"
+# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "MIPSDbg"
+# PROP Intermediate_Dir "MIPSDbg"
+# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE MIPS) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "MIPSRel"
+# PROP BASE Intermediate_Dir "MIPSRel"
+# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "MIPSRel"
+# PROP Intermediate_Dir "MIPSRel"
+# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /O2 /Ob2 /I "../../include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+
+!ENDIF
+
+# Begin Target
+
+# Name "SDLmain - Win32 (WCE MIPSII_FP) Release"
+# Name "SDLmain - Win32 (WCE MIPSII_FP) Debug"
+# Name "SDLmain - Win32 (WCE MIPSII) Release"
+# Name "SDLmain - Win32 (WCE MIPSII) Debug"
+# Name "SDLmain - Win32 (WCE SH4) Release"
+# Name "SDLmain - Win32 (WCE SH4) Debug"
+# Name "SDLmain - Win32 (WCE SH3) Release"
+# Name "SDLmain - Win32 (WCE SH3) Debug"
+# Name "SDLmain - Win32 (WCE MIPSIV) Release"
+# Name "SDLmain - Win32 (WCE MIPSIV) Debug"
+# Name "SDLmain - Win32 (WCE emulator) Release"
+# Name "SDLmain - Win32 (WCE emulator) Debug"
+# Name "SDLmain - Win32 (WCE ARMV4I) Release"
+# Name "SDLmain - Win32 (WCE ARMV4I) Debug"
+# Name "SDLmain - Win32 (WCE MIPSIV_FP) Release"
+# Name "SDLmain - Win32 (WCE MIPSIV_FP) Debug"
+# Name "SDLmain - Win32 (WCE ARMV4) Release"
+# Name "SDLmain - Win32 (WCE ARMV4) Debug"
+# Name "SDLmain - Win32 (WCE MIPS16) Release"
+# Name "SDLmain - Win32 (WCE MIPS16) Debug"
+# Name "SDLmain - Win32 (WCE ARMV4T) Release"
+# Name "SDLmain - Win32 (WCE ARMV4T) Debug"
+# Name "SDLmain - Win32 (WCE x86) Release"
+# Name "SDLmain - Win32 (WCE x86) Debug"
+# Name "SDLmain - Win32 (WCE ARM) Debug"
+# Name "SDLmain - Win32 (WCE ARM) Release"
+# Name "SDLmain - Win32 (WCE MIPS) Debug"
+# Name "SDLmain - Win32 (WCE MIPS) Release"
+# Begin Group "Source Files"
+
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+# Begin Source File
+
+SOURCE=..\..\src\main\win32\SDL_win32_main.c
+
+!IF "$(CFG)" == "SDLmain - Win32 (WCE MIPSII_FP) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE MIPSII_FP) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE MIPSII) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE MIPSII) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE SH4) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE SH4) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE SH3) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE SH3) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE MIPSIV) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE MIPSIV) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE emulator) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE emulator) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE ARMV4I) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE ARMV4I) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE MIPSIV_FP) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE MIPSIV_FP) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE MIPS16) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE MIPS16) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE ARMV4T) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE ARMV4T) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE x86) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE x86) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_config.h"\
+ {$(INCLUDE)}"..\..\include\SDL_config_amiga.h"\
+ {$(INCLUDE)}"..\..\include\SDL_config_macos.h"\
+ {$(INCLUDE)}"..\..\include\SDL_config_macosx.h"\
+ {$(INCLUDE)}"..\..\include\SDL_config_win32.h"\
+ {$(INCLUDE)}"..\..\include\SDL_config_wince.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cpuinfo.h"\
+ {$(INCLUDE)}"..\..\include\SDL_endian.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_loadso.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_platform.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_stdinc.h"\
+ {$(INCLUDE)}"..\..\include\SDL_thread.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE ARM) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_config.h"\
+ {$(INCLUDE)}"..\..\include\SDL_config_amiga.h"\
+ {$(INCLUDE)}"..\..\include\SDL_config_macos.h"\
+ {$(INCLUDE)}"..\..\include\SDL_config_macosx.h"\
+ {$(INCLUDE)}"..\..\include\SDL_config_win32.h"\
+ {$(INCLUDE)}"..\..\include\SDL_config_wince.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cpuinfo.h"\
+ {$(INCLUDE)}"..\..\include\SDL_endian.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_loadso.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_platform.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_stdinc.h"\
+ {$(INCLUDE)}"..\..\include\SDL_thread.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "SDLmain - Win32 (WCE MIPS) Release"
+
+DEP_CPP_SDL_W=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+ {$(INCLUDE)}"..\..\include\begin_code.h"\
+ {$(INCLUDE)}"..\..\include\close_code.h"\
+ {$(INCLUDE)}"..\..\include\SDL_active.h"\
+ {$(INCLUDE)}"..\..\include\SDL_audio.h"\
+ {$(INCLUDE)}"..\..\include\SDL_cdrom.h"\
+ {$(INCLUDE)}"..\..\include\SDL_error.h"\
+ {$(INCLUDE)}"..\..\include\SDL_events.h"\
+ {$(INCLUDE)}"..\..\include\SDL_joystick.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keyboard.h"\
+ {$(INCLUDE)}"..\..\include\SDL_keysym.h"\
+ {$(INCLUDE)}"..\..\include\SDL_main.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mouse.h"\
+ {$(INCLUDE)}"..\..\include\SDL_mutex.h"\
+ {$(INCLUDE)}"..\..\include\SDL_quit.h"\
+ {$(INCLUDE)}"..\..\include\SDL_rwops.h"\
+ {$(INCLUDE)}"..\..\include\SDL_timer.h"\
+ {$(INCLUDE)}"..\..\include\SDL_version.h"\
+ {$(INCLUDE)}"..\..\include\SDL_video.h"\
+
+
+!ENDIF
+
+# End Source File
+# End Group
+# Begin Group "Header Files"
+
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
+# Begin Source File
+
+SOURCE=..\..\include\SDL_main.h
+# End Source File
+# End Group
+# End Target
+# End Project
diff --git a/3rdparty/SDL-1.3.0-5387/VisualCE/SDLMain/SDLmain.vcproj b/3rdparty/SDL-1.3.0-5387/VisualCE/SDLMain/SDLmain.vcproj
new file mode 100644
index 0000000000..4876aae676
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualCE/SDLMain/SDLmain.vcproj
@@ -0,0 +1,568 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualCE/loopwave/loopwave.vcp b/3rdparty/SDL-1.3.0-5387/VisualCE/loopwave/loopwave.vcp
new file mode 100644
index 0000000000..cda7cdc863
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualCE/loopwave/loopwave.vcp
@@ -0,0 +1,554 @@
+# Microsoft eMbedded Visual Tools Project File - Name="loopwave" - Package Owner=<4>
+# Microsoft eMbedded Visual Tools Generated Build File, Format Version 6.02
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (WCE x86) Application" 0x8301
+# TARGTYPE "Win32 (WCE ARM) Application" 0x8501
+# TARGTYPE "Win32 (WCE ARMV4) Application" 0xa301
+# TARGTYPE "Win32 (WCE x86em) Application" 0x7f01
+# TARGTYPE "Win32 (WCE emulator) Application" 0xa601
+
+CFG=loopwave - Win32 (WCE emulator) Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "loopwave.vcn".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "loopwave.vcn" CFG="loopwave - Win32 (WCE emulator) Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "loopwave - Win32 (WCE emulator) Release" (based on "Win32 (WCE emulator) Application")
+!MESSAGE "loopwave - Win32 (WCE emulator) Debug" (based on "Win32 (WCE emulator) Application")
+!MESSAGE "loopwave - Win32 (WCE ARMV4) Release" (based on "Win32 (WCE ARMV4) Application")
+!MESSAGE "loopwave - Win32 (WCE ARMV4) Debug" (based on "Win32 (WCE ARMV4) Application")
+!MESSAGE "loopwave - Win32 (WCE ARM) Release" (based on "Win32 (WCE ARM) Application")
+!MESSAGE "loopwave - Win32 (WCE x86em) Release" (based on "Win32 (WCE x86em) Application")
+!MESSAGE "loopwave - Win32 (WCE ARM) Debug" (based on "Win32 (WCE ARM) Application")
+!MESSAGE "loopwave - Win32 (WCE x86) Release" (based on "Win32 (WCE x86) Application")
+!MESSAGE "loopwave - Win32 (WCE x86) Debug" (based on "Win32 (WCE x86) Application")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+# PROP ATL_Project 2
+
+!IF "$(CFG)" == "loopwave - Win32 (WCE emulator) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "emulatorRel"
+# PROP BASE Intermediate_Dir "emulatorRel"
+# PROP BASE CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "emulatorRel"
+# PROP Intermediate_Dir "emulatorRel"
+# PROP CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gs8192 /GF /O2 /c
+# ADD CPP /nologo /W3 /I "..\..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gs8192 /GF /O2 /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ELSEIF "$(CFG)" == "loopwave - Win32 (WCE emulator) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "emulatorDbg"
+# PROP BASE Intermediate_Dir "emulatorDbg"
+# PROP BASE CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "emulatorDbg"
+# PROP Intermediate_Dir "emulatorDbg"
+# PROP CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d "$(CePlatform)" /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d "$(CePlatform)" /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "_i386_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /GF /c
+# ADD CPP /nologo /W3 /Zi /Od /I "..\..\include" /D "DEBUG" /D "_i386_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /GF /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ELSEIF "$(CFG)" == "loopwave - Win32 (WCE ARMV4) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "ARMV4Rel"
+# PROP BASE Intermediate_Dir "ARMV4Rel"
+# PROP BASE CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "ARMV4Rel"
+# PROP Intermediate_Dir "ARMV4Rel"
+# PROP CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /O2 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /I "..\..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /O2 /M$(CECrtMT) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "loopwave - Win32 (WCE ARMV4) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "ARMV4Dbg"
+# PROP BASE Intermediate_Dir "ARMV4Dbg"
+# PROP BASE CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "ARMV4Dbg"
+# PROP Intermediate_Dir "ARMV4Dbg"
+# PROP CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "..\..\include" /D "DEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "loopwave - Win32 (WCE ARM) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "ARMRel"
+# PROP BASE Intermediate_Dir "ARMRel"
+# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "ARMRel"
+# PROP Intermediate_Dir "ARMRel"
+# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /O2 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "loopwave - Win32 (WCE x86em) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "X86EMRel"
+# PROP BASE Intermediate_Dir "X86EMRel"
+# PROP BASE CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "X86EMRel"
+# PROP Intermediate_Dir "X86EMRel"
+# PROP CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "i486" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "i486" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gz /Oxs /c
+# ADD CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gz /Oxs /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /stack:0x10000,0x1000 /subsystem:windows /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /windowsce:emulation /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /stack:0x10000,0x1000 /subsystem:windows /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /windowsce:emulation /MACHINE:IX86
+
+!ELSEIF "$(CFG)" == "loopwave - Win32 (WCE ARM) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "ARMDbg"
+# PROP BASE Intermediate_Dir "ARMDbg"
+# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "ARMDbg"
+# PROP Intermediate_Dir "ARMDbg"
+# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /GX- /Zi /Od /D "DEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /GX- /Zi /Od /D "DEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "loopwave - Win32 (WCE x86) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "X86Rel"
+# PROP BASE Intermediate_Dir "X86Rel"
+# PROP BASE CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "X86Rel"
+# PROP Intermediate_Dir "X86Rel"
+# PROP CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /GX- /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gs8192 /GF /Oxs /c
+# ADD CPP /nologo /W3 /GX- /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gs8192 /GF /Oxs /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ELSEIF "$(CFG)" == "loopwave - Win32 (WCE x86) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "X86Dbg"
+# PROP BASE Intermediate_Dir "X86Dbg"
+# PROP BASE CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "X86Dbg"
+# PROP Intermediate_Dir "X86Dbg"
+# PROP CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /GX- /Zi /Od /D "DEBUG" /D "_i386_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /GF /c
+# ADD CPP /nologo /W3 /GX- /Zi /Od /D "DEBUG" /D "_i386_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /GF /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ENDIF
+
+# Begin Target
+
+# Name "loopwave - Win32 (WCE emulator) Release"
+# Name "loopwave - Win32 (WCE emulator) Debug"
+# Name "loopwave - Win32 (WCE ARMV4) Release"
+# Name "loopwave - Win32 (WCE ARMV4) Debug"
+# Name "loopwave - Win32 (WCE ARM) Release"
+# Name "loopwave - Win32 (WCE x86em) Release"
+# Name "loopwave - Win32 (WCE ARM) Debug"
+# Name "loopwave - Win32 (WCE x86) Release"
+# Name "loopwave - Win32 (WCE x86) Debug"
+# Begin Group "Source Files"
+
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+# Begin Source File
+
+SOURCE=..\..\test\loopwave.c
+
+!IF "$(CFG)" == "loopwave - Win32 (WCE emulator) Release"
+
+DEP_CPP_LOOPW=\
+ "..\..\include\SDL.h"\
+
+NODEP_CPP_LOOPW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "loopwave - Win32 (WCE emulator) Debug"
+
+DEP_CPP_LOOPW=\
+ "..\..\include\SDL.h"\
+
+NODEP_CPP_LOOPW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "loopwave - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_LOOPW=\
+ "..\..\include\SDL.h"\
+
+NODEP_CPP_LOOPW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "loopwave - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_LOOPW=\
+ "..\..\include\SDL.h"\
+
+NODEP_CPP_LOOPW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "loopwave - Win32 (WCE ARM) Release"
+
+NODEP_CPP_LOOPW=\
+ "..\..\test\SDL.h"\
+ "..\..\test\SDL_audio.h"\
+ "..\..\test\SDL_config.h"\
+
+
+!ELSEIF "$(CFG)" == "loopwave - Win32 (WCE x86em) Release"
+
+NODEP_CPP_LOOPW=\
+ "..\..\test\SDL.h"\
+ "..\..\test\SDL_audio.h"\
+ "..\..\test\SDL_config.h"\
+
+
+!ELSEIF "$(CFG)" == "loopwave - Win32 (WCE ARM) Debug"
+
+NODEP_CPP_LOOPW=\
+ "..\..\test\SDL.h"\
+ "..\..\test\SDL_audio.h"\
+ "..\..\test\SDL_config.h"\
+
+
+!ELSEIF "$(CFG)" == "loopwave - Win32 (WCE x86) Release"
+
+NODEP_CPP_LOOPW=\
+ "..\..\test\SDL.h"\
+ "..\..\test\SDL_audio.h"\
+ "..\..\test\SDL_config.h"\
+
+
+!ELSEIF "$(CFG)" == "loopwave - Win32 (WCE x86) Debug"
+
+NODEP_CPP_LOOPW=\
+ "..\..\test\SDL.h"\
+ "..\..\test\SDL_audio.h"\
+ "..\..\test\SDL_config.h"\
+
+
+!ENDIF
+
+# End Source File
+# End Group
+# Begin Group "Header Files"
+
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
+# End Group
+# Begin Group "Resource Files"
+
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
+# End Group
+# End Target
+# End Project
diff --git a/3rdparty/SDL-1.3.0-5387/VisualCE/loopwave/loopwave.vcproj b/3rdparty/SDL-1.3.0-5387/VisualCE/loopwave/loopwave.vcproj
new file mode 100644
index 0000000000..c9cf203090
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualCE/loopwave/loopwave.vcproj
@@ -0,0 +1,395 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualCE/testalpha/testalpha.vcp b/3rdparty/SDL-1.3.0-5387/VisualCE/testalpha/testalpha.vcp
new file mode 100644
index 0000000000..0bf4481d87
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualCE/testalpha/testalpha.vcp
@@ -0,0 +1,686 @@
+# Microsoft eMbedded Visual Tools Project File - Name="testalpha" - Package Owner=<4>
+# Microsoft eMbedded Visual Tools Generated Build File, Format Version 6.02
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (WCE x86) Application" 0x8301
+# TARGTYPE "Win32 (WCE ARM) Application" 0x8501
+# TARGTYPE "Win32 (WCE ARMV4) Application" 0xa301
+# TARGTYPE "Win32 (WCE SH3) Application" 0x8101
+# TARGTYPE "Win32 (WCE MIPS) Application" 0x8201
+# TARGTYPE "Win32 (WCE emulator) Application" 0xa601
+
+CFG=testalpha - Win32 (WCE emulator) Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "testalpha.vcn".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "testalpha.vcn" CFG="testalpha - Win32 (WCE emulator) Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "testalpha - Win32 (WCE emulator) Release" (based on "Win32 (WCE emulator) Application")
+!MESSAGE "testalpha - Win32 (WCE emulator) Debug" (based on "Win32 (WCE emulator) Application")
+!MESSAGE "testalpha - Win32 (WCE ARMV4) Release" (based on "Win32 (WCE ARMV4) Application")
+!MESSAGE "testalpha - Win32 (WCE ARMV4) Debug" (based on "Win32 (WCE ARMV4) Application")
+!MESSAGE "testalpha - Win32 (WCE ARM) Debug" (based on "Win32 (WCE ARM) Application")
+!MESSAGE "testalpha - Win32 (WCE ARM) Release" (based on "Win32 (WCE ARM) Application")
+!MESSAGE "testalpha - Win32 (WCE MIPS) Debug" (based on "Win32 (WCE MIPS) Application")
+!MESSAGE "testalpha - Win32 (WCE SH3) Debug" (based on "Win32 (WCE SH3) Application")
+!MESSAGE "testalpha - Win32 (WCE x86) Release" (based on "Win32 (WCE x86) Application")
+!MESSAGE "testalpha - Win32 (WCE x86) Debug" (based on "Win32 (WCE x86) Application")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+# PROP ATL_Project 2
+
+!IF "$(CFG)" == "testalpha - Win32 (WCE emulator) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "emulatorRel"
+# PROP BASE Intermediate_Dir "emulatorRel"
+# PROP BASE CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "emulatorRel"
+# PROP Intermediate_Dir "emulatorRel"
+# PROP CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gs8192 /GF /O2 /c
+# ADD CPP /nologo /W3 /I "..\..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gs8192 /GF /O2 /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ELSEIF "$(CFG)" == "testalpha - Win32 (WCE emulator) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "emulatorDbg"
+# PROP BASE Intermediate_Dir "emulatorDbg"
+# PROP BASE CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "emulatorDbg"
+# PROP Intermediate_Dir "emulatorDbg"
+# PROP CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d "$(CePlatform)" /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d "$(CePlatform)" /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "_i386_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /GF /c
+# ADD CPP /nologo /W3 /Zi /Od /I "..\..\include" /D "DEBUG" /D "_i386_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /GF /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ELSEIF "$(CFG)" == "testalpha - Win32 (WCE ARMV4) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "ARMV4Rel"
+# PROP BASE Intermediate_Dir "ARMV4Rel"
+# PROP BASE CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "ARMV4Rel"
+# PROP Intermediate_Dir "ARMV4Rel"
+# PROP CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /O2 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /I "..\..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /O2 /M$(CECrtMT) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 commctrl.lib coredll.lib aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "testalpha - Win32 (WCE ARMV4) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "ARMV4Dbg"
+# PROP BASE Intermediate_Dir "ARMV4Dbg"
+# PROP BASE CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "ARMV4Dbg"
+# PROP Intermediate_Dir "ARMV4Dbg"
+# PROP CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "..\..\include" /D "DEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 commctrl.lib coredll.lib aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "testalpha - Win32 (WCE ARM) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "ARMDbg"
+# PROP BASE Intermediate_Dir "ARMDbg"
+# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "ARMDbg"
+# PROP Intermediate_Dir "ARMDbg"
+# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /D "DEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "testalpha - Win32 (WCE ARM) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "ARMRel"
+# PROP BASE Intermediate_Dir "ARMRel"
+# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "ARMRel"
+# PROP Intermediate_Dir "ARMRel"
+# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /I "../../include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "testalpha - Win32 (WCE MIPS) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "MIPSDbg"
+# PROP BASE Intermediate_Dir "MIPSDbg"
+# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "MIPSDbg"
+# PROP Intermediate_Dir "MIPSDbg"
+# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /D "DEBUG" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
+
+!ELSEIF "$(CFG)" == "testalpha - Win32 (WCE SH3) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "SH3Dbg"
+# PROP BASE Intermediate_Dir "SH3Dbg"
+# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "SH3Dbg"
+# PROP Intermediate_Dir "SH3Dbg"
+# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r
+CPP=shcl.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /D "DEBUG" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3
+
+!ELSEIF "$(CFG)" == "testalpha - Win32 (WCE x86) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "X86Rel"
+# PROP BASE Intermediate_Dir "X86Rel"
+# PROP BASE CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "X86Rel"
+# PROP Intermediate_Dir "X86Rel"
+# PROP CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /GX- /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gs8192 /GF /Oxs /c
+# ADD CPP /nologo /W3 /GX- /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gs8192 /GF /Oxs /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ELSEIF "$(CFG)" == "testalpha - Win32 (WCE x86) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "X86Dbg"
+# PROP BASE Intermediate_Dir "X86Dbg"
+# PROP BASE CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "X86Dbg"
+# PROP Intermediate_Dir "X86Dbg"
+# PROP CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /GX- /Zi /Od /D "DEBUG" /D "_i386_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /GF /c
+# ADD CPP /nologo /W3 /GX- /Zi /Od /D "DEBUG" /D "_i386_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /GF /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ENDIF
+
+# Begin Target
+
+# Name "testalpha - Win32 (WCE emulator) Release"
+# Name "testalpha - Win32 (WCE emulator) Debug"
+# Name "testalpha - Win32 (WCE ARMV4) Release"
+# Name "testalpha - Win32 (WCE ARMV4) Debug"
+# Name "testalpha - Win32 (WCE ARM) Debug"
+# Name "testalpha - Win32 (WCE ARM) Release"
+# Name "testalpha - Win32 (WCE MIPS) Debug"
+# Name "testalpha - Win32 (WCE SH3) Debug"
+# Name "testalpha - Win32 (WCE x86) Release"
+# Name "testalpha - Win32 (WCE x86) Debug"
+# Begin Group "Source Files"
+
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+# Begin Source File
+
+SOURCE=..\..\test\testalpha.c
+
+!IF "$(CFG)" == "testalpha - Win32 (WCE emulator) Release"
+
+DEP_CPP_TESTA=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "testalpha - Win32 (WCE emulator) Debug"
+
+DEP_CPP_TESTA=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "testalpha - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_TESTA=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "testalpha - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_TESTA=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_syswm.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "testalpha - Win32 (WCE ARM) Debug"
+
+DEP_CPP_TESTA=\
+ "..\..\include\SDL.h"\
+
+NODEP_CPP_TESTA=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "testalpha - Win32 (WCE ARM) Release"
+
+DEP_CPP_TESTA=\
+ "..\..\include\SDL.h"\
+
+NODEP_CPP_TESTA=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "testalpha - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_TESTA=\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_types.h"\
+
+NODEP_CPP_TESTA=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "testalpha - Win32 (WCE SH3) Debug"
+
+DEP_CPP_TESTA=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "testalpha - Win32 (WCE x86) Release"
+
+NODEP_CPP_TESTA=\
+ "..\..\test\SDL.h"\
+
+
+!ELSEIF "$(CFG)" == "testalpha - Win32 (WCE x86) Debug"
+
+NODEP_CPP_TESTA=\
+ "..\..\test\SDL.h"\
+
+
+!ENDIF
+
+# End Source File
+# End Group
+# Begin Group "Header Files"
+
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
+# End Group
+# Begin Group "Resource Files"
+
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
+# End Group
+# End Target
+# End Project
diff --git a/3rdparty/SDL-1.3.0-5387/VisualCE/testalpha/testalpha.vcproj b/3rdparty/SDL-1.3.0-5387/VisualCE/testalpha/testalpha.vcproj
new file mode 100644
index 0000000000..3db0bd3a22
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualCE/testalpha/testalpha.vcproj
@@ -0,0 +1,741 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualCE/testtimer/testtimer.vcp b/3rdparty/SDL-1.3.0-5387/VisualCE/testtimer/testtimer.vcp
new file mode 100644
index 0000000000..2503dfb5bc
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualCE/testtimer/testtimer.vcp
@@ -0,0 +1,858 @@
+# Microsoft eMbedded Visual Tools Project File - Name="testtimer" - Package Owner=<4>
+# Microsoft eMbedded Visual Tools Generated Build File, Format Version 6.02
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (WCE x86) Application" 0x8301
+# TARGTYPE "Win32 (WCE ARMV4) Application" 0xa301
+# TARGTYPE "Win32 (WCE ARM) Application" 0x8501
+# TARGTYPE "Win32 (WCE x86em) Application" 0x7f01
+# TARGTYPE "Win32 (WCE SH3) Application" 0x8101
+# TARGTYPE "Win32 (WCE MIPS) Application" 0x8201
+# TARGTYPE "Win32 (WCE emulator) Application" 0xa601
+
+CFG=testtimer - Win32 (WCE MIPS) Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "testtimer.vcn".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "testtimer.vcn" CFG="testtimer - Win32 (WCE MIPS) Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "testtimer - Win32 (WCE MIPS) Release" (based on "Win32 (WCE MIPS) Application")
+!MESSAGE "testtimer - Win32 (WCE MIPS) Debug" (based on "Win32 (WCE MIPS) Application")
+!MESSAGE "testtimer - Win32 (WCE SH3) Release" (based on "Win32 (WCE SH3) Application")
+!MESSAGE "testtimer - Win32 (WCE SH3) Debug" (based on "Win32 (WCE SH3) Application")
+!MESSAGE "testtimer - Win32 (WCE ARM) Release" (based on "Win32 (WCE ARM) Application")
+!MESSAGE "testtimer - Win32 (WCE ARM) Debug" (based on "Win32 (WCE ARM) Application")
+!MESSAGE "testtimer - Win32 (WCE x86em) Release" (based on "Win32 (WCE x86em) Application")
+!MESSAGE "testtimer - Win32 (WCE x86em) Debug" (based on "Win32 (WCE x86em) Application")
+!MESSAGE "testtimer - Win32 (WCE ARMV4) Debug" (based on "Win32 (WCE ARMV4) Application")
+!MESSAGE "testtimer - Win32 (WCE ARMV4) Release" (based on "Win32 (WCE ARMV4) Application")
+!MESSAGE "testtimer - Win32 (WCE x86) Release" (based on "Win32 (WCE x86) Application")
+!MESSAGE "testtimer - Win32 (WCE x86) Debug" (based on "Win32 (WCE x86) Application")
+!MESSAGE "testtimer - Win32 (WCE emulator) Release" (based on "Win32 (WCE emulator) Application")
+!MESSAGE "testtimer - Win32 (WCE emulator) Debug" (based on "Win32 (WCE emulator) Application")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+# PROP ATL_Project 2
+
+!IF "$(CFG)" == "testtimer - Win32 (WCE MIPS) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "MIPSRel"
+# PROP BASE Intermediate_Dir "MIPSRel"
+# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "MIPSRel"
+# PROP Intermediate_Dir "MIPSRel"
+# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /I "..\..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
+
+!ELSEIF "$(CFG)" == "testtimer - Win32 (WCE MIPS) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "MIPSDbg"
+# PROP BASE Intermediate_Dir "MIPSDbg"
+# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "MIPSDbg"
+# PROP Intermediate_Dir "MIPSDbg"
+# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "..\..\include" /D "DEBUG" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
+
+!ELSEIF "$(CFG)" == "testtimer - Win32 (WCE SH3) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "SH3Rel"
+# PROP BASE Intermediate_Dir "SH3Rel"
+# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "SH3Rel"
+# PROP Intermediate_Dir "SH3Rel"
+# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r
+CPP=shcl.exe
+# ADD BASE CPP /nologo /W3 /Oxs /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /Oxs /I "..\..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /M$(CECrtMT) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3
+
+!ELSEIF "$(CFG)" == "testtimer - Win32 (WCE SH3) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "SH3Dbg"
+# PROP BASE Intermediate_Dir "SH3Dbg"
+# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "SH3Dbg"
+# PROP Intermediate_Dir "SH3Dbg"
+# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r
+CPP=shcl.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "..\..\include" /D "DEBUG" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3
+
+!ELSEIF "$(CFG)" == "testtimer - Win32 (WCE ARM) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "ARMRel"
+# PROP BASE Intermediate_Dir "ARMRel"
+# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "ARMRel"
+# PROP Intermediate_Dir "ARMRel"
+# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /I "..\..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+
+!ELSEIF "$(CFG)" == "testtimer - Win32 (WCE ARM) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "ARMDbg"
+# PROP BASE Intermediate_Dir "ARMDbg"
+# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "ARMDbg"
+# PROP Intermediate_Dir "ARMDbg"
+# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "..\..\include" /D "DEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+
+!ELSEIF "$(CFG)" == "testtimer - Win32 (WCE x86em) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "X86EMRel"
+# PROP BASE Intermediate_Dir "X86EMRel"
+# PROP BASE CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "X86EMRel"
+# PROP Intermediate_Dir "X86EMRel"
+# PROP CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /stack:0x10000,0x1000 /subsystem:windows /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /windowsce:emulation /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /stack:0x10000,0x1000 /subsystem:windows /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /windowsce:emulation /MACHINE:IX86
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gz /Oxs /c
+# ADD CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gz /Oxs /c
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "i486" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "i486" /r
+
+!ELSEIF "$(CFG)" == "testtimer - Win32 (WCE x86em) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "X86EMDbg"
+# PROP BASE Intermediate_Dir "X86EMDbg"
+# PROP BASE CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "X86EMDbg"
+# PROP Intermediate_Dir "X86EMDbg"
+# PROP CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /stack:0x10000,0x1000 /subsystem:windows /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /windowsce:emulation /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /stack:0x10000,0x1000 /subsystem:windows /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /windowsce:emulation /MACHINE:IX86
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "i486" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gz /c
+# ADD CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "i486" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gz /c
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "i486" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "i486" /r
+
+!ELSEIF "$(CFG)" == "testtimer - Win32 (WCE ARMV4) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "ARMV4Dbg"
+# PROP BASE Intermediate_Dir "ARMV4Dbg"
+# PROP BASE CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "ARMV4Dbg"
+# PROP Intermediate_Dir "ARMV4Dbg"
+# PROP CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "..\..\include" /D "DEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "testtimer - Win32 (WCE ARMV4) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "ARMV4Rel"
+# PROP BASE Intermediate_Dir "ARMV4Rel"
+# PROP BASE CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "ARMV4Rel"
+# PROP Intermediate_Dir "ARMV4Rel"
+# PROP CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /O2 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /I "..\..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /O2 /M$(CECrtMT) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "testtimer - Win32 (WCE x86) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "X86Rel"
+# PROP BASE Intermediate_Dir "X86Rel"
+# PROP BASE CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "X86Rel"
+# PROP Intermediate_Dir "X86Rel"
+# PROP CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /Oxs /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gs8192 /GF /c
+# ADD CPP /nologo /W3 /Oxs /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gs8192 /GF /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ELSEIF "$(CFG)" == "testtimer - Win32 (WCE x86) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "X86Dbg"
+# PROP BASE Intermediate_Dir "X86Dbg"
+# PROP BASE CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "X86Dbg"
+# PROP Intermediate_Dir "X86Dbg"
+# PROP CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "_i386_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /GF /c
+# ADD CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "_i386_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /GF /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ELSEIF "$(CFG)" == "testtimer - Win32 (WCE emulator) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "emulatorRel"
+# PROP BASE Intermediate_Dir "emulatorRel"
+# PROP BASE CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "emulatorRel"
+# PROP Intermediate_Dir "emulatorRel"
+# PROP CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gs8192 /GF /O2 /c
+# ADD CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gs8192 /GF /O2 /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ELSEIF "$(CFG)" == "testtimer - Win32 (WCE emulator) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "emulatorDbg"
+# PROP BASE Intermediate_Dir "emulatorDbg"
+# PROP BASE CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "emulatorDbg"
+# PROP Intermediate_Dir "emulatorDbg"
+# PROP CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d "$(CePlatform)" /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d "$(CePlatform)" /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "_i386_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /GF /c
+# ADD CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "_i386_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /GF /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ENDIF
+
+# Begin Target
+
+# Name "testtimer - Win32 (WCE MIPS) Release"
+# Name "testtimer - Win32 (WCE MIPS) Debug"
+# Name "testtimer - Win32 (WCE SH3) Release"
+# Name "testtimer - Win32 (WCE SH3) Debug"
+# Name "testtimer - Win32 (WCE ARM) Release"
+# Name "testtimer - Win32 (WCE ARM) Debug"
+# Name "testtimer - Win32 (WCE x86em) Release"
+# Name "testtimer - Win32 (WCE x86em) Debug"
+# Name "testtimer - Win32 (WCE ARMV4) Debug"
+# Name "testtimer - Win32 (WCE ARMV4) Release"
+# Name "testtimer - Win32 (WCE x86) Release"
+# Name "testtimer - Win32 (WCE x86) Debug"
+# Name "testtimer - Win32 (WCE emulator) Release"
+# Name "testtimer - Win32 (WCE emulator) Debug"
+# Begin Group "Source Files"
+
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+# Begin Source File
+
+SOURCE=..\..\test\testtimer.c
+
+!IF "$(CFG)" == "testtimer - Win32 (WCE MIPS) Release"
+
+DEP_CPP_TESTT=\
+ "..\..\include\SDL.h"\
+
+NODEP_CPP_TESTT=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "testtimer - Win32 (WCE MIPS) Debug"
+
+DEP_CPP_TESTT=\
+ "..\..\include\SDL.h"\
+
+NODEP_CPP_TESTT=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "testtimer - Win32 (WCE SH3) Release"
+
+DEP_CPP_TESTT=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "testtimer - Win32 (WCE SH3) Debug"
+
+DEP_CPP_TESTT=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "testtimer - Win32 (WCE ARM) Release"
+
+DEP_CPP_TESTT=\
+ "..\..\include\SDL.h"\
+
+NODEP_CPP_TESTT=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "testtimer - Win32 (WCE ARM) Debug"
+
+DEP_CPP_TESTT=\
+ "..\..\include\SDL.h"\
+
+NODEP_CPP_TESTT=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "testtimer - Win32 (WCE x86em) Release"
+
+NODEP_CPP_TESTT=\
+ "..\..\test\SDL.h"\
+
+
+!ELSEIF "$(CFG)" == "testtimer - Win32 (WCE x86em) Debug"
+
+NODEP_CPP_TESTT=\
+ "..\..\test\SDL.h"\
+
+
+!ELSEIF "$(CFG)" == "testtimer - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_TESTT=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "testtimer - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_TESTT=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "testtimer - Win32 (WCE x86) Release"
+
+NODEP_CPP_TESTT=\
+ "..\..\test\SDL.h"\
+
+
+!ELSEIF "$(CFG)" == "testtimer - Win32 (WCE x86) Debug"
+
+NODEP_CPP_TESTT=\
+ "..\..\test\SDL.h"\
+
+
+!ELSEIF "$(CFG)" == "testtimer - Win32 (WCE emulator) Release"
+
+NODEP_CPP_TESTT=\
+ "..\..\test\SDL.h"\
+
+
+!ELSEIF "$(CFG)" == "testtimer - Win32 (WCE emulator) Debug"
+
+NODEP_CPP_TESTT=\
+ "..\..\test\SDL.h"\
+
+
+!ENDIF
+
+# End Source File
+# End Group
+# Begin Group "Header Files"
+
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
+# End Group
+# Begin Group "Resource Files"
+
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
+# End Group
+# End Target
+# End Project
diff --git a/3rdparty/SDL-1.3.0-5387/VisualCE/testtimer/testtimer.vcproj b/3rdparty/SDL-1.3.0-5387/VisualCE/testtimer/testtimer.vcproj
new file mode 100644
index 0000000000..cce6a01ca6
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualCE/testtimer/testtimer.vcproj
@@ -0,0 +1,395 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/VisualCE/testwin/testwin.vcp b/3rdparty/SDL-1.3.0-5387/VisualCE/testwin/testwin.vcp
new file mode 100644
index 0000000000..11c8a27072
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualCE/testwin/testwin.vcp
@@ -0,0 +1,660 @@
+# Microsoft eMbedded Visual Tools Project File - Name="testwin" - Package Owner=<4>
+# Microsoft eMbedded Visual Tools Generated Build File, Format Version 6.02
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (WCE x86) Application" 0x8301
+# TARGTYPE "Win32 (WCE ARM) Application" 0x8501
+# TARGTYPE "Win32 (WCE ARMV4) Application" 0xa301
+# TARGTYPE "Win32 (WCE SH3) Application" 0x8101
+# TARGTYPE "Win32 (WCE MIPS) Application" 0x8201
+# TARGTYPE "Win32 (WCE emulator) Application" 0xa601
+
+CFG=testwin - Win32 (WCE emulator) Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "testwin.vcn".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "testwin.vcn" CFG="testwin - Win32 (WCE emulator) Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "testwin - Win32 (WCE emulator) Release" (based on "Win32 (WCE emulator) Application")
+!MESSAGE "testwin - Win32 (WCE emulator) Debug" (based on "Win32 (WCE emulator) Application")
+!MESSAGE "testwin - Win32 (WCE ARMV4) Release" (based on "Win32 (WCE ARMV4) Application")
+!MESSAGE "testwin - Win32 (WCE ARMV4) Debug" (based on "Win32 (WCE ARMV4) Application")
+!MESSAGE "testwin - Win32 (WCE ARM) Debug" (based on "Win32 (WCE ARM) Application")
+!MESSAGE "testwin - Win32 (WCE ARM) Release" (based on "Win32 (WCE ARM) Application")
+!MESSAGE "testwin - Win32 (WCE SH3) Debug" (based on "Win32 (WCE SH3) Application")
+!MESSAGE "testwin - Win32 (WCE MIPS) Debug" (based on "Win32 (WCE MIPS) Application")
+!MESSAGE "testwin - Win32 (WCE x86) Release" (based on "Win32 (WCE x86) Application")
+!MESSAGE "testwin - Win32 (WCE x86) Debug" (based on "Win32 (WCE x86) Application")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+# PROP ATL_Project 2
+
+!IF "$(CFG)" == "testwin - Win32 (WCE emulator) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "emulatorRel"
+# PROP BASE Intermediate_Dir "emulatorRel"
+# PROP BASE CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "emulatorRel"
+# PROP Intermediate_Dir "emulatorRel"
+# PROP CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gs8192 /GF /O2 /c
+# ADD CPP /nologo /W3 /I "..\..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gs8192 /GF /O2 /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ELSEIF "$(CFG)" == "testwin - Win32 (WCE emulator) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "emulatorDbg"
+# PROP BASE Intermediate_Dir "emulatorDbg"
+# PROP BASE CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "emulatorDbg"
+# PROP Intermediate_Dir "emulatorDbg"
+# PROP CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d "$(CePlatform)" /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d "$(CePlatform)" /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "_i386_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /GF /c
+# ADD CPP /nologo /W3 /Zi /Od /I "..\..\include" /D "DEBUG" /D "_i386_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /GF /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ELSEIF "$(CFG)" == "testwin - Win32 (WCE ARMV4) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "ARMV4Rel"
+# PROP BASE Intermediate_Dir "ARMV4Rel"
+# PROP BASE CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "ARMV4Rel"
+# PROP Intermediate_Dir "ARMV4Rel"
+# PROP CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /O2 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /I "..\..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /O2 /M$(CECrtMT) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 commctrl.lib coredll.lib aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "testwin - Win32 (WCE ARMV4) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "ARMV4Dbg"
+# PROP BASE Intermediate_Dir "ARMV4Dbg"
+# PROP BASE CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "ARMV4Dbg"
+# PROP Intermediate_Dir "ARMV4Dbg"
+# PROP CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "..\..\include" /D "DEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 commctrl.lib coredll.lib aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "testwin - Win32 (WCE ARM) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "ARMDbg"
+# PROP BASE Intermediate_Dir "ARMDbg"
+# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "ARMDbg"
+# PROP Intermediate_Dir "ARMDbg"
+# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /D "DEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "testwin - Win32 (WCE ARM) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "ARMRel"
+# PROP BASE Intermediate_Dir "ARMRel"
+# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "ARMRel"
+# PROP Intermediate_Dir "ARMRel"
+# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /I "../../include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "testwin - Win32 (WCE SH3) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "SH3Dbg"
+# PROP BASE Intermediate_Dir "SH3Dbg"
+# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "SH3Dbg"
+# PROP Intermediate_Dir "SH3Dbg"
+# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r
+CPP=shcl.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /D "DEBUG" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3
+
+!ELSEIF "$(CFG)" == "testwin - Win32 (WCE MIPS) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "MIPSDbg"
+# PROP BASE Intermediate_Dir "MIPSDbg"
+# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "MIPSDbg"
+# PROP Intermediate_Dir "MIPSDbg"
+# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
+CPP=clmips.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
+
+!ELSEIF "$(CFG)" == "testwin - Win32 (WCE x86) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "X86Rel"
+# PROP BASE Intermediate_Dir "X86Rel"
+# PROP BASE CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "X86Rel"
+# PROP Intermediate_Dir "X86Rel"
+# PROP CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /GX- /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gs8192 /GF /Oxs /c
+# ADD CPP /nologo /W3 /GX- /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gs8192 /GF /Oxs /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ELSEIF "$(CFG)" == "testwin - Win32 (WCE x86) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "X86Dbg"
+# PROP BASE Intermediate_Dir "X86Dbg"
+# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "X86Dbg"
+# PROP Intermediate_Dir "X86Dbg"
+# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /GX- /Zi /Od /D "DEBUG" /D "_i386_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /GX- /Zi /Od /D "DEBUG" /D "_i386_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /M$(CECrtMTDebug) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# SUBTRACT BASE LINK32 /incremental:no
+# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# SUBTRACT LINK32 /incremental:no
+
+!ENDIF
+
+# Begin Target
+
+# Name "testwin - Win32 (WCE emulator) Release"
+# Name "testwin - Win32 (WCE emulator) Debug"
+# Name "testwin - Win32 (WCE ARMV4) Release"
+# Name "testwin - Win32 (WCE ARMV4) Debug"
+# Name "testwin - Win32 (WCE ARM) Debug"
+# Name "testwin - Win32 (WCE ARM) Release"
+# Name "testwin - Win32 (WCE SH3) Debug"
+# Name "testwin - Win32 (WCE MIPS) Debug"
+# Name "testwin - Win32 (WCE x86) Release"
+# Name "testwin - Win32 (WCE x86) Debug"
+# Begin Group "Source Files"
+
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+# Begin Source File
+
+SOURCE=..\..\test\testwin.c
+
+!IF "$(CFG)" == "testwin - Win32 (WCE emulator) Release"
+
+DEP_CPP_TESTW=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "testwin - Win32 (WCE emulator) Debug"
+
+DEP_CPP_TESTW=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "testwin - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_TESTW=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "testwin - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_TESTW=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_config.h"\
+ "..\..\include\SDL_config_amiga.h"\
+ "..\..\include\SDL_config_macos.h"\
+ "..\..\include\SDL_config_macosx.h"\
+ "..\..\include\SDL_config_win32.h"\
+ "..\..\include\SDL_cpuinfo.h"\
+ "..\..\include\SDL_endian.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_loadso.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_platform.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_stdinc.h"\
+ "..\..\include\SDL_thread.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "testwin - Win32 (WCE ARM) Debug"
+
+DEP_CPP_TESTW=\
+ "..\..\include\SDL.h"\
+
+NODEP_CPP_TESTW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "testwin - Win32 (WCE ARM) Release"
+
+DEP_CPP_TESTW=\
+ "..\..\include\SDL.h"\
+
+NODEP_CPP_TESTW=\
+ "..\include\begin_code.h"\
+ "..\include\close_code.h"\
+ "..\include\SDL_active.h"\
+ "..\include\SDL_audio.h"\
+ "..\include\SDL_cdrom.h"\
+ "..\include\SDL_config.h"\
+ "..\include\SDL_config_amiga.h"\
+ "..\include\SDL_config_macos.h"\
+ "..\include\SDL_config_macosx.h"\
+ "..\include\SDL_config_win32.h"\
+ "..\include\SDL_config_wince.h"\
+ "..\include\SDL_cpuinfo.h"\
+ "..\include\SDL_endian.h"\
+ "..\include\SDL_error.h"\
+ "..\include\SDL_events.h"\
+ "..\include\SDL_joystick.h"\
+ "..\include\SDL_keyboard.h"\
+ "..\include\SDL_keysym.h"\
+ "..\include\SDL_loadso.h"\
+ "..\include\SDL_main.h"\
+ "..\include\SDL_mouse.h"\
+ "..\include\SDL_mutex.h"\
+ "..\include\SDL_platform.h"\
+ "..\include\SDL_quit.h"\
+ "..\include\SDL_rwops.h"\
+ "..\include\SDL_stdinc.h"\
+ "..\include\SDL_thread.h"\
+ "..\include\SDL_timer.h"\
+ "..\include\SDL_version.h"\
+ "..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "testwin - Win32 (WCE SH3) Debug"
+
+DEP_CPP_TESTW=\
+ "..\..\include\begin_code.h"\
+ "..\..\include\close_code.h"\
+ "..\..\include\SDL.h"\
+ "..\..\include\SDL_active.h"\
+ "..\..\include\SDL_audio.h"\
+ "..\..\include\SDL_byteorder.h"\
+ "..\..\include\SDL_cdrom.h"\
+ "..\..\include\SDL_error.h"\
+ "..\..\include\SDL_events.h"\
+ "..\..\include\SDL_getenv.h"\
+ "..\..\include\SDL_joystick.h"\
+ "..\..\include\SDL_keyboard.h"\
+ "..\..\include\SDL_keysym.h"\
+ "..\..\include\SDL_main.h"\
+ "..\..\include\SDL_mouse.h"\
+ "..\..\include\SDL_mutex.h"\
+ "..\..\include\SDL_quit.h"\
+ "..\..\include\SDL_rwops.h"\
+ "..\..\include\SDL_timer.h"\
+ "..\..\include\SDL_types.h"\
+ "..\..\include\SDL_version.h"\
+ "..\..\include\SDL_video.h"\
+
+
+!ELSEIF "$(CFG)" == "testwin - Win32 (WCE MIPS) Debug"
+
+NODEP_CPP_TESTW=\
+ "..\..\test\SDL.h"\
+
+
+!ELSEIF "$(CFG)" == "testwin - Win32 (WCE x86) Release"
+
+NODEP_CPP_TESTW=\
+ "..\..\test\SDL.h"\
+
+
+!ELSEIF "$(CFG)" == "testwin - Win32 (WCE x86) Debug"
+
+NODEP_CPP_TESTW=\
+ "..\..\test\SDL.h"\
+
+
+!ENDIF
+
+# End Source File
+# End Group
+# Begin Group "Header Files"
+
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
+# End Group
+# Begin Group "Resource Files"
+
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
+# End Group
+# End Target
+# End Project
diff --git a/3rdparty/SDL-1.3.0-5387/VisualCE/testwin/testwin.vcproj b/3rdparty/SDL-1.3.0-5387/VisualCE/testwin/testwin.vcproj
new file mode 100644
index 0000000000..8dac65ebab
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/VisualCE/testwin/testwin.vcproj
@@ -0,0 +1,733 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/Watcom-Win32.zip b/3rdparty/SDL-1.3.0-5387/Watcom-Win32.zip
new file mode 100644
index 0000000000..10eee05eac
Binary files /dev/null and b/3rdparty/SDL-1.3.0-5387/Watcom-Win32.zip differ
diff --git a/3rdparty/SDL-1.3.0-5387/WhatsNew b/3rdparty/SDL-1.3.0-5387/WhatsNew
new file mode 100644
index 0000000000..a54ab0abbb
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/WhatsNew
@@ -0,0 +1,3 @@
+
+This is a list of API changes in SDL's version history.
+
diff --git a/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/Default.png b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/Default.png
new file mode 100644
index 0000000000..f91282875a
Binary files /dev/null and b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/Default.png differ
diff --git a/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/DemosiPhoneOS.xcodeproj/project.pbxproj b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/DemosiPhoneOS.xcodeproj/project.pbxproj
new file mode 100755
index 0000000000..32d22d83dc
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/DemosiPhoneOS.xcodeproj/project.pbxproj
@@ -0,0 +1,1214 @@
+// !$*UTF8*$!
+{
+ archiveVersion = 1;
+ classes = {
+ };
+ objectVersion = 45;
+ objects = {
+
+/* Begin PBXBuildFile section */
+ 1D3623EC0D0F72F000981E51 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D3623EB0D0F72F000981E51 /* CoreGraphics.framework */; };
+ 1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; };
+ 1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; };
+ FD15FD690E086911003BDF25 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; };
+ FD15FD6A0E086911003BDF25 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; };
+ FD15FD6B0E086911003BDF25 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D3623EB0D0F72F000981E51 /* CoreGraphics.framework */; };
+ FD15FD6C0E086911003BDF25 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96ED30DEFC9C700FAF19F /* OpenGLES.framework */; };
+ FD15FD6D0E086911003BDF25 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96EDF0DEFC9DC00FAF19F /* QuartzCore.framework */; };
+ FD1B48DD0E313255007AB34E /* libSDL.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B489E0E313154007AB34E /* libSDL.a */; };
+ FD1B49980E313261007AB34E /* libSDL.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B489E0E313154007AB34E /* libSDL.a */; };
+ FD1B499C0E313269007AB34E /* libSDL.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B489E0E313154007AB34E /* libSDL.a */; };
+ FD1B499E0E31326C007AB34E /* libSDL.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B489E0E313154007AB34E /* libSDL.a */; };
+ FD1B49A00E313270007AB34E /* libSDL.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B489E0E313154007AB34E /* libSDL.a */; };
+ FD1B49A20E313273007AB34E /* libSDL.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B489E0E313154007AB34E /* libSDL.a */; };
+ FD5F9CE80E0E0741008E885B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; };
+ FD5F9CE90E0E0741008E885B /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; };
+ FD5F9CEA0E0E0741008E885B /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D3623EB0D0F72F000981E51 /* CoreGraphics.framework */; };
+ FD5F9CEB0E0E0741008E885B /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96ED30DEFC9C700FAF19F /* OpenGLES.framework */; };
+ FD5F9CEC0E0E0741008E885B /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96EDF0DEFC9DC00FAF19F /* QuartzCore.framework */; };
+ FD77A00E0E26BC0500F39101 /* happy.c in Sources */ = {isa = PBXBuildFile; fileRef = FD77A0080E26BC0500F39101 /* happy.c */; };
+ FD77A0130E26BC0500F39101 /* common.c in Sources */ = {isa = PBXBuildFile; fileRef = FD77A0060E26BC0500F39101 /* common.c */; };
+ FD77A0160E26BC0500F39101 /* rectangles.c in Sources */ = {isa = PBXBuildFile; fileRef = FD77A00A0E26BC0500F39101 /* rectangles.c */; };
+ FD77A0190E26BC0500F39101 /* common.c in Sources */ = {isa = PBXBuildFile; fileRef = FD77A0060E26BC0500F39101 /* common.c */; };
+ FD77A01F0E26BC0500F39101 /* common.c in Sources */ = {isa = PBXBuildFile; fileRef = FD77A0060E26BC0500F39101 /* common.c */; };
+ FD77A0230E26BC0500F39101 /* touch.c in Sources */ = {isa = PBXBuildFile; fileRef = FD77A00B0E26BC0500F39101 /* touch.c */; };
+ FD77A0250E26BC0500F39101 /* common.c in Sources */ = {isa = PBXBuildFile; fileRef = FD77A0060E26BC0500F39101 /* common.c */; };
+ FD77A0270E26BC0500F39101 /* mixer.c in Sources */ = {isa = PBXBuildFile; fileRef = FD77A0090E26BC0500F39101 /* mixer.c */; };
+ FD77A02A0E26BC2700F39101 /* accelerometer.c in Sources */ = {isa = PBXBuildFile; fileRef = FD77A0050E26BC0500F39101 /* accelerometer.c */; };
+ FD787AA10E22A5CC003E8E36 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = FD787AA00E22A5CC003E8E36 /* Default.png */; };
+ FD787AA20E22A5CC003E8E36 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = FD787AA00E22A5CC003E8E36 /* Default.png */; };
+ FD787AA30E22A5CC003E8E36 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = FD787AA00E22A5CC003E8E36 /* Default.png */; };
+ FD787AA40E22A5CC003E8E36 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = FD787AA00E22A5CC003E8E36 /* Default.png */; };
+ FD787AA50E22A5CC003E8E36 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = FD787AA00E22A5CC003E8E36 /* Default.png */; };
+ FD925B190E0F276600E92347 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = FD925B180E0F276600E92347 /* Icon.png */; };
+ FD925B1A0E0F276600E92347 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = FD925B180E0F276600E92347 /* Icon.png */; };
+ FD925B1B0E0F276600E92347 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = FD925B180E0F276600E92347 /* Icon.png */; };
+ FDB651D00E43D1AD00F688B5 /* icon.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FDB651CC0E43D19800F688B5 /* icon.bmp */; };
+ FDB651D10E43D1B300F688B5 /* ship.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FDB651CD0E43D19800F688B5 /* ship.bmp */; };
+ FDB651D20E43D1B500F688B5 /* space.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FDB651CE0E43D19800F688B5 /* space.bmp */; };
+ FDB651D30E43D1BA00F688B5 /* stroke.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FDB651CF0E43D19800F688B5 /* stroke.bmp */; };
+ FDB651D40E43D1C500F688B5 /* ds_brush_snare.wav in Resources */ = {isa = PBXBuildFile; fileRef = FDB651C80E43D19800F688B5 /* ds_brush_snare.wav */; };
+ FDB651D50E43D1C500F688B5 /* ds_china.wav in Resources */ = {isa = PBXBuildFile; fileRef = FDB651C90E43D19800F688B5 /* ds_china.wav */; };
+ FDB651D60E43D1C500F688B5 /* ds_kick_big_amb.wav in Resources */ = {isa = PBXBuildFile; fileRef = FDB651CA0E43D19800F688B5 /* ds_kick_big_amb.wav */; };
+ FDB651D70E43D1C500F688B5 /* ds_loose_skin_mute.wav in Resources */ = {isa = PBXBuildFile; fileRef = FDB651CB0E43D19800F688B5 /* ds_loose_skin_mute.wav */; };
+ FDB651D80E43D1D800F688B5 /* stroke.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FDB651CF0E43D19800F688B5 /* stroke.bmp */; };
+ FDB651F90E43D1F300F688B5 /* stroke.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FDB651CF0E43D19800F688B5 /* stroke.bmp */; };
+ FDB651FA0E43D1F300F688B5 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = FD925B180E0F276600E92347 /* Icon.png */; };
+ FDB651FB0E43D1F300F688B5 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = FD787AA00E22A5CC003E8E36 /* Default.png */; };
+ FDB651FD0E43D1F300F688B5 /* common.c in Sources */ = {isa = PBXBuildFile; fileRef = FD77A0060E26BC0500F39101 /* common.c */; };
+ FDB652000E43D1F300F688B5 /* libSDL.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B489E0E313154007AB34E /* libSDL.a */; };
+ FDB652020E43D1F300F688B5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; };
+ FDB652030E43D1F300F688B5 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; };
+ FDB652040E43D1F300F688B5 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D3623EB0D0F72F000981E51 /* CoreGraphics.framework */; };
+ FDB652050E43D1F300F688B5 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96ED30DEFC9C700FAF19F /* OpenGLES.framework */; };
+ FDB652060E43D1F300F688B5 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96EDF0DEFC9DC00FAF19F /* QuartzCore.framework */; };
+ FDB652070E43D1F300F688B5 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D71D0E12D2AB00247964 /* CoreAudio.framework */; };
+ FDB652080E43D1F300F688B5 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D7220E12D31800247964 /* AudioToolbox.framework */; };
+ FDB652120E43D21A00F688B5 /* keyboard.c in Sources */ = {isa = PBXBuildFile; fileRef = FDB652110E43D21A00F688B5 /* keyboard.c */; };
+ FDB652C70E43E25900F688B5 /* kromasky_16x16.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FDB652C60E43E25900F688B5 /* kromasky_16x16.bmp */; };
+ FDB96ED40DEFC9C700FAF19F /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96ED30DEFC9C700FAF19F /* OpenGLES.framework */; };
+ FDB96EE00DEFC9DC00FAF19F /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96EDF0DEFC9DC00FAF19F /* QuartzCore.framework */; };
+ FDC202E10E107B1200ABAC90 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = FD925B180E0F276600E92347 /* Icon.png */; };
+ FDC202E60E107B1200ABAC90 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; };
+ FDC202E70E107B1200ABAC90 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; };
+ FDC202E80E107B1200ABAC90 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D3623EB0D0F72F000981E51 /* CoreGraphics.framework */; };
+ FDC202E90E107B1200ABAC90 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96ED30DEFC9C700FAF19F /* OpenGLES.framework */; };
+ FDC202EA0E107B1200ABAC90 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96EDF0DEFC9DC00FAF19F /* QuartzCore.framework */; };
+ FDC214870E26D78A00DDED23 /* common.c in Sources */ = {isa = PBXBuildFile; fileRef = FD77A0060E26BC0500F39101 /* common.c */; };
+ FDC52EC80E2843D6008D768C /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = FD925B180E0F276600E92347 /* Icon.png */; };
+ FDC52EC90E2843D6008D768C /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = FD787AA00E22A5CC003E8E36 /* Default.png */; };
+ FDC52ECF0E2843D6008D768C /* common.c in Sources */ = {isa = PBXBuildFile; fileRef = FD77A0060E26BC0500F39101 /* common.c */; };
+ FDC52ED40E2843D6008D768C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; };
+ FDC52ED50E2843D6008D768C /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; };
+ FDC52ED60E2843D6008D768C /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D3623EB0D0F72F000981E51 /* CoreGraphics.framework */; };
+ FDC52ED70E2843D6008D768C /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96ED30DEFC9C700FAF19F /* OpenGLES.framework */; };
+ FDC52ED80E2843D6008D768C /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96EDF0DEFC9DC00FAF19F /* QuartzCore.framework */; };
+ FDC52ED90E2843D6008D768C /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D71D0E12D2AB00247964 /* CoreAudio.framework */; };
+ FDC52EDA0E2843D6008D768C /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D7220E12D31800247964 /* AudioToolbox.framework */; };
+ FDC52EE50E284410008D768C /* fireworks.c in Sources */ = {isa = PBXBuildFile; fileRef = FDC52EE40E284410008D768C /* fireworks.c */; };
+ FDF0D6960E12D05400247964 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = FD925B180E0F276600E92347 /* Icon.png */; };
+ FDF0D69C0E12D05400247964 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; };
+ FDF0D69D0E12D05400247964 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; };
+ FDF0D69E0E12D05400247964 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D3623EB0D0F72F000981E51 /* CoreGraphics.framework */; };
+ FDF0D69F0E12D05400247964 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96ED30DEFC9C700FAF19F /* OpenGLES.framework */; };
+ FDF0D6A00E12D05400247964 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96EDF0DEFC9DC00FAF19F /* QuartzCore.framework */; };
+ FDF0D71E0E12D2AB00247964 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D71D0E12D2AB00247964 /* CoreAudio.framework */; };
+ FDF0D7230E12D31800247964 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D7220E12D31800247964 /* AudioToolbox.framework */; };
+ FDF0D7950E12D52900247964 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D71D0E12D2AB00247964 /* CoreAudio.framework */; };
+ FDF0D7960E12D52900247964 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D7220E12D31800247964 /* AudioToolbox.framework */; };
+ FDF0D7A70E12D53200247964 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D71D0E12D2AB00247964 /* CoreAudio.framework */; };
+ FDF0D7A80E12D53200247964 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D7220E12D31800247964 /* AudioToolbox.framework */; };
+ FDF0D7A90E12D53500247964 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D71D0E12D2AB00247964 /* CoreAudio.framework */; };
+ FDF0D7AA0E12D53500247964 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D7220E12D31800247964 /* AudioToolbox.framework */; };
+ FDF0D7AB0E12D53800247964 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D71D0E12D2AB00247964 /* CoreAudio.framework */; };
+ FDF0D7AC0E12D53800247964 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D7220E12D31800247964 /* AudioToolbox.framework */; };
+/* End PBXBuildFile section */
+
+/* Begin PBXContainerItemProxy section */
+ 049F3694130CD86800FF080F /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = FD1B48920E313154007AB34E /* SDLiPhoneOS.xcodeproj */;
+ proxyType = 1;
+ remoteGlobalIDString = FD6526620DE8FCCB002AD96B;
+ remoteInfo = libSDL;
+ };
+ 049F3696130CD87600FF080F /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = FD1B48920E313154007AB34E /* SDLiPhoneOS.xcodeproj */;
+ proxyType = 1;
+ remoteGlobalIDString = FD6526620DE8FCCB002AD96B;
+ remoteInfo = libSDL;
+ };
+ 049F3698130CD87F00FF080F /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = FD1B48920E313154007AB34E /* SDLiPhoneOS.xcodeproj */;
+ proxyType = 1;
+ remoteGlobalIDString = FD6526620DE8FCCB002AD96B;
+ remoteInfo = libSDL;
+ };
+ 049F369A130CD88800FF080F /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = FD1B48920E313154007AB34E /* SDLiPhoneOS.xcodeproj */;
+ proxyType = 1;
+ remoteGlobalIDString = FD6526620DE8FCCB002AD96B;
+ remoteInfo = libSDL;
+ };
+ 049F369C130CD89000FF080F /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = FD1B48920E313154007AB34E /* SDLiPhoneOS.xcodeproj */;
+ proxyType = 1;
+ remoteGlobalIDString = FD6526620DE8FCCB002AD96B;
+ remoteInfo = libSDL;
+ };
+ 049F369E130CD89800FF080F /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = FD1B48920E313154007AB34E /* SDLiPhoneOS.xcodeproj */;
+ proxyType = 1;
+ remoteGlobalIDString = FD6526620DE8FCCB002AD96B;
+ remoteInfo = libSDL;
+ };
+ 049F36A0130CD8A000FF080F /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = FD1B48920E313154007AB34E /* SDLiPhoneOS.xcodeproj */;
+ proxyType = 1;
+ remoteGlobalIDString = FD6526620DE8FCCB002AD96B;
+ remoteInfo = libSDL;
+ };
+ 04AB757011E563D200BE9753 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = FD1B48920E313154007AB34E /* SDLiPhoneOS.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = 006E982211955059001DE610;
+ remoteInfo = testsdl;
+ };
+ FD1B489D0E313154007AB34E /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = FD1B48920E313154007AB34E /* SDLiPhoneOS.xcodeproj */;
+ proxyType = 2;
+ remoteGlobalIDString = FD6526630DE8FCCB002AD96B;
+ remoteInfo = StaticLibiPhoneOS;
+ };
+/* End PBXContainerItemProxy section */
+
+/* Begin PBXFileReference section */
+ 1D30AB110D05D00D00671497 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
+ 1D3623EB0D0F72F000981E51 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
+ 1D6058910D05DD3D006BFB54 /* Rectangles.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Rectangles.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
+ 8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
+ FD15FCB20E086866003BDF25 /* Happy.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Happy.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ FD1B48920E313154007AB34E /* SDLiPhoneOS.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = SDLiPhoneOS.xcodeproj; path = ../SDL/SDLiPhoneOS.xcodeproj; sourceTree = SOURCE_ROOT; };
+ FD5F9BE40E0DEBEA008E885B /* Accel.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Accel.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ FD77A0050E26BC0500F39101 /* accelerometer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = accelerometer.c; sourceTree = ""; };
+ FD77A0060E26BC0500F39101 /* common.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = common.c; sourceTree = ""; };
+ FD77A0070E26BC0500F39101 /* common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = common.h; sourceTree = ""; };
+ FD77A0080E26BC0500F39101 /* happy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = happy.c; sourceTree = ""; };
+ FD77A0090E26BC0500F39101 /* mixer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mixer.c; sourceTree = ""; };
+ FD77A00A0E26BC0500F39101 /* rectangles.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = rectangles.c; sourceTree = ""; };
+ FD77A00B0E26BC0500F39101 /* touch.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = touch.c; sourceTree = ""; };
+ FD787AA00E22A5CC003E8E36 /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = ""; };
+ FD925B180E0F276600E92347 /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; };
+ FDB651C60E43D19800F688B5 /* license.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = license.txt; sourceTree = ""; };
+ FDB651C80E43D19800F688B5 /* ds_brush_snare.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = ds_brush_snare.wav; sourceTree = ""; };
+ FDB651C90E43D19800F688B5 /* ds_china.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = ds_china.wav; sourceTree = ""; };
+ FDB651CA0E43D19800F688B5 /* ds_kick_big_amb.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = ds_kick_big_amb.wav; sourceTree = ""; };
+ FDB651CB0E43D19800F688B5 /* ds_loose_skin_mute.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = ds_loose_skin_mute.wav; sourceTree = ""; };
+ FDB651CC0E43D19800F688B5 /* icon.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = icon.bmp; sourceTree = ""; };
+ FDB651CD0E43D19800F688B5 /* ship.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = ship.bmp; sourceTree = ""; };
+ FDB651CE0E43D19800F688B5 /* space.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = space.bmp; sourceTree = ""; };
+ FDB651CF0E43D19800F688B5 /* stroke.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = stroke.bmp; sourceTree = ""; };
+ FDB6520C0E43D1F300F688B5 /* Keyboard.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Keyboard.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ FDB652110E43D21A00F688B5 /* keyboard.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = keyboard.c; sourceTree = ""; };
+ FDB652C60E43E25900F688B5 /* kromasky_16x16.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = kromasky_16x16.bmp; sourceTree = ""; };
+ FDB96ED30DEFC9C700FAF19F /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
+ FDB96EDF0DEFC9DC00FAF19F /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
+ FDC202EE0E107B1200ABAC90 /* Touch.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Touch.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ FDC52EDE0E2843D6008D768C /* Fireworks.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Fireworks.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ FDC52EE40E284410008D768C /* fireworks.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fireworks.c; sourceTree = ""; };
+ FDF0D6A40E12D05400247964 /* Mixer.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Mixer.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ FDF0D71D0E12D2AB00247964 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
+ FDF0D7220E12D31800247964 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
+/* End PBXFileReference section */
+
+/* Begin PBXFrameworksBuildPhase section */
+ 1D60588F0D05DD3D006BFB54 /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ FD1B48DD0E313255007AB34E /* libSDL.a in Frameworks */,
+ FDF0D7AB0E12D53800247964 /* CoreAudio.framework in Frameworks */,
+ FDF0D7AC0E12D53800247964 /* AudioToolbox.framework in Frameworks */,
+ 1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */,
+ 1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */,
+ 1D3623EC0D0F72F000981E51 /* CoreGraphics.framework in Frameworks */,
+ FDB96ED40DEFC9C700FAF19F /* OpenGLES.framework in Frameworks */,
+ FDB96EE00DEFC9DC00FAF19F /* QuartzCore.framework in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ FD15FCB00E086866003BDF25 /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ FD1B49980E313261007AB34E /* libSDL.a in Frameworks */,
+ FDF0D7A90E12D53500247964 /* CoreAudio.framework in Frameworks */,
+ FDF0D7AA0E12D53500247964 /* AudioToolbox.framework in Frameworks */,
+ FD15FD690E086911003BDF25 /* Foundation.framework in Frameworks */,
+ FD15FD6A0E086911003BDF25 /* UIKit.framework in Frameworks */,
+ FD15FD6B0E086911003BDF25 /* CoreGraphics.framework in Frameworks */,
+ FD15FD6C0E086911003BDF25 /* OpenGLES.framework in Frameworks */,
+ FD15FD6D0E086911003BDF25 /* QuartzCore.framework in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ FD5F9BE20E0DEBEA008E885B /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ FD1B499C0E313269007AB34E /* libSDL.a in Frameworks */,
+ FDF0D7A70E12D53200247964 /* CoreAudio.framework in Frameworks */,
+ FDF0D7A80E12D53200247964 /* AudioToolbox.framework in Frameworks */,
+ FD5F9CEB0E0E0741008E885B /* OpenGLES.framework in Frameworks */,
+ FD5F9CEC0E0E0741008E885B /* QuartzCore.framework in Frameworks */,
+ FD5F9CE80E0E0741008E885B /* Foundation.framework in Frameworks */,
+ FD5F9CE90E0E0741008E885B /* UIKit.framework in Frameworks */,
+ FD5F9CEA0E0E0741008E885B /* CoreGraphics.framework in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ FDB651FF0E43D1F300F688B5 /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ FDB652000E43D1F300F688B5 /* libSDL.a in Frameworks */,
+ FDB652020E43D1F300F688B5 /* Foundation.framework in Frameworks */,
+ FDB652030E43D1F300F688B5 /* UIKit.framework in Frameworks */,
+ FDB652040E43D1F300F688B5 /* CoreGraphics.framework in Frameworks */,
+ FDB652050E43D1F300F688B5 /* OpenGLES.framework in Frameworks */,
+ FDB652060E43D1F300F688B5 /* QuartzCore.framework in Frameworks */,
+ FDB652070E43D1F300F688B5 /* CoreAudio.framework in Frameworks */,
+ FDB652080E43D1F300F688B5 /* AudioToolbox.framework in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ FDC202E40E107B1200ABAC90 /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ FD1B499E0E31326C007AB34E /* libSDL.a in Frameworks */,
+ FDF0D7950E12D52900247964 /* CoreAudio.framework in Frameworks */,
+ FDF0D7960E12D52900247964 /* AudioToolbox.framework in Frameworks */,
+ FDC202E60E107B1200ABAC90 /* Foundation.framework in Frameworks */,
+ FDC202E70E107B1200ABAC90 /* UIKit.framework in Frameworks */,
+ FDC202E80E107B1200ABAC90 /* CoreGraphics.framework in Frameworks */,
+ FDC202E90E107B1200ABAC90 /* OpenGLES.framework in Frameworks */,
+ FDC202EA0E107B1200ABAC90 /* QuartzCore.framework in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ FDC52ED10E2843D6008D768C /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ FD1B49A20E313273007AB34E /* libSDL.a in Frameworks */,
+ FDC52ED40E2843D6008D768C /* Foundation.framework in Frameworks */,
+ FDC52ED50E2843D6008D768C /* UIKit.framework in Frameworks */,
+ FDC52ED60E2843D6008D768C /* CoreGraphics.framework in Frameworks */,
+ FDC52ED70E2843D6008D768C /* OpenGLES.framework in Frameworks */,
+ FDC52ED80E2843D6008D768C /* QuartzCore.framework in Frameworks */,
+ FDC52ED90E2843D6008D768C /* CoreAudio.framework in Frameworks */,
+ FDC52EDA0E2843D6008D768C /* AudioToolbox.framework in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ FDF0D69A0E12D05400247964 /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ FD1B49A00E313270007AB34E /* libSDL.a in Frameworks */,
+ FDF0D69C0E12D05400247964 /* Foundation.framework in Frameworks */,
+ FDF0D69D0E12D05400247964 /* UIKit.framework in Frameworks */,
+ FDF0D69E0E12D05400247964 /* CoreGraphics.framework in Frameworks */,
+ FDF0D69F0E12D05400247964 /* OpenGLES.framework in Frameworks */,
+ FDF0D6A00E12D05400247964 /* QuartzCore.framework in Frameworks */,
+ FDF0D71E0E12D2AB00247964 /* CoreAudio.framework in Frameworks */,
+ FDF0D7230E12D31800247964 /* AudioToolbox.framework in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+ 19C28FACFE9D520D11CA2CBB /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 1D6058910D05DD3D006BFB54 /* Rectangles.app */,
+ FD15FCB20E086866003BDF25 /* Happy.app */,
+ FD5F9BE40E0DEBEA008E885B /* Accel.app */,
+ FDC202EE0E107B1200ABAC90 /* Touch.app */,
+ FDF0D6A40E12D05400247964 /* Mixer.app */,
+ FDC52EDE0E2843D6008D768C /* Fireworks.app */,
+ FDB6520C0E43D1F300F688B5 /* Keyboard.app */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ 29B97314FDCFA39411CA2CEA /* CustomTemplate */ = {
+ isa = PBXGroup;
+ children = (
+ FD1B48920E313154007AB34E /* SDLiPhoneOS.xcodeproj */,
+ FD77A0040E26BC0500F39101 /* src */,
+ 29B97317FDCFA39411CA2CEA /* Resources */,
+ 29B97323FDCFA39411CA2CEA /* Frameworks */,
+ 19C28FACFE9D520D11CA2CBB /* Products */,
+ );
+ name = CustomTemplate;
+ sourceTree = "";
+ };
+ 29B97317FDCFA39411CA2CEA /* Resources */ = {
+ isa = PBXGroup;
+ children = (
+ FDB651C30E43D19800F688B5 /* data */,
+ FD787AA00E22A5CC003E8E36 /* Default.png */,
+ FD925B180E0F276600E92347 /* Icon.png */,
+ 8D1107310486CEB800E47090 /* Info.plist */,
+ );
+ name = Resources;
+ sourceTree = "";
+ };
+ 29B97323FDCFA39411CA2CEA /* Frameworks */ = {
+ isa = PBXGroup;
+ children = (
+ FDF0D7220E12D31800247964 /* AudioToolbox.framework */,
+ FDB96EDF0DEFC9DC00FAF19F /* QuartzCore.framework */,
+ FDB96ED30DEFC9C700FAF19F /* OpenGLES.framework */,
+ 1D3623EB0D0F72F000981E51 /* CoreGraphics.framework */,
+ 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */,
+ 1D30AB110D05D00D00671497 /* Foundation.framework */,
+ FDF0D71D0E12D2AB00247964 /* CoreAudio.framework */,
+ );
+ name = Frameworks;
+ sourceTree = "";
+ };
+ FD1B48930E313154007AB34E /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ FD1B489E0E313154007AB34E /* libSDL.a */,
+ 04AB757111E563D200BE9753 /* testsdl.app */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ FD77A0040E26BC0500F39101 /* src */ = {
+ isa = PBXGroup;
+ children = (
+ FD77A0060E26BC0500F39101 /* common.c */,
+ FD77A0070E26BC0500F39101 /* common.h */,
+ FD77A00A0E26BC0500F39101 /* rectangles.c */,
+ FD77A0080E26BC0500F39101 /* happy.c */,
+ FD77A0050E26BC0500F39101 /* accelerometer.c */,
+ FD77A00B0E26BC0500F39101 /* touch.c */,
+ FD77A0090E26BC0500F39101 /* mixer.c */,
+ FDB652110E43D21A00F688B5 /* keyboard.c */,
+ FDC52EE40E284410008D768C /* fireworks.c */,
+ );
+ path = src;
+ sourceTree = "";
+ };
+ FDB651C30E43D19800F688B5 /* data */ = {
+ isa = PBXGroup;
+ children = (
+ FDB651C40E43D19800F688B5 /* bitmapfont */,
+ FDB651C70E43D19800F688B5 /* drums */,
+ FDB651CC0E43D19800F688B5 /* icon.bmp */,
+ FDB651CD0E43D19800F688B5 /* ship.bmp */,
+ FDB651CE0E43D19800F688B5 /* space.bmp */,
+ FDB651CF0E43D19800F688B5 /* stroke.bmp */,
+ );
+ path = data;
+ sourceTree = "";
+ };
+ FDB651C40E43D19800F688B5 /* bitmapfont */ = {
+ isa = PBXGroup;
+ children = (
+ FDB652C60E43E25900F688B5 /* kromasky_16x16.bmp */,
+ FDB651C60E43D19800F688B5 /* license.txt */,
+ );
+ path = bitmapfont;
+ sourceTree = "";
+ };
+ FDB651C70E43D19800F688B5 /* drums */ = {
+ isa = PBXGroup;
+ children = (
+ FDB651C80E43D19800F688B5 /* ds_brush_snare.wav */,
+ FDB651C90E43D19800F688B5 /* ds_china.wav */,
+ FDB651CA0E43D19800F688B5 /* ds_kick_big_amb.wav */,
+ FDB651CB0E43D19800F688B5 /* ds_loose_skin_mute.wav */,
+ );
+ path = drums;
+ sourceTree = "";
+ };
+/* End PBXGroup section */
+
+/* Begin PBXNativeTarget section */
+ 1D6058900D05DD3D006BFB54 /* Rectangles */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "Rectangles" */;
+ buildPhases = (
+ 1D60588D0D05DD3D006BFB54 /* Resources */,
+ 1D60588E0D05DD3D006BFB54 /* Sources */,
+ 1D60588F0D05DD3D006BFB54 /* Frameworks */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ 049F3695130CD86800FF080F /* PBXTargetDependency */,
+ );
+ name = Rectangles;
+ productName = SDLiPodTest;
+ productReference = 1D6058910D05DD3D006BFB54 /* Rectangles.app */;
+ productType = "com.apple.product-type.application";
+ };
+ FD15FCB10E086866003BDF25 /* Happy */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = FD15FCB70E086867003BDF25 /* Build configuration list for PBXNativeTarget "Happy" */;
+ buildPhases = (
+ FD15FCAE0E086866003BDF25 /* Resources */,
+ FD15FCAF0E086866003BDF25 /* Sources */,
+ FD15FCB00E086866003BDF25 /* Frameworks */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ 049F3697130CD87600FF080F /* PBXTargetDependency */,
+ );
+ name = Happy;
+ productName = BMPTest;
+ productReference = FD15FCB20E086866003BDF25 /* Happy.app */;
+ productType = "com.apple.product-type.application";
+ };
+ FD5F9BE30E0DEBEA008E885B /* Accel */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = FD5F9BE90E0DEBEB008E885B /* Build configuration list for PBXNativeTarget "Accel" */;
+ buildPhases = (
+ FD5F9BE00E0DEBEA008E885B /* Resources */,
+ FD5F9BE10E0DEBEA008E885B /* Sources */,
+ FD5F9BE20E0DEBEA008E885B /* Frameworks */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ 049F3699130CD87F00FF080F /* PBXTargetDependency */,
+ );
+ name = Accel;
+ productName = Accelerometer;
+ productReference = FD5F9BE40E0DEBEA008E885B /* Accel.app */;
+ productType = "com.apple.product-type.application";
+ };
+ FDB651F70E43D1F300F688B5 /* Keyboard */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = FDB652090E43D1F300F688B5 /* Build configuration list for PBXNativeTarget "Keyboard" */;
+ buildPhases = (
+ FDB651F80E43D1F300F688B5 /* Resources */,
+ FDB651FC0E43D1F300F688B5 /* Sources */,
+ FDB651FF0E43D1F300F688B5 /* Frameworks */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ 049F36A1130CD8A000FF080F /* PBXTargetDependency */,
+ );
+ name = Keyboard;
+ productName = Accelerometer;
+ productReference = FDB6520C0E43D1F300F688B5 /* Keyboard.app */;
+ productType = "com.apple.product-type.application";
+ };
+ FDC202DD0E107B1200ABAC90 /* Touch */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = FDC202EB0E107B1200ABAC90 /* Build configuration list for PBXNativeTarget "Touch" */;
+ buildPhases = (
+ FDC202DE0E107B1200ABAC90 /* Resources */,
+ FDC202E20E107B1200ABAC90 /* Sources */,
+ FDC202E40E107B1200ABAC90 /* Frameworks */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ 049F369B130CD88800FF080F /* PBXTargetDependency */,
+ );
+ name = Touch;
+ productName = Accelerometer;
+ productReference = FDC202EE0E107B1200ABAC90 /* Touch.app */;
+ productType = "com.apple.product-type.application";
+ };
+ FDC52EC60E2843D6008D768C /* Fireworks */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = FDC52EDB0E2843D6008D768C /* Build configuration list for PBXNativeTarget "Fireworks" */;
+ buildPhases = (
+ FDC52EC70E2843D6008D768C /* Resources */,
+ FDC52ECE0E2843D6008D768C /* Sources */,
+ FDC52ED10E2843D6008D768C /* Frameworks */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ 049F369F130CD89800FF080F /* PBXTargetDependency */,
+ );
+ name = Fireworks;
+ productName = Accelerometer;
+ productReference = FDC52EDE0E2843D6008D768C /* Fireworks.app */;
+ productType = "com.apple.product-type.application";
+ };
+ FDF0D6920E12D05400247964 /* Mixer */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = FDF0D6A10E12D05400247964 /* Build configuration list for PBXNativeTarget "Mixer" */;
+ buildPhases = (
+ FDF0D6930E12D05400247964 /* Resources */,
+ FDF0D6980E12D05400247964 /* Sources */,
+ FDF0D69A0E12D05400247964 /* Frameworks */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ 049F369D130CD89000FF080F /* PBXTargetDependency */,
+ );
+ name = Mixer;
+ productName = Accelerometer;
+ productReference = FDF0D6A40E12D05400247964 /* Mixer.app */;
+ productType = "com.apple.product-type.application";
+ };
+/* End PBXNativeTarget section */
+
+/* Begin PBXProject section */
+ 29B97313FDCFA39411CA2CEA /* Project object */ = {
+ isa = PBXProject;
+ buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "DemosiPhoneOS" */;
+ compatibilityVersion = "Xcode 3.1";
+ developmentRegion = English;
+ hasScannedForEncodings = 1;
+ knownRegions = (
+ English,
+ Japanese,
+ French,
+ German,
+ );
+ mainGroup = 29B97314FDCFA39411CA2CEA /* CustomTemplate */;
+ projectDirPath = "";
+ projectReferences = (
+ {
+ ProductGroup = FD1B48930E313154007AB34E /* Products */;
+ ProjectRef = FD1B48920E313154007AB34E /* SDLiPhoneOS.xcodeproj */;
+ },
+ );
+ projectRoot = "";
+ targets = (
+ 1D6058900D05DD3D006BFB54 /* Rectangles */,
+ FD15FCB10E086866003BDF25 /* Happy */,
+ FD5F9BE30E0DEBEA008E885B /* Accel */,
+ FDC202DD0E107B1200ABAC90 /* Touch */,
+ FDF0D6920E12D05400247964 /* Mixer */,
+ FDC52EC60E2843D6008D768C /* Fireworks */,
+ FDB651F70E43D1F300F688B5 /* Keyboard */,
+ );
+ };
+/* End PBXProject section */
+
+/* Begin PBXReferenceProxy section */
+ 04AB757111E563D200BE9753 /* testsdl.app */ = {
+ isa = PBXReferenceProxy;
+ fileType = wrapper.application;
+ path = testsdl.app;
+ remoteRef = 04AB757011E563D200BE9753 /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+ FD1B489E0E313154007AB34E /* libSDL.a */ = {
+ isa = PBXReferenceProxy;
+ fileType = archive.ar;
+ path = libSDL.a;
+ remoteRef = FD1B489D0E313154007AB34E /* PBXContainerItemProxy */;
+ sourceTree = BUILT_PRODUCTS_DIR;
+ };
+/* End PBXReferenceProxy section */
+
+/* Begin PBXResourcesBuildPhase section */
+ 1D60588D0D05DD3D006BFB54 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ FD925B1B0E0F276600E92347 /* Icon.png in Resources */,
+ FD787AA20E22A5CC003E8E36 /* Default.png in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ FD15FCAE0E086866003BDF25 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ FDB651D00E43D1AD00F688B5 /* icon.bmp in Resources */,
+ FD925B1A0E0F276600E92347 /* Icon.png in Resources */,
+ FD787AA10E22A5CC003E8E36 /* Default.png in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ FD5F9BE00E0DEBEA008E885B /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ FDB651D20E43D1B500F688B5 /* space.bmp in Resources */,
+ FDB651D10E43D1B300F688B5 /* ship.bmp in Resources */,
+ FD925B190E0F276600E92347 /* Icon.png in Resources */,
+ FD787AA30E22A5CC003E8E36 /* Default.png in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ FDB651F80E43D1F300F688B5 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ FDB651F90E43D1F300F688B5 /* stroke.bmp in Resources */,
+ FDB651FA0E43D1F300F688B5 /* Icon.png in Resources */,
+ FDB651FB0E43D1F300F688B5 /* Default.png in Resources */,
+ FDB652C70E43E25900F688B5 /* kromasky_16x16.bmp in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ FDC202DE0E107B1200ABAC90 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ FDB651D30E43D1BA00F688B5 /* stroke.bmp in Resources */,
+ FDC202E10E107B1200ABAC90 /* Icon.png in Resources */,
+ FD787AA40E22A5CC003E8E36 /* Default.png in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ FDC52EC70E2843D6008D768C /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ FDB651D80E43D1D800F688B5 /* stroke.bmp in Resources */,
+ FDC52EC80E2843D6008D768C /* Icon.png in Resources */,
+ FDC52EC90E2843D6008D768C /* Default.png in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ FDF0D6930E12D05400247964 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ FDB651D40E43D1C500F688B5 /* ds_brush_snare.wav in Resources */,
+ FDB651D50E43D1C500F688B5 /* ds_china.wav in Resources */,
+ FDB651D60E43D1C500F688B5 /* ds_kick_big_amb.wav in Resources */,
+ FDB651D70E43D1C500F688B5 /* ds_loose_skin_mute.wav in Resources */,
+ FDF0D6960E12D05400247964 /* Icon.png in Resources */,
+ FD787AA50E22A5CC003E8E36 /* Default.png in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXResourcesBuildPhase section */
+
+/* Begin PBXSourcesBuildPhase section */
+ 1D60588E0D05DD3D006BFB54 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ FD77A0130E26BC0500F39101 /* common.c in Sources */,
+ FD77A0160E26BC0500F39101 /* rectangles.c in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ FD15FCAF0E086866003BDF25 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ FDC214870E26D78A00DDED23 /* common.c in Sources */,
+ FD77A00E0E26BC0500F39101 /* happy.c in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ FD5F9BE10E0DEBEA008E885B /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ FD77A0190E26BC0500F39101 /* common.c in Sources */,
+ FD77A02A0E26BC2700F39101 /* accelerometer.c in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ FDB651FC0E43D1F300F688B5 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ FDB651FD0E43D1F300F688B5 /* common.c in Sources */,
+ FDB652120E43D21A00F688B5 /* keyboard.c in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ FDC202E20E107B1200ABAC90 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ FD77A01F0E26BC0500F39101 /* common.c in Sources */,
+ FD77A0230E26BC0500F39101 /* touch.c in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ FDC52ECE0E2843D6008D768C /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ FDC52ECF0E2843D6008D768C /* common.c in Sources */,
+ FDC52EE50E284410008D768C /* fireworks.c in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ FDF0D6980E12D05400247964 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ FD77A0250E26BC0500F39101 /* common.c in Sources */,
+ FD77A0270E26BC0500F39101 /* mixer.c in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXSourcesBuildPhase section */
+
+/* Begin PBXTargetDependency section */
+ 049F3695130CD86800FF080F /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ name = libSDL;
+ targetProxy = 049F3694130CD86800FF080F /* PBXContainerItemProxy */;
+ };
+ 049F3697130CD87600FF080F /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ name = libSDL;
+ targetProxy = 049F3696130CD87600FF080F /* PBXContainerItemProxy */;
+ };
+ 049F3699130CD87F00FF080F /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ name = libSDL;
+ targetProxy = 049F3698130CD87F00FF080F /* PBXContainerItemProxy */;
+ };
+ 049F369B130CD88800FF080F /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ name = libSDL;
+ targetProxy = 049F369A130CD88800FF080F /* PBXContainerItemProxy */;
+ };
+ 049F369D130CD89000FF080F /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ name = libSDL;
+ targetProxy = 049F369C130CD89000FF080F /* PBXContainerItemProxy */;
+ };
+ 049F369F130CD89800FF080F /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ name = libSDL;
+ targetProxy = 049F369E130CD89800FF080F /* PBXContainerItemProxy */;
+ };
+ 049F36A1130CD8A000FF080F /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ name = libSDL;
+ targetProxy = 049F36A0130CD8A000FF080F /* PBXContainerItemProxy */;
+ };
+/* End PBXTargetDependency section */
+
+/* Begin XCBuildConfiguration section */
+ 1D6058940D05DD3E006BFB54 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ COPY_PHASE_STRIP = NO;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
+ GCC_PREFIX_HEADER = "";
+ INFOPLIST_FILE = Info.plist;
+ LIBRARY_SEARCH_PATHS = (
+ "$(inherited)",
+ "\"$(SRCROOT)/../SDLiPod/build/Debug-iphoneos\"",
+ "\"$(SRCROOT)/../SDLiPod/build/Release-iphoneos\"",
+ "\"$(SRCROOT)\"",
+ "\"$(SRCROOT)/../SDLiPod/build/Debug-iphonesimulator\"",
+ "\"$(SRCROOT)/../SDL/build/Debug-iphoneos\"",
+ );
+ PRODUCT_NAME = Rectangles;
+ };
+ name = Debug;
+ };
+ 1D6058950D05DD3E006BFB54 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ COPY_PHASE_STRIP = YES;
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
+ GCC_PREFIX_HEADER = "";
+ INFOPLIST_FILE = Info.plist;
+ LIBRARY_SEARCH_PATHS = (
+ "$(inherited)",
+ "\"$(SRCROOT)/../SDLiPod/build/Debug-iphoneos\"",
+ "\"$(SRCROOT)/../SDLiPod/build/Release-iphoneos\"",
+ "\"$(SRCROOT)\"",
+ "\"$(SRCROOT)/../SDLiPod/build/Debug-iphonesimulator\"",
+ "\"$(SRCROOT)/../SDL/build/Debug-iphoneos\"",
+ );
+ PRODUCT_NAME = Rectangles;
+ };
+ name = Release;
+ };
+ C01FCF4F08A954540054247B /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ ARCHS = "$(ARCHS_STANDARD_32_BIT)";
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ GCC_C_LANGUAGE_STANDARD = c99;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ HEADER_SEARCH_PATHS = ../../include;
+ IPHONEOS_DEPLOYMENT_TARGET = 3.1.3;
+ LIBRARY_SEARCH_PATHS = "";
+ ONLY_ACTIVE_ARCH = YES;
+ OTHER_CFLAGS = "";
+ OTHER_LDFLAGS = "-ObjC";
+ PREBINDING = NO;
+ PRELINK_LIBS = "";
+ SDKROOT = iphoneos;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ };
+ name = Debug;
+ };
+ C01FCF5008A954540054247B /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ ARCHS = "$(ARCHS_STANDARD_32_BIT)";
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ GCC_C_LANGUAGE_STANDARD = c99;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ HEADER_SEARCH_PATHS = ../../include;
+ IPHONEOS_DEPLOYMENT_TARGET = 3.1.3;
+ LIBRARY_SEARCH_PATHS = "";
+ OTHER_CFLAGS = "";
+ OTHER_LDFLAGS = "-ObjC";
+ PREBINDING = NO;
+ PRELINK_LIBS = "";
+ SDKROOT = iphoneos;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ };
+ name = Release;
+ };
+ FD15FCB50E086866003BDF25 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CODE_SIGN_IDENTITY = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
+ GCC_PREFIX_HEADER = "";
+ INFOPLIST_FILE = Info.plist;
+ LIBRARY_SEARCH_PATHS = (
+ "$(inherited)",
+ "\"$(SRCROOT)/../SDL/build/Debug-iphoneos\"",
+ );
+ PREBINDING = NO;
+ PRODUCT_NAME = Happy;
+ SDKROOT = iphoneos;
+ };
+ name = Debug;
+ };
+ FD15FCB60E086866003BDF25 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CODE_SIGN_IDENTITY = "iPhone Developer";
+ COPY_PHASE_STRIP = YES;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ GCC_ENABLE_FIX_AND_CONTINUE = NO;
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
+ GCC_PREFIX_HEADER = "";
+ INFOPLIST_FILE = Info.plist;
+ LIBRARY_SEARCH_PATHS = (
+ "$(inherited)",
+ "\"$(SRCROOT)/../SDL/build/Debug-iphoneos\"",
+ );
+ PREBINDING = NO;
+ PRODUCT_NAME = Happy;
+ SDKROOT = iphoneos;
+ ZERO_LINK = NO;
+ };
+ name = Release;
+ };
+ FD5F9BE70E0DEBEB008E885B /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CODE_SIGN_IDENTITY = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
+ GCC_PREFIX_HEADER = "";
+ INFOPLIST_FILE = Info.plist;
+ INSTALL_PATH = "$(HOME)/Applications";
+ LIBRARY_SEARCH_PATHS = (
+ "$(inherited)",
+ "\"$(SRCROOT)/../SDL/build/Debug-iphoneos\"",
+ );
+ PREBINDING = NO;
+ PRODUCT_NAME = Accel;
+ SDKROOT = iphoneos;
+ };
+ name = Debug;
+ };
+ FD5F9BE80E0DEBEB008E885B /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CODE_SIGN_IDENTITY = "iPhone Developer";
+ COPY_PHASE_STRIP = YES;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ GCC_ENABLE_FIX_AND_CONTINUE = NO;
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
+ GCC_PREFIX_HEADER = "";
+ INFOPLIST_FILE = Info.plist;
+ INSTALL_PATH = "$(HOME)/Applications";
+ LIBRARY_SEARCH_PATHS = (
+ "$(inherited)",
+ "\"$(SRCROOT)/../SDL/build/Debug-iphoneos\"",
+ );
+ PREBINDING = NO;
+ PRODUCT_NAME = Accel;
+ SDKROOT = iphoneos;
+ ZERO_LINK = NO;
+ };
+ name = Release;
+ };
+ FDB6520A0E43D1F300F688B5 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CODE_SIGN_IDENTITY = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
+ GCC_PREFIX_HEADER = "";
+ INFOPLIST_FILE = Info.plist;
+ INSTALL_PATH = "$(HOME)/Applications";
+ LIBRARY_SEARCH_PATHS = "$(inherited)";
+ PREBINDING = NO;
+ PRODUCT_NAME = Keyboard;
+ SDKROOT = iphoneos;
+ };
+ name = Debug;
+ };
+ FDB6520B0E43D1F300F688B5 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CODE_SIGN_IDENTITY = "iPhone Developer";
+ COPY_PHASE_STRIP = YES;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ GCC_ENABLE_FIX_AND_CONTINUE = NO;
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
+ GCC_PREFIX_HEADER = "";
+ INFOPLIST_FILE = Info.plist;
+ INSTALL_PATH = "$(HOME)/Applications";
+ LIBRARY_SEARCH_PATHS = "$(inherited)";
+ PREBINDING = NO;
+ PRODUCT_NAME = Fireworks;
+ SDKROOT = iphoneos;
+ ZERO_LINK = NO;
+ };
+ name = Release;
+ };
+ FDC202EC0E107B1200ABAC90 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CODE_SIGN_IDENTITY = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
+ GCC_PREFIX_HEADER = "";
+ INFOPLIST_FILE = Info.plist;
+ INSTALL_PATH = "$(HOME)/Applications";
+ LIBRARY_SEARCH_PATHS = (
+ "$(inherited)",
+ "\"$(SRCROOT)/../SDL/build/Debug-iphoneos\"",
+ );
+ PREBINDING = NO;
+ PRODUCT_NAME = Touch;
+ SDKROOT = iphoneos;
+ };
+ name = Debug;
+ };
+ FDC202ED0E107B1200ABAC90 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CODE_SIGN_IDENTITY = "iPhone Developer";
+ COPY_PHASE_STRIP = YES;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ GCC_ENABLE_FIX_AND_CONTINUE = NO;
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
+ GCC_PREFIX_HEADER = "";
+ INFOPLIST_FILE = Info.plist;
+ INSTALL_PATH = "$(HOME)/Applications";
+ LIBRARY_SEARCH_PATHS = (
+ "$(inherited)",
+ "\"$(SRCROOT)/../SDL/build/Debug-iphoneos\"",
+ );
+ PREBINDING = NO;
+ PRODUCT_NAME = Touch;
+ SDKROOT = iphoneos;
+ ZERO_LINK = NO;
+ };
+ name = Release;
+ };
+ FDC52EDC0E2843D6008D768C /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CODE_SIGN_IDENTITY = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
+ GCC_PREFIX_HEADER = "";
+ INFOPLIST_FILE = Info.plist;
+ INSTALL_PATH = "$(HOME)/Applications";
+ LIBRARY_SEARCH_PATHS = "$(inherited)";
+ PREBINDING = NO;
+ PRODUCT_NAME = Fireworks;
+ SDKROOT = iphoneos;
+ };
+ name = Debug;
+ };
+ FDC52EDD0E2843D6008D768C /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CODE_SIGN_IDENTITY = "iPhone Developer";
+ COPY_PHASE_STRIP = YES;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ GCC_ENABLE_FIX_AND_CONTINUE = NO;
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
+ GCC_PREFIX_HEADER = "";
+ INFOPLIST_FILE = Info.plist;
+ INSTALL_PATH = "$(HOME)/Applications";
+ LIBRARY_SEARCH_PATHS = "$(inherited)";
+ PREBINDING = NO;
+ PRODUCT_NAME = Fireworks;
+ SDKROOT = iphoneos;
+ ZERO_LINK = NO;
+ };
+ name = Release;
+ };
+ FDF0D6A20E12D05400247964 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CODE_SIGN_IDENTITY = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
+ GCC_PREFIX_HEADER = "";
+ INFOPLIST_FILE = Info.plist;
+ INSTALL_PATH = "$(HOME)/Applications";
+ LIBRARY_SEARCH_PATHS = (
+ "$(inherited)",
+ "\"$(SRCROOT)\"",
+ "\"$(SRCROOT)/../SDL/build/Debug-iphoneos\"",
+ );
+ PREBINDING = NO;
+ PRODUCT_NAME = Mixer;
+ SDKROOT = iphoneos;
+ };
+ name = Debug;
+ };
+ FDF0D6A30E12D05400247964 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CODE_SIGN_IDENTITY = "iPhone Developer";
+ COPY_PHASE_STRIP = YES;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ GCC_ENABLE_FIX_AND_CONTINUE = NO;
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
+ GCC_PREFIX_HEADER = "";
+ INFOPLIST_FILE = Info.plist;
+ INSTALL_PATH = "$(HOME)/Applications";
+ LIBRARY_SEARCH_PATHS = (
+ "$(inherited)",
+ "\"$(SRCROOT)\"",
+ "\"$(SRCROOT)/../SDL/build/Debug-iphoneos\"",
+ );
+ PREBINDING = NO;
+ PRODUCT_NAME = Mixer;
+ SDKROOT = iphoneos;
+ ZERO_LINK = NO;
+ };
+ name = Release;
+ };
+/* End XCBuildConfiguration section */
+
+/* Begin XCConfigurationList section */
+ 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "Rectangles" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 1D6058940D05DD3E006BFB54 /* Debug */,
+ 1D6058950D05DD3E006BFB54 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ C01FCF4E08A954540054247B /* Build configuration list for PBXProject "DemosiPhoneOS" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ C01FCF4F08A954540054247B /* Debug */,
+ C01FCF5008A954540054247B /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ FD15FCB70E086867003BDF25 /* Build configuration list for PBXNativeTarget "Happy" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ FD15FCB50E086866003BDF25 /* Debug */,
+ FD15FCB60E086866003BDF25 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ FD5F9BE90E0DEBEB008E885B /* Build configuration list for PBXNativeTarget "Accel" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ FD5F9BE70E0DEBEB008E885B /* Debug */,
+ FD5F9BE80E0DEBEB008E885B /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ FDB652090E43D1F300F688B5 /* Build configuration list for PBXNativeTarget "Keyboard" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ FDB6520A0E43D1F300F688B5 /* Debug */,
+ FDB6520B0E43D1F300F688B5 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ FDC202EB0E107B1200ABAC90 /* Build configuration list for PBXNativeTarget "Touch" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ FDC202EC0E107B1200ABAC90 /* Debug */,
+ FDC202ED0E107B1200ABAC90 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ FDC52EDB0E2843D6008D768C /* Build configuration list for PBXNativeTarget "Fireworks" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ FDC52EDC0E2843D6008D768C /* Debug */,
+ FDC52EDD0E2843D6008D768C /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ FDF0D6A10E12D05400247964 /* Build configuration list for PBXNativeTarget "Mixer" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ FDF0D6A20E12D05400247964 /* Debug */,
+ FDF0D6A30E12D05400247964 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+/* End XCConfigurationList section */
+ };
+ rootObject = 29B97313FDCFA39411CA2CEA /* Project object */;
+}
diff --git a/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/Icon.png b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/Icon.png
new file mode 100644
index 0000000000..83f4d10a21
Binary files /dev/null and b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/Icon.png differ
diff --git a/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/Info.plist b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/Info.plist
new file mode 100644
index 0000000000..c0f1179d35
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/Info.plist
@@ -0,0 +1,28 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ en
+ CFBundleDisplayName
+ ${PRODUCT_NAME}
+ CFBundleExecutable
+ ${EXECUTABLE_NAME}
+ CFBundleIconFile
+
+ CFBundleIdentifier
+ com.yourcompany.${PRODUCT_NAME:identifier}
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ ${PRODUCT_NAME}
+ CFBundlePackageType
+ APPL
+ CFBundleSignature
+ ????
+ CFBundleVersion
+ 1.0
+ NSMainNibFile
+
+
+
diff --git a/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/README b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/README
new file mode 100644
index 0000000000..76c1c09a11
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/README
@@ -0,0 +1,43 @@
+==============================================================================
+About the iPhone OS Demo Applications
+==============================================================================
+
+DemosiPhoneOS.xcodeproj contains several targets for iPhone oriented SDL demos. These demos are written strictly using SDL 1.3 calls. All the demos except for Fireworks (which requires OpenGL ES) should work on platforms other than iPhone OS, though you'll need to write your own compile script. To run them on your favorite platform, you may wish to set the macros SCREEN_WIDTH and SCREEN_HEIGHT, located in common.h.
+
+Common files:
+
+ common.c and common.h contain code common to all demo applications. This includes macros about the screen dimensions (in pixels), simple error handling, and functions for generating random numbers.
+
+Rectangles (rectangles.c):
+
+ Draws randomly sized and colored rectangles all over the screen by using SDL_RenderFill. This is the simplest of all the demos.
+
+Happy (happy.c):
+
+ Loads the classic happy-face bitmap and draws a large number of happy faces bouncing around the screen. Shows how you can load a bitmap into an SDL_Texture.
+
+Accelerometer (accelerometer.c):
+
+ Uses the iPhone's accelerometer as a joystick device to move a spaceship around the screen. Note the use of the macro SDL_IPHONE_MAX_GFORCE (normally defined in SDL_config_iphoneos.h) which converts between the Sint16 number returned by SDL_JoystickGetAxis, and the floating point units of g-force reported natively by the iPhone.
+
+Touch (touch.c):
+
+ Acts as a finger-paint type program. Demonstrates how you can use SDL mouse input to accept touch input from the iPhone. If SDL for iPhone is compiled with multitouch as multiple mouse emulation (SDL_IPHONE_MULTIPLE_MICE in SDL_config_iphoneos.h) then the program will accept multiple finger inputs simultaneously.
+
+Mixer (mixer.c):
+
+ Displays several rectangular buttons which can be used as a virtual drumkit. Demonstrates how you can play .wav sounds in SDL and how you can use SDL_MixAudioFormat to build a software mixer that can play multiple sounds at once.
+
+Keyboard (keyboard.c):
+
+ Loads a bitmap font and let's the user type words, numbers, and symbols using the iPhone's virtual keyboard. The iPhone's onscreen keyboard visibility is toggled when the user taps the screen. If the user types ':)' a happy face is displayed. Demonstrates how to use functions added to the iPhone implementation of SDL to toggle keyboard onscreen visibility.
+
+Fireworks (fireworks.c):
+
+ Displays a fireworks show. When you tap the iPhone's screen, fireworks fly from the bottom of the screen and explode at the point that you tapped. Demonstrates how you can use SDL on iPhone to build an OpenGL ES based application. Shows you how you can use SDL_LoadBMP to load a bmp image and convert it to an OpenGL ES texture. Of lesser importance, shows how you can use OpenGL ES point sprites to build an efficient particle system.
+
+==============================================================================
+Building and Running the demos
+==============================================================================
+
+Before building the demos you must first build SDL as a static library for BOTH the iPhone Simulator and the iPhone itself. See the iPhone SDL main README file for directions on how to do this. Once this is done, simply launch XCode, select the target you'd like to build, select the active SDK (simulator or device), and then build and go.
diff --git a/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/bitmapfont/kromasky_16x16.bmp b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/bitmapfont/kromasky_16x16.bmp
new file mode 100644
index 0000000000..c0b6fb964f
Binary files /dev/null and b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/bitmapfont/kromasky_16x16.bmp differ
diff --git a/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/bitmapfont/license.txt b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/bitmapfont/license.txt
new file mode 100755
index 0000000000..6949ec444b
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/bitmapfont/license.txt
@@ -0,0 +1,258 @@
+ __ _ _
+ / _| | | | |
+| |_ ___ _ __ | |_ _ __ __ _ ___| | __
+| _/ _ \| '_ \| __| '_ \ / _` |/ __| |/ /
+| || (_) | | | | |_| |_) | (_| | (__| <
+|_| \___/|_| |_|\__| .__/ \__,_|\___|_|\_\
+ | |
+ |_|
+----------------------------------------------------------------------
+Product : font-pack.zip
+Website : http://www.spicypixel.net
+Author : Marc Russell
+Released: 16th January 2008
+----------------------------------------------------------------------
+
+What is this?
+-------------
+font-pack is a package of free art assets to be used under the terms of this document. It is available to game developers and hobbyists alike.
+
+Contents
+--------
+The contents of the font-pack ZIP file include 20 bitmap fonts
+
+Usage License & Restrictions
+----------------------------
+font-pack is distributed under the "Common Public License Version 1.0."
+The terms of which are given below. If you do not understand the terms of the license please refer to a solicitor. It should however, be relatively clear how this package can be used.
+
+THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON
+PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF
+THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
+
+1. DEFINITIONS
+
+"Contribution" means:
+
+ a) in the case of the initial Contributor, the initial code and
+ documentation distributed under this Agreement, and
+
+ b) in the case of each subsequent Contributor:
+
+ i) changes to the Program, and
+
+ ii) additions to the Program;
+
+ where such changes and/or additions to the Program originate from
+ and are distributed by that particular Contributor. A Contribution
+ 'originates' from a Contributor if it was added to the Program by
+ such Contributor itself or anyone acting on such Contributor's
+ behalf. Contributions do not include additions to the Program which:
+ (i) are separate modules of software distributed in conjunction with
+ the Program under their own license agreement, and (ii) are not
+ derivative works of the Program.
+
+"Contributor" means any person or entity that distributes the Program.
+
+"Licensed Patents " mean patent claims licensable by a Contributor which
+are necessarily infringed by the use or sale of its Contribution alone
+or when combined with the Program.
+
+"Program" means the Contributions distributed in accordance with this
+Agreement.
+
+"Recipient" means anyone who receives the Program under this Agreement,
+including all Contributors.
+
+2. GRANT OF RIGHTS
+
+ a) Subject to the terms of this Agreement, each Contributor hereby
+ grants Recipient a non-exclusive, worldwide, royalty-free copyright
+ license to reproduce, prepare derivative works of, publicly display,
+ publicly perform, distribute and sublicense the Contribution of such
+ Contributor, if any, and such derivative works, in source code and
+ object code form.
+
+ b) Subject to the terms of this Agreement, each Contributor hereby
+ grants Recipient a non-exclusive, worldwide, royalty-free patent
+ license under Licensed Patents to make, use, sell, offer to sell,
+ import and otherwise transfer the Contribution of such Contributor,
+ if any, in source code and object code form. This patent license
+ shall apply to the combination of the Contribution and the Program
+ if, at the time the Contribution is added by the Contributor, such
+ addition of the Contribution causes such combination to be covered
+ by the Licensed Patents. The patent license shall not apply to any
+ other combinations which include the Contribution. No hardware per
+ se is licensed hereunder.
+
+ c) Recipient understands that although each Contributor grants the
+ licenses to its Contributions set forth herein, no assurances are
+ provided by any Contributor that the Program does not infringe the
+ patent or other intellectual property rights of any other entity.
+ Each Contributor disclaims any liability to Recipient for claims
+ brought by any other entity based on infringement of intellectual
+ property rights or otherwise. As a condition to exercising the
+ rights and licenses granted hereunder, each Recipient hereby assumes
+ sole responsibility to secure any other intellectual property rights
+ needed, if any. For example, if a third party patent license is
+ required to allow Recipient to distribute the Program, it is
+ Recipient's responsibility to acquire that license before
+ distributing the Program.
+
+ d) Each Contributor represents that to its knowledge it has
+ sufficient copyright rights in its Contribution, if any, to grant
+ the copyright license set forth in this Agreement.
+
+3. REQUIREMENTS
+
+A Contributor may choose to distribute the Program in object code form
+under its own license agreement, provided that:
+
+ a) it complies with the terms and conditions of this Agreement; and
+
+ b) its license agreement:
+
+ i) effectively disclaims on behalf of all Contributors all
+ warranties and conditions, express and implied, including warranties
+ or conditions of title and non-infringement, and implied warranties
+ or conditions of merchantability and fitness for a particular
+ purpose;
+
+ ii) effectively excludes on behalf of all Contributors all liability
+ for damages, including direct, indirect, special, incidental and
+ consequential damages, such as lost profits;
+
+ iii) states that any provisions which differ from this Agreement are
+ offered by that Contributor alone and not by any other party; and
+
+ iv) states that source code for the Program is available from such
+ Contributor, and informs licensees how to obtain it in a reasonable
+ manner on or through a medium customarily used for software
+ exchange.
+
+When the Program is made available in source code form:
+
+ a) it must be made available under this Agreement; and
+
+ b) a copy of this Agreement must be included with each copy of the
+ Program.
+
+Contributors may not remove or alter any copyright notices contained
+within the Program.
+
+Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.
+
+4. COMMERCIAL DISTRIBUTION
+
+Commercial distributors of software may accept certain responsibilities
+with respect to end users, business partners and the like. While this
+license is intended to facilitate the commercial use of the Program, the
+Contributor who includes the Program in a commercial product offering
+should do so in a manner which does not create potential liability for
+other Contributors. Therefore, if a Contributor includes the Program in
+a commercial product offering, such Contributor ("Commercial
+Contributor") hereby agrees to defend and indemnify every other
+Contributor ("Indemnified Contributor") against any losses, damages and
+costs (collectively "Losses") arising from claims, lawsuits and other
+legal actions brought by a third party against the Indemnified
+Contributor to the extent caused by the acts or omissions of such
+Commercial Contributor in connection with its distribution of the
+Program in a commercial product offering. The obligations in this
+section do not apply to any claims or Losses relating to any actual or
+alleged intellectual property infringement. In order to qualify, an
+Indemnified Contributor must: a) promptly notify the Commercial
+Contributor in writing of such claim, and b) allow the Commercial
+Contributor to control, and cooperate with the Commercial Contributor
+in, the defense and any related settlement negotiations. The Indemnified
+Contributor may participate in any such claim at its own expense.
+
+For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.
+
+5. NO WARRANTY
+
+EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED
+ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
+EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES
+OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR
+A PARTICULAR PURPOSE. Each Recipient is solely responsible for
+determining the appropriateness of using and distributing the Program
+and assumes all risks associated with its exercise of rights under this
+Agreement, including but not limited to the risks and costs of program
+errors, compliance with applicable laws, damage to or loss of data,
+programs or equipment, and unavailability or interruption of operations.
+
+6. DISCLAIMER OF LIABILITY
+
+EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR
+ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+7. GENERAL
+
+If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.
+
+If Recipient institutes patent litigation against a Contributor with
+respect to a patent applicable to software (including a cross-claim or
+counterclaim in a lawsuit), then any patent licenses granted by that
+Contributor to such Recipient under this Agreement shall terminate as of
+the date such litigation is filed. In addition, if Recipient institutes
+patent litigation against any entity (including a cross-claim or
+counterclaim in a lawsuit) alleging that the Program itself (excluding
+combinations of the Program with other software or hardware) infringes
+such Recipient's patent(s), then such Recipient's rights granted under
+Section 2(b) shall terminate as of the date such litigation is filed.
+
+All Recipient's rights under this Agreement shall terminate if it fails
+to comply with any of the material terms or conditions of this Agreement
+and does not cure such failure in a reasonable period of time after
+becoming aware of such noncompliance. If all Recipient's rights under
+this Agreement terminate, Recipient agrees to cease use and distribution
+of the Program as soon as reasonably practicable. However, Recipient's
+obligations under this Agreement and any licenses granted by Recipient
+relating to the Program shall continue and survive.
+
+Everyone is permitted to copy and distribute copies of this Agreement,
+but in order to avoid inconsistency the Agreement is copyrighted and may
+only be modified in the following manner. The Agreement Steward reserves
+the right to publish new versions (including revisions) of this
+Agreement from time to time. No one other than the Agreement Steward has
+the right to modify this Agreement. IBM is the initial Agreement
+Steward. IBM may assign the responsibility to serve as the Agreement
+Steward to a suitable separate entity. Each new version of the Agreement
+will be given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.
+
+This Agreement is governed by the laws of the State of New York and the
+intellectual property laws of the United States of America. No party to
+this Agreement will bring a legal action under this Agreement more than
+one year after the cause of action arose. Each party waives its rights
+to a jury trial in any resulting litigation.
+
diff --git a/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/drums/ds_brush_snare.wav b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/drums/ds_brush_snare.wav
new file mode 100644
index 0000000000..fa752637a0
Binary files /dev/null and b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/drums/ds_brush_snare.wav differ
diff --git a/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/drums/ds_china.wav b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/drums/ds_china.wav
new file mode 100644
index 0000000000..21a71a1b1e
Binary files /dev/null and b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/drums/ds_china.wav differ
diff --git a/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/drums/ds_kick_big_amb.wav b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/drums/ds_kick_big_amb.wav
new file mode 100644
index 0000000000..404115a18d
Binary files /dev/null and b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/drums/ds_kick_big_amb.wav differ
diff --git a/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/drums/ds_loose_skin_mute.wav b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/drums/ds_loose_skin_mute.wav
new file mode 100644
index 0000000000..3db05222b5
Binary files /dev/null and b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/drums/ds_loose_skin_mute.wav differ
diff --git a/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/icon.bmp b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/icon.bmp
new file mode 100644
index 0000000000..cc96356acb
Binary files /dev/null and b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/icon.bmp differ
diff --git a/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/ship.bmp b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/ship.bmp
new file mode 100644
index 0000000000..b682dc49d3
Binary files /dev/null and b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/ship.bmp differ
diff --git a/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/space.bmp b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/space.bmp
new file mode 100644
index 0000000000..5bcf273a83
Binary files /dev/null and b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/space.bmp differ
diff --git a/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/stroke.bmp b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/stroke.bmp
new file mode 100644
index 0000000000..d59fed4590
Binary files /dev/null and b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/data/stroke.bmp differ
diff --git a/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/accelerometer.c b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/accelerometer.c
new file mode 100644
index 0000000000..339febc119
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/accelerometer.c
@@ -0,0 +1,236 @@
+/*
+ * accelerometer.c
+ * written by Holmes Futrell
+ * use however you want
+ */
+
+#include "SDL.h"
+#include "math.h"
+#include "common.h"
+
+#define MILLESECONDS_PER_FRAME 16 /* about 60 frames per second */
+#define DAMPING 0.5f; /* after bouncing off a wall, damping coefficient determines final speed */
+#define FRICTION 0.0008f /* coefficient of acceleration that opposes direction of motion */
+#define GRAVITY_CONSTANT 0.004f /* how sensitive the ship is to the accelerometer */
+
+/* If we aren't on an iPhone, then this definition ought to yield reasonable behavior */
+#ifndef SDL_IPHONE_MAX_GFORCE
+#define SDL_IPHONE_MAX_GFORCE 5.0f
+#endif
+
+static SDL_Joystick *accelerometer; /* used for controlling the ship */
+
+static struct
+{
+ float x, y; /* position of ship */
+ float vx, vy; /* velocity of ship (in pixels per millesecond) */
+ SDL_Rect rect; /* (drawn) position and size of ship */
+} shipData;
+
+static SDL_Texture *ship = 0; /* texture for spaceship */
+static SDL_Texture *space = 0; /* texture for space (background */
+
+void
+render(SDL_Renderer *renderer)
+{
+
+
+ /* get joystick (accelerometer) axis values and normalize them */
+ float ax = SDL_JoystickGetAxis(accelerometer, 0);
+ float ay = -SDL_JoystickGetAxis(accelerometer, 1);
+
+ /* ship screen constraints */
+ Uint32 minx = 0.0f;
+ Uint32 maxx = SCREEN_WIDTH - shipData.rect.w;
+ Uint32 miny = 0.0f;
+ Uint32 maxy = SCREEN_HEIGHT - shipData.rect.h;
+
+#define SINT16_MAX ((float)(0x7FFF))
+
+ /* update velocity from accelerometer
+ the factor SDL_IPHONE_MAX_G_FORCE / SINT16_MAX converts between
+ SDL's units reported from the joytick, and units of g-force, as reported by the accelerometer
+ */
+ shipData.vx +=
+ ax * SDL_IPHONE_MAX_GFORCE / SINT16_MAX * GRAVITY_CONSTANT *
+ MILLESECONDS_PER_FRAME;
+ shipData.vy +=
+ ay * SDL_IPHONE_MAX_GFORCE / SINT16_MAX * GRAVITY_CONSTANT *
+ MILLESECONDS_PER_FRAME;
+
+ float speed = sqrt(shipData.vx * shipData.vx + shipData.vy * shipData.vy);
+
+ if (speed > 0) {
+ /* compensate for friction */
+ float dirx = shipData.vx / speed; /* normalized x velocity */
+ float diry = shipData.vy / speed; /* normalized y velocity */
+
+ /* update velocity due to friction */
+ if (speed - FRICTION * MILLESECONDS_PER_FRAME > 0) {
+ /* apply friction */
+ shipData.vx -= dirx * FRICTION * MILLESECONDS_PER_FRAME;
+ shipData.vy -= diry * FRICTION * MILLESECONDS_PER_FRAME;
+ } else {
+ /* applying friction would MORE than stop the ship, so just stop the ship */
+ shipData.vx = 0.0f;
+ shipData.vy = 0.0f;
+ }
+ }
+
+ /* update ship location */
+ shipData.x += shipData.vx * MILLESECONDS_PER_FRAME;
+ shipData.y += shipData.vy * MILLESECONDS_PER_FRAME;
+
+ if (shipData.x > maxx) {
+ shipData.x = maxx;
+ shipData.vx = -shipData.vx * DAMPING;
+ } else if (shipData.x < minx) {
+ shipData.x = minx;
+ shipData.vx = -shipData.vx * DAMPING;
+ }
+ if (shipData.y > maxy) {
+ shipData.y = maxy;
+ shipData.vy = -shipData.vy * DAMPING;
+ } else if (shipData.y < miny) {
+ shipData.y = miny;
+ shipData.vy = -shipData.vy * DAMPING;
+ }
+
+ /* draw the background */
+ SDL_RenderCopy(renderer, space, NULL, NULL);
+
+ /* draw the ship */
+ shipData.rect.x = shipData.x;
+ shipData.rect.y = shipData.y;
+
+ SDL_RenderCopy(renderer, ship, NULL, &shipData.rect);
+
+ /* update screen */
+ SDL_RenderPresent(renderer);
+
+}
+
+void
+initializeTextures(SDL_Renderer *renderer)
+{
+
+ SDL_Surface *bmp_surface;
+
+ /* load the ship */
+ bmp_surface = SDL_LoadBMP("ship.bmp");
+ if (bmp_surface == NULL) {
+ fatalError("could not ship.bmp");
+ }
+ /* set blue to transparent on the ship */
+ SDL_SetColorKey(bmp_surface, 1,
+ SDL_MapRGB(bmp_surface->format, 0, 0, 255));
+
+ /* create ship texture from surface */
+ ship = SDL_CreateTextureFromSurface(renderer, bmp_surface);
+ if (ship == 0) {
+ fatalError("could not create ship texture");
+ }
+ SDL_SetTextureBlendMode(ship, SDL_BLENDMODE_BLEND);
+
+ /* set the width and height of the ship from the surface dimensions */
+ shipData.rect.w = bmp_surface->w;
+ shipData.rect.h = bmp_surface->h;
+
+ SDL_FreeSurface(bmp_surface);
+
+ /* load the space background */
+ bmp_surface = SDL_LoadBMP("space.bmp");
+ if (bmp_surface == NULL) {
+ fatalError("could not load space.bmp");
+ }
+ /* create space texture from surface */
+ space = SDL_CreateTextureFromSurface(renderer, bmp_surface);
+ if (space == 0) {
+ fatalError("could not create space texture");
+ }
+ SDL_FreeSurface(bmp_surface);
+
+}
+
+
+
+int
+main(int argc, char *argv[])
+{
+
+ SDL_Window *window; /* main window */
+ SDL_Renderer *renderer;
+ Uint32 startFrame; /* time frame began to process */
+ Uint32 endFrame; /* time frame ended processing */
+ Uint32 delay; /* time to pause waiting to draw next frame */
+ int done; /* should we clean up and exit? */
+
+ /* initialize SDL */
+ if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_JOYSTICK) < 0) {
+ fatalError("Could not initialize SDL");
+ }
+
+ /* create main window and renderer */
+ window = SDL_CreateWindow(NULL, 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT,
+ SDL_WINDOW_OPENGL | SDL_WINDOW_SHOWN |
+ SDL_WINDOW_BORDERLESS);
+ renderer = SDL_CreateRenderer(window, 0, 0);
+
+ /* print out some info about joysticks and try to open accelerometer for use */
+ printf("There are %d joysticks available\n", SDL_NumJoysticks());
+ printf("Default joystick (index 0) is %s\n", SDL_JoystickName(0));
+ accelerometer = SDL_JoystickOpen(0);
+ if (accelerometer == NULL) {
+ fatalError("Could not open joystick (accelerometer)");
+ }
+ printf("joystick number of axis = %d\n",
+ SDL_JoystickNumAxes(accelerometer));
+ printf("joystick number of hats = %d\n",
+ SDL_JoystickNumHats(accelerometer));
+ printf("joystick number of balls = %d\n",
+ SDL_JoystickNumBalls(accelerometer));
+ printf("joystick number of buttons = %d\n",
+ SDL_JoystickNumButtons(accelerometer));
+
+ /* load graphics */
+ initializeTextures(renderer);
+
+ /* setup ship */
+ shipData.x = (SCREEN_WIDTH - shipData.rect.w) / 2;
+ shipData.y = (SCREEN_HEIGHT - shipData.rect.h) / 2;
+ shipData.vx = 0.0f;
+ shipData.vy = 0.0f;
+
+ done = 0;
+ /* enter main loop */
+ while (!done) {
+ startFrame = SDL_GetTicks();
+ SDL_Event event;
+ while (SDL_PollEvent(&event)) {
+ if (event.type == SDL_QUIT) {
+ done = 1;
+ }
+ }
+ render(renderer);
+ endFrame = SDL_GetTicks();
+
+ /* figure out how much time we have left, and then sleep */
+ delay = MILLESECONDS_PER_FRAME - (endFrame - startFrame);
+ if (delay < 0) {
+ delay = 0;
+ } else if (delay > MILLESECONDS_PER_FRAME) {
+ delay = MILLESECONDS_PER_FRAME;
+ }
+ SDL_Delay(delay);
+ }
+
+ /* delete textures */
+ SDL_DestroyTexture(ship);
+ SDL_DestroyTexture(space);
+
+ /* shutdown SDL */
+ SDL_Quit();
+
+ return 0;
+
+}
diff --git a/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/common.c b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/common.c
new file mode 100644
index 0000000000..fd3a176db1
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/common.c
@@ -0,0 +1,36 @@
+/*
+ * common.c
+ * written by Holmes Futrell
+ * use however you want
+ */
+
+#include "common.h"
+#include "SDL.h"
+#include
+
+/*
+ Produces a random int x, min <= x <= max
+ following a uniform distribution
+*/
+int
+randomInt(int min, int max)
+{
+ return min + rand() % (max - min + 1);
+}
+
+/*
+ Produces a random float x, min <= x <= max
+ following a uniform distribution
+ */
+float
+randomFloat(float min, float max)
+{
+ return rand() / (float) RAND_MAX *(max - min) + min;
+}
+
+void
+fatalError(const char *string)
+{
+ printf("%s: %s\n", string, SDL_GetError());
+ exit(1);
+}
diff --git a/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/common.h b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/common.h
new file mode 100644
index 0000000000..9aa01a23eb
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/common.h
@@ -0,0 +1,12 @@
+/*
+ * common.h
+ * written by Holmes Futrell
+ * use however you want
+ */
+
+#define SCREEN_WIDTH 320
+#define SCREEN_HEIGHT 480
+
+extern int randomInt(int min, int max);
+extern float randomFloat(float min, float max);
+extern void fatalError(const char *string);
diff --git a/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/fireworks.c b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/fireworks.c
new file mode 100644
index 0000000000..fa39abff52
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/fireworks.c
@@ -0,0 +1,475 @@
+/*
+ * fireworks.c
+ * written by Holmes Futrell
+ * use however you want
+ */
+
+#include "SDL.h"
+#include "SDL_opengles.h"
+#include "common.h"
+#include
+#include
+
+#define MILLESECONDS_PER_FRAME 16 /* about 60 frames per second */
+#define ACCEL 0.0001f /* acceleration due to gravity, units in pixels per millesecond squared */
+#define WIND_RESISTANCE 0.00005f /* acceleration per unit velocity due to wind resistance */
+#define MAX_PARTICLES 2000 /* maximum number of particles displayed at once */
+
+static GLuint particleTextureID; /* OpenGL particle texture id */
+static SDL_bool pointSizeExtensionSupported; /* is GL_OES_point_size_array supported ? */
+/*
+ used to describe what type of particle a given struct particle is.
+ emitter - this particle flies up, shooting off trail particles, then finally explodes into dust particles.
+ trail - shoots off, following emitter particle
+ dust - radiates outwards from emitter explosion
+*/
+enum particleType
+{
+ emitter = 0,
+ trail,
+ dust
+};
+/*
+ struct particle is used to describe each particle displayed on screen
+*/
+struct particle
+{
+ GLfloat x; /* x position of particle */
+ GLfloat y; /* y position of particle */
+ GLubyte color[4]; /* rgba color of particle */
+ GLfloat size; /* size of particle in pixels */
+ GLfloat xvel; /* x velocity of particle in pixels per milesecond */
+ GLfloat yvel; /* y velocity of particle in pixels per millescond */
+ int isActive; /* if not active, then particle is overwritten */
+ enum particleType type; /* see enum particleType */
+} particles[MAX_PARTICLES]; /* this array holds all our particles */
+
+static int num_active_particles; /* how many members of the particle array are actually being drawn / animated? */
+static int screen_w, screen_h;
+
+/* function declarations */
+void spawnTrailFromEmitter(struct particle *emitter);
+void spawnEmitterParticle(GLfloat x, GLfloat y);
+void explodeEmitter(struct particle *emitter);
+void initializeParticles(void);
+void initializeTexture();
+int nextPowerOfTwo(int x);
+void drawParticles();
+void stepParticles(void);
+
+/* helper function (used in texture loading)
+ returns next power of two greater than or equal to x
+*/
+int
+nextPowerOfTwo(int x)
+{
+ int val = 1;
+ while (val < x) {
+ val *= 2;
+ }
+ return val;
+}
+
+/*
+ steps each active particle by timestep MILLESECONDS_PER_FRAME
+*/
+void
+stepParticles(void)
+{
+ int i;
+ struct particle *slot = particles;
+ struct particle *curr = particles;
+ for (i = 0; i < num_active_particles; i++) {
+ /* is the particle actually active, or is it marked for deletion? */
+ if (curr->isActive) {
+ /* is the particle off the screen? */
+ if (curr->y > screen_h)
+ curr->isActive = 0;
+ else if (curr->y < 0)
+ curr->isActive = 0;
+ if (curr->x > screen_w)
+ curr->isActive = 0;
+ else if (curr->x < 0)
+ curr->isActive = 0;
+
+ /* step velocity, then step position */
+ curr->yvel += ACCEL * MILLESECONDS_PER_FRAME;
+ curr->xvel += 0.0f;
+ curr->y += curr->yvel * MILLESECONDS_PER_FRAME;
+ curr->x += curr->xvel * MILLESECONDS_PER_FRAME;
+
+ /* particle behavior */
+ if (curr->type == emitter) {
+ /* if we're an emitter, spawn a trail */
+ spawnTrailFromEmitter(curr);
+ /* if we've reached our peak, explode */
+ if (curr->yvel > 0.0) {
+ explodeEmitter(curr);
+ }
+ } else {
+ float speed =
+ sqrt(curr->xvel * curr->xvel + curr->yvel * curr->yvel);
+ /* if wind resistance is not powerful enough to stop us completely,
+ then apply winde resistance, otherwise just stop us completely */
+ if (WIND_RESISTANCE * MILLESECONDS_PER_FRAME < speed) {
+ float normx = curr->xvel / speed;
+ float normy = curr->yvel / speed;
+ curr->xvel -=
+ normx * WIND_RESISTANCE * MILLESECONDS_PER_FRAME;
+ curr->yvel -=
+ normy * WIND_RESISTANCE * MILLESECONDS_PER_FRAME;
+ } else {
+ curr->xvel = curr->yvel = 0; /* stop particle */
+ }
+
+ if (curr->color[3] <= MILLESECONDS_PER_FRAME * 0.1275f) {
+ /* if this next step will cause us to fade out completely
+ then just mark for deletion */
+ curr->isActive = 0;
+ } else {
+ /* otherwise, let's fade a bit more */
+ curr->color[3] -= MILLESECONDS_PER_FRAME * 0.1275f;
+ }
+
+ /* if we're a dust particle, shrink our size */
+ if (curr->type == dust)
+ curr->size -= MILLESECONDS_PER_FRAME * 0.010f;
+
+ }
+
+ /* if we're still active, pack ourselves in the array next
+ to the last active guy (pack the array tightly) */
+ if (curr->isActive)
+ *(slot++) = *curr;
+ } /* endif (curr->isActive) */
+ curr++;
+ }
+ /* the number of active particles is computed as the difference between
+ old number of active particles, where slot points, and the
+ new size of the array, where particles points */
+ num_active_particles = slot - particles;
+}
+
+/*
+ This draws all the particles shown on screen
+*/
+void
+drawParticles()
+{
+
+ /* draw the background */
+ glClear(GL_COLOR_BUFFER_BIT);
+
+ /* set up the position and color pointers */
+ glVertexPointer(2, GL_FLOAT, sizeof(struct particle), particles);
+ glColorPointer(4, GL_UNSIGNED_BYTE, sizeof(struct particle),
+ particles[0].color);
+
+ if (pointSizeExtensionSupported) {
+ /* pass in our array of point sizes */
+ glPointSizePointerOES(GL_FLOAT, sizeof(struct particle),
+ &(particles[0].size));
+ }
+
+ /* draw our particles! */
+ glDrawArrays(GL_POINTS, 0, num_active_particles);
+
+}
+
+/*
+ This causes an emitter to explode in a circular bloom of dust particles
+*/
+void
+explodeEmitter(struct particle *emitter)
+{
+ /* first off, we're done with this particle, so turn active off */
+ emitter->isActive = 0;
+ int i;
+ for (i = 0; i < 200; i++) {
+
+ if (num_active_particles >= MAX_PARTICLES)
+ return;
+
+ /* come up with a random angle and speed for new particle */
+ float theta = randomFloat(0, 2.0f * 3.141592);
+ float exponent = 3.0f;
+ float speed = randomFloat(0.00, powf(0.17, exponent));
+ speed = powf(speed, 1.0f / exponent);
+
+ /*select the particle at the end of our array */
+ struct particle *p = &particles[num_active_particles];
+
+ /* set the particles properties */
+ p->xvel = speed * cos(theta);
+ p->yvel = speed * sin(theta);
+ p->x = emitter->x + emitter->xvel;
+ p->y = emitter->y + emitter->yvel;
+ p->isActive = 1;
+ p->type = dust;
+ p->size = 15;
+ /* inherit emitter's color */
+ p->color[0] = emitter->color[0];
+ p->color[1] = emitter->color[1];
+ p->color[2] = emitter->color[2];
+ p->color[3] = 255;
+ /* our array has expanded at the end */
+ num_active_particles++;
+ }
+
+}
+
+/*
+ This spawns a trail particle from an emitter
+*/
+void
+spawnTrailFromEmitter(struct particle *emitter)
+{
+
+ if (num_active_particles >= MAX_PARTICLES)
+ return;
+
+ /* select the particle at the slot at the end of our array */
+ struct particle *p = &particles[num_active_particles];
+
+ /* set position and velocity to roughly that of the emitter */
+ p->x = emitter->x + randomFloat(-3.0, 3.0);
+ p->y = emitter->y + emitter->size / 2.0f;
+ p->xvel = emitter->xvel + randomFloat(-0.005, 0.005);
+ p->yvel = emitter->yvel + 0.1;
+
+ /* set the color to a random-ish orangy type color */
+ p->color[0] = (0.8f + randomFloat(-0.1, 0.0)) * 255;
+ p->color[1] = (0.4f + randomFloat(-0.1, 0.1)) * 255;
+ p->color[2] = (0.0f + randomFloat(0.0, 0.2)) * 255;
+ p->color[3] = (0.7f) * 255;
+
+ /* set other attributes */
+ p->size = 10;
+ p->type = trail;
+ p->isActive = 1;
+
+ /* our array has expanded at the end */
+ num_active_particles++;
+
+}
+
+/*
+ spawns a new emitter particle at the bottom of the screen
+ destined for the point (x,y).
+*/
+void
+spawnEmitterParticle(GLfloat x, GLfloat y)
+{
+
+ if (num_active_particles >= MAX_PARTICLES)
+ return;
+
+ /* find particle at endpoint of array */
+ struct particle *p = &particles[num_active_particles];
+
+ /* set the color randomly */
+ switch (rand() % 4) {
+ case 0:
+ p->color[0] = 255;
+ p->color[1] = 100;
+ p->color[2] = 100;
+ break;
+ case 1:
+ p->color[0] = 100;
+ p->color[1] = 255;
+ p->color[2] = 100;
+ break;
+ case 2:
+ p->color[0] = 100;
+ p->color[1] = 100;
+ p->color[2] = 255;
+ break;
+ case 3:
+ p->color[0] = 255;
+ p->color[1] = 150;
+ p->color[2] = 50;
+ break;
+ }
+ p->color[3] = 255;
+ /* set position to (x, screen_h) */
+ p->x = x;
+ p->y = screen_h;
+ /* set velocity so that terminal point is (x,y) */
+ p->xvel = 0;
+ p->yvel = -sqrt(2 * ACCEL * (screen_h - y));
+ /* set other attributes */
+ p->size = 10;
+ p->type = emitter;
+ p->isActive = 1;
+ /* our array has expanded at the end */
+ num_active_particles++;
+}
+
+/* just sets the endpoint of the particle array to element zero */
+void
+initializeParticles(void)
+{
+ num_active_particles = 0;
+}
+
+/*
+ loads the particle texture
+ */
+void
+initializeTexture()
+{
+
+ int bpp; /* texture bits per pixel */
+ Uint32 Rmask, Gmask, Bmask, Amask; /* masks for pixel format passed into OpenGL */
+ SDL_Surface *bmp_surface; /* the bmp is loaded here */
+ SDL_Surface *bmp_surface_rgba8888; /* this serves as a destination to convert the BMP
+ to format passed into OpenGL */
+
+ bmp_surface = SDL_LoadBMP("stroke.bmp");
+ if (bmp_surface == NULL) {
+ fatalError("could not load stroke.bmp");
+ }
+
+ /* Grab info about format that will be passed into OpenGL */
+ SDL_PixelFormatEnumToMasks(SDL_PIXELFORMAT_ABGR8888, &bpp, &Rmask, &Gmask,
+ &Bmask, &Amask);
+ /* Create surface that will hold pixels passed into OpenGL */
+ bmp_surface_rgba8888 =
+ SDL_CreateRGBSurface(0, bmp_surface->w, bmp_surface->h, bpp, Rmask,
+ Gmask, Bmask, Amask);
+ /* Blit to this surface, effectively converting the format */
+ SDL_BlitSurface(bmp_surface, NULL, bmp_surface_rgba8888, NULL);
+
+ glGenTextures(1, &particleTextureID);
+ glBindTexture(GL_TEXTURE_2D, particleTextureID);
+ glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA,
+ nextPowerOfTwo(bmp_surface->w),
+ nextPowerOfTwo(bmp_surface->h),
+ 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL);
+ glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
+ glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
+ /* this is where we actually pass in the pixel data */
+ glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, bmp_surface->w, bmp_surface->h, 0,
+ GL_RGBA, GL_UNSIGNED_BYTE, bmp_surface_rgba8888->pixels);
+
+ /* free bmp surface and converted bmp surface */
+ SDL_FreeSurface(bmp_surface);
+ SDL_FreeSurface(bmp_surface_rgba8888);
+
+}
+
+int
+main(int argc, char *argv[])
+{
+ SDL_Window *window; /* main window */
+ SDL_GLContext context;
+ int w, h;
+ Uint32 startFrame; /* time frame began to process */
+ Uint32 endFrame; /* time frame ended processing */
+ Uint32 delay; /* time to pause waiting to draw next frame */
+ int done; /* should we clean up and exit? */
+
+ /* initialize SDL */
+ if (SDL_Init(SDL_INIT_VIDEO) < 0) {
+ fatalError("Could not initialize SDL");
+ }
+ /* seed the random number generator */
+ srand(time(NULL));
+ /*
+ request some OpenGL parameters
+ that may speed drawing
+ */
+ SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 5);
+ SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 6);
+ SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 5);
+ SDL_GL_SetAttribute(SDL_GL_ALPHA_SIZE, 0);
+ SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 0);
+ SDL_GL_SetAttribute(SDL_GL_RETAINED_BACKING, 0);
+ SDL_GL_SetAttribute(SDL_GL_ACCELERATED_VISUAL, 1);
+
+ /* create main window and renderer */
+ window = SDL_CreateWindow(NULL, 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT,
+ SDL_WINDOW_OPENGL | SDL_WINDOW_SHOWN |
+ SDL_WINDOW_BORDERLESS);
+ context = SDL_GL_CreateContext(window);
+
+ /* load the particle texture */
+ initializeTexture();
+
+ /* check if GL_POINT_SIZE_ARRAY_OES is supported
+ this is used to give each particle its own size
+ */
+ pointSizeExtensionSupported =
+ SDL_GL_ExtensionSupported("GL_OES_point_size_array");
+
+ /* set up some OpenGL state */
+ glDisable(GL_DEPTH_TEST);
+ glDisable(GL_CULL_FACE);
+
+ glMatrixMode(GL_MODELVIEW);
+ glLoadIdentity();
+
+ SDL_GetWindowSize(window, &screen_w, &screen_h);
+ glViewport(0, 0, screen_w, screen_h);
+
+ glMatrixMode(GL_PROJECTION);
+ glLoadIdentity();
+ glOrthof((GLfloat) 0,
+ (GLfloat) screen_w,
+ (GLfloat) screen_h,
+ (GLfloat) 0, 0.0, 1.0);
+
+ glEnable(GL_TEXTURE_2D);
+ glEnable(GL_BLEND);
+ glBlendFunc(GL_SRC_ALPHA, GL_ONE);
+ glEnableClientState(GL_VERTEX_ARRAY);
+ glEnableClientState(GL_COLOR_ARRAY);
+
+ glEnable(GL_POINT_SPRITE_OES);
+ glTexEnvi(GL_POINT_SPRITE_OES, GL_COORD_REPLACE_OES, 1);
+
+ if (pointSizeExtensionSupported) {
+ /* we use this to set the sizes of all the particles */
+ glEnableClientState(GL_POINT_SIZE_ARRAY_OES);
+ } else {
+ /* if extension not available then all particles have size 10 */
+ glPointSize(10);
+ }
+
+ done = 0;
+ /* enter main loop */
+ while (!done) {
+ startFrame = SDL_GetTicks();
+ SDL_Event event;
+ while (SDL_PollEvent(&event)) {
+ if (event.type == SDL_QUIT) {
+ done = 1;
+ }
+ if (event.type == SDL_MOUSEBUTTONDOWN) {
+ int x, y;
+ SDL_GetMouseState(&x, &y);
+ spawnEmitterParticle(x, y);
+ }
+ }
+ stepParticles();
+ drawParticles();
+ SDL_GL_SwapWindow(window);
+ endFrame = SDL_GetTicks();
+
+ /* figure out how much time we have left, and then sleep */
+ delay = MILLESECONDS_PER_FRAME - (endFrame - startFrame);
+ if (delay > MILLESECONDS_PER_FRAME) {
+ delay = MILLESECONDS_PER_FRAME;
+ }
+ if (delay > 0) {
+ SDL_Delay(delay);
+ }
+ }
+
+ /* delete textures */
+ glDeleteTextures(1, &particleTextureID);
+ /* shutdown SDL */
+ SDL_Quit();
+
+ return 0;
+}
diff --git a/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/happy.c b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/happy.c
new file mode 100644
index 0000000000..c1731b8797
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/happy.c
@@ -0,0 +1,177 @@
+/*
+ * happy.c
+ * written by Holmes Futrell
+ * use however you want
+ */
+
+#include "SDL.h"
+#include "common.h"
+
+#define NUM_HAPPY_FACES 100 /* number of faces to draw */
+#define MILLESECONDS_PER_FRAME 16 /* about 60 frames per second */
+#define HAPPY_FACE_SIZE 32 /* width and height of happyface (pixels) */
+
+static SDL_Texture *texture = 0; /* reference to texture holding happyface */
+
+static struct
+{
+ float x, y; /* position of happyface */
+ float xvel, yvel; /* velocity of happyface */
+} faces[NUM_HAPPY_FACES];
+
+/*
+ Sets initial positions and velocities of happyfaces
+ units of velocity are pixels per millesecond
+*/
+void
+initializeHappyFaces()
+{
+ int i;
+ for (i = 0; i < NUM_HAPPY_FACES; i++) {
+ faces[i].x = randomFloat(0.0f, SCREEN_WIDTH - HAPPY_FACE_SIZE);
+ faces[i].y = randomFloat(0.0f, SCREEN_HEIGHT - HAPPY_FACE_SIZE);
+ faces[i].xvel = randomFloat(-0.1f, 0.1f);
+ faces[i].yvel = randomFloat(-0.1f, 0.1f);
+ }
+}
+
+void
+render(SDL_Renderer *renderer)
+{
+
+ int i;
+ SDL_Rect srcRect;
+ SDL_Rect dstRect;
+
+ /* setup boundaries for happyface bouncing */
+ Uint16 maxx = SCREEN_WIDTH - HAPPY_FACE_SIZE;
+ Uint16 maxy = SCREEN_HEIGHT - HAPPY_FACE_SIZE;
+ Uint16 minx = 0;
+ Uint16 miny = 0;
+
+ /* setup rects for drawing */
+ srcRect.x = 0;
+ srcRect.y = 0;
+ srcRect.w = HAPPY_FACE_SIZE;
+ srcRect.h = HAPPY_FACE_SIZE;
+ dstRect.w = HAPPY_FACE_SIZE;
+ dstRect.h = HAPPY_FACE_SIZE;
+
+ /* fill background in with black */
+ SDL_SetRenderDrawColor(renderer, 0, 0, 0, 255);
+ SDL_RenderClear(renderer);
+
+ /*
+ loop through all the happy faces:
+ - update position
+ - update velocity (if boundary is hit)
+ - draw
+ */
+ for (i = 0; i < NUM_HAPPY_FACES; i++) {
+ faces[i].x += faces[i].xvel * MILLESECONDS_PER_FRAME;
+ faces[i].y += faces[i].yvel * MILLESECONDS_PER_FRAME;
+ if (faces[i].x > maxx) {
+ faces[i].x = maxx;
+ faces[i].xvel = -faces[i].xvel;
+ } else if (faces[i].y > maxy) {
+ faces[i].y = maxy;
+ faces[i].yvel = -faces[i].yvel;
+ }
+ if (faces[i].x < minx) {
+ faces[i].x = minx;
+ faces[i].xvel = -faces[i].xvel;
+ } else if (faces[i].y < miny) {
+ faces[i].y = miny;
+ faces[i].yvel = -faces[i].yvel;
+ }
+ dstRect.x = faces[i].x;
+ dstRect.y = faces[i].y;
+ SDL_RenderCopy(renderer, texture, &srcRect, &dstRect);
+ }
+ /* update screen */
+ SDL_RenderPresent(renderer);
+
+}
+
+/*
+ loads the happyface graphic into a texture
+*/
+void
+initializeTexture(SDL_Renderer *renderer)
+{
+ SDL_Surface *bmp_surface;
+ /* load the bmp */
+ bmp_surface = SDL_LoadBMP("icon.bmp");
+ if (bmp_surface == NULL) {
+ fatalError("could not load bmp");
+ }
+ /* set white to transparent on the happyface */
+ SDL_SetColorKey(bmp_surface, 1,
+ SDL_MapRGB(bmp_surface->format, 255, 255, 255));
+
+ /* convert RGBA surface to texture */
+ texture = SDL_CreateTextureFromSurface(renderer, bmp_surface);
+ if (texture == 0) {
+ fatalError("could not create texture");
+ }
+ SDL_SetTextureBlendMode(texture, SDL_BLENDMODE_BLEND);
+
+ /* free up allocated memory */
+ SDL_FreeSurface(bmp_surface);
+}
+
+int
+main(int argc, char *argv[])
+{
+
+ SDL_Window *window;
+ SDL_Renderer *renderer;
+ Uint32 startFrame;
+ Uint32 endFrame;
+ Uint32 delay;
+ int done;
+
+ /* initialize SDL */
+ if (SDL_Init(SDL_INIT_VIDEO) < 0) {
+ fatalError("Could not initialize SDL");
+ }
+ window = SDL_CreateWindow(NULL, 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT,
+ SDL_WINDOW_OPENGL | SDL_WINDOW_SHOWN |
+ SDL_WINDOW_BORDERLESS);
+
+ renderer = SDL_CreateRenderer(window, -1, 0);
+
+ initializeTexture(renderer);
+ initializeHappyFaces();
+
+ /* main loop */
+ done = 0;
+ while (!done) {
+ startFrame = SDL_GetTicks();
+ SDL_Event event;
+ while (SDL_PollEvent(&event)) {
+ if (event.type == SDL_QUIT) {
+ done = 1;
+ }
+ }
+ render(renderer);
+ endFrame = SDL_GetTicks();
+
+ /* figure out how much time we have left, and then sleep */
+ delay = MILLESECONDS_PER_FRAME - (endFrame - startFrame);
+ if (delay < 0) {
+ delay = 0;
+ } else if (delay > MILLESECONDS_PER_FRAME) {
+ delay = MILLESECONDS_PER_FRAME;
+ }
+ SDL_Delay(delay);
+ }
+
+ /* cleanup */
+ SDL_DestroyTexture(texture);
+ /* shutdown SDL */
+ SDL_Quit();
+
+ return 0;
+
+}
diff --git a/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/keyboard.c b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/keyboard.c
new file mode 100644
index 0000000000..d7e5cf96cd
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/keyboard.c
@@ -0,0 +1,319 @@
+/*
+ * keyboard.c
+ * written by Holmes Futrell
+ * use however you want
+ */
+
+#import "SDL.h"
+#import "common.h"
+
+#define GLYPH_SIZE_IMAGE 16 /* size of glyphs (characters) in the bitmap font file */
+#define GLYPH_SIZE_SCREEN 32 /* size of glyphs (characters) as shown on the screen */
+
+static SDL_Texture *texture; /* texture where we'll hold our font */
+
+/* iPhone SDL addition keyboard related function definitions */
+extern DECLSPEC int SDLCALL SDL_iPhoneKeyboardShow(SDL_Window * window);
+extern DECLSPEC int SDLCALL SDL_iPhoneKeyboardHide(SDL_Window * window);
+extern DECLSPEC SDL_bool SDLCALL SDL_iPhoneKeyboardIsShown(SDL_Window *
+ window);
+extern DECLSPEC int SDLCALL SDL_iPhoneKeyboardToggle(SDL_Window * window);
+
+/* function declarations */
+void cleanup(void);
+void drawBlank(int x, int y);
+
+static SDL_Renderer *renderer;
+static int numChars = 0; /* number of characters we've typed so far */
+static SDL_bool lastCharWasColon = 0; /* we use this to detect sequences such as :) */
+static SDL_Color bg_color = { 50, 50, 100, 255 }; /* color of background */
+
+/* this structure maps a scancode to an index in our bitmap font.
+ it also contains data about under which modifiers the mapping is valid
+ (for example, we don't want shift + 1 to produce the character '1',
+ but rather the character '!')
+*/
+typedef struct
+{
+ SDL_ScanCode scancode; /* scancode of the key we want to map */
+ int allow_no_mod; /* is the map valid if the key has no modifiers? */
+ SDLMod mod; /* what modifiers are allowed for the mapping */
+ int index; /* what index in the font does the scancode map to */
+} fontMapping;
+
+#define TABLE_SIZE 51 /* size of our table which maps keys and modifiers to font indices */
+
+/* Below is the table that defines the mapping between scancodes and modifiers to indices in the
+ bitmap font. As an example, then line '{ SDL_SCANCODE_A, 1, KMOD_SHIFT, 33 }' means, map
+ the key A (which has scancode SDL_SCANCODE_A) to index 33 in the font (which is a picture of an A),
+ The '1' means that the mapping is valid even if there are no modifiers, and KMOD_SHIFT means the
+ mapping is also valid if the user is holding shift.
+*/
+fontMapping map[TABLE_SIZE] = {
+
+ {SDL_SCANCODE_A, 1, KMOD_SHIFT, 33}, /* A */
+ {SDL_SCANCODE_B, 1, KMOD_SHIFT, 34}, /* B */
+ {SDL_SCANCODE_C, 1, KMOD_SHIFT, 35}, /* C */
+ {SDL_SCANCODE_D, 1, KMOD_SHIFT, 36}, /* D */
+ {SDL_SCANCODE_E, 1, KMOD_SHIFT, 37}, /* E */
+ {SDL_SCANCODE_F, 1, KMOD_SHIFT, 38}, /* F */
+ {SDL_SCANCODE_G, 1, KMOD_SHIFT, 39}, /* G */
+ {SDL_SCANCODE_H, 1, KMOD_SHIFT, 40}, /* H */
+ {SDL_SCANCODE_I, 1, KMOD_SHIFT, 41}, /* I */
+ {SDL_SCANCODE_J, 1, KMOD_SHIFT, 42}, /* J */
+ {SDL_SCANCODE_K, 1, KMOD_SHIFT, 43}, /* K */
+ {SDL_SCANCODE_L, 1, KMOD_SHIFT, 44}, /* L */
+ {SDL_SCANCODE_M, 1, KMOD_SHIFT, 45}, /* M */
+ {SDL_SCANCODE_N, 1, KMOD_SHIFT, 46}, /* N */
+ {SDL_SCANCODE_O, 1, KMOD_SHIFT, 47}, /* O */
+ {SDL_SCANCODE_P, 1, KMOD_SHIFT, 48}, /* P */
+ {SDL_SCANCODE_Q, 1, KMOD_SHIFT, 49}, /* Q */
+ {SDL_SCANCODE_R, 1, KMOD_SHIFT, 50}, /* R */
+ {SDL_SCANCODE_S, 1, KMOD_SHIFT, 51}, /* S */
+ {SDL_SCANCODE_T, 1, KMOD_SHIFT, 52}, /* T */
+ {SDL_SCANCODE_U, 1, KMOD_SHIFT, 53}, /* U */
+ {SDL_SCANCODE_V, 1, KMOD_SHIFT, 54}, /* V */
+ {SDL_SCANCODE_W, 1, KMOD_SHIFT, 55}, /* W */
+ {SDL_SCANCODE_X, 1, KMOD_SHIFT, 56}, /* X */
+ {SDL_SCANCODE_Y, 1, KMOD_SHIFT, 57}, /* Y */
+ {SDL_SCANCODE_Z, 1, KMOD_SHIFT, 58}, /* Z */
+ {SDL_SCANCODE_0, 1, 0, 16}, /* 0 */
+ {SDL_SCANCODE_1, 1, 0, 17}, /* 1 */
+ {SDL_SCANCODE_2, 1, 0, 18}, /* 2 */
+ {SDL_SCANCODE_3, 1, 0, 19}, /* 3 */
+ {SDL_SCANCODE_4, 1, 0, 20}, /* 4 */
+ {SDL_SCANCODE_5, 1, 0, 21}, /* 5 */
+ {SDL_SCANCODE_6, 1, 0, 22}, /* 6 */
+ {SDL_SCANCODE_7, 1, 0, 23}, /* 7 */
+ {SDL_SCANCODE_8, 1, 0, 24}, /* 8 */
+ {SDL_SCANCODE_9, 1, 0, 25}, /* 9 */
+ {SDL_SCANCODE_SPACE, 1, 0, 0}, /*' ' */
+ {SDL_SCANCODE_1, 0, KMOD_SHIFT, 1}, /* ! */
+ {SDL_SCANCODE_SLASH, 0, KMOD_SHIFT, 31}, /* ? */
+ {SDL_SCANCODE_SLASH, 1, 0, 15}, /* / */
+ {SDL_SCANCODE_COMMA, 1, 0, 12}, /* , */
+ {SDL_SCANCODE_SEMICOLON, 1, 0, 27}, /* ; */
+ {SDL_SCANCODE_SEMICOLON, 0, KMOD_SHIFT, 26}, /* : */
+ {SDL_SCANCODE_PERIOD, 1, 0, 14}, /* . */
+ {SDL_SCANCODE_MINUS, 1, 0, 13}, /* - */
+ {SDL_SCANCODE_EQUALS, 0, KMOD_SHIFT, 11}, /* = */
+ {SDL_SCANCODE_APOSTROPHE, 1, 0, 7}, /* ' */
+ {SDL_SCANCODE_APOSTROPHE, 0, KMOD_SHIFT, 2}, /* " */
+ {SDL_SCANCODE_5, 0, KMOD_SHIFT, 5}, /* % */
+
+};
+
+/*
+ This function maps an SDL_KeySym to an index in the bitmap font.
+ It does so by scanning through the font mapping table one entry
+ at a time.
+
+ If a match is found (scancode and allowed modifiers), the proper
+ index is returned.
+
+ If there is no entry for the key, -1 is returned
+*/
+int
+keyToIndex(SDL_KeySym key)
+{
+ int i, index = -1;
+ for (i = 0; i < TABLE_SIZE; i++) {
+ fontMapping compare = map[i];
+ if (key.scancode == compare.scancode) {
+ /* if this entry is valid with no key mod and we have no keymod, or if
+ the key's modifiers are allowed modifiers for that mapping */
+ if ((compare.allow_no_mod && key.mod == 0)
+ || (key.mod & compare.mod)) {
+ index = compare.index;
+ break;
+ }
+ }
+ }
+ return index;
+}
+
+/*
+ This function returns and x,y position for a given character number.
+ It is used for positioning each character of text
+*/
+void
+getPositionForCharNumber(int n, int *x, int *y)
+{
+ int x_padding = 16; /* padding space on left and right side of screen */
+ int y_padding = 32; /* padding space at top of screen */
+ /* figure out the number of characters that can fit horizontally across the screen */
+ int max_x_chars = (SCREEN_WIDTH - 2 * x_padding) / GLYPH_SIZE_SCREEN;
+ int line_separation = 5; /* pixels between each line */
+ *x = (n % max_x_chars) * GLYPH_SIZE_SCREEN + x_padding;
+ *y = (n / max_x_chars) * (GLYPH_SIZE_SCREEN + line_separation) +
+ y_padding;
+}
+
+void
+drawIndex(int index)
+{
+ int x, y;
+ getPositionForCharNumber(numChars, &x, &y);
+ SDL_Rect srcRect =
+ { GLYPH_SIZE_IMAGE * index, 0, GLYPH_SIZE_IMAGE, GLYPH_SIZE_IMAGE };
+ SDL_Rect dstRect = { x, y, GLYPH_SIZE_SCREEN, GLYPH_SIZE_SCREEN };
+ drawBlank(x, y);
+ SDL_RenderCopy(renderer, texture, &srcRect, &dstRect);
+}
+
+/* draws the cursor icon at the current end position of the text */
+void
+drawCursor(void)
+{
+ drawIndex(29); /* cursor is at index 29 in the bitmap font */
+}
+
+/* paints over a glyph sized region with the background color
+ in effect it erases the area
+*/
+void
+drawBlank(int x, int y)
+{
+ SDL_Rect rect = { x, y, GLYPH_SIZE_SCREEN, GLYPH_SIZE_SCREEN };
+ SDL_SetRenderDrawColor(renderer, bg_color.r, bg_color.g, bg_color.b,
+ bg_color.unused);
+ SDL_RenderFillRect(renderer, &rect);
+}
+
+/* moves backwards one character, erasing the last one put down */
+void
+backspace(void)
+{
+ int x, y;
+ if (numChars > 0) {
+ getPositionForCharNumber(numChars, &x, &y);
+ drawBlank(x, y);
+ numChars--;
+ getPositionForCharNumber(numChars, &x, &y);
+ drawBlank(x, y);
+ drawCursor();
+ }
+}
+
+/* this function loads our font into an SDL_Texture and returns the SDL_Texture */
+SDL_Texture*
+loadFont(void)
+{
+
+ SDL_Surface *surface = SDL_LoadBMP("kromasky_16x16.bmp");
+
+ if (!surface) {
+ printf("Error loading bitmap: %s\n", SDL_GetError());
+ return 0;
+ } else {
+ /* set the transparent color for the bitmap font (hot pink) */
+ SDL_SetColorKey(surface, 1, SDL_MapRGB(surface->format, 238, 0, 252));
+ /* now we convert the surface to our desired pixel format */
+ int format = SDL_PIXELFORMAT_ABGR8888; /* desired texture format */
+ Uint32 Rmask, Gmask, Bmask, Amask; /* masks for desired format */
+ int bpp; /* bits per pixel for desired format */
+ SDL_PixelFormatEnumToMasks(format, &bpp, &Rmask, &Gmask, &Bmask,
+ &Amask);
+ SDL_Surface *converted =
+ SDL_CreateRGBSurface(0, surface->w, surface->h, bpp, Rmask, Gmask,
+ Bmask, Amask);
+ SDL_BlitSurface(surface, NULL, converted, NULL);
+ /* create our texture */
+ texture =
+ SDL_CreateTextureFromSurface(renderer, converted);
+ if (texture == 0) {
+ printf("texture creation failed: %s\n", SDL_GetError());
+ } else {
+ /* set blend mode for our texture */
+ SDL_SetTextureBlendMode(texture, SDL_BLENDMODE_BLEND);
+ }
+ SDL_FreeSurface(surface);
+ SDL_FreeSurface(converted);
+ return texture;
+ }
+}
+
+int
+main(int argc, char *argv[])
+{
+
+ int index; /* index of last key we pushed in the bitmap font */
+ SDL_Window *window;
+ SDL_Event event; /* last event received */
+ SDLMod mod; /* key modifiers of last key we pushed */
+ SDL_ScanCode scancode; /* scancode of last key we pushed */
+
+ if (SDL_Init(SDL_INIT_VIDEO) < 0) {
+ printf("Error initializing SDL: %s", SDL_GetError());
+ }
+ /* create window */
+ window = SDL_CreateWindow("iPhone keyboard test", 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT, 0);
+ /* create renderer */
+ renderer = SDL_CreateRenderer(window, -1, 0);
+
+ /* load up our font */
+ loadFont();
+
+ /* draw the background, we'll just paint over it */
+ SDL_SetRenderDrawColor(renderer, bg_color.r, bg_color.g, bg_color.b,
+ bg_color.unused);
+ SDL_RenderFillRect(renderer, NULL);
+ SDL_RenderPresent(renderer);
+
+ int done = 0;
+ /* loop till we get SDL_Quit */
+ while (SDL_WaitEvent(&event)) {
+ switch (event.type) {
+ case SDL_QUIT:
+ done = 1;
+ break;
+ case SDL_KEYDOWN:
+ index = keyToIndex(event.key.keysym);
+ scancode = event.key.keysym.scancode;
+ mod = event.key.keysym.mod;
+ if (scancode == SDL_SCANCODE_DELETE) {
+ /* if user hit delete, delete the last character */
+ backspace();
+ lastCharWasColon = 0;
+ } else if (lastCharWasColon && scancode == SDL_SCANCODE_0
+ && (mod & KMOD_SHIFT)) {
+ /* if our last key was a colon and this one is a close paren, the make a hoppy face */
+ backspace();
+ drawIndex(32); /* index for happy face */
+ numChars++;
+ drawCursor();
+ lastCharWasColon = 0;
+ } else if (index != -1) {
+ /* if we aren't doing a happy face, then just draw the normal character */
+ drawIndex(index);
+ numChars++;
+ drawCursor();
+ lastCharWasColon =
+ (event.key.keysym.scancode == SDL_SCANCODE_SEMICOLON
+ && (event.key.keysym.mod & KMOD_SHIFT));
+ }
+ /* check if the key was a colon */
+ /* draw our updates to the screen */
+ SDL_RenderPresent(renderer);
+ break;
+#ifdef __IPHONEOS__
+ case SDL_MOUSEBUTTONUP:
+ /* mouse up toggles onscreen keyboard visibility
+ this function is available ONLY on iPhone OS
+ */
+ SDL_iPhoneKeyboardToggle(window);
+ break;
+#endif
+ }
+ }
+ cleanup();
+ return 0;
+}
+
+/* clean up after ourselves like a good kiddy */
+void
+cleanup(void)
+{
+ SDL_DestroyTexture(texture);
+ SDL_Quit();
+}
diff --git a/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/mixer.c b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/mixer.c
new file mode 100644
index 0000000000..893361f9a5
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/mixer.c
@@ -0,0 +1,353 @@
+/*
+ * mixer.c
+ * written by Holmes Futrell
+ * use however you want
+ */
+
+#import "SDL.h"
+#import "common.h"
+
+#define NUM_CHANNELS 8 /* max number of sounds we can play at once */
+#define NUM_DRUMS 4 /* number of drums in our set */
+#define MILLESECONDS_PER_FRAME 16 /* about 60 frames per second */
+
+static struct
+{
+ SDL_Rect rect; /* where the button is drawn */
+ SDL_Color upColor; /* color when button is not active */
+ SDL_Color downColor; /* color when button is active */
+ int isPressed; /* is the button being pressed ? */
+ int touchIndex; /* what mouse (touch) index pressed the button ? */
+} buttons[NUM_DRUMS];
+
+struct sound
+{
+ Uint8 *buffer; /* audio buffer for sound file */
+ Uint32 length; /* length of the buffer (in bytes) */
+};
+
+/* this array holds the audio for the drum noises */
+static struct sound drums[NUM_DRUMS];
+
+/* function declarations */
+void handleMouseButtonDown(SDL_Event * event);
+void handleMouseButtonUp(SDL_Event * event);
+int playSound(struct sound *);
+void initializeButtons();
+void audioCallback(void *userdata, Uint8 * stream, int len);
+void loadSound(const char *file, struct sound *s);
+
+struct
+{
+ /* channel array holds information about currently playing sounds */
+ struct
+ {
+ Uint8 *position; /* what is the current position in the buffer of this sound ? */
+ Uint32 remaining; /* how many bytes remaining before we're done playing the sound ? */
+ Uint32 timestamp; /* when did this sound start playing ? */
+ } channels[NUM_CHANNELS];
+ SDL_AudioSpec outputSpec; /* what audio format are we using for output? */
+ int numSoundsPlaying; /* how many sounds are currently playing */
+} mixer;
+
+/* sets up the buttons (color, position, state) */
+void
+initializeButtons()
+{
+
+ int i;
+ int spacing = 10; /* gap between drum buttons */
+ SDL_Rect buttonRect; /* keeps track of where to position drum */
+ SDL_Color upColor = { 86, 86, 140, 255 }; /* color of drum when not pressed */
+ SDL_Color downColor = { 191, 191, 221, 255 }; /* color of drum when pressed */
+
+ buttonRect.x = spacing;
+ buttonRect.y = spacing;
+ buttonRect.w = SCREEN_WIDTH - 2 * spacing;
+ buttonRect.h = (SCREEN_HEIGHT - (NUM_DRUMS + 1) * spacing) / NUM_DRUMS;
+
+ /* setup each button */
+ for (i = 0; i < NUM_DRUMS; i++) {
+
+ buttons[i].rect = buttonRect;
+ buttons[i].isPressed = 0;
+ buttons[i].upColor = upColor;
+ buttons[i].downColor = downColor;
+
+ buttonRect.y += spacing + buttonRect.h; /* setup y coordinate for next drum */
+
+ }
+}
+
+/*
+ loads a wav file (stored in 'file'), converts it to the mixer's output format,
+ and stores the resulting buffer and length in the sound structure
+ */
+void
+loadSound(const char *file, struct sound *s)
+{
+ SDL_AudioSpec spec; /* the audio format of the .wav file */
+ SDL_AudioCVT cvt; /* used to convert .wav to output format when formats differ */
+ int result;
+ if (SDL_LoadWAV(file, &spec, &s->buffer, &s->length) == NULL) {
+ fatalError("could not load .wav");
+ }
+ /* build the audio converter */
+ result = SDL_BuildAudioCVT(&cvt, spec.format, spec.channels, spec.freq,
+ mixer.outputSpec.format,
+ mixer.outputSpec.channels,
+ mixer.outputSpec.freq);
+ if (result == -1) {
+ fatalError("could not build audio CVT");
+ } else if (result != 0) {
+ /*
+ this happens when the .wav format differs from the output format.
+ we convert the .wav buffer here
+ */
+ cvt.buf = (Uint8 *) SDL_malloc(s->length * cvt.len_mult); /* allocate conversion buffer */
+ cvt.len = s->length; /* set conversion buffer length */
+ SDL_memcpy(cvt.buf, s->buffer, s->length); /* copy sound to conversion buffer */
+ if (SDL_ConvertAudio(&cvt) == -1) { /* convert the sound */
+ fatalError("could not convert .wav");
+ }
+ SDL_free(s->buffer); /* free the original (unconverted) buffer */
+ s->buffer = cvt.buf; /* point sound buffer to converted buffer */
+ s->length = cvt.len_cvt; /* set sound buffer's new length */
+ }
+}
+
+/* called from main event loop */
+void
+handleMouseButtonDown(SDL_Event * event)
+{
+
+ int x, y, mouseIndex, i, drumIndex;
+
+ mouseIndex = 0;
+ drumIndex = -1;
+
+ SDL_GetMouseState(&x, &y);
+ /* check if we hit any of the drum buttons */
+ for (i = 0; i < NUM_DRUMS; i++) {
+ if (x >= buttons[i].rect.x
+ && x < buttons[i].rect.x + buttons[i].rect.w
+ && y >= buttons[i].rect.y
+ && y < buttons[i].rect.y + buttons[i].rect.h) {
+ drumIndex = i;
+ break;
+ }
+ }
+ if (drumIndex != -1) {
+ /* if we hit a button */
+ buttons[drumIndex].touchIndex = mouseIndex;
+ buttons[drumIndex].isPressed = 1;
+ playSound(&drums[drumIndex]);
+ }
+
+}
+
+/* called from main event loop */
+void
+handleMouseButtonUp(SDL_Event * event)
+{
+ int i;
+ int mouseIndex = 0;
+ /* check if this should cause any of the buttons to become unpressed */
+ for (i = 0; i < NUM_DRUMS; i++) {
+ if (buttons[i].touchIndex == mouseIndex) {
+ buttons[i].isPressed = 0;
+ }
+ }
+}
+
+/* draws buttons to screen */
+void
+render(SDL_Renderer *renderer)
+{
+ int i;
+ SDL_SetRenderDrawColor(renderer, 50, 50, 50, 255);
+ SDL_RenderClear(renderer); /* draw background (gray) */
+ /* draw the drum buttons */
+ for (i = 0; i < NUM_DRUMS; i++) {
+ SDL_Color color =
+ buttons[i].isPressed ? buttons[i].downColor : buttons[i].upColor;
+ SDL_SetRenderDrawColor(renderer, color.r, color.g, color.b, color.unused);
+ SDL_RenderFillRect(renderer, &buttons[i].rect);
+ }
+ /* update the screen */
+ SDL_RenderPresent(renderer);
+}
+
+/*
+ finds a sound channel in the mixer for a sound
+ and sets it up to start playing
+*/
+int
+playSound(struct sound *s)
+{
+ /*
+ find an empty channel to play on.
+ if no channel is available, use oldest channel
+ */
+ int i;
+ int selected_channel = -1;
+ int oldest_channel = 0;
+
+ if (mixer.numSoundsPlaying == 0) {
+ /* we're playing a sound now, so start audio callback back up */
+ SDL_PauseAudio(0);
+ }
+
+ /* find a sound channel to play the sound on */
+ for (i = 0; i < NUM_CHANNELS; i++) {
+ if (mixer.channels[i].position == NULL) {
+ /* if no sound on this channel, select it */
+ selected_channel = i;
+ break;
+ }
+ /* if this channel's sound is older than the oldest so far, set it to oldest */
+ if (mixer.channels[i].timestamp <
+ mixer.channels[oldest_channel].timestamp)
+ oldest_channel = i;
+ }
+
+ /* no empty channels, take the oldest one */
+ if (selected_channel == -1)
+ selected_channel = oldest_channel;
+ else
+ mixer.numSoundsPlaying++;
+
+ /* point channel data to wav data */
+ mixer.channels[selected_channel].position = s->buffer;
+ mixer.channels[selected_channel].remaining = s->length;
+ mixer.channels[selected_channel].timestamp = SDL_GetTicks();
+
+ return selected_channel;
+}
+
+/*
+ Called from SDL's audio system. Supplies sound input with data by mixing together all
+ currently playing sound effects.
+*/
+void
+audioCallback(void *userdata, Uint8 * stream, int len)
+{
+ int i;
+ int copy_amt;
+ SDL_memset(stream, mixer.outputSpec.silence, len); /* initialize buffer to silence */
+ /* for each channel, mix in whatever is playing on that channel */
+ for (i = 0; i < NUM_CHANNELS; i++) {
+ if (mixer.channels[i].position == NULL) {
+ /* if no sound is playing on this channel */
+ continue; /* nothing to do for this channel */
+ }
+
+ /* copy len bytes to the buffer, unless we have fewer than len bytes remaining */
+ copy_amt =
+ mixer.channels[i].remaining <
+ len ? mixer.channels[i].remaining : len;
+
+ /* mix this sound effect with the output */
+ SDL_MixAudioFormat(stream, mixer.channels[i].position,
+ mixer.outputSpec.format, copy_amt, 150);
+
+ /* update buffer position in sound effect and the number of bytes left */
+ mixer.channels[i].position += copy_amt;
+ mixer.channels[i].remaining -= copy_amt;
+
+ /* did we finish playing the sound effect ? */
+ if (mixer.channels[i].remaining == 0) {
+ mixer.channels[i].position = NULL; /* indicates no sound playing on channel anymore */
+ mixer.numSoundsPlaying--;
+ if (mixer.numSoundsPlaying == 0) {
+ /* if no sounds left playing, pause audio callback */
+ SDL_PauseAudio(1);
+ }
+ }
+ }
+}
+
+int
+main(int argc, char *argv[])
+{
+
+ int done; /* has user tried to quit ? */
+ SDL_Window *window; /* main window */
+ SDL_Renderer *renderer;
+ SDL_Event event;
+ Uint32 startFrame; /* holds when frame started processing */
+ Uint32 endFrame; /* holds when frame ended processing */
+ Uint32 delay; /* calculated delay, how long should we wait before next frame? */
+
+ if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO) < 0) {
+ fatalError("could not initialize SDL");
+ }
+ window =
+ SDL_CreateWindow(NULL, 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT,
+ SDL_WINDOW_OPENGL | SDL_WINDOW_BORDERLESS);
+ renderer = SDL_CreateRenderer(window, 0, 0);
+
+ /* initialize the mixer */
+ SDL_memset(&mixer, 0, sizeof(mixer));
+ /* setup output format */
+ mixer.outputSpec.freq = 44100;
+ mixer.outputSpec.format = AUDIO_S16LSB;
+ mixer.outputSpec.channels = 2;
+ mixer.outputSpec.samples = 256;
+ mixer.outputSpec.callback = audioCallback;
+ mixer.outputSpec.userdata = NULL;
+
+ /* open audio for output */
+ if (SDL_OpenAudio(&mixer.outputSpec, NULL) != 0) {
+ fatalError("Opening audio failed");
+ }
+
+ /* load our drum noises */
+ loadSound("ds_kick_big_amb.wav", &drums[3]);
+ loadSound("ds_brush_snare.wav", &drums[2]);
+ loadSound("ds_loose_skin_mute.wav", &drums[1]);
+ loadSound("ds_china.wav", &drums[0]);
+
+ /* setup positions, colors, and state of buttons */
+ initializeButtons();
+
+ /* enter main loop */
+ done = 0;
+ while (!done) {
+ startFrame = SDL_GetTicks();
+ while (SDL_PollEvent(&event)) {
+ switch (event.type) {
+ case SDL_MOUSEBUTTONDOWN:
+ handleMouseButtonDown(&event);
+ break;
+ case SDL_MOUSEBUTTONUP:
+ handleMouseButtonUp(&event);
+ break;
+ case SDL_QUIT:
+ done = 1;
+ break;
+ }
+ }
+ render(renderer); /* draw buttons */
+ endFrame = SDL_GetTicks();
+
+ /* figure out how much time we have left, and then sleep */
+ delay = MILLESECONDS_PER_FRAME - (endFrame - startFrame);
+ if (delay < 0) {
+ delay = 0;
+ } else if (delay > MILLESECONDS_PER_FRAME) {
+ delay = MILLESECONDS_PER_FRAME;
+ }
+ SDL_Delay(delay);
+ }
+
+ /* cleanup code, let's free up those sound buffers */
+ int i;
+ for (i = 0; i < NUM_DRUMS; i++) {
+ SDL_free(drums[i].buffer);
+ }
+ /* let SDL do its exit code */
+ SDL_Quit();
+
+ return 0;
+}
diff --git a/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/rectangles.c b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/rectangles.c
new file mode 100644
index 0000000000..4dcb320356
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/rectangles.c
@@ -0,0 +1,86 @@
+/*
+ * rectangles.c
+ * written by Holmes Futrell
+ * use however you want
+*/
+
+#include "SDL.h"
+#include
+#include "common.h"
+
+void
+render(SDL_Renderer *renderer)
+{
+
+ Uint8 r, g, b;
+ /* Come up with a random rectangle */
+ SDL_Rect rect;
+ rect.w = randomInt(64, 128);
+ rect.h = randomInt(64, 128);
+ rect.x = randomInt(0, SCREEN_WIDTH);
+ rect.y = randomInt(0, SCREEN_HEIGHT);
+
+ /* Come up with a random color */
+ r = randomInt(50, 255);
+ g = randomInt(50, 255);
+ b = randomInt(50, 255);
+
+ /* Fill the rectangle in the color */
+ SDL_SetRenderDrawColor(renderer, r, g, b, 255);
+ SDL_RenderFillRect(renderer, &rect);
+
+ /* update screen */
+ SDL_RenderPresent(renderer);
+
+}
+
+int
+main(int argc, char *argv[])
+{
+
+ SDL_Window *window;
+ SDL_Renderer *renderer;
+ int done;
+ SDL_Event event;
+
+ /* initialize SDL */
+ if (SDL_Init(SDL_INIT_VIDEO) < 0) {
+ fatalError("Could not initialize SDL");
+ }
+
+ /* seed random number generator */
+ srand(time(NULL));
+
+ /* create window and renderer */
+ window =
+ SDL_CreateWindow(NULL, 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT,
+ SDL_WINDOW_SHOWN);
+ if (window == 0) {
+ fatalError("Could not initialize Window");
+ }
+ renderer = SDL_CreateRenderer(window, -1, 0);
+ if (!renderer) {
+ fatalError("Could not create renderer");
+ }
+
+ /* Fill screen with black */
+ SDL_SetRenderDrawColor(renderer, 0, 0, 0, 255);
+ SDL_RenderClear(renderer);
+
+ /* Enter render loop, waiting for user to quit */
+ done = 0;
+ while (!done) {
+ while (SDL_PollEvent(&event)) {
+ if (event.type == SDL_QUIT) {
+ done = 1;
+ }
+ }
+ render(renderer);
+ SDL_Delay(1);
+ }
+
+ /* shutdown SDL */
+ SDL_Quit();
+
+ return 0;
+}
diff --git a/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/touch.c b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/touch.c
new file mode 100644
index 0000000000..8ce8006a09
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/Demos/src/touch.c
@@ -0,0 +1,125 @@
+/*
+ * touch.c
+ * written by Holmes Futrell
+ * use however you want
+ */
+
+#include "SDL.h"
+#include "math.h"
+#include "common.h"
+
+#define BRUSH_SIZE 32 /* width and height of the brush */
+#define PIXELS_PER_ITERATION 5 /* number of pixels between brush blots when forming a line */
+
+static SDL_Texture *brush = 0; /* texture for the brush */
+
+/*
+ draws a line from (startx, starty) to (startx + dx, starty + dy)
+ this is accomplished by drawing several blots spaced PIXELS_PER_ITERATION apart
+*/
+void
+drawLine(SDL_Renderer *renderer, float startx, float starty, float dx, float dy)
+{
+
+ float distance = sqrt(dx * dx + dy * dy); /* length of line segment (pythagoras) */
+ int iterations = distance / PIXELS_PER_ITERATION + 1; /* number of brush sprites to draw for the line */
+ float dx_prime = dx / iterations; /* x-shift per iteration */
+ float dy_prime = dy / iterations; /* y-shift per iteration */
+ SDL_Rect dstRect; /* rect to draw brush sprite into */
+
+ dstRect.w = BRUSH_SIZE;
+ dstRect.h = BRUSH_SIZE;
+
+ /* setup x and y for the location of the first sprite */
+ float x = startx - BRUSH_SIZE / 2.0f;
+ float y = starty - BRUSH_SIZE / 2.0f;
+
+ int i;
+ /* draw a series of blots to form the line */
+ for (i = 0; i < iterations; i++) {
+ dstRect.x = x;
+ dstRect.y = y;
+ /* shift x and y for next sprite location */
+ x += dx_prime;
+ y += dy_prime;
+ /* draw brush blot */
+ SDL_RenderCopy(renderer, brush, NULL, &dstRect);
+ }
+}
+
+/*
+ loads the brush texture
+*/
+void
+initializeTexture(SDL_Renderer *renderer)
+{
+ SDL_Surface *bmp_surface;
+ bmp_surface = SDL_LoadBMP("stroke.bmp");
+ if (bmp_surface == NULL) {
+ fatalError("could not load stroke.bmp");
+ }
+ brush =
+ SDL_CreateTextureFromSurface(renderer, bmp_surface);
+ SDL_FreeSurface(bmp_surface);
+ if (brush == 0) {
+ fatalError("could not create brush texture");
+ }
+ /* additive blending -- laying strokes on top of eachother makes them brighter */
+ SDL_SetTextureBlendMode(brush, SDL_BLENDMODE_ADD);
+ /* set brush color (red) */
+ SDL_SetTextureColorMod(brush, 255, 100, 100);
+}
+
+int
+main(int argc, char *argv[])
+{
+
+ int x, y, dx, dy; /* mouse location */
+ Uint8 state; /* mouse (touch) state */
+ SDL_Event event;
+ SDL_Window *window; /* main window */
+ SDL_Renderer *renderer;
+ int done; /* does user want to quit? */
+
+ /* initialize SDL */
+ if (SDL_Init(SDL_INIT_VIDEO) < 0) {
+ fatalError("Could not initialize SDL");
+ }
+
+ /* create main window and renderer */
+ window = SDL_CreateWindow(NULL, 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT,
+ SDL_WINDOW_OPENGL | SDL_WINDOW_SHOWN |
+ SDL_WINDOW_BORDERLESS);
+ renderer = SDL_CreateRenderer(window, 0, 0);
+
+ /*load brush texture */
+ initializeTexture(renderer);
+
+ /* fill canvass initially with all black */
+ SDL_SetRenderDrawColor(renderer, 0, 0, 0, 255);
+ SDL_RenderClear(renderer);
+ SDL_RenderPresent(renderer);
+
+ done = 0;
+ while (!done && SDL_WaitEvent(&event)) {
+ switch (event.type) {
+ case SDL_QUIT:
+ done = 1;
+ break;
+ case SDL_MOUSEMOTION:
+ state = SDL_GetMouseState(&x, &y); /* get its location */
+ SDL_GetRelativeMouseState(&dx, &dy); /* find how much the mouse moved */
+ if (state & SDL_BUTTON_LMASK) { /* is the mouse (touch) down? */
+ drawLine(renderer, x - dx, y - dy, dx, dy); /* draw line segment */
+ SDL_RenderPresent(renderer);
+ }
+ break;
+ }
+ }
+
+ /* cleanup */
+ SDL_DestroyTexture(brush);
+ SDL_Quit();
+
+ return 0;
+}
diff --git a/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/SDL/SDLiPhoneOS.xcodeproj/project.pbxproj b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/SDL/SDLiPhoneOS.xcodeproj/project.pbxproj
new file mode 100755
index 0000000000..3baca15609
--- /dev/null
+++ b/3rdparty/SDL-1.3.0-5387/Xcode-iPhoneOS/SDL/SDLiPhoneOS.xcodeproj/project.pbxproj
@@ -0,0 +1,1711 @@
+// !$*UTF8*$!
+{
+ archiveVersion = 1;
+ classes = {
+ };
+ objectVersion = 46;
+ objects = {
+
+/* Begin PBXAggregateTarget section */
+ 00B4F47112F696830084EC00 /* BuildUniversalSimulatorDevicelibSDL */ = {
+ isa = PBXAggregateTarget;
+ buildConfigurationList = 00B4F47412F696B30084EC00 /* Build configuration list for PBXAggregateTarget "BuildUniversalSimulatorDevicelibSDL" */;
+ buildPhases = (
+ 00B4F47012F696830084EC00 /* ShellScript */,
+ );
+ dependencies = (
+ );
+ name = BuildUniversalSimulatorDevicelibSDL;
+ productName = "Build Universal Simulator/Device libSDL";
+ };
+ 00B4F48B12F6A69C0084EC00 /* PrepareXcodeProjectTemplate */ = {
+ isa = PBXAggregateTarget;
+ buildConfigurationList = 00B4F48E12F6A6BA0084EC00 /* Build configuration list for PBXAggregateTarget "PrepareXcodeProjectTemplate" */;
+ buildPhases = (
+ 00B4F48A12F6A69C0084EC00 /* ShellScript */,
+ );
+ dependencies = (
+ 00B4F49712F6A7B00084EC00 /* PBXTargetDependency */,
+ );
+ name = PrepareXcodeProjectTemplate;
+ productName = PrepareXcodeProjectTemplate;
+ };
+/* End PBXAggregateTarget section */
+
+/* Begin PBXBuildFile section */
+ 001E39A71196EE6F00A3F5B8 /* TestSupportRWops_Cocoa.m in Sources */ = {isa = PBXBuildFile; fileRef = 001E39A51196EE6F00A3F5B8 /* TestSupportRWops_Cocoa.m */; };
+ 006E9852119550FB001DE610 /* audio.c in Sources */ = {isa = PBXBuildFile; fileRef = 006E9831119550FB001DE610 /* audio.c */; };
+ 006E9853119550FB001DE610 /* common.c in Sources */ = {isa = PBXBuildFile; fileRef = 006E9834119550FB001DE610 /* common.c */; };
+ 006E9859119550FB001DE610 /* platform.c in Sources */ = {isa = PBXBuildFile; fileRef = 006E983D119550FB001DE610 /* platform.c */; };
+ 006E985A119550FB001DE610 /* README in Resources */ = {isa = PBXBuildFile; fileRef = 006E983F119550FB001DE610 /* README */; };
+ 006E985B119550FB001DE610 /* rect.c in Sources */ = {isa = PBXBuildFile; fileRef = 006E9841119550FB001DE610 /* rect.c */; };
+ 006E985C119550FB001DE610 /* render.c in Sources */ = {isa = PBXBuildFile; fileRef = 006E9844119550FB001DE610 /* render.c */; };
+ 006E985D119550FB001DE610 /* read in Copy rwops */ = {isa = PBXBuildFile; fileRef = 006E9847119550FB001DE610 /* read */; };
+ 006E985E119550FB001DE610 /* rwops.c in Sources */ = {isa = PBXBuildFile; fileRef = 006E9848119550FB001DE610 /* rwops.c */; };
+ 006E9860119550FB001DE610 /* SDL_at.c in Sources */ = {isa = PBXBuildFile; fileRef = 006E984C119550FB001DE610 /* SDL_at.c */; };
+ 006E9861119550FB001DE610 /* surface.c in Sources */ = {isa = PBXBuildFile; fileRef = 006E984F119550FB001DE610 /* surface.c */; };
+ 006E9862119550FB001DE610 /* testsdl.c in Sources */ = {isa = PBXBuildFile; fileRef = 006E9851119550FB001DE610 /* testsdl.c */; };
+ 006E986A1195513D001DE610 /* icon.bmp in Resources */ = {isa = PBXBuildFile; fileRef = 006E98631195513D001DE610 /* icon.bmp */; };
+ 006E986B1195513D001DE610 /* moose.dat in Resources */ = {isa = PBXBuildFile; fileRef = 006E98641195513D001DE610 /* moose.dat */; };
+ 006E986C1195513D001DE610 /* picture.xbm in Resources */ = {isa = PBXBuildFile; fileRef = 006E98651195513D001DE610 /* picture.xbm */; };
+ 006E986E1195513D001DE610 /* sample.bmp in Resources */ = {isa = PBXBuildFile; fileRef = 006E98671195513D001DE610 /* sample.bmp */; };
+ 006E986F1195513D001DE610 /* sample.wav in Resources */ = {isa = PBXBuildFile; fileRef = 006E98681195513D001DE610 /* sample.wav */; };
+ 006E98701195513D001DE610 /* utf8.txt in Resources */ = {isa = PBXBuildFile; fileRef = 006E98691195513D001DE610 /* utf8.txt */; };
+ 006E9888119552DD001DE610 /* SDL_rwopsbundlesupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 006E9886119552DD001DE610 /* SDL_rwopsbundlesupport.h */; };
+ 006E9889119552DD001DE610 /* SDL_rwopsbundlesupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 006E9887119552DD001DE610 /* SDL_rwopsbundlesupport.m */; };
+ 006E988C119552FC001DE610 /* libSDL.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD6526630DE8FCCB002AD96B /* libSDL.a */; };
+ 0098A55B1195B4D900343137 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0098A55A1195B4D900343137 /* AudioToolbox.framework */; };
+ 0098A55F1195B4D900343137 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0098A55E1195B4D900343137 /* CoreAudio.framework */; };
+ 0098A5611195B4D900343137 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0098A5601195B4D900343137 /* CoreGraphics.framework */; };
+ 0098A5631195B4D900343137 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0098A5621195B4D900343137 /* OpenGLES.framework */; };
+ 0098A5651195B4D900343137 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0098A5641195B4D900343137 /* UIKit.framework */; };
+ 0098A5851195B5E200343137 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0098A5841195B5E200343137 /* QuartzCore.framework */; };
+ 0402A85812FE70C600CECEE3 /* SDL_render_gles2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0402A85512FE70C600CECEE3 /* SDL_render_gles2.c */; };
+ 0402A85912FE70C600CECEE3 /* SDL_shaders_gles2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0402A85612FE70C600CECEE3 /* SDL_shaders_gles2.c */; };
+ 0402A85A12FE70C600CECEE3 /* SDL_shaders_gles2.h in Headers */ = {isa = PBXBuildFile; fileRef = 0402A85712FE70C600CECEE3 /* SDL_shaders_gles2.h */; };
+ 04043B8D12FEA9350076DB1F /* SDL_opengles2.h in Headers */ = {isa = PBXBuildFile; fileRef = 04043B8C12FEA9350076DB1F /* SDL_opengles2.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 0417A516130C988500578583 /* SDL_keycode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0417A515130C988500578583 /* SDL_keycode.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 041B2CD912FA0E9E0087D585 /* SDL_render.h in Headers */ = {isa = PBXBuildFile; fileRef = 041B2CD812FA0E9E0087D585 /* SDL_render.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 041B2CF112FA0F680087D585 /* SDL_render.c in Sources */ = {isa = PBXBuildFile; fileRef = 041B2CEA12FA0F680087D585 /* SDL_render.c */; };
+ 041B2CF212FA0F680087D585 /* SDL_sysrender.h in Headers */ = {isa = PBXBuildFile; fileRef = 041B2CEB12FA0F680087D585 /* SDL_sysrender.h */; };
+ 0420497011E6F03D007E7EC9 /* SDL_clipboardevents_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 0420496E11E6F03D007E7EC9 /* SDL_clipboardevents_c.h */; };
+ 0420497111E6F03D007E7EC9 /* SDL_clipboardevents.c in Sources */ = {isa = PBXBuildFile; fileRef = 0420496F11E6F03D007E7EC9 /* SDL_clipboardevents.c */; };
+ 04409BA612FA989600FB9AA8 /* mmx.h in Headers */ = {isa = PBXBuildFile; fileRef = 04409BA212FA989600FB9AA8 /* mmx.h */; };
+ 04409BA712FA989600FB9AA8 /* SDL_yuv_mmx.c in Sources */ = {isa = PBXBuildFile; fileRef = 04409BA312FA989600FB9AA8 /* SDL_yuv_mmx.c */; };
+ 04409BA812FA989600FB9AA8 /* SDL_yuv_sw_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04409BA412FA989600FB9AA8 /* SDL_yuv_sw_c.h */; };
+ 04409BA912FA989600FB9AA8 /* SDL_yuv_sw.c in Sources */ = {isa = PBXBuildFile; fileRef = 04409BA512FA989600FB9AA8 /* SDL_yuv_sw.c */; };
+ 0442EC4B12FE1BFF004C9285 /* SDL_hints.h in Headers */ = {isa = PBXBuildFile; fileRef = 0442EC4A12FE1BFF004C9285 /* SDL_hints.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 0442EC5012FE1C1E004C9285 /* SDL_render_sw_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 0442EC4E12FE1C1E004C9285 /* SDL_render_sw_c.h */; };
+ 0442EC5112FE1C1E004C9285 /* SDL_render_sw.c in Sources */ = {isa = PBXBuildFile; fileRef = 0442EC4F12FE1C1E004C9285 /* SDL_render_sw.c */; };
+ 0442EC5312FE1C28004C9285 /* SDL_render_gles.c in Sources */ = {isa = PBXBuildFile; fileRef = 0442EC5212FE1C28004C9285 /* SDL_render_gles.c */; };
+ 0442EC5512FE1C3F004C9285 /* SDL_hints.c in Sources */ = {isa = PBXBuildFile; fileRef = 0442EC5412FE1C3F004C9285 /* SDL_hints.c */; };
+ 04461DEE0EA76BA3006C462D /* SDL_haptic.h in Headers */ = {isa = PBXBuildFile; fileRef = 04461DED0EA76BA3006C462D /* SDL_haptic.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 044E5FB511E6069F0076F181 /* SDL_clipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 044E5FB311E6069F0076F181 /* SDL_clipboard.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 044E5FB611E6069F0076F181 /* SDL_input.h in Headers */ = {isa = PBXBuildFile; fileRef = 044E5FB411E6069F0076F181 /* SDL_input.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 044E5FB811E606EB0076F181 /* SDL_clipboard.c in Sources */ = {isa = PBXBuildFile; fileRef = 044E5FB711E606EB0076F181 /* SDL_clipboard.c */; };
+ 046387420F0B5B7D0041FD65 /* SDL_blit_slow.h in Headers */ = {isa = PBXBuildFile; fileRef = 0463873A0F0B5B7D0041FD65 /* SDL_blit_slow.h */; };
+ 046387460F0B5B7D0041FD65 /* SDL_fillrect.c in Sources */ = {isa = PBXBuildFile; fileRef = 0463873E0F0B5B7D0041FD65 /* SDL_fillrect.c */; };
+ 047677BB0EA76A31008ABAF1 /* SDL_syshaptic.c in Sources */ = {isa = PBXBuildFile; fileRef = 047677B80EA76A31008ABAF1 /* SDL_syshaptic.c */; };
+ 047677BC0EA76A31008ABAF1 /* SDL_haptic.c in Sources */ = {isa = PBXBuildFile; fileRef = 047677B90EA76A31008ABAF1 /* SDL_haptic.c */; };
+ 047677BD0EA76A31008ABAF1 /* SDL_syshaptic.h in Headers */ = {isa = PBXBuildFile; fileRef = 047677BA0EA76A31008ABAF1 /* SDL_syshaptic.h */; };
+ 047AF1B30EA98D6C00811173 /* SDL_sysloadso.c in Sources */ = {isa = PBXBuildFile; fileRef = 047AF1B20EA98D6C00811173 /* SDL_sysloadso.c */; };
+ 04B2ECEC1025CE4800F9BC5F /* SDL_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 04B2ECE61025CE4800F9BC5F /* SDL_atomic.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 04B2ECED1025CE4800F9BC5F /* SDL_power.h in Headers */ = {isa = PBXBuildFile; fileRef = 04B2ECE71025CE4800F9BC5F /* SDL_power.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 04B2ECEE1025CE4800F9BC5F /* SDL_revision.h in Headers */ = {isa = PBXBuildFile; fileRef = 04B2ECE81025CE4800F9BC5F /* SDL_revision.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 04B2ED081025CF9E00F9BC5F /* SDL_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 04B2ED061025CF9E00F9BC5F /* SDL_config.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 04BA9D6311EF474A00B60E01 /* SDL_gesture_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BA9D5F11EF474A00B60E01 /* SDL_gesture_c.h */; };
+ 04BA9D6411EF474A00B60E01 /* SDL_gesture.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BA9D6011EF474A00B60E01 /* SDL_gesture.c */; };
+ 04BA9D6511EF474A00B60E01 /* SDL_touch_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BA9D6111EF474A00B60E01 /* SDL_touch_c.h */; };
+ 04BA9D6611EF474A00B60E01 /* SDL_touch.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BA9D6211EF474A00B60E01 /* SDL_touch.c */; };
+ 04BA9D7D11EF497E00B60E01 /* SDL_gesture.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BA9D7B11EF497E00B60E01 /* SDL_gesture.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 04BA9D7E11EF497E00B60E01 /* SDL_touch.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BA9D7C11EF497E00B60E01 /* SDL_touch.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 04BAC0991300C0F70055DE28 /* SDL_log.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BAC0981300C0F70055DE28 /* SDL_log.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 04BAC09C1300C1290055DE28 /* SDL_assert_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BAC09A1300C1290055DE28 /* SDL_assert_c.h */; };
+ 04BAC09D1300C1290055DE28 /* SDL_log.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BAC09B1300C1290055DE28 /* SDL_log.c */; };
+ 04EC8B521025D12900431D42 /* SDL_config_iphoneos.h in Headers */ = {isa = PBXBuildFile; fileRef = 04EC8B501025D12900431D42 /* SDL_config_iphoneos.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 04F2AF541104ABC300D6DDF7 /* SDL_assert.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F2AF531104ABC300D6DDF7 /* SDL_assert.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 04F2AF561104ABD200D6DDF7 /* SDL_assert.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F2AF551104ABD200D6DDF7 /* SDL_assert.c */; };
+ 04F7807612FB751400FC43C0 /* SDL_blendfillrect.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7806A12FB751400FC43C0 /* SDL_blendfillrect.c */; };
+ 04F7807712FB751400FC43C0 /* SDL_blendfillrect.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7806B12FB751400FC43C0 /* SDL_blendfillrect.h */; };
+ 04F7807812FB751400FC43C0 /* SDL_blendline.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7806C12FB751400FC43C0 /* SDL_blendline.c */; };
+ 04F7807912FB751400FC43C0 /* SDL_blendline.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7806D12FB751400FC43C0 /* SDL_blendline.h */; };
+ 04F7807A12FB751400FC43C0 /* SDL_blendpoint.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7806E12FB751400FC43C0 /* SDL_blendpoint.c */; };
+ 04F7807B12FB751400FC43C0 /* SDL_blendpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7806F12FB751400FC43C0 /* SDL_blendpoint.h */; };
+ 04F7807C12FB751400FC43C0 /* SDL_draw.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7807012FB751400FC43C0 /* SDL_draw.h */; };
+ 04F7807D12FB751400FC43C0 /* SDL_drawline.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7807112FB751400FC43C0 /* SDL_drawline.c */; };
+ 04F7807E12FB751400FC43C0 /* SDL_drawline.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7807212FB751400FC43C0 /* SDL_drawline.h */; };
+ 04F7807F12FB751400FC43C0 /* SDL_drawpoint.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7807312FB751400FC43C0 /* SDL_drawpoint.c */; };
+ 04F7808012FB751400FC43C0 /* SDL_drawpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7807412FB751400FC43C0 /* SDL_drawpoint.h */; };
+ 04F7808412FB753F00FC43C0 /* SDL_nullframebuffer_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7808212FB753F00FC43C0 /* SDL_nullframebuffer_c.h */; };
+ 04F7808512FB753F00FC43C0 /* SDL_nullframebuffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7808312FB753F00FC43C0 /* SDL_nullframebuffer.c */; };
+ 04FFAB8B12E23B8D00BA343D /* SDL_atomic.c in Sources */ = {isa = PBXBuildFile; fileRef = 04FFAB8912E23B8D00BA343D /* SDL_atomic.c */; };
+ 04FFAB8C12E23B8D00BA343D /* SDL_spinlock.c in Sources */ = {isa = PBXBuildFile; fileRef = 04FFAB8A12E23B8D00BA343D /* SDL_spinlock.c */; };
+ 04FFAB9612E23BDC00BA343D /* SDL_blendmode.h in Headers */ = {isa = PBXBuildFile; fileRef = 04FFAB9312E23BDC00BA343D /* SDL_blendmode.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 04FFAB9812E23BDC00BA343D /* SDL_shape.h in Headers */ = {isa = PBXBuildFile; fileRef = 04FFAB9512E23BDC00BA343D /* SDL_shape.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 56ED04E1118A8EE200A56AA6 /* SDL_power.c in Sources */ = {isa = PBXBuildFile; fileRef = 56ED04E0118A8EE200A56AA6 /* SDL_power.c */; };
+ 56ED04E3118A8EFD00A56AA6 /* SDL_syspower.m in Sources */ = {isa = PBXBuildFile; fileRef = 56ED04E2118A8EFD00A56AA6 /* SDL_syspower.m */; };
+ FD24846D0E5655AE0021E198 /* SDL_uikitkeyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = FD24846B0E5655AE0021E198 /* SDL_uikitkeyboard.h */; };
+ FD3F495C0DEA5B2100C5B771 /* begin_code.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8CC0DD52EB400FB1D6B /* begin_code.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F495D0DEA5B2100C5B771 /* close_code.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8CD0DD52EB400FB1D6B /* close_code.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F495F0DEA5B2100C5B771 /* SDL_audio.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8CF0DD52EB400FB1D6B /* SDL_audio.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F49610DEA5B2100C5B771 /* SDL_compat.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8D10DD52EB400FB1D6B /* SDL_compat.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F49690DEA5B2100C5B771 /* SDL_copying.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8DA0DD52EB400FB1D6B /* SDL_copying.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F496A0DEA5B2100C5B771 /* SDL_cpuinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8DB0DD52EB400FB1D6B /* SDL_cpuinfo.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F496B0DEA5B2100C5B771 /* SDL_error.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8DC0DD52EB400FB1D6B /* SDL_error.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F496C0DEA5B2100C5B771 /* SDL_events.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8DD0DD52EB400FB1D6B /* SDL_events.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F496D0DEA5B2100C5B771 /* SDL_joystick.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8DE0DD52EB400FB1D6B /* SDL_joystick.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F496E0DEA5B2100C5B771 /* SDL_keyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8DF0DD52EB400FB1D6B /* SDL_keyboard.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F49700DEA5B2100C5B771 /* SDL_loadso.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8E10DD52EB400FB1D6B /* SDL_loadso.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F49710DEA5B2100C5B771 /* SDL_main.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8E20DD52EB400FB1D6B /* SDL_main.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F49720DEA5B2100C5B771 /* SDL_mouse.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8E30DD52EB400FB1D6B /* SDL_mouse.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F49730DEA5B2100C5B771 /* SDL_mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8E40DD52EB400FB1D6B /* SDL_mutex.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F49740DEA5B2100C5B771 /* SDL_name.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8E50DD52EB400FB1D6B /* SDL_name.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F49750DEA5B2100C5B771 /* SDL_opengl.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8E60DD52EB400FB1D6B /* SDL_opengl.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F49760DEA5B2100C5B771 /* SDL_pixels.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8E70DD52EB400FB1D6B /* SDL_pixels.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F49770DEA5B2100C5B771 /* SDL_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8E80DD52EB400FB1D6B /* SDL_platform.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F49780DEA5B2100C5B771 /* SDL_quit.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8E90DD52EB400FB1D6B /* SDL_quit.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F49790DEA5B2100C5B771 /* SDL_rect.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8EA0DD52EB400FB1D6B /* SDL_rect.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F497A0DEA5B2100C5B771 /* SDL_rwops.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8EB0DD52EB400FB1D6B /* SDL_rwops.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F497B0DEA5B2100C5B771 /* SDL_scancode.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8EC0DD52EB400FB1D6B /* SDL_scancode.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F497C0DEA5B2100C5B771 /* SDL_stdinc.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8ED0DD52EB400FB1D6B /* SDL_stdinc.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F497D0DEA5B2100C5B771 /* SDL_surface.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8EE0DD52EB400FB1D6B /* SDL_surface.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F497E0DEA5B2100C5B771 /* SDL_syswm.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8EF0DD52EB400FB1D6B /* SDL_syswm.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F497F0DEA5B2100C5B771 /* SDL_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8F00DD52EB400FB1D6B /* SDL_thread.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F49800DEA5B2100C5B771 /* SDL_timer.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8F10DD52EB400FB1D6B /* SDL_timer.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F49810DEA5B2100C5B771 /* SDL_types.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8F20DD52EB400FB1D6B /* SDL_types.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F49820DEA5B2100C5B771 /* SDL_version.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8F30DD52EB400FB1D6B /* SDL_version.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F49830DEA5B2100C5B771 /* SDL_video.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8F40DD52EB400FB1D6B /* SDL_video.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F49840DEA5B2100C5B771 /* SDL.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8F50DD52EB400FB1D6B /* SDL.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F49850DEA5B2100C5B771 /* SDL_endian.h in Headers */ = {isa = PBXBuildFile; fileRef = FD99B8F60DD52EB400FB1D6B /* SDL_endian.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD3F4A760DEA620800C5B771 /* SDL_getenv.c in Sources */ = {isa = PBXBuildFile; fileRef = FD3F4A700DEA620800C5B771 /* SDL_getenv.c */; };
+ FD3F4A770DEA620800C5B771 /* SDL_iconv.c in Sources */ = {isa = PBXBuildFile; fileRef = FD3F4A710DEA620800C5B771 /* SDL_iconv.c */; };
+ FD3F4A780DEA620800C5B771 /* SDL_malloc.c in Sources */ = {isa = PBXBuildFile; fileRef = FD3F4A720DEA620800C5B771 /* SDL_malloc.c */; };
+ FD3F4A790DEA620800C5B771 /* SDL_qsort.c in Sources */ = {isa = PBXBuildFile; fileRef = FD3F4A730DEA620800C5B771 /* SDL_qsort.c */; };
+ FD3F4A7A0DEA620800C5B771 /* SDL_stdlib.c in Sources */ = {isa = PBXBuildFile; fileRef = FD3F4A740DEA620800C5B771 /* SDL_stdlib.c */; };
+ FD3F4A7B0DEA620800C5B771 /* SDL_string.c in Sources */ = {isa = PBXBuildFile; fileRef = FD3F4A750DEA620800C5B771 /* SDL_string.c */; };
+ FD5F9D2F0E0E08B3008E885B /* SDL_joystick.c in Sources */ = {isa = PBXBuildFile; fileRef = FD5F9D1E0E0E08B3008E885B /* SDL_joystick.c */; };
+ FD5F9D300E0E08B3008E885B /* SDL_joystick_c.h in Headers */ = {isa = PBXBuildFile; fileRef = FD5F9D1F0E0E08B3008E885B /* SDL_joystick_c.h */; };
+ FD5F9D310E0E08B3008E885B /* SDL_sysjoystick.h in Headers */ = {isa = PBXBuildFile; fileRef = FD5F9D200E0E08B3008E885B /* SDL_sysjoystick.h */; };
+ FD6526660DE8FCDD002AD96B /* SDL_dummyaudio.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B91D0DD52EDC00FB1D6B /* SDL_dummyaudio.c */; };
+ FD6526670DE8FCDD002AD96B /* SDL_audio.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B9440DD52EDC00FB1D6B /* SDL_audio.c */; };
+ FD6526680DE8FCDD002AD96B /* SDL_audiocvt.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B9460DD52EDC00FB1D6B /* SDL_audiocvt.c */; };
+ FD65266A0DE8FCDD002AD96B /* SDL_audiotypecvt.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B94A0DD52EDC00FB1D6B /* SDL_audiotypecvt.c */; };
+ FD65266B0DE8FCDD002AD96B /* SDL_mixer.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B94B0DD52EDC00FB1D6B /* SDL_mixer.c */; };
+ FD65266C0DE8FCDD002AD96B /* SDL_mixer_m68k.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B94C0DD52EDC00FB1D6B /* SDL_mixer_m68k.c */; };
+ FD65266D0DE8FCDD002AD96B /* SDL_mixer_MMX.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B94E0DD52EDC00FB1D6B /* SDL_mixer_MMX.c */; };
+ FD65266E0DE8FCDD002AD96B /* SDL_mixer_MMX_VC.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B9500DD52EDC00FB1D6B /* SDL_mixer_MMX_VC.c */; };
+ FD65266F0DE8FCDD002AD96B /* SDL_wave.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B9530DD52EDC00FB1D6B /* SDL_wave.c */; };
+ FD6526700DE8FCDD002AD96B /* SDL_cpuinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B98B0DD52EDC00FB1D6B /* SDL_cpuinfo.c */; };
+ FD6526710DE8FCDD002AD96B /* SDL_events.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B9930DD52EDC00FB1D6B /* SDL_events.c */; };
+ FD6526720DE8FCDD002AD96B /* SDL_keyboard.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B9950DD52EDC00FB1D6B /* SDL_keyboard.c */; };
+ FD6526730DE8FCDD002AD96B /* SDL_mouse.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B9970DD52EDC00FB1D6B /* SDL_mouse.c */; };
+ FD6526740DE8FCDD002AD96B /* SDL_quit.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B9990DD52EDC00FB1D6B /* SDL_quit.c */; };
+ FD6526750DE8FCDD002AD96B /* SDL_windowevents.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B99B0DD52EDC00FB1D6B /* SDL_windowevents.c */; };
+ FD6526760DE8FCDD002AD96B /* SDL_rwops.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B99E0DD52EDC00FB1D6B /* SDL_rwops.c */; };
+ FD6526770DE8FCDD002AD96B /* SDL_compat.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B9D30DD52EDC00FB1D6B /* SDL_compat.c */; };
+ FD6526780DE8FCDD002AD96B /* SDL_error.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B9D50DD52EDC00FB1D6B /* SDL_error.c */; };
+ FD6526790DE8FCDD002AD96B /* SDL_fatal.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B9D60DD52EDC00FB1D6B /* SDL_fatal.c */; };
+ FD65267A0DE8FCDD002AD96B /* SDL.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B9D80DD52EDC00FB1D6B /* SDL.c */; };
+ FD65267B0DE8FCDD002AD96B /* SDL_syscond.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99BA070DD52EDC00FB1D6B /* SDL_syscond.c */; };
+ FD65267C0DE8FCDD002AD96B /* SDL_sysmutex.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99BA080DD52EDC00FB1D6B /* SDL_sysmutex.c */; };
+ FD65267D0DE8FCDD002AD96B /* SDL_syssem.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99BA0A0DD52EDC00FB1D6B /* SDL_syssem.c */; };
+ FD65267E0DE8FCDD002AD96B /* SDL_systhread.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99BA0B0DD52EDC00FB1D6B /* SDL_systhread.c */; };
+ FD65267F0DE8FCDD002AD96B /* SDL_thread.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99BA150DD52EDC00FB1D6B /* SDL_thread.c */; };
+ FD6526800DE8FCDD002AD96B /* SDL_timer.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99BA2E0DD52EDC00FB1D6B /* SDL_timer.c */; };
+ FD6526810DE8FCDD002AD96B /* SDL_systimer.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99BA310DD52EDC00FB1D6B /* SDL_systimer.c */; };
+ FD689EFB0E26E57800F90B21 /* SDL_coreaudio_iphone.c in Sources */ = {isa = PBXBuildFile; fileRef = FD689EF90E26E57800F90B21 /* SDL_coreaudio_iphone.c */; };
+ FD689EFC0E26E57800F90B21 /* SDL_coreaudio_iphone.h in Headers */ = {isa = PBXBuildFile; fileRef = FD689EFA0E26E57800F90B21 /* SDL_coreaudio_iphone.h */; };
+ FD689F030E26E5B600F90B21 /* SDL_sysjoystick.m in Sources */ = {isa = PBXBuildFile; fileRef = FD689F000E26E5B600F90B21 /* SDL_sysjoystick.m */; };
+ FD689F040E26E5B600F90B21 /* SDLUIAccelerationDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = FD689F010E26E5B600F90B21 /* SDLUIAccelerationDelegate.h */; };
+ FD689F050E26E5B600F90B21 /* SDLUIAccelerationDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = FD689F020E26E5B600F90B21 /* SDLUIAccelerationDelegate.m */; };
+ FD689F1C0E26E5D900F90B21 /* SDL_uikitevents.h in Headers */ = {isa = PBXBuildFile; fileRef = FD689F0C0E26E5D900F90B21 /* SDL_uikitevents.h */; };
+ FD689F1D0E26E5D900F90B21 /* SDL_uikitevents.m in Sources */ = {isa = PBXBuildFile; fileRef = FD689F0D0E26E5D900F90B21 /* SDL_uikitevents.m */; };
+ FD689F1E0E26E5D900F90B21 /* SDL_uikitopengles.h in Headers */ = {isa = PBXBuildFile; fileRef = FD689F0E0E26E5D900F90B21 /* SDL_uikitopengles.h */; };
+ FD689F1F0E26E5D900F90B21 /* SDL_uikitopengles.m in Sources */ = {isa = PBXBuildFile; fileRef = FD689F0F0E26E5D900F90B21 /* SDL_uikitopengles.m */; };
+ FD689F200E26E5D900F90B21 /* SDL_uikitvideo.h in Headers */ = {isa = PBXBuildFile; fileRef = FD689F100E26E5D900F90B21 /* SDL_uikitvideo.h */; };
+ FD689F210E26E5D900F90B21 /* SDL_uikitvideo.m in Sources */ = {isa = PBXBuildFile; fileRef = FD689F110E26E5D900F90B21 /* SDL_uikitvideo.m */; };
+ FD689F230E26E5D900F90B21 /* SDL_uikitview.m in Sources */ = {isa = PBXBuildFile; fileRef = FD689F130E26E5D900F90B21 /* SDL_uikitview.m */; };
+ FD689F240E26E5D900F90B21 /* SDL_uikitwindow.h in Headers */ = {isa = PBXBuildFile; fileRef = FD689F140E26E5D900F90B21 /* SDL_uikitwindow.h */; };
+ FD689F250E26E5D900F90B21 /* SDL_uikitwindow.m in Sources */ = {isa = PBXBuildFile; fileRef = FD689F150E26E5D900F90B21 /* SDL_uikitwindow.m */; };
+ FD689F260E26E5D900F90B21 /* SDL_uikitopenglview.h in Headers */ = {isa = PBXBuildFile; fileRef = FD689F160E26E5D900F90B21 /* SDL_uikitopenglview.h */; };
+ FD689F270E26E5D900F90B21 /* SDL_uikitopenglview.m in Sources */ = {isa = PBXBuildFile; fileRef = FD689F170E26E5D900F90B21 /* SDL_uikitopenglview.m */; };
+ FD689FCE0E26E9D400F90B21 /* SDL_uikitappdelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = FD689FCC0E26E9D400F90B21 /* SDL_uikitappdelegate.m */; };
+ FD689FCF0E26E9D400F90B21 /* SDL_uikitappdelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = FD689FCD0E26E9D400F90B21 /* SDL_uikitappdelegate.h */; };
+ FD8BD7AC0E27DCA400B52CD5 /* SDL_opengles.h in Headers */ = {isa = PBXBuildFile; fileRef = FD8BD7AB0E27DCA400B52CD5 /* SDL_opengles.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ FD8BD8250E27E25900B52CD5 /* SDL_sysloadso.c in Sources */ = {isa = PBXBuildFile; fileRef = FD8BD8190E27E25900B52CD5 /* SDL_sysloadso.c */; };
+ FDA6844D0DF2374E00F98A1A /* SDL_blit.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA683000DF2374E00F98A1A /* SDL_blit.c */; };
+ FDA6844E0DF2374E00F98A1A /* SDL_blit.h in Headers */ = {isa = PBXBuildFile; fileRef = FDA683010DF2374E00F98A1A /* SDL_blit.h */; };
+ FDA6844F0DF2374E00F98A1A /* SDL_blit_0.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA683020DF2374E00F98A1A /* SDL_blit_0.c */; };
+ FDA684500DF2374E00F98A1A /* SDL_blit_1.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA683030DF2374E00F98A1A /* SDL_blit_1.c */; };
+ FDA684510DF2374E00F98A1A /* SDL_blit_A.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA683040DF2374E00F98A1A /* SDL_blit_A.c */; };
+ FDA684520DF2374E00F98A1A /* SDL_blit_auto.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA683050DF2374E00F98A1A /* SDL_blit_auto.c */; };
+ FDA684530DF2374E00F98A1A /* SDL_blit_auto.h in Headers */ = {isa = PBXBuildFile; fileRef = FDA683060DF2374E00F98A1A /* SDL_blit_auto.h */; };
+ FDA684540DF2374E00F98A1A /* SDL_blit_copy.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA683070DF2374E00F98A1A /* SDL_blit_copy.c */; };
+ FDA684550DF2374E00F98A1A /* SDL_blit_copy.h in Headers */ = {isa = PBXBuildFile; fileRef = FDA683080DF2374E00F98A1A /* SDL_blit_copy.h */; };
+ FDA684560DF2374E00F98A1A /* SDL_blit_N.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA683090DF2374E00F98A1A /* SDL_blit_N.c */; };
+ FDA684570DF2374E00F98A1A /* SDL_blit_slow.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA6830A0DF2374E00F98A1A /* SDL_blit_slow.c */; };
+ FDA684580DF2374E00F98A1A /* SDL_bmp.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA6830B0DF2374E00F98A1A /* SDL_bmp.c */; };
+ FDA6845C0DF2374E00F98A1A /* SDL_pixels.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA6830F0DF2374E00F98A1A /* SDL_pixels.c */; };
+ FDA6845D0DF2374E00F98A1A /* SDL_pixels_c.h in Headers */ = {isa = PBXBuildFile; fileRef = FDA683100DF2374E00F98A1A /* SDL_pixels_c.h */; };
+ FDA6845E0DF2374E00F98A1A /* SDL_rect.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA683110DF2374E00F98A1A /* SDL_rect.c */; };
+ FDA684620DF2374E00F98A1A /* SDL_RLEaccel.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA683150DF2374E00F98A1A /* SDL_RLEaccel.c */; };
+ FDA684630DF2374E00F98A1A /* SDL_RLEaccel_c.h in Headers */ = {isa = PBXBuildFile; fileRef = FDA683160DF2374E00F98A1A /* SDL_RLEaccel_c.h */; };
+ FDA684640DF2374E00F98A1A /* SDL_stretch.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA683170DF2374E00F98A1A /* SDL_stretch.c */; };
+ FDA684660DF2374E00F98A1A /* SDL_surface.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA683190DF2374E00F98A1A /* SDL_surface.c */; };
+ FDA684670DF2374E00F98A1A /* SDL_sysvideo.h in Headers */ = {isa = PBXBuildFile; fileRef = FDA6831A0DF2374E00F98A1A /* SDL_sysvideo.h */; };
+ FDA684680DF2374E00F98A1A /* SDL_video.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA6831B0DF2374E00F98A1A /* SDL_video.c */; };
+ FDA685FB0DF244C800F98A1A /* SDL_nullevents.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA685F50DF244C800F98A1A /* SDL_nullevents.c */; };
+ FDA685FC0DF244C800F98A1A /* SDL_nullevents_c.h in Headers */ = {isa = PBXBuildFile; fileRef = FDA685F60DF244C800F98A1A /* SDL_nullevents_c.h */; };
+ FDA685FF0DF244C800F98A1A /* SDL_nullvideo.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA685F90DF244C800F98A1A /* SDL_nullvideo.c */; };
+ FDA686000DF244C800F98A1A /* SDL_nullvideo.h in Headers */ = {isa = PBXBuildFile; fileRef = FDA685FA0DF244C800F98A1A /* SDL_nullvideo.h */; };
+ FDC656480E560DF800311C8E /* jumphack.c in Sources */ = {isa = PBXBuildFile; fileRef = FDC656440E560DF800311C8E /* jumphack.c */; };
+ FDC656490E560DF800311C8E /* jumphack.h in Headers */ = {isa = PBXBuildFile; fileRef = FDC656450E560DF800311C8E /* jumphack.h */; };
+/* End PBXBuildFile section */
+
+/* Begin PBXContainerItemProxy section */
+ 006E982A11955065001DE610 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = FD6526620DE8FCCB002AD96B;
+ remoteInfo = StaticLibiPhoneOS;
+ };
+ 00B4F49612F6A7B00084EC00 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = 00B4F47112F696830084EC00;
+ remoteInfo = BuildUniversalSimulatorDevicelibSDL;
+ };
+/* End PBXContainerItemProxy section */
+
+/* Begin PBXCopyFilesBuildPhase section */
+ 006E9881119551D0001DE610 /* Copy rwops */ = {
+ isa = PBXCopyFilesBuildPhase;
+ buildActionMask = 2147483647;
+ dstPath = rwops;
+ dstSubfolderSpec = 7;
+ files = (
+ 006E985D119550FB001DE610 /* read in Copy rwops */,
+ );
+ name = "Copy rwops";
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXCopyFilesBuildPhase section */
+
+/* Begin PBXFileReference section */
+ 001E39A51196EE6F00A3F5B8 /* TestSupportRWops_Cocoa.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestSupportRWops_Cocoa.m; sourceTree = ""; };
+ 001E39A61196EE6F00A3F5B8 /* TestSupportRWops.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestSupportRWops.h; sourceTree = ""; };
+ 006E982211955059001DE610 /* testsdl.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testsdl.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ 006E982411955059001DE610 /* testsdl-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "testsdl-Info.plist"; sourceTree = ""; };
+ 006E9831119550FB001DE610 /* audio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = audio.c; sourceTree = ""; };
+ 006E9832119550FB001DE610 /* audio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = audio.h; sourceTree = ""; };
+ 006E9834119550FB001DE610 /* common.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = common.c; sourceTree = ""; };
+ 006E9835119550FB001DE610 /* common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = common.h; sourceTree = ""; };
+ 006E9836119550FB001DE610 /* images.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = images.h; sourceTree = ""; };
+ 006E9837119550FB001DE610 /* img_blit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = img_blit.c; sourceTree = ""; };
+ 006E9838119550FB001DE610 /* img_blitblend.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = img_blitblend.c; sourceTree = ""; };
+ 006E9839119550FB001DE610 /* img_face.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = img_face.c; sourceTree = ""; };
+ 006E983A119550FB001DE610 /* img_primitives.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = img_primitives.c; sourceTree = ""; };
+ 006E983B119550FB001DE610 /* img_primitivesblend.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = img_primitivesblend.c; sourceTree = ""; };
+ 006E983D119550FB001DE610 /* platform.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = platform.c; sourceTree = ""; };
+ 006E983E119550FB001DE610 /* platform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = platform.h; sourceTree = ""; };
+ 006E983F119550FB001DE610 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = README; path = ../../test/automated/README; sourceTree = SOURCE_ROOT; };
+ 006E9841119550FB001DE610 /* rect.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = rect.c; sourceTree = ""; };
+ 006E9842119550FB001DE610 /* rect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rect.h; sourceTree = ""; };
+ 006E9844119550FB001DE610 /* render.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = render.c; sourceTree = ""; };
+ 006E9845119550FB001DE610 /* render.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = render.h; sourceTree = ""; };
+ 006E9847119550FB001DE610 /* read */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = read; sourceTree = ""; };
+ 006E9848119550FB001DE610 /* rwops.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = rwops.c; sourceTree = ""; };
+ 006E9849119550FB001DE610 /* rwops.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rwops.h; sourceTree = ""; };
+ 006E984C119550FB001DE610 /* SDL_at.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_at.c; path = ../../test/automated/SDL_at.c; sourceTree = SOURCE_ROOT; };
+ 006E984D119550FB001DE610 /* SDL_at.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_at.h; path = ../../test/automated/SDL_at.h; sourceTree = SOURCE_ROOT; };
+ 006E984F119550FB001DE610 /* surface.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = surface.c; sourceTree = ""; };
+ 006E9850119550FB001DE610 /* surface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = surface.h; sourceTree = ""; };
+ 006E9851119550FB001DE610 /* testsdl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testsdl.c; path = ../../test/automated/testsdl.c; sourceTree = SOURCE_ROOT; };
+ 006E98631195513D001DE610 /* icon.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; name = icon.bmp; path = ../../test/icon.bmp; sourceTree = SOURCE_ROOT; };
+ 006E98641195513D001DE610 /* moose.dat */ = {isa = PBXFileReference; lastKnownFileType = file; name = moose.dat; path = ../../test/moose.dat; sourceTree = SOURCE_ROOT; };
+ 006E98651195513D001DE610 /* picture.xbm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = picture.xbm; path = ../../test/picture.xbm; sourceTree = SOURCE_ROOT; };
+ 006E98671195513D001DE610 /* sample.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; name = sample.bmp; path = ../../test/sample.bmp; sourceTree = SOURCE_ROOT; };
+ 006E98681195513D001DE610 /* sample.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; name = sample.wav; path = ../../test/sample.wav; sourceTree = SOURCE_ROOT; };
+ 006E98691195513D001DE610 /* utf8.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = utf8.txt; path = ../../test/utf8.txt; sourceTree = SOURCE_ROOT; };
+ 006E9886119552DD001DE610 /* SDL_rwopsbundlesupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_rwopsbundlesupport.h; sourceTree = ""; };
+ 006E9887119552DD001DE610 /* SDL_rwopsbundlesupport.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_rwopsbundlesupport.m; sourceTree = ""; };
+ 0098A55A1195B4D900343137 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
+ 0098A55E1195B4D900343137 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
+ 0098A5601195B4D900343137 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
+ 0098A5621195B4D900343137 /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
+ 0098A5641195B4D900343137 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
+ 0098A5841195B5E200343137 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
+ 0402A85512FE70C600CECEE3 /* SDL_render_gles2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_render_gles2.c; sourceTree = ""; };
+ 0402A85612FE70C600CECEE3 /* SDL_shaders_gles2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_shaders_gles2.c; sourceTree = ""; };
+ 0402A85712FE70C600CECEE3 /* SDL_shaders_gles2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_shaders_gles2.h; sourceTree = ""; };
+ 04043B8C12FEA9350076DB1F /* SDL_opengles2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_opengles2.h; path = ../../include/SDL_opengles2.h; sourceTree = SOURCE_ROOT; };
+ 0417A515130C988500578583 /* SDL_keycode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_keycode.h; path = ../../include/SDL_keycode.h; sourceTree = SOURCE_ROOT; };
+ 041B2CD812FA0E9E0087D585 /* SDL_render.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_render.h; path = ../../include/SDL_render.h; sourceTree = SOURCE_ROOT; };
+ 041B2CEA12FA0F680087D585 /* SDL_render.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_render.c; sourceTree = ""; };
+ 041B2CEB12FA0F680087D585 /* SDL_sysrender.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_sysrender.h; sourceTree = ""; };
+ 0420496E11E6F03D007E7EC9 /* SDL_clipboardevents_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_clipboardevents_c.h; sourceTree = ""; };
+ 0420496F11E6F03D007E7EC9 /* SDL_clipboardevents.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_clipboardevents.c; sourceTree = ""; };
+ 04409BA212FA989600FB9AA8 /* mmx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mmx.h; sourceTree = ""; };
+ 04409BA312FA989600FB9AA8 /* SDL_yuv_mmx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_yuv_mmx.c; sourceTree = ""; };
+ 04409BA412FA989600FB9AA8 /* SDL_yuv_sw_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_yuv_sw_c.h; sourceTree = ""; };
+ 04409BA512FA989600FB9AA8 /* SDL_yuv_sw.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_yuv_sw.c; sourceTree = ""; };
+ 0442EC4A12FE1BFF004C9285 /* SDL_hints.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_hints.h; path = ../../include/SDL_hints.h; sourceTree = SOURCE_ROOT; };
+ 0442EC4E12FE1C1E004C9285 /* SDL_render_sw_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_render_sw_c.h; sourceTree = ""; };
+ 0442EC4F12FE1C1E004C9285 /* SDL_render_sw.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_render_sw.c; sourceTree = ""; };
+ 0442EC5212FE1C28004C9285 /* SDL_render_gles.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_render_gles.c; sourceTree = ""; };
+ 0442EC5412FE1C3F004C9285 /* SDL_hints.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_hints.c; path = ../../src/SDL_hints.c; sourceTree = SOURCE_ROOT; };
+ 04461DED0EA76BA3006C462D /* SDL_haptic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_haptic.h; path = ../../include/SDL_haptic.h; sourceTree = SOURCE_ROOT; };
+ 044E5FB311E6069F0076F181 /* SDL_clipboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_clipboard.h; path = ../../include/SDL_clipboard.h; sourceTree = SOURCE_ROOT; };
+ 044E5FB411E6069F0076F181 /* SDL_input.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_input.h; path = ../../include/SDL_input.h; sourceTree = SOURCE_ROOT; };
+ 044E5FB711E606EB0076F181 /* SDL_clipboard.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_clipboard.c; sourceTree = ""; };
+ 0463873A0F0B5B7D0041FD65 /* SDL_blit_slow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_blit_slow.h; sourceTree = ""; };
+ 0463873E0F0B5B7D0041FD65 /* SDL_fillrect.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_fillrect.c; sourceTree = ""; };
+ 047677B80EA76A31008ABAF1 /* SDL_syshaptic.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_syshaptic.c; sourceTree = ""; };
+ 047677B90EA76A31008ABAF1 /* SDL_haptic.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_haptic.c; path = ../../src/haptic/SDL_haptic.c; sourceTree = SOURCE_ROOT; };
+ 047677BA0EA76A31008ABAF1 /* SDL_syshaptic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_syshaptic.h; path = ../../src/haptic/SDL_syshaptic.h; sourceTree = SOURCE_ROOT; };
+ 047AF1B20EA98D6C00811173 /* SDL_sysloadso.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_sysloadso.c; sourceTree = ""; };
+ 04B2ECE61025CE4800F9BC5F /* SDL_atomic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_atomic.h; path = ../../include/SDL_atomic.h; sourceTree = SOURCE_ROOT; };
+ 04B2ECE71025CE4800F9BC5F /* SDL_power.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_power.h; path = ../../include/SDL_power.h; sourceTree = SOURCE_ROOT; };
+ 04B2ECE81025CE4800F9BC5F /* SDL_revision.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_revision.h; path = ../../include/SDL_revision.h; sourceTree = SOURCE_ROOT; };
+ 04B2ED061025CF9E00F9BC5F /* SDL_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_config.h; path = ../../include/SDL_config.h; sourceTree = SOURCE_ROOT; };
+ 04BA9D5F11EF474A00B60E01 /* SDL_gesture_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_gesture_c.h; sourceTree = ""; };
+ 04BA9D6011EF474A00B60E01 /* SDL_gesture.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_gesture.c; sourceTree = ""; };
+ 04BA9D6111EF474A00B60E01 /* SDL_touch_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_touch_c.h; sourceTree = ""; };
+ 04BA9D6211EF474A00B60E01 /* SDL_touch.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_touch.c; sourceTree = ""; };
+ 04BA9D7B11EF497E00B60E01 /* SDL_gesture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_gesture.h; path = ../../include/SDL_gesture.h; sourceTree = SOURCE_ROOT; };
+ 04BA9D7C11EF497E00B60E01 /* SDL_touch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_touch.h; path = ../../include/SDL_touch.h; sourceTree = SOURCE_ROOT; };
+ 04BAC0981300C0F70055DE28 /* SDL_log.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_log.h; path = ../../include/SDL_log.h; sourceTree = SOURCE_ROOT; };
+ 04BAC09A1300C1290055DE28 /* SDL_assert_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_assert_c.h; path = ../../src/SDL_assert_c.h; sourceTree = SOURCE_ROOT; };
+ 04BAC09B1300C1290055DE28 /* SDL_log.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_log.c; path = ../../src/SDL_log.c; sourceTree = SOURCE_ROOT; };
+ 04EC8B501025D12900431D42 /* SDL_config_iphoneos.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_config_iphoneos.h; path = ../../include/SDL_config_iphoneos.h; sourceTree = SOURCE_ROOT; };
+ 04F2AF531104ABC300D6DDF7 /* SDL_assert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_assert.h; path = ../../include/SDL_assert.h; sourceTree = SOURCE_ROOT; };
+ 04F2AF551104ABD200D6DDF7 /* SDL_assert.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_assert.c; path = ../../src/SDL_assert.c; sourceTree = SOURCE_ROOT; };
+ 04F7806A12FB751400FC43C0 /* SDL_blendfillrect.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blendfillrect.c; sourceTree = ""; };
+ 04F7806B12FB751400FC43C0 /* SDL_blendfillrect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_blendfillrect.h; sourceTree = ""; };
+ 04F7806C12FB751400FC43C0 /* SDL_blendline.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blendline.c; sourceTree = ""; };
+ 04F7806D12FB751400FC43C0 /* SDL_blendline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_blendline.h; sourceTree = ""; };
+ 04F7806E12FB751400FC43C0 /* SDL_blendpoint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blendpoint.c; sourceTree = ""; };
+ 04F7806F12FB751400FC43C0 /* SDL_blendpoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_blendpoint.h; sourceTree = ""; };
+ 04F7807012FB751400FC43C0 /* SDL_draw.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_draw.h; sourceTree = ""; };
+ 04F7807112FB751400FC43C0 /* SDL_drawline.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_drawline.c; sourceTree = ""; };
+ 04F7807212FB751400FC43C0 /* SDL_drawline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_drawline.h; sourceTree = ""; };
+ 04F7807312FB751400FC43C0 /* SDL_drawpoint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_drawpoint.c; sourceTree = ""; };
+ 04F7807412FB751400FC43C0 /* SDL_drawpoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_drawpoint.h; sourceTree = ""; };
+ 04F7808212FB753F00FC43C0 /* SDL_nullframebuffer_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_nullframebuffer_c.h; sourceTree = ""; };
+ 04F7808312FB753F00FC43C0 /* SDL_nullframebuffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_nullframebuffer.c; sourceTree = ""; };
+ 04FFAB8912E23B8D00BA343D /* SDL_atomic.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_atomic.c; sourceTree = ""; };
+ 04FFAB8A12E23B8D00BA343D /* SDL_spinlock.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_spinlock.c; sourceTree = ""; };
+ 04FFAB9312E23BDC00BA343D /* SDL_blendmode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_blendmode.h; path = ../../include/SDL_blendmode.h; sourceTree = SOURCE_ROOT; };
+ 04FFAB9512E23BDC00BA343D /* SDL_shape.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_shape.h; path = ../../include/SDL_shape.h; sourceTree = SOURCE_ROOT; };
+ 56ED04E0118A8EE200A56AA6 /* SDL_power.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_power.c; path = ../../src/power/SDL_power.c; sourceTree = SOURCE_ROOT; };
+ 56ED04E2118A8EFD00A56AA6 /* SDL_syspower.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDL_syspower.m; path = ../../src/power/uikit/SDL_syspower.m; sourceTree = SOURCE_ROOT; };
+ FD0BBFEF0E3933DD00D833B1 /* SDL_uikitview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_uikitview.h; sourceTree = ""; };
+ FD24846B0E5655AE0021E198 /* SDL_uikitkeyboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_uikitkeyboard.h; sourceTree = ""; };
+ FD3F4A700DEA620800C5B771 /* SDL_getenv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_getenv.c; sourceTree = ""; };
+ FD3F4A710DEA620800C5B771 /* SDL_iconv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_iconv.c; sourceTree = ""; };
+ FD3F4A720DEA620800C5B771 /* SDL_malloc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_malloc.c; sourceTree = ""; };
+ FD3F4A730DEA620800C5B771 /* SDL_qsort.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_qsort.c; sourceTree = ""; };
+ FD3F4A740DEA620800C5B771 /* SDL_stdlib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_stdlib.c; sourceTree = ""; };
+ FD3F4A750DEA620800C5B771 /* SDL_string.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_string.c; sourceTree = ""; };
+ FD5F9D1E0E0E08B3008E885B /* SDL_joystick.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_joystick.c; sourceTree = ""; };
+ FD5F9D1F0E0E08B3008E885B /* SDL_joystick_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_joystick_c.h; sourceTree = ""; };
+ FD5F9D200E0E08B3008E885B /* SDL_sysjoystick.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_sysjoystick.h; sourceTree = ""; };
+ FD6526630DE8FCCB002AD96B /* libSDL.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libSDL.a; sourceTree = BUILT_PRODUCTS_DIR; };
+ FD689EF90E26E57800F90B21 /* SDL_coreaudio_iphone.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_coreaudio_iphone.c; sourceTree = ""; };
+ FD689EFA0E26E57800F90B21 /* SDL_coreaudio_iphone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_coreaudio_iphone.h; sourceTree = ""; };
+ FD689F000E26E5B600F90B21 /* SDL_sysjoystick.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_sysjoystick.m; sourceTree = ""; };
+ FD689F010E26E5B600F90B21 /* SDLUIAccelerationDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLUIAccelerationDelegate.h; sourceTree = ""; };
+ FD689F020E26E5B600F90B21 /* SDLUIAccelerationDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLUIAccelerationDelegate.m; sourceTree = ""; };
+ FD689F0C0E26E5D900F90B21 /* SDL_uikitevents.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_uikitevents.h; sourceTree = ""; };
+ FD689F0D0E26E5D900F90B21 /* SDL_uikitevents.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_uikitevents.m; sourceTree = ""; };
+ FD689F0E0E26E5D900F90B21 /* SDL_uikitopengles.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_uikitopengles.h; sourceTree = ""; };
+ FD689F0F0E26E5D900F90B21 /* SDL_uikitopengles.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_uikitopengles.m; sourceTree = ""; };
+ FD689F100E26E5D900F90B21 /* SDL_uikitvideo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_uikitvideo.h; sourceTree = ""; };
+ FD689F110E26E5D900F90B21 /* SDL_uikitvideo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_uikitvideo.m; sourceTree = ""; };
+ FD689F130E26E5D900F90B21 /* SDL_uikitview.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_uikitview.m; sourceTree = ""; };
+ FD689F140E26E5D900F90B21 /* SDL_uikitwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_uikitwindow.h; sourceTree = ""; };
+ FD689F150E26E5D900F90B21 /* SDL_uikitwindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_uikitwindow.m; sourceTree = ""; };
+ FD689F160E26E5D900F90B21 /* SDL_uikitopenglview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_uikitopenglview.h; sourceTree = ""; };
+ FD689F170E26E5D900F90B21 /* SDL_uikitopenglview.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_uikitopenglview.m; sourceTree = ""; };
+ FD689FCC0E26E9D400F90B21 /* SDL_uikitappdelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_uikitappdelegate.m; sourceTree = ""; };
+ FD689FCD0E26E9D400F90B21 /* SDL_uikitappdelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_uikitappdelegate.h; sourceTree = ""; };
+ FD8BD7AB0E27DCA400B52CD5 /* SDL_opengles.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_opengles.h; path = ../../include/SDL_opengles.h; sourceTree = SOURCE_ROOT; };
+ FD8BD8190E27E25900B52CD5 /* SDL_sysloadso.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_sysloadso.c; sourceTree = ""; };
+ FD99B8CC0DD52EB400FB1D6B /* begin_code.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = begin_code.h; path = ../../include/begin_code.h; sourceTree = ""; };
+ FD99B8CD0DD52EB400FB1D6B /* close_code.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = close_code.h; path = ../../include/close_code.h; sourceTree = ""; };
+ FD99B8CF0DD52EB400FB1D6B /* SDL_audio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_audio.h; path = ../../include/SDL_audio.h; sourceTree = ""; };
+ FD99B8D10DD52EB400FB1D6B /* SDL_compat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_compat.h; path = ../../include/SDL_compat.h; sourceTree = ""; };
+ FD99B8DA0DD52EB400FB1D6B /* SDL_copying.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_copying.h; path = ../../include/SDL_copying.h; sourceTree = ""; };
+ FD99B8DB0DD52EB400FB1D6B /* SDL_cpuinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_cpuinfo.h; path = ../../include/SDL_cpuinfo.h; sourceTree = ""; };
+ FD99B8DC0DD52EB400FB1D6B /* SDL_error.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_error.h; path = ../../include/SDL_error.h; sourceTree = ""; };
+ FD99B8DD0DD52EB400FB1D6B /* SDL_events.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_events.h; path = ../../include/SDL_events.h; sourceTree = ""; };
+ FD99B8DE0DD52EB400FB1D6B /* SDL_joystick.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_joystick.h; path = ../../include/SDL_joystick.h; sourceTree = ""; };
+ FD99B8DF0DD52EB400FB1D6B /* SDL_keyboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_keyboard.h; path = ../../include/SDL_keyboard.h; sourceTree = ""; };
+ FD99B8E10DD52EB400FB1D6B /* SDL_loadso.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_loadso.h; path = ../../include/SDL_loadso.h; sourceTree = ""; };
+ FD99B8E20DD52EB400FB1D6B /* SDL_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_main.h; path = ../../include/SDL_main.h; sourceTree = ""; };
+ FD99B8E30DD52EB400FB1D6B /* SDL_mouse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_mouse.h; path = ../../include/SDL_mouse.h; sourceTree = ""; };
+ FD99B8E40DD52EB400FB1D6B /* SDL_mutex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_mutex.h; path = ../../include/SDL_mutex.h; sourceTree = ""; };
+ FD99B8E50DD52EB400FB1D6B /* SDL_name.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_name.h; path = ../../include/SDL_name.h; sourceTree = ""; };
+ FD99B8E60DD52EB400FB1D6B /* SDL_opengl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_opengl.h; path = ../../include/SDL_opengl.h; sourceTree = ""; };
+ FD99B8E70DD52EB400FB1D6B /* SDL_pixels.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_pixels.h; path = ../../include/SDL_pixels.h; sourceTree = ""; };
+ FD99B8E80DD52EB400FB1D6B /* SDL_platform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_platform.h; path = ../../include/SDL_platform.h; sourceTree = ""; };
+ FD99B8E90DD52EB400FB1D6B /* SDL_quit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_quit.h; path = ../../include/SDL_quit.h; sourceTree = ""; };
+ FD99B8EA0DD52EB400FB1D6B /* SDL_rect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_rect.h; path = ../../include/SDL_rect.h; sourceTree = ""; };
+ FD99B8EB0DD52EB400FB1D6B /* SDL_rwops.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_rwops.h; path = ../../include/SDL_rwops.h; sourceTree = ""; };
+ FD99B8EC0DD52EB400FB1D6B /* SDL_scancode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_scancode.h; path = ../../include/SDL_scancode.h; sourceTree = ""; };
+ FD99B8ED0DD52EB400FB1D6B /* SDL_stdinc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_stdinc.h; path = ../../include/SDL_stdinc.h; sourceTree = ""; };
+ FD99B8EE0DD52EB400FB1D6B /* SDL_surface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_surface.h; path = ../../include/SDL_surface.h; sourceTree = ""; };
+ FD99B8EF0DD52EB400FB1D6B /* SDL_syswm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_syswm.h; path = ../../include/SDL_syswm.h; sourceTree = ""; };
+ FD99B8F00DD52EB400FB1D6B /* SDL_thread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_thread.h; path = ../../include/SDL_thread.h; sourceTree = ""; };
+ FD99B8F10DD52EB400FB1D6B /* SDL_timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_timer.h; path = ../../include/SDL_timer.h; sourceTree = ""; };
+ FD99B8F20DD52EB400FB1D6B /* SDL_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_types.h; path = ../../include/SDL_types.h; sourceTree = ""; };
+ FD99B8F30DD52EB400FB1D6B /* SDL_version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_version.h; path = ../../include/SDL_version.h; sourceTree = ""; };
+ FD99B8F40DD52EB400FB1D6B /* SDL_video.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_video.h; path = ../../include/SDL_video.h; sourceTree = ""; };
+ FD99B8F50DD52EB400FB1D6B /* SDL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL.h; path = ../../include/SDL.h; sourceTree = ""; };
+ FD99B8F60DD52EB400FB1D6B /* SDL_endian.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_endian.h; path = ../../include/SDL_endian.h; sourceTree = ""; };
+ FD99B91D0DD52EDC00FB1D6B /* SDL_dummyaudio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_dummyaudio.c; sourceTree = ""; };
+ FD99B91E0DD52EDC00FB1D6B /* SDL_dummyaudio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_dummyaudio.h; sourceTree = ""; };
+ FD99B9440DD52EDC00FB1D6B /* SDL_audio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_audio.c; sourceTree = ""; };
+ FD99B9450DD52EDC00FB1D6B /* SDL_audio_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_audio_c.h; sourceTree = ""; };
+ FD99B9460DD52EDC00FB1D6B /* SDL_audiocvt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_audiocvt.c; sourceTree = ""; };
+ FD99B9490DD52EDC00FB1D6B /* SDL_audiomem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_audiomem.h; sourceTree = ""; };
+ FD99B94A0DD52EDC00FB1D6B /* SDL_audiotypecvt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_audiotypecvt.c; sourceTree = ""; };
+ FD99B94B0DD52EDC00FB1D6B /* SDL_mixer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_mixer.c; sourceTree = ""; };
+ FD99B94C0DD52EDC00FB1D6B /* SDL_mixer_m68k.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_mixer_m68k.c; sourceTree = ""; };
+ FD99B94D0DD52EDC00FB1D6B /* SDL_mixer_m68k.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_mixer_m68k.h; sourceTree = ""; };
+ FD99B94E0DD52EDC00FB1D6B /* SDL_mixer_MMX.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_mixer_MMX.c; sourceTree = ""; };
+ FD99B94F0DD52EDC00FB1D6B /* SDL_mixer_MMX.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_mixer_MMX.h; sourceTree = ""; };
+ FD99B9500DD52EDC00FB1D6B /* SDL_mixer_MMX_VC.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_mixer_MMX_VC.c; sourceTree = ""; };
+ FD99B9510DD52EDC00FB1D6B /* SDL_mixer_MMX_VC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_mixer_MMX_VC.h; sourceTree = ""; };
+ FD99B9520DD52EDC00FB1D6B /* SDL_sysaudio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_sysaudio.h; sourceTree = ""; };
+ FD99B9530DD52EDC00FB1D6B /* SDL_wave.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_wave.c; sourceTree = ""; };
+ FD99B9540DD52EDC00FB1D6B /* SDL_wave.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_wave.h; sourceTree = ""; };
+ FD99B98B0DD52EDC00FB1D6B /* SDL_cpuinfo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_cpuinfo.c; sourceTree = ""; };
+ FD99B98D0DD52EDC00FB1D6B /* blank_cursor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = blank_cursor.h; sourceTree = ""; };
+ FD99B98E0DD52EDC00FB1D6B /* default_cursor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = default_cursor.h; sourceTree = ""; };
+ FD99B98F0DD52EDC00FB1D6B /* scancodes_darwin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scancodes_darwin.h; sourceTree = ""; };
+ FD99B9900DD52EDC00FB1D6B /* scancodes_linux.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scancodes_linux.h; sourceTree = ""; };
+ FD99B9920DD52EDC00FB1D6B /* scancodes_xfree86.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scancodes_xfree86.h; sourceTree = ""; };
+ FD99B9930DD52EDC00FB1D6B /* SDL_events.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_events.c; sourceTree = ""; };
+ FD99B9940DD52EDC00FB1D6B /* SDL_events_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_events_c.h; sourceTree = ""; };
+ FD99B9950DD52EDC00FB1D6B /* SDL_keyboard.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_keyboard.c; sourceTree = ""; };
+ FD99B9960DD52EDC00FB1D6B /* SDL_keyboard_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_keyboard_c.h; sourceTree = ""; };
+ FD99B9970DD52EDC00FB1D6B /* SDL_mouse.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_mouse.c; sourceTree = ""; };
+ FD99B9980DD52EDC00FB1D6B /* SDL_mouse_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_mouse_c.h; sourceTree = ""; };
+ FD99B9990DD52EDC00FB1D6B /* SDL_quit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_quit.c; sourceTree = ""; };
+ FD99B99A0DD52EDC00FB1D6B /* SDL_sysevents.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_sysevents.h; sourceTree = ""; };
+ FD99B99B0DD52EDC00FB1D6B /* SDL_windowevents.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_windowevents.c; sourceTree = ""; };
+ FD99B99C0DD52EDC00FB1D6B /* SDL_windowevents_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_windowevents_c.h; sourceTree = ""; };
+ FD99B99E0DD52EDC00FB1D6B /* SDL_rwops.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_rwops.c; sourceTree = ""; };
+ FD99B9D30DD52EDC00FB1D6B /* SDL_compat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_compat.c; path = ../../src/SDL_compat.c; sourceTree = ""; };
+ FD99B9D40DD52EDC00FB1D6B /* SDL_error_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_error_c.h; path = ../../src/SDL_error_c.h; sourceTree = ""; };
+ FD99B9D50DD52EDC00FB1D6B /* SDL_error.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_error.c; path = ../../src/SDL_error.c; sourceTree = ""; };
+ FD99B9D60DD52EDC00FB1D6B /* SDL_fatal.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_fatal.c; path = ../../src/SDL_fatal.c; sourceTree = ""; };
+ FD99B9D70DD52EDC00FB1D6B /* SDL_fatal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_fatal.h; path = ../../src/SDL_fatal.h; sourceTree = ""; };
+ FD99B9D80DD52EDC00FB1D6B /* SDL.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL.c; path = ../../src/SDL.c; sourceTree = ""; };
+ FD99BA070DD52EDC00FB1D6B /* SDL_syscond.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_syscond.c; sourceTree = ""; };
+ FD99BA080DD52EDC00FB1D6B /* SDL_sysmutex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_sysmutex.c; sourceTree = ""; };
+ FD99BA090DD52EDC00FB1D6B /* SDL_sysmutex_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_sysmutex_c.h; sourceTree = ""; };
+ FD99BA0A0DD52EDC00FB1D6B /* SDL_syssem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_syssem.c; sourceTree = ""; };
+ FD99BA0B0DD52EDC00FB1D6B /* SDL_systhread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_systhread.c; sourceTree = ""; };
+ FD99BA0C0DD52EDC00FB1D6B /* SDL_systhread_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_systhread_c.h; sourceTree = ""; };
+ FD99BA140DD52EDC00FB1D6B /* SDL_systhread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_systhread.h; sourceTree = ""; };
+ FD99BA150DD52EDC00FB1D6B /* SDL_thread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_thread.c; sourceTree = ""; };
+ FD99BA160DD52EDC00FB1D6B /* SDL_thread_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_thread_c.h; sourceTree = ""; };
+ FD99BA2E0DD52EDC00FB1D6B /* SDL_timer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_timer.c; sourceTree = ""; };
+ FD99BA2F0DD52EDC00FB1D6B /* SDL_timer_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_timer_c.h; sourceTree = ""; };
+ FD99BA310DD52EDC00FB1D6B /* SDL_systimer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_systimer.c; sourceTree = ""; };
+ FDA683000DF2374E00F98A1A /* SDL_blit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blit.c; sourceTree = ""; };
+ FDA683010DF2374E00F98A1A /* SDL_blit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_blit.h; sourceTree = ""; };
+ FDA683020DF2374E00F98A1A /* SDL_blit_0.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blit_0.c; sourceTree = ""; };
+ FDA683030DF2374E00F98A1A /* SDL_blit_1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blit_1.c; sourceTree = ""; };
+ FDA683040DF2374E00F98A1A /* SDL_blit_A.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blit_A.c; sourceTree = ""; };
+ FDA683050DF2374E00F98A1A /* SDL_blit_auto.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blit_auto.c; sourceTree = ""; };
+ FDA683060DF2374E00F98A1A /* SDL_blit_auto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_blit_auto.h; sourceTree = ""; };
+ FDA683070DF2374E00F98A1A /* SDL_blit_copy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blit_copy.c; sourceTree = ""; };
+ FDA683080DF2374E00F98A1A /* SDL_blit_copy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_blit_copy.h; sourceTree = ""; };
+ FDA683090DF2374E00F98A1A /* SDL_blit_N.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blit_N.c; sourceTree = ""; };
+ FDA6830A0DF2374E00F98A1A /* SDL_blit_slow.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blit_slow.c; sourceTree = ""; };
+ FDA6830B0DF2374E00F98A1A /* SDL_bmp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_bmp.c; sourceTree = ""; };
+ FDA6830F0DF2374E00F98A1A /* SDL_pixels.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_pixels.c; sourceTree = ""; };
+ FDA683100DF2374E00F98A1A /* SDL_pixels_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_pixels_c.h; sourceTree = ""; };
+ FDA683110DF2374E00F98A1A /* SDL_rect.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_rect.c; sourceTree = ""; };
+ FDA683150DF2374E00F98A1A /* SDL_RLEaccel.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_RLEaccel.c; sourceTree = ""; };
+ FDA683160DF2374E00F98A1A /* SDL_RLEaccel_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_RLEaccel_c.h; sourceTree = ""; };
+ FDA683170DF2374E00F98A1A /* SDL_stretch.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_stretch.c; sourceTree = ""; };
+ FDA683190DF2374E00F98A1A /* SDL_surface.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_surface.c; sourceTree = ""; };
+ FDA6831A0DF2374E00F98A1A /* SDL_sysvideo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_sysvideo.h; sourceTree = ""; };
+ FDA6831B0DF2374E00F98A1A /* SDL_video.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_video.c; sourceTree = ""; };
+ FDA685F50DF244C800F98A1A /* SDL_nullevents.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_nullevents.c; sourceTree = ""; };
+ FDA685F60DF244C800F98A1A /* SDL_nullevents_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_nullevents_c.h; sourceTree = ""; };
+ FDA685F90DF244C800F98A1A /* SDL_nullvideo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_nullvideo.c; sourceTree = ""; };
+ FDA685FA0DF244C800F98A1A /* SDL_nullvideo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_nullvideo.h; sourceTree = "