From 590a060f3bcfafb1c6d922599a6fdc362eaeba04 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 3 Jun 2011 16:03:10 -0400 Subject: [PATCH 01/72] Assert code's stdio interface was reading from the wrong variable. Thanks to Frank Zago for the catch. --- src/SDL_assert.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/SDL_assert.c b/src/SDL_assert.c index 8da197a39..ba4fb066f 100644 --- a/src/SDL_assert.c +++ b/src/SDL_assert.c @@ -337,16 +337,16 @@ SDL_PromptAssertion(const SDL_assert_data *data, void *userdata) if (SDL_strcmp(buf, "a") == 0) { state = SDL_ASSERTION_ABORT; break; - } else if (SDL_strcmp(envr, "b") == 0) { + } else if (SDL_strcmp(buf, "b") == 0) { state = SDL_ASSERTION_BREAK; break; - } else if (SDL_strcmp(envr, "r") == 0) { + } else if (SDL_strcmp(buf, "r") == 0) { state = SDL_ASSERTION_RETRY; break; - } else if (SDL_strcmp(envr, "i") == 0) { + } else if (SDL_strcmp(buf, "i") == 0) { state = SDL_ASSERTION_IGNORE; break; - } else if (SDL_strcmp(envr, "A") == 0) { + } else if (SDL_strcmp(buf, "A") == 0) { state = SDL_ASSERTION_ALWAYS_IGNORE; break; } From 8b1cf3db9853cad961001e6d908c2a8d063477e2 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 4 Jun 2011 15:26:02 -0400 Subject: [PATCH 02/72] Updated configure.in to be compatible with autoconf 2.67. Still works with autoconf 2.61 (what ships with Xcode 3). Thanks to Frank Zago for this patch. --- configure.in | 261 ++++++++++++++++++++++++++------------------------- 1 file changed, 131 insertions(+), 130 deletions(-) diff --git a/configure.in b/configure.in index 45ccc02eb..b291df45a 100644 --- a/configure.in +++ b/configure.in @@ -3,6 +3,7 @@ AC_INIT(README) AC_CONFIG_HEADER(include/SDL_config.h) AC_GNU_SOURCE AC_CONFIG_AUX_DIRS($srcdir/build-scripts) +AC_CONFIG_MACRO_DIR([acinclude]) dnl Save the CFLAGS to see whether they were passed in or generated orig_CFLAGS="$CFLAGS" @@ -146,16 +147,16 @@ case "$enable_assertions" in auto) # Use optimization settings to determine assertion level ;; disabled) - AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 0) + AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 0, [ ]) ;; release) - AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 1) + AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 1, [ ]) ;; enabled) - AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 2) + AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 2, [ ]) ;; paranoid) - AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 3) + AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 3, [ ]) ;; *) AC_MSG_ERROR([*** unknown assertion level. stop.]) @@ -190,7 +191,7 @@ AC_ARG_ENABLE(libc, AC_HELP_STRING([--enable-libc], [Use the system C library [[default=yes]]]), , enable_libc=yes) if test x$enable_libc = xyes; then - AC_DEFINE(HAVE_LIBC) + AC_DEFINE(HAVE_LIBC, 1, [ ]) dnl Check for C library headers AC_HEADER_STDC @@ -213,11 +214,11 @@ if test x$enable_libc = xyes; then AC_FUNC_MEMCMP if test x$ac_cv_func_memcmp_working = xyes; then - AC_DEFINE(HAVE_MEMCMP) + AC_DEFINE(HAVE_MEMCMP, 1, [ ]) fi AC_FUNC_STRTOD if test x$ac_cv_func_strtod = xyes; then - AC_DEFINE(HAVE_STRTOD) + AC_DEFINE(HAVE_STRTOD, 1, [ ]) fi AC_CHECK_FUNC(mprotect, AC_TRY_COMPILE([ @@ -225,7 +226,7 @@ if test x$enable_libc = xyes; then #include ],[ ],[ - AC_DEFINE(HAVE_MPROTECT) + AC_DEFINE(HAVE_MPROTECT, 1, [ ]) ]), ) AC_CHECK_FUNCS(malloc calloc realloc free getenv setenv putenv unsetenv qsort abs bcopy memset memcpy memmove strlen strlcpy strlcat strdup _strrev _strupr _strlwr strchr strrchr strstr itoa _ltoa _uitoa _ultoa strtol strtoul _i64toa _ui64toa strtoll strtoull atoi atof strcmp strncmp _stricmp strcasecmp _strnicmp strncasecmp sscanf snprintf vsnprintf sigaction setjmp nanosleep sysconf sysctlbyname) @@ -262,7 +263,7 @@ if test x$enable_gcc_atomics = xyes; then AC_MSG_RESULT($have_gcc_atomics) if test x$have_gcc_atomics = xyes; then - AC_DEFINE(HAVE_GCC_ATOMICS) + AC_DEFINE(HAVE_GCC_ATOMICS, 1, [ ]) else # See if we have the minimum operation needed for GCC atomics AC_TRY_LINK([ @@ -274,7 +275,7 @@ if test x$enable_gcc_atomics = xyes; then have_gcc_sync_lock_test_and_set=yes ]) if test x$have_gcc_sync_lock_test_and_set = xyes; then - AC_DEFINE(HAVE_GCC_SYNC_LOCK_TEST_AND_SET) + AC_DEFINE(HAVE_GCC_SYNC_LOCK_TEST_AND_SET, 1, [ ]) fi fi fi @@ -299,37 +300,37 @@ AC_ARG_ENABLE(atomic, AC_HELP_STRING([--enable-atomic], [Enable the atomic operations subsystem [[default=yes]]]), , enable_atomic=yes) if test x$enable_atomic != xyes; then - AC_DEFINE(SDL_ATOMIC_DISABLED) + AC_DEFINE(SDL_ATOMIC_DISABLED, 1, [ ]) fi AC_ARG_ENABLE(audio, AC_HELP_STRING([--enable-audio], [Enable the audio subsystem [[default=yes]]]), , enable_audio=yes) if test x$enable_audio != xyes; then - AC_DEFINE(SDL_AUDIO_DISABLED) + AC_DEFINE(SDL_AUDIO_DISABLED, 1, [ ]) fi AC_ARG_ENABLE(video, AC_HELP_STRING([--enable-video], [Enable the video subsystem [[default=yes]]]), , enable_video=yes) if test x$enable_video != xyes; then - AC_DEFINE(SDL_VIDEO_DISABLED) + AC_DEFINE(SDL_VIDEO_DISABLED, 1, [ ]) fi AC_ARG_ENABLE(render, AC_HELP_STRING([--enable-render], [Enable the render subsystem [[default=yes]]]), , enable_render=yes) if test x$enable_render != xyes; then - AC_DEFINE(SDL_RENDER_DISABLED) + AC_DEFINE(SDL_RENDER_DISABLED, 1, [ ]) fi AC_ARG_ENABLE(events, AC_HELP_STRING([--enable-events], [Enable the events subsystem [[default=yes]]]), , enable_events=yes) if test x$enable_events != xyes; then - AC_DEFINE(SDL_EVENTS_DISABLED) + AC_DEFINE(SDL_EVENTS_DISABLED, 1, [ ]) fi AC_ARG_ENABLE(joystick, AC_HELP_STRING([--enable-joystick], [Enable the joystick subsystem [[default=yes]]]), , enable_joystick=yes) if test x$enable_joystick != xyes; then - AC_DEFINE(SDL_JOYSTICK_DISABLED) + AC_DEFINE(SDL_JOYSTICK_DISABLED, 1, [ ]) else SOURCES="$SOURCES $srcdir/src/joystick/*.c" fi @@ -337,7 +338,7 @@ AC_ARG_ENABLE(haptic, AC_HELP_STRING([--enable-haptic], [Enable the haptic (force feedback) subsystem [[default=yes]]]), , enable_haptic=yes) if test x$enable_haptic != xyes; then - AC_DEFINE(SDL_HAPTIC_DISABLED) + AC_DEFINE(SDL_HAPTIC_DISABLED, 1, [ ]) else SOURCES="$SOURCES $srcdir/src/haptic/*.c" fi @@ -345,7 +346,7 @@ AC_ARG_ENABLE(power, AC_HELP_STRING([--enable-power], [Enable the power subsystem [[default=yes]]]), , enable_power=yes) if test x$enable_power != xyes; then - AC_DEFINE(SDL_POWER_DISABLED) + AC_DEFINE(SDL_POWER_DISABLED, 1, [ ]) else SOURCES="$SOURCES $srcdir/src/power/*.c" fi @@ -353,43 +354,43 @@ AC_ARG_ENABLE(threads, AC_HELP_STRING([--enable-threads], [Enable the threading subsystem [[default=yes]]]), , enable_threads=yes) if test x$enable_threads != xyes; then - AC_DEFINE(SDL_THREADS_DISABLED) + AC_DEFINE(SDL_THREADS_DISABLED, 1, [ ]) fi AC_ARG_ENABLE(timers, AC_HELP_STRING([--enable-timers], [Enable the timer subsystem [[default=yes]]]), , enable_timers=yes) if test x$enable_timers != xyes; then - AC_DEFINE(SDL_TIMERS_DISABLED) + AC_DEFINE(SDL_TIMERS_DISABLED, 1, [ ]) fi AC_ARG_ENABLE(file, AC_HELP_STRING([--enable-file], [Enable the file subsystem [[default=yes]]]), , enable_file=yes) if test x$enable_file != xyes; then - AC_DEFINE(SDL_FILE_DISABLED) + AC_DEFINE(SDL_FILE_DISABLED, 1, [ ]) fi AC_ARG_ENABLE(loadso, AC_HELP_STRING([--enable-loadso], [Enable the shared object loading subsystem [[default=yes]]]), , enable_loadso=yes) if test x$enable_loadso != xyes; then - AC_DEFINE(SDL_LOADSO_DISABLED) + AC_DEFINE(SDL_LOADSO_DISABLED, 1, [ ]) fi AC_ARG_ENABLE(cpuinfo, AC_HELP_STRING([--enable-cpuinfo], [Enable the cpuinfo subsystem [[default=yes]]]), , enable_cpuinfo=yes) if test x$enable_cpuinfo != xyes; then - AC_DEFINE(SDL_CPUINFO_DISABLED) + AC_DEFINE(SDL_CPUINFO_DISABLED, 1, [ ]) fi AC_ARG_ENABLE(atomic, AC_HELP_STRING([--enable-atomic], [Enable the atomic operations [[default=yes]]]), , enable_atomic=yes) if test x$enable_atomic != xyes; then - AC_DEFINE(SDL_ATOMIC_DISABLED) + AC_DEFINE(SDL_ATOMIC_DISABLED, 1, [ ]) fi AC_ARG_ENABLE(assembly, AC_HELP_STRING([--enable-assembly], [Enable assembly routines [[default=yes]]]), , enable_assembly=yes) if test x$enable_assembly = xyes; then - AC_DEFINE(SDL_ASSEMBLY_ROUTINES) + AC_DEFINE(SDL_ASSEMBLY_ROUTINES, 1, [ ]) # Make sure that we don't generate floating point code that would # cause illegal instruction exceptions on older processors @@ -619,9 +620,9 @@ AC_HELP_STRING([--enable-altivec], [use Altivec assembly routines [[default=yes] CFLAGS="$save_CFLAGS" if test x$have_gcc_altivec = xyes; then - AC_DEFINE(SDL_ALTIVEC_BLITTERS) + AC_DEFINE(SDL_ALTIVEC_BLITTERS, 1, [ ]) if test x$have_altivec_h_hdr = xyes; then - AC_DEFINE(HAVE_ALTIVEC_H) + AC_DEFINE(HAVE_ALTIVEC_H, 1, [ ]) fi EXTRA_CFLAGS="$EXTRA_CFLAGS $altivec_CFLAGS" fi @@ -653,12 +654,12 @@ AC_HELP_STRING([--enable-oss], [support the OSS audio API [[default=yes]]]), int arg = SNDCTL_DSP_SETFRAGMENT; ],[ have_oss=yes - AC_DEFINE(SDL_AUDIO_DRIVER_OSS_SOUNDCARD_H) + AC_DEFINE(SDL_AUDIO_DRIVER_OSS_SOUNDCARD_H, 1, [ ]) ]) fi AC_MSG_RESULT($have_oss) if test x$have_oss = xyes; then - AC_DEFINE(SDL_AUDIO_DRIVER_OSS) + AC_DEFINE(SDL_AUDIO_DRIVER_OSS, 1, [ ]) SOURCES="$SOURCES $srcdir/src/audio/dsp/*.c" SOURCES="$SOURCES $srcdir/src/audio/dma/*.c" have_audio=yes @@ -690,7 +691,7 @@ AC_HELP_STRING([--enable-alsa-shared], [dynamically load ALSA audio support [[de , enable_alsa_shared=yes) alsa_lib=[`find_lib "libasound.so.*" "$ALSA_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`] - AC_DEFINE(SDL_AUDIO_DRIVER_ALSA) + AC_DEFINE(SDL_AUDIO_DRIVER_ALSA, 1, [ ]) SOURCES="$SOURCES $srcdir/src/audio/alsa/*.c" EXTRA_CFLAGS="$EXTRA_CFLAGS $ALSA_CFLAGS" if test x$have_loadso != xyes && \ @@ -700,7 +701,7 @@ AC_HELP_STRING([--enable-alsa-shared], [dynamically load ALSA audio support [[de if test x$have_loadso = xyes && \ test x$enable_alsa_shared = xyes && test x$alsa_lib != x; then echo "-- dynamic libasound -> $alsa_lib" - AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ALSA_DYNAMIC, "$alsa_lib") + AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ALSA_DYNAMIC, "$alsa_lib", [ ]) else EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ALSA_LIBS" fi @@ -723,7 +724,7 @@ AC_HELP_STRING([--enable-esd-shared], [dynamically load ESD audio support [[defa , enable_esd_shared=yes) esd_lib=[`find_lib "libesd.so.*" "$ESD_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`] - AC_DEFINE(SDL_AUDIO_DRIVER_ESD) + AC_DEFINE(SDL_AUDIO_DRIVER_ESD, 1, [ ]) SOURCES="$SOURCES $srcdir/src/audio/esd/*.c" EXTRA_CFLAGS="$EXTRA_CFLAGS $ESD_CFLAGS" if test x$have_loadso != xyes && \ @@ -733,7 +734,7 @@ AC_HELP_STRING([--enable-esd-shared], [dynamically load ESD audio support [[defa if test x$have_loadso = xyes && \ test x$enable_esd_shared = xyes && test x$esd_lib != x; then echo "-- dynamic libesd -> $esd_lib" - AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ESD_DYNAMIC, "$esd_lib") + AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ESD_DYNAMIC, "$esd_lib", [ ]) else EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ESD_LIBS" fi @@ -770,7 +771,7 @@ AC_HELP_STRING([--enable-pulseaudio-shared], [dynamically load PulseAudio suppor , enable_pulseaudio_shared=yes) pulseaudio_lib=[`find_lib "libpulse-simple.so.*" "$PULSEAUDIO_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`] - AC_DEFINE(SDL_AUDIO_DRIVER_PULSEAUDIO) + AC_DEFINE(SDL_AUDIO_DRIVER_PULSEAUDIO, 1, [ ]) SOURCES="$SOURCES $srcdir/src/audio/pulseaudio/*.c" EXTRA_CFLAGS="$EXTRA_CFLAGS $PULSEAUDIO_CFLAGS" if test x$have_loadso != xyes && \ @@ -780,7 +781,7 @@ AC_HELP_STRING([--enable-pulseaudio-shared], [dynamically load PulseAudio suppor if test x$have_loadso = xyes && \ test x$enable_pulseaudio_shared = xyes && test x$pulseaudio_lib != x; then echo "-- dynamic libpulse-simple -> $pulseaudio_lib" - AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_PULSEAUDIO_DYNAMIC, "$pulseaudio_lib") + AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_PULSEAUDIO_DYNAMIC, "$pulseaudio_lib", [ ]) else EXTRA_LDFLAGS="$EXTRA_LDFLAGS $PULSEAUDIO_LIBS" fi @@ -820,7 +821,7 @@ AC_HELP_STRING([--enable-arts-shared], [dynamically load aRts audio support [[de , enable_arts_shared=yes) arts_lib=[`find_lib "libartsc.so.*" "$ARTS_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`] - AC_DEFINE(SDL_AUDIO_DRIVER_ARTS) + AC_DEFINE(SDL_AUDIO_DRIVER_ARTS, 1, [ ]) SOURCES="$SOURCES $srcdir/src/audio/arts/*.c" EXTRA_CFLAGS="$EXTRA_CFLAGS $ARTS_CFLAGS" if test x$have_loadso != xyes && \ @@ -830,7 +831,7 @@ AC_HELP_STRING([--enable-arts-shared], [dynamically load aRts audio support [[de if test x$have_loadso = xyes && \ test x$enable_arts_shared = xyes && test x$arts_lib != x; then echo "-- dynamic libartsc -> $arts_lib" - AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ARTS_DYNAMIC, "$arts_lib") + AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ARTS_DYNAMIC, "$arts_lib", [ ]) else EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ARTS_LIBS" fi @@ -879,12 +880,12 @@ AC_HELP_STRING([--enable-nas-shared], [dynamically load NAS audio support [[defa if test x$have_loadso = xyes && \ test x$enable_nas_shared = xyes && test x$nas_lib != x; then echo "-- dynamic libaudio -> $nas_lib" - AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_NAS_DYNAMIC, "$nas_lib") + AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_NAS_DYNAMIC, "$nas_lib", [ ]) else EXTRA_LDFLAGS="$EXTRA_LDFLAGS $NAS_LIBS" fi - AC_DEFINE(SDL_AUDIO_DRIVER_NAS) + AC_DEFINE(SDL_AUDIO_DRIVER_NAS, 1, [ ]) SOURCES="$SOURCES $srcdir/src/audio/nas/*.c" EXTRA_CFLAGS="$EXTRA_CFLAGS $NAS_CFLAGS" have_audio=yes @@ -899,7 +900,7 @@ CheckDiskAudio() AC_HELP_STRING([--enable-diskaudio], [support the disk writer audio driver [[default=yes]]]), , enable_diskaudio=yes) if test x$enable_audio = xyes -a x$enable_diskaudio = xyes; then - AC_DEFINE(SDL_AUDIO_DRIVER_DISK) + AC_DEFINE(SDL_AUDIO_DRIVER_DISK, 1, [ ]) SOURCES="$SOURCES $srcdir/src/audio/disk/*.c" fi } @@ -911,7 +912,7 @@ CheckDummyAudio() AC_HELP_STRING([--enable-dummyaudio], [support the dummy audio driver [[default=yes]]]), , enable_dummyaudio=yes) if test x$enable_audio = xyes -a x$enable_dummyaudio = xyes; then - AC_DEFINE(SDL_AUDIO_DRIVER_DUMMY) + AC_DEFINE(SDL_AUDIO_DRIVER_DUMMY, 1, [ ]) SOURCES="$SOURCES $srcdir/src/audio/dummy/*.c" fi } @@ -1005,7 +1006,7 @@ AC_HELP_STRING([--enable-x11-shared], [dynamically load X11 support [[default=ma CFLAGS="$CFLAGS $X_CFLAGS" LDFLAGS="$LDFLAGS $X_LIBS" - AC_DEFINE(SDL_VIDEO_DRIVER_X11) + AC_DEFINE(SDL_VIDEO_DRIVER_X11, 1, [ ]) SOURCES="$SOURCES $srcdir/src/video/x11/*.c" EXTRA_CFLAGS="$EXTRA_CFLAGS $X_CFLAGS" @@ -1027,8 +1028,8 @@ AC_HELP_STRING([--enable-x11-shared], [dynamically load X11 support [[default=ma test x$enable_x11_shared = xyes && test x$x11_lib != x && test x$x11ext_lib != x; then echo "-- dynamic libX11 -> $x11_lib" echo "-- dynamic libX11ext -> $x11ext_lib" - AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC, "$x11_lib") - AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT, "$x11ext_lib") + AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC, "$x11_lib", [ ]) + AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT, "$x11ext_lib", [ ]) else enable_x11_shared=no EXTRA_LDFLAGS="$EXTRA_LDFLAGS $X_LIBS -lX11 -lXext" @@ -1048,7 +1049,7 @@ AC_HELP_STRING([--enable-video-x11-xcursor], [enable X11 Xcursor support [[defau if test x$have_xcursor_h_hdr = xyes; then if test x$enable_x11_shared = xyes && test x$xcursor_lib != x ; then echo "-- dynamic libXcursor -> $xcursor_lib" - AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XCURSOR, "$xcursor_lib") + AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XCURSOR, "$xcursor_lib", [ ]) definitely_enable_video_x11_xcursor=yes else AC_CHECK_LIB(Xcursor, XcursorImageCreate, have_xcursor_lib=yes) @@ -1060,7 +1061,7 @@ AC_HELP_STRING([--enable-video-x11-xcursor], [enable X11 Xcursor support [[defau fi fi if test x$definitely_enable_video_x11_xcursor = xyes; then - AC_DEFINE(SDL_VIDEO_DRIVER_X11_XCURSOR) + AC_DEFINE(SDL_VIDEO_DRIVER_X11_XCURSOR, 1, [ ]) fi AC_ARG_ENABLE(video-x11-xinerama, AC_HELP_STRING([--enable-video-x11-xinerama], [enable X11 Xinerama support [[default=yes]]]), @@ -1075,7 +1076,7 @@ AC_HELP_STRING([--enable-video-x11-xinerama], [enable X11 Xinerama support [[def if test x$have_xinerama_h_hdr = xyes; then if test x$enable_x11_shared = xyes && test x$xinerama_lib != x ; then echo "-- dynamic libXinerama -> $xinerama_lib" - AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XINERAMA, "$xinerama_lib") + AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XINERAMA, "$xinerama_lib", [ ]) definitely_enable_video_x11_xinerama=yes else AC_CHECK_LIB(Xinerama, XineramaQueryExtension, have_xinerama_lib=yes) @@ -1087,7 +1088,7 @@ AC_HELP_STRING([--enable-video-x11-xinerama], [enable X11 Xinerama support [[def fi fi if test x$definitely_enable_video_x11_xinerama = xyes; then - AC_DEFINE(SDL_VIDEO_DRIVER_X11_XINERAMA) + AC_DEFINE(SDL_VIDEO_DRIVER_X11_XINERAMA, 1, [ ]) fi AC_ARG_ENABLE(video-x11-xinput, AC_HELP_STRING([--enable-video-x11-xinput], [enable X11 XInput extension for manymouse, tablets, etc [[default=yes]]]), @@ -1102,7 +1103,7 @@ AC_HELP_STRING([--enable-video-x11-xinput], [enable X11 XInput extension for man if test x$have_xinput_h_hdr = xyes; then if test x$enable_x11_shared = xyes && test x$xinput_lib != x ; then echo "-- dynamic libXi -> $xinput_lib" - AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XINPUT, "$xinput_lib") + AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XINPUT, "$xinput_lib", [ ]) definitely_enable_video_x11_xinput=yes else AC_CHECK_LIB(Xi, XOpenDevice, have_xinput_lib=yes) @@ -1114,7 +1115,7 @@ AC_HELP_STRING([--enable-video-x11-xinput], [enable X11 XInput extension for man fi fi if test x$definitely_enable_video_x11_xinput = xyes; then - AC_DEFINE(SDL_VIDEO_DRIVER_X11_XINPUT) + AC_DEFINE(SDL_VIDEO_DRIVER_X11_XINPUT, 1, [ ]) fi AC_ARG_ENABLE(video-x11-xrandr, AC_HELP_STRING([--enable-video-x11-xrandr], [enable X11 Xrandr extension for fullscreen [[default=yes]]]), @@ -1129,7 +1130,7 @@ AC_HELP_STRING([--enable-video-x11-xrandr], [enable X11 Xrandr extension for ful if test x$have_xrandr_h_hdr = xyes; then if test x$enable_x11_shared = xyes && test x$xrandr_lib != x ; then echo "-- dynamic libXrandr -> $xrandr_lib" - AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR, "$xrandr_lib") + AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR, "$xrandr_lib", [ ]) definitely_enable_video_x11_xrandr=yes else AC_CHECK_LIB(Xrandr, XRRQueryExtension, have_xrandr_lib=yes) @@ -1141,7 +1142,7 @@ AC_HELP_STRING([--enable-video-x11-xrandr], [enable X11 Xrandr extension for ful fi fi if test x$definitely_enable_video_x11_xrandr = xyes; then - AC_DEFINE(SDL_VIDEO_DRIVER_X11_XRANDR) + AC_DEFINE(SDL_VIDEO_DRIVER_X11_XRANDR, 1, [ ]) fi AC_ARG_ENABLE(video-x11-scrnsaver, AC_HELP_STRING([--enable-video-x11-scrnsaver], [enable X11 screensaver extension [[default=yes]]]), @@ -1155,7 +1156,7 @@ AC_HELP_STRING([--enable-video-x11-scrnsaver], [enable X11 screensaver extension if test x$have_scrnsaver_h_hdr = xyes; then if test x$enable_x11_shared = xyes && test x$xss_lib != x ; then echo "-- dynamic libXss -> $xss_lib" - AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XSS, "$xss_lib") + AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XSS, "$xss_lib", [ ]) definitely_enable_video_x11_scrnsaver=yes else AC_CHECK_LIB(Xss, XScreenSaverSuspend, have_xss_lib=yes) @@ -1167,7 +1168,7 @@ AC_HELP_STRING([--enable-video-x11-scrnsaver], [enable X11 screensaver extension fi fi if test x$definitely_enable_video_x11_scrnsaver = xyes; then - AC_DEFINE(SDL_VIDEO_DRIVER_X11_XSCRNSAVER) + AC_DEFINE(SDL_VIDEO_DRIVER_X11_XSCRNSAVER, 1, [ ]) fi AC_ARG_ENABLE(video-x11-xshape, AC_HELP_STRING([--enable-video-x11-xshape], [enable X11 XShape support [[default=yes]]]), @@ -1179,7 +1180,7 @@ AC_HELP_STRING([--enable-video-x11-xshape], [enable X11 XShape support [[default [#include ]) if test x$have_shape_h_hdr = xyes; then - AC_DEFINE(SDL_VIDEO_DRIVER_X11_XSHAPE) + AC_DEFINE(SDL_VIDEO_DRIVER_X11_XSHAPE, 1, [ ]) fi fi AC_ARG_ENABLE(video-x11-vm, @@ -1195,7 +1196,7 @@ AC_HELP_STRING([--enable-video-x11-vm], [use X11 VM extension for fullscreen [[d if test x$have_vm_h_hdr = xyes; then if test x$enable_x11_shared = xyes && test x$xvidmode_lib != x ; then echo "-- dynamic libXxf86vm -> $xvidmode_lib" - AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XVIDMODE, "$xvidmode_lib") + AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XVIDMODE, "$xvidmode_lib", [ ]) definitely_enable_video_x11_vm=yes else AC_CHECK_LIB(Xxf86vm, XF86VidModeQueryVersion, have_vm_lib=yes) @@ -1207,7 +1208,7 @@ AC_HELP_STRING([--enable-video-x11-vm], [use X11 VM extension for fullscreen [[d fi fi if test x$definitely_enable_video_x11_vm = xyes; then - AC_DEFINE(SDL_VIDEO_DRIVER_X11_XVIDMODE) + AC_DEFINE(SDL_VIDEO_DRIVER_X11_XVIDMODE, 1, [ ]) fi fi fi @@ -1217,7 +1218,7 @@ dnl Set up the BWindow video driver if enabled CheckBWINDOW() { if test x$enable_video = xyes; then - AC_DEFINE(SDL_VIDEO_DRIVER_BWINDOW) + AC_DEFINE(SDL_VIDEO_DRIVER_BWINDOW, 1, [ ]) SOURCES="$SOURCES $srcdir/src/video/bwindow/*.cc" have_video=yes fi @@ -1244,7 +1245,7 @@ AC_HELP_STRING([--enable-video-cocoa], [use Cocoa video driver [[default=yes]]]) AC_MSG_RESULT($have_cocoa) CFLAGS="$save_CFLAGS" if test x$have_cocoa = xyes; then - AC_DEFINE(SDL_VIDEO_DRIVER_COCOA) + AC_DEFINE(SDL_VIDEO_DRIVER_COCOA, 1, [ ]) SOURCES="$SOURCES $srcdir/src/video/cocoa/*.m" have_video=yes fi @@ -1300,8 +1301,8 @@ AC_HELP_STRING([--enable-video-directfb], [use DirectFB video driver [[default=n AC_HELP_STRING([--enable-directfb-shared], [dynamically load directfb support [[default=yes]]]), , enable_directfb_shared=yes) - AC_DEFINE(SDL_VIDEO_DRIVER_DIRECTFB) - AC_DEFINE(SDL_VIDEO_RENDER_DIRECTFB) + AC_DEFINE(SDL_VIDEO_DRIVER_DIRECTFB, 1, [ ]) + AC_DEFINE(SDL_VIDEO_RENDER_DIRECTFB, 1, [ ]) SOURCES="$SOURCES $srcdir/src/video/directfb/*.c" EXTRA_CFLAGS="$EXTRA_CFLAGS $DIRECTFB_CFLAGS" @@ -1318,7 +1319,7 @@ AC_MSG_WARN("directfb $directfb_lib") test x$enable_directfb_shared = xyes && test x$directfb_lib != x; then directfb_shared=yes echo "-- $directfb_lib_spec -> $directfb_lib" - AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_DIRECTFB_DYNAMIC, "$directfb_lib") + AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_DIRECTFB_DYNAMIC, "$directfb_lib", [ ]) else EXTRA_LDFLAGS="$EXTRA_LDFLAGS $DIRECTFB_LIBS" fi @@ -1351,7 +1352,7 @@ AC_HELP_STRING([--enable-fusionsound], [use FusionSound audio driver [[default=n AC_MSG_RESULT($fusionsound) if test x$fusionsound = xyes; then - AC_DEFINE(SDL_AUDIO_DRIVER_FUSIONSOUND) + AC_DEFINE(SDL_AUDIO_DRIVER_FUSIONSOUND, 1, [ ]) SOURCES="$SOURCES $srcdir/src/audio/fusionsound/*.c" EXTRA_CFLAGS="$EXTRA_CFLAGS $FUSIONSOUND_CFLAGS" @@ -1366,7 +1367,7 @@ AC_HELP_STRING([--enable-fusionsound-shared], [dynamically load fusionsound audi fi if test x$have_loadso = xyes && \ test x$enable_fusionsound_shared = xyes; then - AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_FUSIONSOUND_DYNAMIC, "libfusionsound.so") + AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_FUSIONSOUND_DYNAMIC, "libfusionsound.so", [ ]) fusionsound_shared=yes else EXTRA_LDFLAGS="$EXTRA_LDFLAGS $FUSIONSOUND_LIBS" @@ -1385,7 +1386,7 @@ CheckDummyVideo() AC_HELP_STRING([--enable-video-dummy], [use dummy video driver [[default=yes]]]), , enable_video_dummy=yes) if test x$enable_video_dummy = xyes; then - AC_DEFINE(SDL_VIDEO_DRIVER_DUMMY) + AC_DEFINE(SDL_VIDEO_DRIVER_DUMMY, 1, [ ]) SOURCES="$SOURCES $srcdir/src/video/dummy/*.c" have_video=yes fi @@ -1411,9 +1412,9 @@ CheckOpenGLX11() ]) AC_MSG_RESULT($video_opengl) if test x$video_opengl = xyes; then - AC_DEFINE(SDL_VIDEO_OPENGL) - AC_DEFINE(SDL_VIDEO_OPENGL_GLX) - AC_DEFINE(SDL_VIDEO_RENDER_OGL) + AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ]) + AC_DEFINE(SDL_VIDEO_OPENGL_GLX, 1, [ ]) + AC_DEFINE(SDL_VIDEO_RENDER_OGL, 1, [ ]) fi fi } @@ -1422,9 +1423,9 @@ dnl Check for Windows OpenGL CheckWINDOWSGL() { if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then - AC_DEFINE(SDL_VIDEO_OPENGL) - AC_DEFINE(SDL_VIDEO_OPENGL_WGL) - AC_DEFINE(SDL_VIDEO_RENDER_OGL) + AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ]) + AC_DEFINE(SDL_VIDEO_OPENGL_WGL, 1, [ ]) + AC_DEFINE(SDL_VIDEO_RENDER_OGL, 1, [ ]) fi } @@ -1432,9 +1433,9 @@ dnl Check for BeOS OpenGL CheckBeGL() { if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then - AC_DEFINE(SDL_VIDEO_OPENGL) - AC_DEFINE(SDL_VIDEO_OPENGL_BGL) - AC_DEFINE(SDL_VIDEO_RENDER_OGL) + AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ]) + AC_DEFINE(SDL_VIDEO_OPENGL_BGL, 1, [ ]) + AC_DEFINE(SDL_VIDEO_RENDER_OGL, 1, [ ]) EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lGL" fi } @@ -1443,9 +1444,9 @@ dnl Check for MacOS OpenGL CheckMacGL() { if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then - AC_DEFINE(SDL_VIDEO_OPENGL) - AC_DEFINE(SDL_VIDEO_OPENGL_CGL) - AC_DEFINE(SDL_VIDEO_RENDER_OGL) + AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ]) + AC_DEFINE(SDL_VIDEO_OPENGL_CGL, 1, [ ]) + AC_DEFINE(SDL_VIDEO_RENDER_OGL, 1, [ ]) case "$host" in *-*-darwin*) if test x$enable_video_cocoa = xyes; then @@ -1476,7 +1477,7 @@ AC_HELP_STRING([--enable-input-events], [use Linux 2.4 unified input interface [ ]) AC_MSG_RESULT($use_input_events) if test x$use_input_events = xyes; then - AC_DEFINE(SDL_INPUT_LINUXEV) + AC_DEFINE(SDL_INPUT_LINUXEV, 1, [ ]) fi fi } @@ -1498,7 +1499,7 @@ AC_HELP_STRING([--enable-input-tslib], [use the Touchscreen library for input [[ ]) AC_MSG_RESULT($enable_input_tslib) if test x$enable_input_tslib = xyes; then - AC_DEFINE(SDL_INPUT_TSLIB) + AC_DEFINE(SDL_INPUT_TSLIB, 1, [ ]) EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lts" fi fi @@ -1584,7 +1585,7 @@ AC_HELP_STRING([--enable-pthread-sem], [use pthread semaphores [[default=yes]]]) # Do futher testing if we have pthread support... if test x$use_pthreads = xyes; then - AC_DEFINE(SDL_THREAD_PTHREAD) + AC_DEFINE(SDL_THREAD_PTHREAD, 1, [ ]) EXTRA_CFLAGS="$EXTRA_CFLAGS $pthread_cflags" EXTRA_LDFLAGS="$EXTRA_LDFLAGS $pthread_lib" SDL_CFLAGS="$SDL_CFLAGS $pthread_cflags" @@ -1606,7 +1607,7 @@ AC_HELP_STRING([--enable-pthread-sem], [use pthread semaphores [[default=yes]]]) pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE); ],[ has_recursive_mutexes=yes - AC_DEFINE(SDL_THREAD_PTHREAD_RECURSIVE_MUTEX) + AC_DEFINE(SDL_THREAD_PTHREAD_RECURSIVE_MUTEX, 1, [ ]) ]) fi if test x$has_recursive_mutexes = xno; then @@ -1617,7 +1618,7 @@ AC_HELP_STRING([--enable-pthread-sem], [use pthread semaphores [[default=yes]]]) pthread_mutexattr_setkind_np(&attr, PTHREAD_MUTEX_RECURSIVE_NP); ],[ has_recursive_mutexes=yes - AC_DEFINE(SDL_THREAD_PTHREAD_RECURSIVE_MUTEX_NP) + AC_DEFINE(SDL_THREAD_PTHREAD_RECURSIVE_MUTEX_NP, 1, [ ]) ]) fi AC_MSG_RESULT($has_recursive_mutexes) @@ -1732,7 +1733,7 @@ AC_HELP_STRING([--enable-sdl-dlopen], [use dlopen for shared object loading [[de AC_CHECK_LIB(c, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS", AC_CHECK_LIB(dl, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ldl", AC_CHECK_LIB(ltdl, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lltdl"))) - AC_DEFINE(SDL_LOADSO_DLOPEN) + AC_DEFINE(SDL_LOADSO_DLOPEN, 1, [ ]) SOURCES="$SOURCES $srcdir/src/loadso/dlopen/*.c" have_loadso=yes fi @@ -1862,11 +1863,11 @@ CheckUSBHID() have_machine_joystick=yes ]) if test x$have_machine_joystick = xyes; then - AC_DEFINE(SDL_JOYSTICK_USBHID_MACHINE_JOYSTICK_H) + AC_DEFINE(SDL_JOYSTICK_USBHID_MACHINE_JOYSTICK_H, 1, [ ]) fi AC_MSG_RESULT($have_machine_joystick) - AC_DEFINE(SDL_JOYSTICK_USBHID) + AC_DEFINE(SDL_JOYSTICK_USBHID, 1, [ ]) SOURCES="$SOURCES $srcdir/src/joystick/bsd/*.c" EXTRA_CFLAGS="$EXTRA_CFLAGS $USB_CFLAGS" EXTRA_LDFLAGS="$EXTRA_LDFLAGS $USB_LIBS" @@ -1885,12 +1886,12 @@ AC_HELP_STRING([--enable-clock_gettime], [use clock_gettime() instead of gettime if test x$enable_clock_gettime = xyes; then AC_CHECK_LIB(rt, clock_gettime, have_clock_gettime=yes) if test x$have_clock_gettime = xyes; then - AC_DEFINE(HAVE_CLOCK_GETTIME) + AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [ ]) EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lrt" else AC_CHECK_LIB(c, clock_gettime, have_clock_gettime=yes) if test x$have_clock_gettime = xyes; then - AC_DEFINE(HAVE_CLOCK_GETTIME) + AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [ ]) EXTRA_LDFLAGS="$EXTRA_LDFLAGS" fi fi @@ -1961,17 +1962,17 @@ case "$host" in if test x$enable_audio = xyes; then case $ARCH in sysv5|solaris|hpux) - AC_DEFINE(SDL_AUDIO_DRIVER_SUNAUDIO) + AC_DEFINE(SDL_AUDIO_DRIVER_SUNAUDIO, 1, [ ]) SOURCES="$SOURCES $srcdir/src/audio/sun/*.c" have_audio=yes ;; netbsd|openbsd) - AC_DEFINE(SDL_AUDIO_DRIVER_BSD) + AC_DEFINE(SDL_AUDIO_DRIVER_BSD, 1, [ ]) SOURCES="$SOURCES $srcdir/src/audio/bsd/*.c" have_audio=yes ;; aix) - AC_DEFINE(SDL_AUDIO_DRIVER_PAUDIO) + AC_DEFINE(SDL_AUDIO_DRIVER_PAUDIO, 1, [ ]) SOURCES="$SOURCES $srcdir/src/audio/paudio/*.c" have_audio=yes ;; @@ -1981,7 +1982,7 @@ case "$host" in if test x$enable_joystick = xyes; then case $ARCH in linux) - AC_DEFINE(SDL_JOYSTICK_LINUX) + AC_DEFINE(SDL_JOYSTICK_LINUX, 1, [ ]) SOURCES="$SOURCES $srcdir/src/joystick/linux/*.c" have_joystick=yes ;; @@ -1992,7 +1993,7 @@ case "$host" in if test x$use_input_events = xyes; then case $ARCH in linux) - AC_DEFINE(SDL_HAPTIC_LINUX) + AC_DEFINE(SDL_HAPTIC_LINUX, 1, [ ]) SOURCES="$SOURCES $srcdir/src/haptic/linux/*.c" have_haptic=yes ;; @@ -2003,7 +2004,7 @@ case "$host" in if test x$enable_power = xyes; then case $ARCH in linux) - AC_DEFINE(SDL_POWER_LINUX) + AC_DEFINE(SDL_POWER_LINUX, 1, [ ]) SOURCES="$SOURCES $srcdir/src/power/linux/*.c" have_power=yes ;; @@ -2011,7 +2012,7 @@ case "$host" in fi # Set up files for the timer library if test x$enable_timers = xyes; then - AC_DEFINE(SDL_TIMER_UNIX) + AC_DEFINE(SDL_TIMER_UNIX, 1, [ ]) SOURCES="$SOURCES $srcdir/src/timer/unix/*.c" have_timers=yes fi @@ -2023,7 +2024,7 @@ case "$host" in CheckDummyAudio CheckWINDOWS if test x$enable_video = xyes; then - AC_DEFINE(SDL_VIDEO_DRIVER_WINDOWS) + AC_DEFINE(SDL_VIDEO_DRIVER_WINDOWS, 1, [ ]) SOURCES="$SOURCES $srcdir/src/video/windows/*.c" have_video=yes AC_ARG_ENABLE(render-d3d, @@ -2031,28 +2032,28 @@ AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[defau , enable_render_d3d=yes) enable_render_d3d=no if test x$enable_render_d3d = xyes -a x$have_d3d = xyes; then - AC_DEFINE(SDL_VIDEO_RENDER_D3D) + AC_DEFINE(SDL_VIDEO_RENDER_D3D, 1, [ ]) fi fi # Set up files for the audio library if test x$enable_audio = xyes; then - AC_DEFINE(SDL_AUDIO_DRIVER_WINWAVEOUT) + AC_DEFINE(SDL_AUDIO_DRIVER_WINWAVEOUT, 1, [ ]) SOURCES="$SOURCES $srcdir/src/audio/windib/*.c" if test x$have_dsound = xyes; then - AC_DEFINE(SDL_AUDIO_DRIVER_DSOUND) + AC_DEFINE(SDL_AUDIO_DRIVER_DSOUND, 1, [ ]) SOURCES="$SOURCES $srcdir/src/audio/windx5/*.c" fi have_audio=yes fi # Set up dummy files for the joystick for now if test x$enable_joystick = xyes; then - AC_DEFINE(SDL_JOYSTICK_DUMMY) + AC_DEFINE(SDL_JOYSTICK_DUMMY, 1, [ ]) SOURCES="$SOURCES $srcdir/src/joystick/dummy/*.c" have_joystick=yes fi # Set up files for the thread library if test x$enable_threads = xyes; then - AC_DEFINE(SDL_THREAD_WINDOWS) + AC_DEFINE(SDL_THREAD_WINDOWS, 1, [ ]) SOURCES="$SOURCES $srcdir/src/thread/windows/SDL_sysmutex.c" SOURCES="$SOURCES $srcdir/src/thread/windows/SDL_syssem.c" SOURCES="$SOURCES $srcdir/src/thread/windows/SDL_systhread.c" @@ -2061,13 +2062,13 @@ AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[defau fi # Set up files for the timer library if test x$enable_timers = xyes; then - AC_DEFINE(SDL_TIMER_WINCE) + AC_DEFINE(SDL_TIMER_WINCE, 1, [ ]) SOURCES="$SOURCES $srcdir/src/timer/wince/*.c" have_timers=yes fi # Set up files for the shared object loading library if test x$enable_loadso = xyes; then - AC_DEFINE(SDL_LOADSO_WINDOWS) + AC_DEFINE(SDL_LOADSO_WINDOWS, 1, [ ]) SOURCES="$SOURCES $srcdir/src/loadso/windows/*.c" have_loadso=yes fi @@ -2111,22 +2112,22 @@ AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[defau # Set up files for the video library if test x$enable_video = xyes; then - AC_DEFINE(SDL_VIDEO_DRIVER_WINDOWS) + AC_DEFINE(SDL_VIDEO_DRIVER_WINDOWS, 1, [ ]) SOURCES="$SOURCES $srcdir/src/video/windows/*.c" have_video=yes AC_ARG_ENABLE(render-d3d, AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[default=yes]]]), , enable_render_d3d=yes) if test x$enable_render_d3d = xyes -a x$have_d3d = xyes; then - AC_DEFINE(SDL_VIDEO_RENDER_D3D) + AC_DEFINE(SDL_VIDEO_RENDER_D3D, 1, [ ]) fi fi # Set up files for the audio library if test x$enable_audio = xyes; then - AC_DEFINE(SDL_AUDIO_DRIVER_WINWAVEOUT) + AC_DEFINE(SDL_AUDIO_DRIVER_WINWAVEOUT, 1, [ ]) SOURCES="$SOURCES $srcdir/src/audio/windib/*.c" if test x$have_dsound = xyes; then - AC_DEFINE(SDL_AUDIO_DRIVER_DSOUND) + AC_DEFINE(SDL_AUDIO_DRIVER_DSOUND, 1, [ ]) SOURCES="$SOURCES $srcdir/src/audio/windx5/*.c" fi have_audio=yes @@ -2134,30 +2135,30 @@ AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[defau # Set up files for the joystick library if test x$enable_joystick = xyes; then if test x$have_dinput = xyes; then - AC_DEFINE(SDL_JOYSTICK_DINPUT) + AC_DEFINE(SDL_JOYSTICK_DINPUT, 1, [ ]) SOURCES="$SOURCES $srcdir/src/joystick/windows/SDL_dxjoystick.c" EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ldinput8 -ldxguid -ldxerr8" else - AC_DEFINE(SDL_JOYSTICK_WINMM) + AC_DEFINE(SDL_JOYSTICK_WINMM, 1, [ ]) SOURCES="$SOURCES $srcdir/src/joystick/windows/SDL_mmjoystick.c" fi have_joystick=yes fi if test x$enable_haptic = xyes; then if test x$have_dinput = xyes; then - AC_DEFINE(SDL_HAPTIC_DINPUT) + AC_DEFINE(SDL_HAPTIC_DINPUT, 1, [ ]) SOURCES="$SOURCES $srcdir/src/haptic/windows/SDL_syshaptic.c" have_haptic=yes fi fi if test x$enable_power = xyes; then - AC_DEFINE(SDL_POWER_WINDOWS) + AC_DEFINE(SDL_POWER_WINDOWS, 1, [ ]) SOURCES="$SOURCES $srcdir/src/power/windows/SDL_syspower.c" have_power=yes fi # Set up files for the thread library if test x$enable_threads = xyes; then - AC_DEFINE(SDL_THREAD_WINDOWS) + AC_DEFINE(SDL_THREAD_WINDOWS, 1, [ ]) SOURCES="$SOURCES $srcdir/src/thread/windows/SDL_sysmutex.c" SOURCES="$SOURCES $srcdir/src/thread/windows/SDL_syssem.c" SOURCES="$SOURCES $srcdir/src/thread/windows/SDL_systhread.c" @@ -2166,13 +2167,13 @@ AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[defau fi # Set up files for the timer library if test x$enable_timers = xyes; then - AC_DEFINE(SDL_TIMER_WINDOWS) + AC_DEFINE(SDL_TIMER_WINDOWS, 1, [ ]) SOURCES="$SOURCES $srcdir/src/timer/windows/*.c" have_timers=yes fi # Set up files for the shared object loading library if test x$enable_loadso = xyes; then - AC_DEFINE(SDL_LOADSO_WINDOWS) + AC_DEFINE(SDL_LOADSO_WINDOWS, 1, [ ]) SOURCES="$SOURCES $srcdir/src/loadso/windows/*.c" have_loadso=yes fi @@ -2197,19 +2198,19 @@ AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[defau CheckBeGL # Set up files for the audio library if test x$enable_audio = xyes; then - AC_DEFINE(SDL_AUDIO_DRIVER_BEOSAUDIO) + AC_DEFINE(SDL_AUDIO_DRIVER_BEOSAUDIO, 1, [ ]) SOURCES="$SOURCES $srcdir/src/audio/baudio/*.cc" have_audio=yes fi # Set up files for the joystick library if test x$enable_joystick = xyes; then - AC_DEFINE(SDL_JOYSTICK_BEOS) + AC_DEFINE(SDL_JOYSTICK_BEOS, 1, [ ]) SOURCES="$SOURCES $srcdir/src/joystick/beos/*.cc" have_joystick=yes fi # Set up files for the thread library if test x$enable_threads = xyes; then - AC_DEFINE(SDL_THREAD_BEOS) + AC_DEFINE(SDL_THREAD_BEOS, 1, [ ]) SOURCES="$SOURCES $srcdir/src/thread/beos/*.c" SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_sysmutex.c" SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syscond.c" @@ -2217,19 +2218,19 @@ AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[defau fi # Set up files for the timer library if test x$enable_timers = xyes; then - AC_DEFINE(SDL_TIMER_BEOS) + AC_DEFINE(SDL_TIMER_BEOS, 1, [ ]) SOURCES="$SOURCES $srcdir/src/timer/beos/*.c" have_timers=yes fi # Set up files for the shared object loading library if test x$enable_loadso = xyes; then - AC_DEFINE(SDL_LOADSO_BEOS) + AC_DEFINE(SDL_LOADSO_BEOS, 1, [ ]) SOURCES="$SOURCES $srcdir/src/loadso/beos/*.c" have_loadso=yes fi # Set up files for the system power library if test x$enable_power = xyes; then - AC_DEFINE(SDL_POWER_BEOS) + AC_DEFINE(SDL_POWER_BEOS, 1, [ ]) SOURCES="$SOURCES $srcdir/src/power/beos/*.c" have_power=yes fi @@ -2256,7 +2257,7 @@ AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[defau # Set up files for the shared object loading library # (this needs to be done before the dynamic X11 check) if test x$enable_loadso = xyes -a x$have_dlopen != xyes; then - AC_DEFINE(SDL_LOADSO_DLCOMPAT) + AC_DEFINE(SDL_LOADSO_DLCOMPAT, 1, [ ]) SOURCES="$SOURCES $srcdir/src/loadso/macosx/*.c" have_loadso=yes fi @@ -2275,32 +2276,32 @@ AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[defau # Set up files for the audio library if test x$enable_audio = xyes; then - AC_DEFINE(SDL_AUDIO_DRIVER_COREAUDIO) + AC_DEFINE(SDL_AUDIO_DRIVER_COREAUDIO, 1, [ ]) SOURCES="$SOURCES $srcdir/src/audio/macosx/*.c" have_audio=yes fi # Set up files for the joystick library if test x$enable_joystick = xyes; then - AC_DEFINE(SDL_JOYSTICK_IOKIT) + AC_DEFINE(SDL_JOYSTICK_IOKIT, 1, [ ]) SOURCES="$SOURCES $srcdir/src/joystick/darwin/*.c" have_joystick=yes fi # Set up files for the haptic library if test x$enable_haptic = xyes; then - AC_DEFINE(SDL_HAPTIC_IOKIT) + AC_DEFINE(SDL_HAPTIC_IOKIT, 1, [ ]) SOURCES="$SOURCES $srcdir/src/haptic/darwin/*.c" have_haptic=yes EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,ForceFeedback" fi # Set up files for the power library if test x$enable_power = xyes; then - AC_DEFINE(SDL_POWER_MACOSX) + AC_DEFINE(SDL_POWER_MACOSX, 1, [ ]) SOURCES="$SOURCES $srcdir/src/power/macosx/*.c" have_power=yes fi # Set up files for the timer library if test x$enable_timers = xyes; then - AC_DEFINE(SDL_TIMER_UNIX) + AC_DEFINE(SDL_TIMER_UNIX, 1, [ ]) SOURCES="$SOURCES $srcdir/src/timer/unix/*.c" have_timers=yes fi @@ -2330,31 +2331,31 @@ esac if test x$have_joystick != xyes; then if test x$enable_joystick = xyes; then - AC_DEFINE(SDL_JOYSTICK_DISABLED) + AC_DEFINE(SDL_JOYSTICK_DISABLED, 1, [ ]) fi SOURCES="$SOURCES $srcdir/src/joystick/dummy/*.c" fi if test x$have_haptic != xyes; then if test x$enable_haptic = xyes; then - AC_DEFINE(SDL_HAPTIC_DISABLED) + AC_DEFINE(SDL_HAPTIC_DISABLED, 1, [ ]) fi SOURCES="$SOURCES $srcdir/src/haptic/dummy/*.c" fi if test x$have_threads != xyes; then if test x$enable_threads = xyes; then - AC_DEFINE(SDL_THREADS_DISABLED) + AC_DEFINE(SDL_THREADS_DISABLED, 1, [ ]) fi SOURCES="$SOURCES $srcdir/src/thread/generic/*.c" fi if test x$have_timers != xyes; then if test x$enable_timers = xyes; then - AC_DEFINE(SDL_TIMERS_DISABLED) + AC_DEFINE(SDL_TIMERS_DISABLED, 1, [ ]) fi SOURCES="$SOURCES $srcdir/src/timer/dummy/*.c" fi if test x$have_loadso != xyes; then if test x$enable_loadso = xyes; then - AC_DEFINE(SDL_LOADSO_DISABLED) + AC_DEFINE(SDL_LOADSO_DISABLED, 1, [ ]) fi SOURCES="$SOURCES $srcdir/src/loadso/dummy/*.c" fi From c3ab04563bd98fb138f7c749054105dd871104f0 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 6 Jun 2011 12:20:04 -0400 Subject: [PATCH 03/72] Fixed gcc warnings for apps using SDL headers with -Wundef flag. Fixes Bugzilla #1216. Thanks to Dimitris Zenios for the patch! --- include/SDL_assert.h | 4 ++-- include/SDL_atomic.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/SDL_assert.h b/include/SDL_assert.h index d55e24414..a11b3812a 100644 --- a/include/SDL_assert.h +++ b/include/SDL_assert.h @@ -53,7 +53,7 @@ assert can have unique static variables associated with it. /* Don't include intrin.h here because it contains C++ code */ extern void __cdecl __debugbreak(void); #define SDL_TriggerBreakpoint() __debugbreak() -#elif (defined(__GNUC__) && ((__i386__) || (__x86_64__))) +#elif (defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))) #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "int $3\n\t" ) #elif defined(HAVE_SIGNAL_H) #include @@ -63,7 +63,7 @@ extern void __cdecl __debugbreak(void); #define SDL_TriggerBreakpoint() #endif -#if (__STDC_VERSION__ >= 199901L) /* C99 supports __func__ as a standard. */ +#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 supports __func__ as a standard. */ # define SDL_FUNCTION __func__ #elif ((__GNUC__ >= 2) || defined(_MSC_VER)) # define SDL_FUNCTION __FUNCTION__ diff --git a/include/SDL_atomic.h b/include/SDL_atomic.h index 5c6eadb5b..6a6a73f5b 100644 --- a/include/SDL_atomic.h +++ b/include/SDL_atomic.h @@ -140,7 +140,7 @@ void _ReadWriteBarrier(void); /* Platform specific optimized versions of the atomic functions, * you can disable these by defining SDL_DISABLE_ATOMIC_INLINE */ -#if SDL_ATOMIC_DISABLED +#if defined(SDL_ATOMIC_DISABLED) && SDL_ATOMIC_DISABLED #define SDL_DISABLE_ATOMIC_INLINE #endif #ifndef SDL_DISABLE_ATOMIC_INLINE From 94e1b6970f957cb894983a94e4686eece78478a3 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sun, 12 Jun 2011 12:23:39 -0400 Subject: [PATCH 04/72] Make SDL_QuitRequested() return an SDL_bool --- include/SDL_quit.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SDL_quit.h b/include/SDL_quit.h index ef8857020..d6f11a80c 100644 --- a/include/SDL_quit.h +++ b/include/SDL_quit.h @@ -53,6 +53,6 @@ /* There are no functions directly affecting the quit event */ #define SDL_QuitRequested() \ - (SDL_PumpEvents(), SDL_PeepEvents(NULL,0,SDL_PEEKEVENT,SDL_QUIT,SDL_QUIT)) + (SDL_PumpEvents(), (SDL_PeepEvents(NULL,0,SDL_PEEKEVENT,SDL_QUIT,SDL_QUIT) > 0)) #endif /* _SDL_quit_h */ From a36a856bf90bd6a4808960b87dff19fb4adc0705 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Fri, 10 Jun 2011 14:23:24 +0100 Subject: [PATCH 05/72] * SDL_IOS_ORIENTATIONS hint --- include/SDL_hints.h | 11 +++++++++++ src/video/uikit/SDL_uikitwindow.m | 32 +++++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+) diff --git a/include/SDL_hints.h b/include/SDL_hints.h index ed76ce53f..e106650f1 100644 --- a/include/SDL_hints.h +++ b/include/SDL_hints.h @@ -118,6 +118,17 @@ extern "C" { * By default SDL does not sync screen surface updates with vertical refresh. */ #define SDL_HINT_RENDER_VSYNC "SDL_RENDER_VSYNC" + +/** + * \brief A variable controlling which orientations are allowed on iOS. + * + * In some circumstances it is necessary to be able to explicitly control + * which UI orientations are allowed. + * + * This variable is a space delimited list of the following values: + * "LandscapeLeft", "LandscapeRight", "Portrait" "PortraitUpsideDown" + */ +#define SDL_HINT_ORIENTATIONS "SDL_IOS_ORIENTATIONS" /** diff --git a/src/video/uikit/SDL_uikitwindow.m b/src/video/uikit/SDL_uikitwindow.m index 97fa50058..50a8ec819 100644 --- a/src/video/uikit/SDL_uikitwindow.m +++ b/src/video/uikit/SDL_uikitwindow.m @@ -24,6 +24,7 @@ #include "SDL_video.h" #include "SDL_mouse.h" #include "SDL_assert.h" +#include "SDL_hints.h" #include "../SDL_sysvideo.h" #include "../SDL_pixels_c.h" #include "../../events/SDL_events_c.h" @@ -48,6 +49,37 @@ } - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orient { + const char *orientationsCString; + if ((orientationsCString = SDL_GetHint(SDL_HINT_ORIENTATIONS)) != NULL) { + BOOL rotate = NO; + NSString *orientationsNSString = [NSString stringWithCString:orientationsCString + encoding:NSUTF8StringEncoding]; + NSArray *orientations = [orientationsNSString componentsSeparatedByCharactersInSet: + [NSCharacterSet characterSetWithCharactersInString:@" "]]; + + switch (orient) { + case UIInterfaceOrientationLandscapeLeft: + rotate = [orientations containsObject:@"LandscapeLeft"]; + break; + + case UIInterfaceOrientationLandscapeRight: + rotate = [orientations containsObject:@"LandscapeRight"]; + break; + + case UIInterfaceOrientationPortrait: + rotate = [orientations containsObject:@"Portrait"]; + break; + + case UIInterfaceOrientationPortraitUpsideDown: + rotate = [orientations containsObject:@"PortraitUpsideDown"]; + break; + + default: break; + } + + return rotate; + } + if (self->window->flags & SDL_WINDOW_RESIZABLE) { return YES; // any orientation is okay. } From 2f0bec3220fdb5d4371948a3d687ea927f8aa029 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Fri, 10 Jun 2011 14:23:36 +0100 Subject: [PATCH 06/72] * SDL_IOS_IDLE_TIMER_DISABLED hint --- VisualC/SDL/SDL_VS2005.vcproj | 4 ++++ VisualC/SDL/SDL_VS2008.vcproj | 4 ++++ VisualC/SDL/SDL_VS2010.vcxproj | 3 ++- .../SDL/SDLiPhoneOS.xcodeproj/project.pbxproj | 4 ++++ include/SDL_hints.h | 14 +++++++++++++ src/SDL_hints.c | 20 +++++++++++++++++++ src/video/uikit/SDL_uikitappdelegate.m | 14 +++++++++++++ 7 files changed, 62 insertions(+), 1 deletion(-) diff --git a/VisualC/SDL/SDL_VS2005.vcproj b/VisualC/SDL/SDL_VS2005.vcproj index d512b16e8..5a3223c13 100644 --- a/VisualC/SDL/SDL_VS2005.vcproj +++ b/VisualC/SDL/SDL_VS2005.vcproj @@ -907,6 +907,10 @@ RelativePath="..\..\src\SDL_hints.c" > + + diff --git a/VisualC/SDL/SDL_VS2008.vcproj b/VisualC/SDL/SDL_VS2008.vcproj index 4c16d7bc2..3c37fb64c 100644 --- a/VisualC/SDL/SDL_VS2008.vcproj +++ b/VisualC/SDL/SDL_VS2008.vcproj @@ -896,6 +896,10 @@ RelativePath="..\..\src\SDL_hints.c" > + + diff --git a/VisualC/SDL/SDL_VS2010.vcxproj b/VisualC/SDL/SDL_VS2010.vcxproj index 60eb0088d..db5b16994 100644 --- a/VisualC/SDL/SDL_VS2010.vcxproj +++ b/VisualC/SDL/SDL_VS2010.vcxproj @@ -281,6 +281,7 @@ + @@ -436,4 +437,4 @@ - \ No newline at end of file + diff --git a/Xcode-iPhoneOS/SDL/SDLiPhoneOS.xcodeproj/project.pbxproj b/Xcode-iPhoneOS/SDL/SDLiPhoneOS.xcodeproj/project.pbxproj index b506b1709..50fa59986 100755 --- a/Xcode-iPhoneOS/SDL/SDLiPhoneOS.xcodeproj/project.pbxproj +++ b/Xcode-iPhoneOS/SDL/SDLiPhoneOS.xcodeproj/project.pbxproj @@ -122,6 +122,7 @@ 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, ); }; }; + 22C905CD13A22646003FE4E4 /* SDL_hints_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 22C905CC13A22646003FE4E4 /* SDL_hints_c.h */; }; 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 */; }; @@ -376,6 +377,7 @@ 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; }; + 22C905CC13A22646003FE4E4 /* SDL_hints_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_hints_c.h; path = ../../src/SDL_hints_c.h; sourceTree = ""; }; 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 = ""; }; @@ -971,6 +973,7 @@ FD99B9D60DD52EDC00FB1D6B /* SDL_fatal.c */, FD99B9D70DD52EDC00FB1D6B /* SDL_fatal.h */, 0442EC5412FE1C3F004C9285 /* SDL_hints.c */, + 22C905CC13A22646003FE4E4 /* SDL_hints_c.h */, 04BAC09B1300C1290055DE28 /* SDL_log.c */, FD99B9D80DD52EDC00FB1D6B /* SDL.c */, ); @@ -1241,6 +1244,7 @@ 04BAC0991300C0F70055DE28 /* SDL_log.h in Headers */, 04BAC09C1300C1290055DE28 /* SDL_assert_c.h in Headers */, 0417A516130C988500578583 /* SDL_keycode.h in Headers */, + 22C905CD13A22646003FE4E4 /* SDL_hints_c.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; diff --git a/include/SDL_hints.h b/include/SDL_hints.h index e106650f1..64323917a 100644 --- a/include/SDL_hints.h +++ b/include/SDL_hints.h @@ -119,6 +119,20 @@ extern "C" { */ #define SDL_HINT_RENDER_VSYNC "SDL_RENDER_VSYNC" +/** + * \brief A variable controlling whether the idle timer is disabled on iOS. + * + * When an iOS app does not receive touches for some time, the screen is + * dimmed automatically. For games where the accelerometer is the only input + * this is problematic. This functionality can be disabled by setting this + * hint. + * + * This variable can be set to the following values: + * "0" - Enable idle timer + * "1" - Disable idle timer + */ +#define SDL_HINT_IDLE_TIMER_DISABLED "SDL_IOS_IDLE_TIMER_DISABLED" + /** * \brief A variable controlling which orientations are allowed on iOS. * diff --git a/src/SDL_hints.c b/src/SDL_hints.c index 659174d05..8868c4e63 100644 --- a/src/SDL_hints.c +++ b/src/SDL_hints.c @@ -21,6 +21,7 @@ #include "SDL_config.h" #include "SDL_hints.h" +#include "SDL_hints_c.h" /* Assuming there aren't many hints set and they aren't being queried in @@ -30,11 +31,26 @@ typedef struct SDL_Hint { char *name; char *value; SDL_HintPriority priority; + SDL_HintChangedCb callback; struct SDL_Hint *next; } SDL_Hint; static SDL_Hint *SDL_hints; +SDL_bool +SDL_RegisterHintChangedCb(const char *name, SDL_HintChangedCb hintCb) +{ + SDL_Hint *hint; + + for (hint = SDL_hints; hint; hint = hint->next) { + if (SDL_strcmp(name, hint->name) == 0) { + hint->callback = hintCb; + return SDL_TRUE; + } + } + + return SDL_FALSE; +} SDL_bool SDL_SetHintWithPriority(const char *name, const char *value, @@ -59,6 +75,9 @@ SDL_SetHintWithPriority(const char *name, const char *value, return SDL_FALSE; } if (SDL_strcmp(hint->value, value) != 0) { + if (hint->callback != NULL) { + (*hint->callback)(name, hint->value, value); + } SDL_free(hint->value); hint->value = SDL_strdup(value); } @@ -75,6 +94,7 @@ SDL_SetHintWithPriority(const char *name, const char *value, hint->name = SDL_strdup(name); hint->value = SDL_strdup(value); hint->priority = priority; + hint->callback = NULL; hint->next = SDL_hints; SDL_hints = hint; return SDL_TRUE; diff --git a/src/video/uikit/SDL_uikitappdelegate.m b/src/video/uikit/SDL_uikitappdelegate.m index 36f512eb0..4a8ce3989 100644 --- a/src/video/uikit/SDL_uikitappdelegate.m +++ b/src/video/uikit/SDL_uikitappdelegate.m @@ -20,6 +20,9 @@ */ #import "../SDL_sysvideo.h" +#import "SDL_assert.h" +#import "SDL_hints.h" +#import "../../SDL_hints_c.h" #import "SDL_uikitappdelegate.h" #import "SDL_uikitopenglview.h" @@ -55,6 +58,13 @@ int main(int argc, char **argv) { return 0; } +static void SDL_IdleTimerDisabledChanged(const char *name, const char *oldValue, const char *newValue) { + SDL_assert(SDL_strcmp(name, SDL_HINT_IDLE_TIMER_DISABLED) == 0); + + BOOL disable = (*newValue != '0'); + [UIApplication sharedApplication].idleTimerDisabled = disable; +} + @implementation SDLUIKitDelegate /* convenience method */ @@ -75,6 +85,10 @@ int main(int argc, char **argv) { } - (void)postFinishLaunch { + + /* register a callback for the idletimer hint */ + SDL_SetHint(SDL_HINT_IDLE_TIMER_DISABLED, "0"); + SDL_RegisterHintChangedCb(SDL_HINT_IDLE_TIMER_DISABLED, &SDL_IdleTimerDisabledChanged); /* run the user's application, passing argc and argv */ int exit_status = SDL_main(forward_argc, forward_argv); From d39b9dd9789316929f249e7875942dc528723ee5 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Wed, 15 Jun 2011 10:28:01 +0100 Subject: [PATCH 07/72] * Add missing file SDL_hints_c.h --- src/SDL_hints_c.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/SDL_hints_c.h diff --git a/src/SDL_hints_c.h b/src/SDL_hints_c.h new file mode 100644 index 000000000..cdaeab1e3 --- /dev/null +++ b/src/SDL_hints_c.h @@ -0,0 +1,34 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2011 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + */ + +#ifndef _SDL_hints_c_h +#define _SDL_hints_c_h + +/** + * \brief A callback function that is optionally called when a hint changes + */ +typedef void (*SDL_HintChangedCb)(const char *name, const char *oldValue, const char *newValue); + +extern SDL_bool SDL_RegisterHintChangedCb(const char *name, SDL_HintChangedCb hintCb); + +#endif /* _SDL_hints_c_h */ + +/* vi: set ts=4 sw=4 expandtab: */ \ No newline at end of file From dfe639930e3f3f3bf410609921eaf5975f0f578f Mon Sep 17 00:00:00 2001 From: Nathan Heisey Date: Wed, 22 Jun 2011 10:33:48 +0000 Subject: [PATCH 08/72] Implemented pthread spinlocks. --- configure.in | 19 +++++++++++++++++++ include/SDL_config.h.in | 1 + src/atomic/SDL_spinlock.c | 11 +++++++++-- 3 files changed, 29 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index b291df45a..1b2a07f26 100644 --- a/configure.in +++ b/configure.in @@ -280,6 +280,25 @@ if test x$enable_gcc_atomics = xyes; then fi fi +# Check for pthread implementation +AC_MSG_CHECKING(for pthread spinlock) +have_pthread_spinlock=no + +AC_TRY_LINK([ +#include +],[ +pthread_spinlock_t a; +pthread_spin_trylock(&a); +pthread_spin_unlock(&a); +],[ +have_pthread_spinlock=yes +]) +AC_MSG_RESULT($have_pthread_spinlock) +if test x$have_pthread_spinlock = xyes; then + AC_DEFINE(HAVE_PTHREAD_SPINLOCK, 1, [ ]) +fi + + # Standard C sources SOURCES="$SOURCES $srcdir/src/*.c" SOURCES="$SOURCES $srcdir/src/atomic/*.c" diff --git a/include/SDL_config.h.in b/include/SDL_config.h.in index b5bb3e1bd..f4ea2f84a 100644 --- a/include/SDL_config.h.in +++ b/include/SDL_config.h.in @@ -45,6 +45,7 @@ #undef SIZEOF_VOIDP #undef HAVE_GCC_ATOMICS #undef HAVE_GCC_SYNC_LOCK_TEST_AND_SET +#undef HAVE_PTHREAD_SPINLOCK /* Comment this if you want to build without any C library requirements */ #undef HAVE_LIBC diff --git a/src/atomic/SDL_spinlock.c b/src/atomic/SDL_spinlock.c index f74de81c7..093554774 100644 --- a/src/atomic/SDL_spinlock.c +++ b/src/atomic/SDL_spinlock.c @@ -77,9 +77,13 @@ SDL_AtomicTryLock(SDL_SpinLock *lock) : "=&r" (result) : "r" (1), "r" (lock) : "cc", "memory"); return (result == 0); -#else +#elif HAVE_PTHREAD_SPINLOCK + /* pthread instructions */ + return (pthread_spin_trylock(lock) == 0); +#else /* Need CPU instructions for spinlock here! */ __need_spinlock_implementation__ + #endif } @@ -101,7 +105,10 @@ SDL_AtomicUnlock(SDL_SpinLock *lock) #elif HAVE_GCC_ATOMICS || HAVE_GCC_SYNC_LOCK_TEST_AND_SET __sync_lock_release(lock); - + +#elif HAVE_PTHREAD_SPINLOCK + pthread_spin_unlock(lock); + #else *lock = 0; #endif From 1fc724be50de76b611b9d69ab3456ea7134fbd8d Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 5 Jul 2011 22:05:56 -0400 Subject: [PATCH 09/72] Properly set up default resolutions. Fixes Bugzilla #1191. Thanks to Jeremy Jurksztowicz for the fix! --- src/video/uikit/SDL_uikitvideo.m | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/video/uikit/SDL_uikitvideo.m b/src/video/uikit/SDL_uikitvideo.m index 5e9c10fc3..4b9f24071 100644 --- a/src/video/uikit/SDL_uikitvideo.m +++ b/src/video/uikit/SDL_uikitvideo.m @@ -202,7 +202,7 @@ UIKit_GetDisplayModes(_THIS, SDL_VideoDisplay * display) static void -UIKit_AddDisplay(UIScreen *uiscreen, int w, int h) +UIKit_AddDisplay(UIScreen *uiscreen, UIScreenMode *uimode, int w, int h) { SDL_VideoDisplay display; SDL_DisplayMode mode; @@ -211,6 +211,9 @@ UIKit_AddDisplay(UIScreen *uiscreen, int w, int h) mode.w = w; mode.h = h; mode.refresh_rate = 0; + + [uimode retain]; + mode.driverdata = uimode; SDL_zero(display); display.desktop_mode = mode; @@ -238,8 +241,9 @@ UIKit_VideoInit(_THIS) if (!SDL_UIKit_supports_multiple_displays) { // Just give 'em the whole main screen. UIScreen *uiscreen = [UIScreen mainScreen]; + UIScreenMode *uiscreenmode = [uiscreen currentMode]; const CGRect rect = [uiscreen bounds]; - UIKit_AddDisplay(uiscreen, (int)rect.size.width, (int)rect.size.height); + UIKit_AddDisplay(uiscreen, uiscreenmode, (int)rect.size.width, (int)rect.size.height); } else { const NSArray *screens = [UIScreen screens]; const NSUInteger screen_count = [screens count]; @@ -247,8 +251,9 @@ UIKit_VideoInit(_THIS) for (i = 0; i < screen_count; i++) { // the main screen is the first element in the array. UIScreen *uiscreen = (UIScreen *) [screens objectAtIndex:i]; + UIScreenMode *uiscreenmode = [uiscreen currentMode]; const CGSize size = [[uiscreen currentMode] size]; - UIKit_AddDisplay(uiscreen, (int) size.width, (int) size.height); + UIKit_AddDisplay(uiscreen, uiscreenmode, (int)size.width, (int)size.height); } } From c4348f44f747931ecc90456331f74e7e29be0546 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Wed, 13 Jul 2011 17:38:09 -0700 Subject: [PATCH 10/72] Linux: Search a smaller set of potential joystick axes. Newer kernels seem to report bogus axes in the higher ranges, for example with a standard PlayStation 3 controller plugged in via USB. --- src/joystick/linux/SDL_sysjoystick.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/joystick/linux/SDL_sysjoystick.c b/src/joystick/linux/SDL_sysjoystick.c index 4045909ba..51cf8a407 100644 --- a/src/joystick/linux/SDL_sysjoystick.c +++ b/src/joystick/linux/SDL_sysjoystick.c @@ -703,7 +703,7 @@ EV_ConfigJoystick(SDL_Joystick * joystick, int fd) ++joystick->nbuttons; } } - for (i = 0; i < ABS_MAX; ++i) { + for (i = 0; i < ABS_MISC; ++i) { /* Skip hats */ if (i == ABS_HAT0X) { i = ABS_HAT3Y; From 34edc62460e487d2f780a1d54b7561ebf0fb5bad Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 15 Jul 2011 17:05:32 -0700 Subject: [PATCH 11/72] Turn SDL_GL_MakeCurrent() into a no-op if setting the same context twice. --- src/video/SDL_sysvideo.h | 5 +++++ src/video/SDL_video.c | 26 +++++++++++++++++++++++--- 2 files changed, 28 insertions(+), 3 deletions(-) diff --git a/src/video/SDL_sysvideo.h b/src/video/SDL_sysvideo.h index 77aee20c7..416bfb6d2 100644 --- a/src/video/SDL_sysvideo.h +++ b/src/video/SDL_sysvideo.h @@ -276,6 +276,11 @@ struct SDL_VideoDevice void *dll_handle; } gl_config; + /* * * */ + /* Cache current GL context; don't call the OS when it hasn't changed. */ + SDL_Window *current_glwin; + SDL_GLContext current_glctx; + /* * * */ /* Data private to this driver */ void *driverdata; diff --git a/src/video/SDL_video.c b/src/video/SDL_video.c index 414f1f5e5..ab178b924 100644 --- a/src/video/SDL_video.c +++ b/src/video/SDL_video.c @@ -1931,6 +1931,13 @@ SDL_DestroyWindow(SDL_Window * window) CHECK_WINDOW_MAGIC(window, ); + /* make no context current if this is the current context window. */ + if (window->flags & SDL_WINDOW_OPENGL) { + if (_this->current_glwin == window) { + SDL_GL_MakeCurrent(NULL, NULL); + } + } + /* Restore video mode, etc. */ SDL_HideWindow(window); @@ -2462,18 +2469,31 @@ SDL_GL_CreateContext(SDL_Window * window) } int -SDL_GL_MakeCurrent(SDL_Window * window, SDL_GLContext context) +SDL_GL_MakeCurrent(SDL_Window * window, SDL_GLContext ctx) { + int retval; + CHECK_WINDOW_MAGIC(window, -1); if (!(window->flags & SDL_WINDOW_OPENGL)) { SDL_SetError("The specified window isn't an OpenGL window"); return -1; } - if (!context) { + if (!ctx) { window = NULL; } - return _this->GL_MakeCurrent(_this, window, context); + + if ((window == _this->current_glwin) && (ctx == _this->current_glctx)) { + retval = 0; /* we're already current. */ + } else { + retval = _this->GL_MakeCurrent(_this, window, ctx); + if (retval == 0) { + _this->current_glwin = window; + _this->current_glctx = ctx; + } + } + + return retval; } int From 0b3c783570dbd51e49ea0cc69f33229ace55707c Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 16 Jul 2011 11:52:09 -0700 Subject: [PATCH 12/72] Cocoa: Update the current GL context when its window moves or resizes. According to the NSOpenGLContext docs, you need to do this, and we were previously masking the need in the SDL_GL_MakeCurrent() implementation. --- src/video/cocoa/SDL_cocoawindow.m | 33 ++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/src/video/cocoa/SDL_cocoawindow.m b/src/video/cocoa/SDL_cocoawindow.m index 72db0bbaa..e494d62ad 100644 --- a/src/video/cocoa/SDL_cocoawindow.m +++ b/src/video/cocoa/SDL_cocoawindow.m @@ -114,6 +114,7 @@ static __inline__ void ConvertNSRect(NSRect *r) - (void)windowDidMove:(NSNotification *)aNotification { int x, y; + SDL_VideoDevice *device = SDL_GetVideoDevice(); SDL_Window *window = _data->window; NSWindow *nswindow = _data->nswindow; NSRect rect = [nswindow contentRectForFrameRect:[nswindow frame]]; @@ -136,17 +137,28 @@ static __inline__ void ConvertNSRect(NSRect *r) x = (int)rect.origin.x; y = (int)rect.origin.y; + + if (window == device->current_glwin) { + [((NSOpenGLContext *) device->current_glctx) update]; + } + SDL_SendWindowEvent(window, SDL_WINDOWEVENT_MOVED, x, y); } - (void)windowDidResize:(NSNotification *)aNotification { + SDL_VideoDevice *device = SDL_GetVideoDevice(); int w, h; NSRect rect = [_data->nswindow contentRectForFrameRect:[_data->nswindow frame]]; w = (int)rect.size.width; h = (int)rect.size.height; if (SDL_IsShapedWindow(_data->window)) Cocoa_ResizeWindowShape(_data->window); + + if (_data->window == device->current_glwin) { + [((NSOpenGLContext *) device->current_glctx) update]; + } + SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_RESIZED, w, h); } @@ -683,6 +695,10 @@ Cocoa_SetWindowPosition(_THIS, SDL_Window * window) [nswindow setFrameOrigin:rect.origin]; s_moveHack = moveHack; + if (window == _this->current_glwin) { + [((NSOpenGLContext *) _this->current_glctx) update]; + } + [pool release]; } @@ -690,12 +706,18 @@ void Cocoa_SetWindowSize(_THIS, SDL_Window * window) { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; - NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow; + SDL_WindowData *windata = (SDL_WindowData *) window->driverdata; + NSWindow *nswindow = windata->nswindow; NSSize size; size.width = window->w; size.height = window->h; [nswindow setContentSize:size]; + + if (window == _this->current_glwin) { + [((NSOpenGLContext *) _this->current_glctx) update]; + } + [pool release]; } @@ -738,6 +760,11 @@ Cocoa_MaximizeWindow(_THIS, SDL_Window * window) NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow; [nswindow zoom:nil]; + + if (window == _this->current_glwin) { + [((NSOpenGLContext *) _this->current_glctx) update]; + } + [pool release]; } @@ -856,6 +883,10 @@ Cocoa_SetWindowFullscreen(_THIS, SDL_Window * window, SDL_VideoDisplay * display #endif [nswindow makeKeyAndOrderFront:nil]; + if (window == _this->current_glwin) { + [((NSOpenGLContext *) _this->current_glctx) update]; + } + [pool release]; } From 2fdcb7bdfcc4feb9c9a6d735756a9438d189fda1 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 16 Jul 2011 14:59:12 -0700 Subject: [PATCH 13/72] Fixed memory leak in SDL_DestroyRenderer. Fixes Bugzilla #1219. Thanks to Dimitris Zenios for the patch! --- src/render/opengl/SDL_render_gl.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/render/opengl/SDL_render_gl.c b/src/render/opengl/SDL_render_gl.c index daa2a9bca..d478fb537 100644 --- a/src/render/opengl/SDL_render_gl.c +++ b/src/render/opengl/SDL_render_gl.c @@ -1011,6 +1011,9 @@ GL_DestroyRenderer(SDL_Renderer * renderer) GL_RenderData *data = (GL_RenderData *) renderer->driverdata; if (data) { + if (data->shaders) { + GL_DestroyShaderContext(data->shaders); + } if (data->context) { /* SDL_GL_MakeCurrent(0, NULL); *//* doesn't do anything */ SDL_GL_DeleteContext(data->context); From b43aca329d9bc1c17807fa1a2ab29e8cbb64f439 Mon Sep 17 00:00:00 2001 From: Dimitris Zenios Date: Fri, 10 Jun 2011 12:13:06 +0300 Subject: [PATCH 14/72] Fixes a bug in SDL_UpdateTexture when using SDL_RENDERER_SOFTWARE and texture access is SDL_TEXTUREACCESS_STATIC --- src/render/software/SDL_render_sw.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/render/software/SDL_render_sw.c b/src/render/software/SDL_render_sw.c index 774eaceda..30c22727b 100644 --- a/src/render/software/SDL_render_sw.c +++ b/src/render/software/SDL_render_sw.c @@ -240,6 +240,8 @@ SW_UpdateTexture(SDL_Renderer * renderer, SDL_Texture * texture, int row; size_t length; + if(SDL_MUSTLOCK(surface)) + SDL_LockSurface(surface); src = (Uint8 *) pixels; dst = (Uint8 *) surface->pixels + rect->y * surface->pitch + @@ -250,6 +252,8 @@ SW_UpdateTexture(SDL_Renderer * renderer, SDL_Texture * texture, src += pitch; dst += surface->pitch; } + if(SDL_MUSTLOCK(surface)) + SDL_UnlockSurface(surface); return 0; } From b77354e7d9f862991a70933cbf6fb0743ca052e2 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 18 Jul 2011 14:30:46 -0700 Subject: [PATCH 15/72] Record the new OpenGL context as current during SDL_GL_CreateContext(). --- src/video/SDL_video.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/video/SDL_video.c b/src/video/SDL_video.c index ab178b924..eaad1ad14 100644 --- a/src/video/SDL_video.c +++ b/src/video/SDL_video.c @@ -2459,13 +2459,21 @@ SDL_GL_GetAttribute(SDL_GLattr attr, int *value) SDL_GLContext SDL_GL_CreateContext(SDL_Window * window) { + SDL_GLContext ctx = NULL; CHECK_WINDOW_MAGIC(window, NULL); if (!(window->flags & SDL_WINDOW_OPENGL)) { SDL_SetError("The specified window isn't an OpenGL window"); return NULL; } - return _this->GL_CreateContext(_this, window); + + ctx = _this->GL_CreateContext(_this, window); + + /* Creating a context is assumed to make it current in the SDL driver. */ + _this->current_glwin = window; + _this->current_glctx = ctx; + + return ctx; } int From d05ada5235de541e08f862aa49ff707254809bb5 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 18 Jul 2011 14:31:37 -0700 Subject: [PATCH 16/72] The SwapInterval APIs should fail without a current OpenGL context. --- src/video/SDL_video.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/video/SDL_video.c b/src/video/SDL_video.c index eaad1ad14..abed6a824 100644 --- a/src/video/SDL_video.c +++ b/src/video/SDL_video.c @@ -2510,8 +2510,10 @@ SDL_GL_SetSwapInterval(int interval) if (!_this) { SDL_UninitializedVideo(); return -1; - } - if (_this->GL_SetSwapInterval) { + } else if (_this->current_glctx == NULL) { + SDL_SetError("No OpenGL context has been made current"); + return -1; + } else if (_this->GL_SetSwapInterval) { return _this->GL_SetSwapInterval(_this, interval); } else { SDL_SetError("Setting the swap interval is not supported"); @@ -2525,8 +2527,10 @@ SDL_GL_GetSwapInterval(void) if (!_this) { SDL_UninitializedVideo(); return -1; - } - if (_this->GL_GetSwapInterval) { + } else if (_this->current_glctx == NULL) { + SDL_SetError("No OpenGL context has been made current"); + return -1; + } else if (_this->GL_GetSwapInterval) { return _this->GL_GetSwapInterval(_this); } else { SDL_SetError("Getting the swap interval is not supported"); From 93d2b8329972a553815c8cb55dffba2dd667686c Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 18 Jul 2011 14:34:19 -0700 Subject: [PATCH 17/72] Added support for GLX_EXT_swap_control, and cleaned up some other extensions. This allows the Nvidia Linux drivers to use SDL_GL_SetSwapInterval(0). --- src/video/x11/SDL_x11opengl.c | 55 +++++++++++++++++++++++++---------- src/video/x11/SDL_x11opengl.h | 31 +++++++------------- 2 files changed, 51 insertions(+), 35 deletions(-) diff --git a/src/video/x11/SDL_x11opengl.c b/src/video/x11/SDL_x11opengl.c index 1c446167b..cc5770947 100644 --- a/src/video/x11/SDL_x11opengl.c +++ b/src/video/x11/SDL_x11opengl.c @@ -138,6 +138,9 @@ X11_GL_LoadLibrary(_THIS, const char *path) _this->gl_data->glXSwapBuffers = (void (*)(Display *, GLXDrawable)) X11_GL_GetProcAddress(_this, "glXSwapBuffers"); + _this->gl_data->glXQueryDrawable = + (void (*)(Display*,GLXDrawable,int,unsigned int*)) + X11_GL_GetProcAddress(_this, "glXQueryDrawable"); if (!_this->gl_data->glXChooseVisual || !_this->gl_data->glXCreateContext || @@ -254,22 +257,28 @@ X11_GL_InitExtensions(_THIS) extensions = NULL; } - /* Check for SGI_swap_control */ - if (HasExtension("GLX_SGI_swap_control", extensions)) { - _this->gl_data->glXSwapIntervalSGI = - (int (*)(int)) X11_GL_GetProcAddress(_this, "glXSwapIntervalSGI"); + /* Check for GLX_EXT_swap_control */ + if (HasExtension("GLX_EXT_swap_control", extensions)) { + _this->gl_data->glXSwapIntervalEXT = + (void (*)(Display*,GLXDrawable,int)) + X11_GL_GetProcAddress(_this, "glXSwapIntervalEXT"); } /* Check for GLX_MESA_swap_control */ if (HasExtension("GLX_MESA_swap_control", extensions)) { _this->gl_data->glXSwapIntervalMESA = - (GLint(*)(unsigned)) X11_GL_GetProcAddress(_this, - "glXSwapIntervalMESA"); + (int(*)(int)) X11_GL_GetProcAddress(_this, "glXSwapIntervalMESA"); _this->gl_data->glXGetSwapIntervalMESA = - (GLint(*)(void)) X11_GL_GetProcAddress(_this, + (int(*)(void)) X11_GL_GetProcAddress(_this, "glXGetSwapIntervalMESA"); } + /* Check for GLX_SGI_swap_control */ + if (HasExtension("GLX_SGI_swap_control", extensions)) { + _this->gl_data->glXSwapIntervalSGI = + (int (*)(int)) X11_GL_GetProcAddress(_this, "glXSwapIntervalSGI"); + } + /* Check for GLX_EXT_visual_rating */ if (HasExtension("GLX_EXT_visual_rating", extensions)) { _this->gl_data->HAS_GLX_EXT_visual_rating = SDL_TRUE; @@ -506,12 +515,11 @@ X11_GL_MakeCurrent(_THIS, SDL_Window * window, SDL_GLContext context) } /* - 0 is a valid argument to glxSwapIntervalMESA and setting it to 0 - with the MESA version of the extension will undo the effect of a - previous call with a value that is greater than zero (or at least - that is what the FM says. OTOH, 0 is an invalid argument to - glxSwapIntervalSGI and it returns an error if you call it with 0 as - an argument. + 0 is a valid argument to glxSwapInterval(MESA|EXT) and setting it to 0 + will undo the effect of a previous call with a value that is greater + than zero (or at least that is what the docs say). OTOH, 0 is an invalid + argument to glxSwapIntervalSGI and it returns an error if you call it + with 0 as an argument. */ static int swapinterval = -1; @@ -520,7 +528,15 @@ X11_GL_SetSwapInterval(_THIS, int interval) { int status; - if (_this->gl_data->glXSwapIntervalMESA) { + if (_this->gl_data->glXSwapIntervalEXT) { + Display *display = ((SDL_VideoData *) _this->driverdata)->display; + const SDL_WindowData *windowdata = (SDL_WindowData *) + _this->current_glwin->driverdata; + Window drawable = windowdata->xwindow; + _this->gl_data->glXSwapIntervalEXT(display, drawable, interval); + status = 0; /* always succeeds, apparently. */ + swapinterval = interval; + } else if (_this->gl_data->glXSwapIntervalMESA) { status = _this->gl_data->glXSwapIntervalMESA(interval); if (status != 0) { SDL_SetError("glxSwapIntervalMESA failed"); @@ -546,7 +562,16 @@ X11_GL_SetSwapInterval(_THIS, int interval) int X11_GL_GetSwapInterval(_THIS) { - if (_this->gl_data->glXGetSwapIntervalMESA) { + if (_this->gl_data->glXSwapIntervalEXT) { + Display *display = ((SDL_VideoData *) _this->driverdata)->display; + const SDL_WindowData *windowdata = (SDL_WindowData *) + _this->current_glwin->driverdata; + Window drawable = windowdata->xwindow; + unsigned int value = 0; + _this->gl_data->glXQueryDrawable(display, drawable, + GLX_SWAP_INTERVAL_EXT, &value); + return (int) value; + } else if (_this->gl_data->glXGetSwapIntervalMESA) { return _this->gl_data->glXGetSwapIntervalMESA(); } else { return swapinterval; diff --git a/src/video/x11/SDL_x11opengl.h b/src/video/x11/SDL_x11opengl.h index 037232117..730566446 100644 --- a/src/video/x11/SDL_x11opengl.h +++ b/src/video/x11/SDL_x11opengl.h @@ -31,26 +31,17 @@ struct SDL_GLDriverData { SDL_bool HAS_GLX_EXT_visual_rating; - void *(*glXGetProcAddress) (const GLubyte * procName); - - XVisualInfo *(*glXChooseVisual) - (Display * dpy, int screen, int *attribList); - - GLXContext(*glXCreateContext) - (Display * dpy, XVisualInfo * vis, GLXContext shareList, Bool direct); - - void (*glXDestroyContext) - (Display * dpy, GLXContext ctx); - - Bool(*glXMakeCurrent) - (Display * dpy, GLXDrawable drawable, GLXContext ctx); - - void (*glXSwapBuffers) - (Display * dpy, GLXDrawable drawable); - - int (*glXSwapIntervalSGI) (int interval); - GLint(*glXSwapIntervalMESA) (unsigned interval); - GLint(*glXGetSwapIntervalMESA) (void); + void *(*glXGetProcAddress) (const GLubyte*); + XVisualInfo *(*glXChooseVisual) (Display*,int,int*); + GLXContext (*glXCreateContext) (Display*,XVisualInfo*,GLXContext,Bool); + void (*glXDestroyContext) (Display*, GLXContext); + Bool(*glXMakeCurrent) (Display*,GLXDrawable,GLXContext); + void (*glXSwapBuffers) (Display*, GLXDrawable); + void (*glXQueryDrawable) (Display*,GLXDrawable,int,unsigned int*); + void (*glXSwapIntervalEXT) (Display*,GLXDrawable,int); + int (*glXSwapIntervalSGI) (int); + int (*glXSwapIntervalMESA) (int); + int (*glXGetSwapIntervalMESA) (void); }; /* OpenGL functions */ From 1a862ae6d3a7e48251aabdd1782c6644b8c58b01 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 18 Jul 2011 14:55:24 -0700 Subject: [PATCH 18/72] Patched to compile on older GLX headers. --- src/video/x11/SDL_x11opengl.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/video/x11/SDL_x11opengl.c b/src/video/x11/SDL_x11opengl.c index cc5770947..96f5079ac 100644 --- a/src/video/x11/SDL_x11opengl.c +++ b/src/video/x11/SDL_x11opengl.c @@ -64,6 +64,11 @@ #define GLX_CONTEXT_DEBUG_BIT_ARB 0x0001 #define GLX_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB 0x0002 +#ifndef GLX_EXT_swap_control +#define GLX_SWAP_INTERVAL_EXT 0x20F1 +#define GLX_MAX_SWAP_INTERVAL_EXT 0x20F2 +#endif + /* Typedef for the GL 3.0 context creation function */ typedef GLXContext(*PFNGLXCREATECONTEXTATTRIBSARBPROC) (Display * dpy, GLXFBConfig config, From 4b70200bf86d2d7b5c8bfb017696b672295b7a3c Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Wed, 20 Jul 2011 16:35:37 -0700 Subject: [PATCH 19/72] Work on systems without sa_sigaction. --- configure.in | 2 ++ include/SDL_config.h.in | 1 + src/events/SDL_quit.c | 9 +++++++++ 3 files changed, 12 insertions(+) diff --git a/configure.in b/configure.in index 1b2a07f26..37a59233a 100644 --- a/configure.in +++ b/configure.in @@ -236,6 +236,8 @@ if test x$enable_libc = xyes; then AC_CHECK_LIB(iconv, iconv_open, [LIBS="$LIBS -liconv"; EXTRA_LDFLAGS="$EXTRA_LDFLAGS -liconv"]) AC_CHECK_FUNCS(iconv) + + AC_CHECK_MEMBER(struct sigaction.sa_sigaction,[AC_DEFINE(HAVE_SA_SIGACTION)], ,[#include ]) fi AC_CHECK_SIZEOF(void*) diff --git a/include/SDL_config.h.in b/include/SDL_config.h.in index f4ea2f84a..6c5714c15 100644 --- a/include/SDL_config.h.in +++ b/include/SDL_config.h.in @@ -139,6 +139,7 @@ #undef HAVE_SINF #undef HAVE_SQRT #undef HAVE_SIGACTION +#undef HAVE_SA_SIGACTION #undef HAVE_SETJMP #undef HAVE_NANOSLEEP #undef HAVE_SYSCONF diff --git a/src/events/SDL_quit.c b/src/events/SDL_quit.c index 99411c23b..1a3aa003f 100644 --- a/src/events/SDL_quit.c +++ b/src/events/SDL_quit.c @@ -49,12 +49,21 @@ SDL_QuitInit(void) #ifdef HAVE_SIGACTION struct sigaction action; sigaction(SIGINT, NULL, &action); +#ifdef HAVE_SA_SIGACTION if ( action.sa_handler == SIG_DFL && action.sa_sigaction == (void*)SIG_DFL ) { +#else + if ( action.sa_handler == SIG_DFL ) { +#endif action.sa_handler = SDL_HandleSIG; sigaction(SIGINT, &action, NULL); } sigaction(SIGTERM, NULL, &action); + +#ifdef HAVE_SA_SIGACTION if ( action.sa_handler == SIG_DFL && action.sa_sigaction == (void*)SIG_DFL ) { +#else + if ( action.sa_handler == SIG_DFL ) { +#endif action.sa_handler = SDL_HandleSIG; sigaction(SIGTERM, &action, NULL); } From a5d345e3746670311fc735382192b4a558e91df3 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 22 Jul 2011 00:09:58 -0700 Subject: [PATCH 20/72] Don't use a bitfield for this. It pads out to an int anyhow, but causes code bloat as the compiler tries to mask and shift for that specific bit. --- src/audio/SDL_sysaudio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/audio/SDL_sysaudio.h b/src/audio/SDL_sysaudio.h index 19a68c4dd..dd5cea150 100644 --- a/src/audio/SDL_sysaudio.h +++ b/src/audio/SDL_sysaudio.h @@ -120,7 +120,7 @@ typedef struct AudioBootStrap const char *name; const char *desc; int (*init) (SDL_AudioDriverImpl * impl); - int demand_only:1; /* 1==request explicitly, or it won't be available. */ + int demand_only; /* 1==request explicitly, or it won't be available. */ } AudioBootStrap; #endif /* _SDL_sysaudio_h */ From f7d9b29115ac54f387bdf4a411c0e1ddfde96e67 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 22 Jul 2011 00:12:03 -0700 Subject: [PATCH 21/72] Removed comment questioning the code's correctness (the answer: it's correct). --- src/audio/android/SDL_androidaudio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/audio/android/SDL_androidaudio.c b/src/audio/android/SDL_androidaudio.c index 086851617..425e51dac 100644 --- a/src/audio/android/SDL_androidaudio.c +++ b/src/audio/android/SDL_androidaudio.c @@ -144,7 +144,7 @@ AndroidAUD_Init(SDL_AudioDriverImpl * impl) } AudioBootStrap ANDROIDAUD_bootstrap = { - "android", "SDL Android audio driver", AndroidAUD_Init, 0 /*1? */ + "android", "SDL Android audio driver", AndroidAUD_Init, 0 }; /* Called by the Java code to start the audio processing on a thread */ From d8d485370c4b2d76f5afe26c76cd36c4c291e72d Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 25 Jul 2011 15:03:42 -0700 Subject: [PATCH 22/72] If we didn't create win32 window, restore its event procedure on destruction. --- src/video/windows/SDL_windowswindow.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/video/windows/SDL_windowswindow.c b/src/video/windows/SDL_windowswindow.c index 34ebc12e2..55fc54d3f 100644 --- a/src/video/windows/SDL_windowswindow.c +++ b/src/video/windows/SDL_windowswindow.c @@ -636,6 +636,15 @@ WIN_DestroyWindow(_THIS, SDL_Window * window) ReleaseDC(data->hwnd, data->hdc); if (data->created) { DestroyWindow(data->hwnd); + } else { + /* Restore any original event handler... */ + if (data->wndproc != NULL) { +#ifdef GWLP_WNDPROC + SetWindowLongPtr(hwnd, GWLP_WNDPROC, (LONG_PTR) data->wndproc); +#else + SetWindowLong(hwnd, GWL_WNDPROC, (LONG_PTR) data->wndproc); +#endif + } } SDL_free(data); } From 58faae483b25425130f1439f6e3b64941ae9e639 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Wed, 27 Jul 2011 18:07:40 -0400 Subject: [PATCH 23/72] Patched to compile (I hope). --- src/video/windows/SDL_windowswindow.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/video/windows/SDL_windowswindow.c b/src/video/windows/SDL_windowswindow.c index 55fc54d3f..bb5a42b92 100644 --- a/src/video/windows/SDL_windowswindow.c +++ b/src/video/windows/SDL_windowswindow.c @@ -640,9 +640,11 @@ WIN_DestroyWindow(_THIS, SDL_Window * window) /* Restore any original event handler... */ if (data->wndproc != NULL) { #ifdef GWLP_WNDPROC - SetWindowLongPtr(hwnd, GWLP_WNDPROC, (LONG_PTR) data->wndproc); + SetWindowLongPtr(data->hwnd, GWLP_WNDPROC, + (LONG_PTR) data->wndproc); #else - SetWindowLong(hwnd, GWL_WNDPROC, (LONG_PTR) data->wndproc); + SetWindowLong(data->hwnd, GWL_WNDPROC, + (LONG_PTR) data->wndproc); #endif } } From 247346d52675b888bdfd4a3610663192d45111fc Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 29 Jul 2011 16:51:25 -0400 Subject: [PATCH 24/72] Allow Android platforms to read from .apk files via the RWOPS interface. Fixes Bugzilla #1261. Thanks to Tim Angus for the patch! --- .../src/org/libsdl/app/SDLActivity.java | 4 + include/SDL_rwops.h | 17 +- src/core/android/SDL_android.cpp | 230 ++++++++++++++++++ src/core/android/SDL_android.h | 8 + src/file/SDL_rwops.c | 19 +- 5 files changed, 276 insertions(+), 2 deletions(-) diff --git a/android-project/src/org/libsdl/app/SDLActivity.java b/android-project/src/org/libsdl/app/SDLActivity.java index ca82870ff..3f377dea0 100644 --- a/android-project/src/org/libsdl/app/SDLActivity.java +++ b/android-project/src/org/libsdl/app/SDLActivity.java @@ -114,6 +114,10 @@ public class SDLActivity extends Activity { mSingleton.sendCommand(COMMAND_CHANGE_TITLE, title); } + public static Context getContext() { + return mSingleton; + } + // Audio private static Object buf; diff --git a/include/SDL_rwops.h b/include/SDL_rwops.h index f2a8d4f10..48824f43e 100644 --- a/include/SDL_rwops.h +++ b/include/SDL_rwops.h @@ -82,7 +82,21 @@ typedef struct SDL_RWops Uint32 type; union { -#ifdef __WIN32__ +#if defined(ANDROID) + struct + { + void *fileName; + void *fileNameRef; + void *inputStream; + void *inputStreamRef; + void *skipMethod; + void *readableByteChannel; + void *readableByteChannelRef; + void *readMethod; + long position; + int size; + } androidio; +#elif defined(__WIN32__) struct { SDL_bool append; @@ -95,6 +109,7 @@ typedef struct SDL_RWops } buffer; } windowsio; #endif + #ifdef HAVE_STDIO_H struct { diff --git a/src/core/android/SDL_android.cpp b/src/core/android/SDL_android.cpp index be0692a8d..60ef4d521 100644 --- a/src/core/android/SDL_android.cpp +++ b/src/core/android/SDL_android.cpp @@ -259,4 +259,234 @@ extern "C" void Android_JNI_CloseAudioDevice() } } +static int Android_JNI_FileOpen(SDL_RWops* ctx) +{ + jstring fileNameJString = (jstring)ctx->hidden.androidio.fileName; + + // context = SDLActivity.getContext(); + jmethodID mid = mEnv->GetStaticMethodID(mActivityClass, + "getContext","()Landroid/content/Context;"); + jobject context = mEnv->CallStaticObjectMethod(mActivityClass, mid); + + // assetManager = context.getAssets(); + mid = mEnv->GetMethodID(mEnv->GetObjectClass(context), + "getAssets","()Landroid/content/res/AssetManager;"); + jobject assetManager = mEnv->CallObjectMethod(context, mid); + + // inputStream = assetManager.open(); + mEnv->ExceptionClear(); + mid = mEnv->GetMethodID(mEnv->GetObjectClass(assetManager), + "open", "(Ljava/lang/String;)Ljava/io/InputStream;"); + jobject inputStream = mEnv->CallObjectMethod(assetManager, mid, fileNameJString); + if (mEnv->ExceptionOccurred()) { + mEnv->ExceptionDescribe(); + mEnv->ExceptionClear(); + mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.fileNameRef); + return -1; + } else { + ctx->hidden.androidio.inputStream = inputStream; + ctx->hidden.androidio.inputStreamRef = mEnv->NewGlobalRef(inputStream); + } + + // Store .skip id for seeking purposes + mid = mEnv->GetMethodID(mEnv->GetObjectClass(inputStream), + "skip", "(J)J"); + ctx->hidden.androidio.skipMethod = mid; + + // Despite all the visible documentation on [Asset]InputStream claiming + // that the .available() method is not guaranteed to return the entire file + // size, comments in /samples//ApiDemos/src/com/example/ ... + // android/apis/content/ReadAsset.java imply that Android's + // AssetInputStream.available() /will/ always return the total file size + + // size = inputStream.available(); + mEnv->ExceptionClear(); + mid = mEnv->GetMethodID(mEnv->GetObjectClass(inputStream), + "available", "()I"); + ctx->hidden.androidio.size = mEnv->CallIntMethod(inputStream, mid); + if (mEnv->ExceptionOccurred()) { + mEnv->ExceptionDescribe(); + mEnv->ExceptionClear(); + mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.fileNameRef); + mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.inputStreamRef); + return -1; + } + + // readableByteChannel = Channels.newChannel(inputStream); + mEnv->ExceptionClear(); + jclass channels = mEnv->FindClass("java/nio/channels/Channels"); + mid = mEnv->GetStaticMethodID(channels, + "newChannel", + "(Ljava/io/InputStream;)Ljava/nio/channels/ReadableByteChannel;"); + jobject readableByteChannel = mEnv->CallStaticObjectMethod( + channels, mid, inputStream); + if (mEnv->ExceptionOccurred()) { + mEnv->ExceptionDescribe(); + mEnv->ExceptionClear(); + mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.fileNameRef); + mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.inputStreamRef); + return -1; + } else { + ctx->hidden.androidio.readableByteChannel = readableByteChannel; + ctx->hidden.androidio.readableByteChannelRef = + mEnv->NewGlobalRef(readableByteChannel); + } + + // Store .read id for reading purposes + mid = mEnv->GetMethodID(mEnv->GetObjectClass(readableByteChannel), + "read", "(Ljava/nio/ByteBuffer;)I"); + ctx->hidden.androidio.readMethod = mid; + + ctx->hidden.androidio.position = 0; + + return 0; +} + +extern "C" int Android_JNI_FileOpen(SDL_RWops* ctx, + const char* fileName, const char*) +{ + if (!ctx) { + return -1; + } + + jstring fileNameJString = mEnv->NewStringUTF(fileName); + ctx->hidden.androidio.fileName = fileNameJString; + ctx->hidden.androidio.fileNameRef = mEnv->NewGlobalRef(fileNameJString); + + return Android_JNI_FileOpen(ctx); +} + +extern "C" size_t Android_JNI_FileRead(SDL_RWops* ctx, void* buffer, + size_t size, size_t maxnum) +{ + int bytesRemaining = size * maxnum; + int bytesRead = 0; + + jobject readableByteChannel = (jobject)ctx->hidden.androidio.readableByteChannel; + jmethodID readMethod = (jmethodID)ctx->hidden.androidio.readMethod; + jobject byteBuffer = mEnv->NewDirectByteBuffer(buffer, bytesRemaining); + + mEnv->ExceptionClear(); + while (bytesRemaining > 0) { + // result = readableByteChannel.read(...); + int result = mEnv->CallIntMethod(readableByteChannel, readMethod, byteBuffer); + + if (mEnv->ExceptionOccurred()) { + mEnv->ExceptionDescribe(); + mEnv->ExceptionClear(); + return 0; + } + + if (result < 0) { + break; + } + + bytesRemaining -= result; + bytesRead += result; + ctx->hidden.androidio.position += result; + } + + return bytesRead / size; +} + +extern "C" size_t Android_JNI_FileWrite(SDL_RWops* ctx, const void* buffer, + size_t size, size_t num) +{ + SDL_SetError("Cannot write to Android package filesystem"); + return 0; +} + +static int Android_JNI_FileClose(SDL_RWops* ctx, bool release) +{ + int result = 0; + + if (ctx) { + if (release) { + mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.fileNameRef); + } + + jobject inputStream = (jobject)ctx->hidden.androidio.inputStream; + + // inputStream.close(); + mEnv->ExceptionClear(); + jmethodID mid = mEnv->GetMethodID(mEnv->GetObjectClass(inputStream), + "close", "()V"); + mEnv->CallVoidMethod(inputStream, mid); + mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.inputStreamRef); + mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.readableByteChannelRef); + if (mEnv->ExceptionOccurred()) { + result = -1; + mEnv->ExceptionDescribe(); + mEnv->ExceptionClear(); + } + + if (release) { + SDL_FreeRW(ctx); + } + } + + return result; +} + + +extern "C" long Android_JNI_FileSeek(SDL_RWops* ctx, long offset, int whence) +{ + long newPosition; + + switch (whence) { + case RW_SEEK_SET: + newPosition = offset; + break; + case RW_SEEK_CUR: + newPosition = ctx->hidden.androidio.position + offset; + break; + case RW_SEEK_END: + newPosition = ctx->hidden.androidio.size + offset; + break; + default: + SDL_SetError("Unknown value for 'whence'"); + return -1; + } + if (newPosition < 0) { + newPosition = 0; + } + if (newPosition > ctx->hidden.androidio.size) { + newPosition = ctx->hidden.androidio.size; + } + + long movement = newPosition - ctx->hidden.androidio.position; + jobject inputStream = (jobject)ctx->hidden.androidio.inputStream; + jmethodID skipMethod = (jmethodID)ctx->hidden.androidio.skipMethod; + + if (movement > 0) { + // The easy case where we're seeking forwards + mEnv->ExceptionClear(); + while (movement > 0) { + // inputStream.skip(...); + movement -= mEnv->CallLongMethod(inputStream, skipMethod, movement); + if (mEnv->ExceptionOccurred()) { + mEnv->ExceptionDescribe(); + mEnv->ExceptionClear(); + SDL_SetError("Exception while seeking"); + return -1; + } + } + } else if (movement < 0) { + // We can't seek backwards so we have to reopen the file and seek + // forwards which obviously isn't very efficient + Android_JNI_FileClose(ctx, false); + Android_JNI_FileOpen(ctx); + Android_JNI_FileSeek(ctx, newPosition, RW_SEEK_SET); + } + + ctx->hidden.androidio.position = newPosition; + + return ctx->hidden.androidio.position; +} + +extern "C" int Android_JNI_FileClose(SDL_RWops* ctx) +{ + return Android_JNI_FileClose(ctx, true); +} + /* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/core/android/SDL_android.h b/src/core/android/SDL_android.h index a9c6a94ad..ff3a19992 100644 --- a/src/core/android/SDL_android.h +++ b/src/core/android/SDL_android.h @@ -39,6 +39,14 @@ extern void* Android_JNI_GetAudioBuffer(); extern void Android_JNI_WriteAudioBuffer(); extern void Android_JNI_CloseAudioDevice(); +#include "SDL_rwops.h" + +int Android_JNI_FileOpen(SDL_RWops* ctx, const char* fileName, const char* mode); +long Android_JNI_FileSeek(SDL_RWops* ctx, long offset, int whence); +size_t Android_JNI_FileRead(SDL_RWops* ctx, void* buffer, size_t size, size_t maxnum); +size_t Android_JNI_FileWrite(SDL_RWops* ctx, const void* buffer, size_t size, size_t num); +int Android_JNI_FileClose(SDL_RWops* ctx); + /* Ends C function definitions when using C++ */ #ifdef __cplusplus /* *INDENT-OFF* */ diff --git a/src/file/SDL_rwops.c b/src/file/SDL_rwops.c index de3c54f45..f2d4bf8b1 100644 --- a/src/file/SDL_rwops.c +++ b/src/file/SDL_rwops.c @@ -31,6 +31,10 @@ #include "cocoa/SDL_rwopsbundlesupport.h" #endif /* __APPLE__ */ +#ifdef ANDROID +#include "../core/android/SDL_android.h" +#endif + #ifdef __NDS__ /* include libfat headers for fatInitDefault(). */ #include @@ -441,7 +445,20 @@ SDL_RWFromFile(const char *file, const char *mode) SDL_SetError("SDL_RWFromFile(): No file or no mode specified"); return NULL; } -#if defined(__WIN32__) +#if defined(ANDROID) + rwops = SDL_AllocRW(); + if (!rwops) + return NULL; /* SDL_SetError already setup by SDL_AllocRW() */ + if (Android_JNI_FileOpen(rwops, file, mode) < 0) { + SDL_FreeRW(rwops); + return NULL; + } + rwops->seek = Android_JNI_FileSeek; + rwops->read = Android_JNI_FileRead; + rwops->write = Android_JNI_FileWrite; + rwops->close = Android_JNI_FileClose; + +#elif defined(__WIN32__) rwops = SDL_AllocRW(); if (!rwops) return NULL; /* SDL_SetError already setup by SDL_AllocRW() */ From 77f25419aa497e2091a4fdac6a5dbe16d63ad895 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 4 Aug 2011 00:46:27 -0400 Subject: [PATCH 25/72] Apple uses a void* for GLhandleARB, not an unsigned int. --- include/SDL_opengl.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/SDL_opengl.h b/include/SDL_opengl.h index c0db8263f..61f3c5c4b 100644 --- a/include/SDL_opengl.h +++ b/include/SDL_opengl.h @@ -5118,8 +5118,12 @@ typedef ptrdiff_t GLsizeiptrARB; #ifndef GL_ARB_shader_objects /* GL types for program/shader text and shader object handles */ typedef char GLcharARB; +#if defined(__APPLE__) +typedef void *GLhandleARB; +#else typedef unsigned int GLhandleARB; #endif +#endif /* GL type for "half" precision (s10e5) float data in host memory */ #ifndef GL_ARB_half_float_pixel From 8eb5a677611f89c6bae3578b76e650904cafa989 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 26 Jul 2011 13:42:34 -0700 Subject: [PATCH 26/72] Mark some QSA audio driver functions as static. --- src/audio/qsa/SDL_qsa_audio.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/audio/qsa/SDL_qsa_audio.c b/src/audio/qsa/SDL_qsa_audio.c index 535804ca7..cd9d18655 100644 --- a/src/audio/qsa/SDL_qsa_audio.c +++ b/src/audio/qsa/SDL_qsa_audio.c @@ -650,7 +650,7 @@ QSA_OpenDevice(_THIS, const char *devname, int iscapture) return 1; } -int +static int QSA_DetectDevices(int iscapture) { uint32_t it; @@ -790,7 +790,7 @@ QSA_DetectDevices(int iscapture) } } -const char * +static const char * QSA_GetDeviceName(int index, int iscapture) { if (!iscapture) { @@ -808,7 +808,7 @@ QSA_GetDeviceName(int index, int iscapture) } } -void +static void QSA_WaitDone(_THIS) { if (!this->hidden->iscapture) { @@ -826,7 +826,7 @@ QSA_WaitDone(_THIS) } } -void +static void QSA_Deinitialize(void) { /* Clear devices array on shutdown */ From 068586f3ee7e78d1bb64489b685d36b7591bbd1a Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 23 Jul 2011 00:22:19 -0700 Subject: [PATCH 27/72] Removed VisualCE project files. --- VisualCE/SDL.sln | 149 - VisualCE/SDL.vcw | 116 - VisualCE/SDL/SDL.vcp | 41493 -------------------------- VisualCE/SDL/SDL.vcproj | 1442 - VisualCE/SDLMain/SDLmain.vcp | 1649 - VisualCE/SDLMain/SDLmain.vcproj | 568 - VisualCE/loopwave/loopwave.vcp | 554 - VisualCE/loopwave/loopwave.vcproj | 395 - VisualCE/testalpha/testalpha.vcp | 686 - VisualCE/testalpha/testalpha.vcproj | 741 - VisualCE/testtimer/testtimer.vcp | 858 - VisualCE/testtimer/testtimer.vcproj | 395 - VisualCE/testwin/testwin.vcp | 660 - VisualCE/testwin/testwin.vcproj | 733 - 14 files changed, 50439 deletions(-) delete mode 100644 VisualCE/SDL.sln delete mode 100644 VisualCE/SDL.vcw delete mode 100644 VisualCE/SDL/SDL.vcp delete mode 100644 VisualCE/SDL/SDL.vcproj delete mode 100644 VisualCE/SDLMain/SDLmain.vcp delete mode 100644 VisualCE/SDLMain/SDLmain.vcproj delete mode 100644 VisualCE/loopwave/loopwave.vcp delete mode 100644 VisualCE/loopwave/loopwave.vcproj delete mode 100644 VisualCE/testalpha/testalpha.vcp delete mode 100644 VisualCE/testalpha/testalpha.vcproj delete mode 100644 VisualCE/testtimer/testtimer.vcp delete mode 100644 VisualCE/testtimer/testtimer.vcproj delete mode 100644 VisualCE/testwin/testwin.vcp delete mode 100644 VisualCE/testwin/testwin.vcproj diff --git a/VisualCE/SDL.sln b/VisualCE/SDL.sln deleted file mode 100644 index 8e17b70a8..000000000 --- a/VisualCE/SDL.sln +++ /dev/null @@ -1,149 +0,0 @@ - -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/VisualCE/SDL.vcw b/VisualCE/SDL.vcw deleted file mode 100644 index 8393d2f9b..000000000 --- a/VisualCE/SDL.vcw +++ /dev/null @@ -1,116 +0,0 @@ -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/VisualCE/SDL/SDL.vcp b/VisualCE/SDL/SDL.vcp deleted file mode 100644 index 231ff812e..000000000 --- a/VisualCE/SDL/SDL.vcp +++ /dev/null @@ -1,41493 +0,0 @@ -# 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_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_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_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_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_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_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_sysaudio.h"\ - - -!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" - -DEP_CPP_SDL_MI=\ - "..\..\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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_sysaudio.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=..\..\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/VisualCE/SDL/SDL.vcproj b/VisualCE/SDL/SDL.vcproj deleted file mode 100644 index de2df60ab..000000000 --- a/VisualCE/SDL/SDL.vcproj +++ /dev/null @@ -1,1442 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/VisualCE/SDLMain/SDLmain.vcp b/VisualCE/SDLMain/SDLmain.vcp deleted file mode 100644 index b5bc168b2..000000000 --- a/VisualCE/SDLMain/SDLmain.vcp +++ /dev/null @@ -1,1649 +0,0 @@ -# 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/VisualCE/SDLMain/SDLmain.vcproj b/VisualCE/SDLMain/SDLmain.vcproj deleted file mode 100644 index 4876aae67..000000000 --- a/VisualCE/SDLMain/SDLmain.vcproj +++ /dev/null @@ -1,568 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/VisualCE/loopwave/loopwave.vcp b/VisualCE/loopwave/loopwave.vcp deleted file mode 100644 index cda7cdc86..000000000 --- a/VisualCE/loopwave/loopwave.vcp +++ /dev/null @@ -1,554 +0,0 @@ -# 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/VisualCE/loopwave/loopwave.vcproj b/VisualCE/loopwave/loopwave.vcproj deleted file mode 100644 index c9cf20309..000000000 --- a/VisualCE/loopwave/loopwave.vcproj +++ /dev/null @@ -1,395 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/VisualCE/testalpha/testalpha.vcp b/VisualCE/testalpha/testalpha.vcp deleted file mode 100644 index 0bf4481d8..000000000 --- a/VisualCE/testalpha/testalpha.vcp +++ /dev/null @@ -1,686 +0,0 @@ -# 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/VisualCE/testalpha/testalpha.vcproj b/VisualCE/testalpha/testalpha.vcproj deleted file mode 100644 index 3db0bd3a2..000000000 --- a/VisualCE/testalpha/testalpha.vcproj +++ /dev/null @@ -1,741 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/VisualCE/testtimer/testtimer.vcp b/VisualCE/testtimer/testtimer.vcp deleted file mode 100644 index 2503dfb5b..000000000 --- a/VisualCE/testtimer/testtimer.vcp +++ /dev/null @@ -1,858 +0,0 @@ -# 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/VisualCE/testtimer/testtimer.vcproj b/VisualCE/testtimer/testtimer.vcproj deleted file mode 100644 index cce6a01ca..000000000 --- a/VisualCE/testtimer/testtimer.vcproj +++ /dev/null @@ -1,395 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/VisualCE/testwin/testwin.vcp b/VisualCE/testwin/testwin.vcp deleted file mode 100644 index 11c8a2707..000000000 --- a/VisualCE/testwin/testwin.vcp +++ /dev/null @@ -1,660 +0,0 @@ -# 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/VisualCE/testwin/testwin.vcproj b/VisualCE/testwin/testwin.vcproj deleted file mode 100644 index 8dac65eba..000000000 --- a/VisualCE/testwin/testwin.vcproj +++ /dev/null @@ -1,733 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - From 55419dbf19f6ad181c75c4b89f6617c93cf3ed93 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 24 Jul 2011 03:37:13 -0700 Subject: [PATCH 28/72] Removed /dev/dsp DMA audio target. --- Makefile.pandora | 2 +- Makefile.wiz | 2 +- configure.in | 1 - src/audio/SDL_audio.c | 2 - src/audio/bsd/SDL_bsdaudio.c | 2 +- src/audio/dma/SDL_dmaaudio.c | 534 ---------------------------------- src/audio/dma/SDL_dmaaudio.h | 62 ---- src/audio/paudio/SDL_paudio.c | 2 +- 8 files changed, 4 insertions(+), 603 deletions(-) delete mode 100644 src/audio/dma/SDL_dmaaudio.c delete mode 100644 src/audio/dma/SDL_dmaaudio.h diff --git a/Makefile.pandora b/Makefile.pandora index 60ac8d563..de15c846b 100644 --- a/Makefile.pandora +++ b/Makefile.pandora @@ -15,7 +15,7 @@ TARGET = libSDL.a SOURCES = ./src/*.c ./src/audio/*.c ./src/cpuinfo/*.c ./src/events/*.c \ ./src/file/*.c ./src/stdlib/*.c ./src/thread/*.c ./src/timer/*.c ./src/video/*.c \ ./src/joystick/*.c ./src/haptic/*.c ./src/power/*.c ./src/video/dummy/*.c ./src/audio/disk/*.c \ - ./src/audio/dummy/*.c ./src/loadso/dlopen/*.c ./src/audio/dsp/*.c ./src/audio/dma/*.c \ + ./src/audio/dummy/*.c ./src/loadso/dlopen/*.c ./src/audio/dsp/*.c \ ./src/thread/pthread/SDL_systhread.c ./src/thread/pthread/SDL_syssem.c \ ./src/thread/pthread/SDL_sysmutex.c ./src/thread/pthread/SDL_syscond.c \ ./src/joystick/linux/*.c ./src/haptic/linux/*.c ./src/timer/unix/*.c \ diff --git a/Makefile.wiz b/Makefile.wiz index 53aea7306..82619f076 100644 --- a/Makefile.wiz +++ b/Makefile.wiz @@ -15,7 +15,7 @@ TARGET_SHARED = libSDL13.so SOURCES = ./src/*.c ./src/audio/*.c ./src/cdrom/*.c ./src/cpuinfo/*.c ./src/events/*.c \ ./src/file/*.c ./src/stdlib/*.c ./src/thread/*.c ./src/timer/*.c ./src/video/*.c \ ./src/joystick/*.c ./src/haptic/*.c ./src/video/dummy/*.c ./src/audio/disk/*.c \ - ./src/audio/dummy/*.c ./src/loadso/dlopen/*.c ./src/audio/dsp/*.c ./src/audio/dma/*.c \ + ./src/audio/dummy/*.c ./src/loadso/dlopen/*.c ./src/audio/dsp/*.c \ ./src/thread/pthread/SDL_systhread.c ./src/thread/pthread/SDL_syssem.c \ ./src/thread/pthread/SDL_sysmutex.c ./src/thread/pthread/SDL_syscond.c \ ./src/joystick/linux/*.c ./src/haptic/linux/*.c ./src/timer/unix/*.c ./src/cdrom/dummy/*.c \ diff --git a/configure.in b/configure.in index 37a59233a..8155e01db 100644 --- a/configure.in +++ b/configure.in @@ -682,7 +682,6 @@ AC_HELP_STRING([--enable-oss], [support the OSS audio API [[default=yes]]]), if test x$have_oss = xyes; then AC_DEFINE(SDL_AUDIO_DRIVER_OSS, 1, [ ]) SOURCES="$SOURCES $srcdir/src/audio/dsp/*.c" - SOURCES="$SOURCES $srcdir/src/audio/dma/*.c" have_audio=yes # We may need to link with ossaudio emulation library diff --git a/src/audio/SDL_audio.c b/src/audio/SDL_audio.c index f83a7d271..1aaa756c2 100644 --- a/src/audio/SDL_audio.c +++ b/src/audio/SDL_audio.c @@ -45,7 +45,6 @@ static SDL_AudioDevice *open_devices[16]; */ extern AudioBootStrap BSD_AUDIO_bootstrap; extern AudioBootStrap DSP_bootstrap; -extern AudioBootStrap DMA_bootstrap; extern AudioBootStrap ALSA_bootstrap; extern AudioBootStrap PULSEAUDIO_bootstrap; extern AudioBootStrap QSAAUDIO_bootstrap; @@ -82,7 +81,6 @@ static const AudioBootStrap *const bootstrap[] = { #endif #if SDL_AUDIO_DRIVER_OSS &DSP_bootstrap, - &DMA_bootstrap, #endif #if SDL_AUDIO_DRIVER_QSA &QSAAUDIO_bootstrap, diff --git a/src/audio/bsd/SDL_bsdaudio.c b/src/audio/bsd/SDL_bsdaudio.c index 33590c71a..5f39935ea 100644 --- a/src/audio/bsd/SDL_bsdaudio.c +++ b/src/audio/bsd/SDL_bsdaudio.c @@ -67,7 +67,7 @@ #define OPEN_FLAGS_INPUT (O_RDONLY|O_NONBLOCK) #endif -/* !!! FIXME: so much cut and paste with dsp/dma drivers... */ +/* !!! FIXME: so much cut and paste with dsp target... */ static char **outputDevices = NULL; static int outputDeviceCount = 0; static char **inputDevices = NULL; diff --git a/src/audio/dma/SDL_dmaaudio.c b/src/audio/dma/SDL_dmaaudio.c deleted file mode 100644 index 36667b396..000000000 --- a/src/audio/dma/SDL_dmaaudio.c +++ /dev/null @@ -1,534 +0,0 @@ -/* - Simple DirectMedia Layer - Copyright (C) 1997-2011 Sam Lantinga - - This software is provided 'as-is', without any express or implied - warranty. In no event will the authors be held liable for any damages - arising from the use of this software. - - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. -*/ -#include "SDL_config.h" - -/* !!! FIXME: merge this driver with "dsp". */ - -/* Allow access to a raw mixing buffer */ - -#include -#include /* For strerror() */ -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#if SDL_AUDIO_DRIVER_OSS_SOUNDCARD_H -/* This is installed on some systems */ -#include -#else -/* This is recommended by OSS */ -#include -#endif - -#ifndef MAP_FAILED -#define MAP_FAILED ((Uint8 *)-1) -#endif - -#include "SDL_timer.h" -#include "SDL_audio.h" -#include "../SDL_audio_c.h" -#include "../SDL_audiodev_c.h" -#include "SDL_dmaaudio.h" - -/* The tag name used by DMA audio */ -#define DMA_DRIVER_NAME "dma" - -/* Open the audio device for playback, and don't block if busy */ -#define OPEN_FLAGS_INPUT (O_RDWR|O_NONBLOCK) -#define OPEN_FLAGS_OUTPUT (O_RDWR|O_NONBLOCK) - -static char **outputDevices = NULL; -static int outputDeviceCount = 0; -static char **inputDevices = NULL; -static int inputDeviceCount = 0; - -static int -test_for_mmap(int fd) -{ - int caps = 0; - struct audio_buf_info info; - if ((ioctl(fd, SNDCTL_DSP_GETCAPS, &caps) == 0) && - (caps & DSP_CAP_TRIGGER) && (caps & DSP_CAP_MMAP) && - (ioctl(fd, SNDCTL_DSP_GETOSPACE, &info) == 0)) { - size_t len = info.fragstotal * info.fragsize; - Uint8 *buf = (Uint8 *) mmap(NULL, len, PROT_WRITE, MAP_SHARED, fd, 0); - if (buf != MAP_FAILED) { - munmap(buf, len); - return 1; - } - } - return 0; -} - - -static inline void -free_device_list(char ***devs, int *count) -{ - SDL_FreeUnixAudioDevices(devs, count); -} - -static inline void -build_device_list(int iscapture, char ***devs, int *count) -{ - const int flags = ((iscapture) ? OPEN_FLAGS_INPUT : OPEN_FLAGS_OUTPUT); - free_device_list(devs, count); - SDL_EnumUnixAudioDevices(flags, 0, test_for_mmap, devs, count); -} - -static inline void -build_device_lists(void) -{ - build_device_list(0, &outputDevices, &outputDeviceCount); - build_device_list(1, &inputDevices, &inputDeviceCount); -} - - -static inline void -free_device_lists(void) -{ - free_device_list(&outputDevices, &outputDeviceCount); - free_device_list(&inputDevices, &inputDeviceCount); -} - - -static void -DMA_Deinitialize(void) -{ - free_device_lists(); -} - -static int -DMA_DetectDevices(int iscapture) -{ - if (iscapture) { - build_device_list(1, &inputDevices, &inputDeviceCount); - return inputDeviceCount; - } else { - build_device_list(0, &outputDevices, &outputDeviceCount); - return outputDeviceCount; - } - - return 0; /* shouldn't ever hit this. */ -} - - -static const char * -DMA_GetDeviceName(int index, int iscapture) -{ - if ((iscapture) && (index < inputDeviceCount)) { - return inputDevices[index]; - } else if ((!iscapture) && (index < outputDeviceCount)) { - return outputDevices[index]; - } - - SDL_SetError("No such device"); - return NULL; -} - - -static int -DMA_ReopenAudio(_THIS, const char *audiodev, int format, int stereo) -{ - int frag_spec; - int value; - - /* Close and then reopen the audio device */ - close(audio_fd); - audio_fd = open(audiodev, O_RDWR, 0); - if (audio_fd < 0) { - SDL_SetError("Couldn't open %s: %s", audiodev, strerror(errno)); - return (-1); - } - - /* Calculate the final parameters for this audio specification */ - SDL_CalculateAudioSpec(&this->spec); - - /* Determine the power of two of the fragment size */ - for (frag_spec = 0; (0x01 << frag_spec) < this->spec.size; ++frag_spec); - if ((0x01 << frag_spec) != this->spec.size) { - SDL_SetError("Fragment size must be a power of two"); - return (-1); - } - - /* Set the audio buffering parameters */ - if (ioctl(audio_fd, SNDCTL_DSP_SETFRAGMENT, &frag_spec) < 0) { - SDL_SetError("Couldn't set audio fragment spec"); - return (-1); - } - - /* Set the audio format */ - value = format; - if ((ioctl(audio_fd, SNDCTL_DSP_SETFMT, &value) < 0) || (value != format)) { - SDL_SetError("Couldn't set audio format"); - return (-1); - } - - /* Set mono or stereo audio */ - value = (this->spec.channels > 1); - if ((ioctl(audio_fd, SNDCTL_DSP_STEREO, &stereo) < 0) || - (value != stereo)) { - SDL_SetError("Couldn't set audio channels"); - return (-1); - } - - /* Set the DSP frequency */ - value = this->spec.freq; - if (ioctl(audio_fd, SNDCTL_DSP_SPEED, &value) < 0) { - SDL_SetError("Couldn't set audio frequency"); - return (-1); - } - this->spec.freq = value; - - /* We successfully re-opened the audio */ - return (0); -} - - -static void -DMA_CloseDevice(_THIS) -{ - if (this->hidden != NULL) { - if (dma_buf != NULL) { - munmap(dma_buf, dma_len); - dma_buf = NULL; - } - if (audio_fd >= 0) { - close(audio_fd); - audio_fd = -1; - } - SDL_free(this->hidden); - this->hidden = NULL; - } -} - - -static int -DMA_OpenDevice(_THIS, const char *devname, int iscapture) -{ - const int flags = ((iscapture) ? OPEN_FLAGS_INPUT : OPEN_FLAGS_OUTPUT); - int format; - int stereo; - int value; - SDL_AudioFormat test_format; - struct audio_buf_info info; - - /* We don't care what the devname is...we'll try to open anything. */ - /* ...but default to first name in the list... */ - if (devname == NULL) { - if (((iscapture) && (inputDeviceCount == 0)) || - ((!iscapture) && (outputDeviceCount == 0))) { - SDL_SetError("No such audio device"); - return 0; - } - devname = ((iscapture) ? inputDevices[0] : outputDevices[0]); - } - - /* Initialize all variables that we clean on shutdown */ - this->hidden = (struct SDL_PrivateAudioData *) - SDL_malloc((sizeof *this->hidden)); - if (this->hidden == NULL) { - SDL_OutOfMemory(); - return 0; - } - SDL_memset(this->hidden, 0, (sizeof *this->hidden)); - - /* Open the audio device */ - audio_fd = open(devname, flags, 0); - if (audio_fd < 0) { - DMA_CloseDevice(this); - SDL_SetError("Couldn't open %s: %s", devname, strerror(errno)); - return 0; - } - dma_buf = NULL; - ioctl(audio_fd, SNDCTL_DSP_RESET, 0); - - /* Get a list of supported hardware formats */ - if (ioctl(audio_fd, SNDCTL_DSP_GETFMTS, &value) < 0) { - DMA_CloseDevice(this); - SDL_SetError("Couldn't get audio format list"); - return 0; - } - - /* Try for a closest match on audio format */ - format = 0; - for (test_format = SDL_FirstAudioFormat(this->spec.format); - !format && test_format;) { -#ifdef DEBUG_AUDIO - fprintf(stderr, "Trying format 0x%4.4x\n", test_format); -#endif - switch (test_format) { - case AUDIO_U8: - if (value & AFMT_U8) { - format = AFMT_U8; - } - break; - case AUDIO_S8: - if (value & AFMT_S8) { - format = AFMT_S8; - } - break; - case AUDIO_S16LSB: - if (value & AFMT_S16_LE) { - format = AFMT_S16_LE; - } - break; - case AUDIO_S16MSB: - if (value & AFMT_S16_BE) { - format = AFMT_S16_BE; - } - break; - case AUDIO_U16LSB: - if (value & AFMT_U16_LE) { - format = AFMT_U16_LE; - } - break; - case AUDIO_U16MSB: - if (value & AFMT_U16_BE) { - format = AFMT_U16_BE; - } - break; - default: - format = 0; - break; - } - if (!format) { - test_format = SDL_NextAudioFormat(); - } - } - if (format == 0) { - DMA_CloseDevice(this); - SDL_SetError("Couldn't find any hardware audio formats"); - return 0; - } - this->spec.format = test_format; - - /* Set the audio format */ - value = format; - if ((ioctl(audio_fd, SNDCTL_DSP_SETFMT, &value) < 0) || (value != format)) { - DMA_CloseDevice(this); - SDL_SetError("Couldn't set audio format"); - return 0; - } - - /* Set mono or stereo audio (currently only two channels supported) */ - stereo = (this->spec.channels > 1); - ioctl(audio_fd, SNDCTL_DSP_STEREO, &stereo); - if (stereo) { - this->spec.channels = 2; - } else { - this->spec.channels = 1; - } - - /* Because some drivers don't allow setting the buffer size - after setting the format, we must re-open the audio device - once we know what format and channels are supported - */ - if (DMA_ReopenAudio(this, devname, format, stereo) < 0) { - DMA_CloseDevice(this); - /* Error is set by DMA_ReopenAudio() */ - return 0; - } - - /* Memory map the audio buffer */ - if (ioctl(audio_fd, SNDCTL_DSP_GETOSPACE, &info) < 0) { - DMA_CloseDevice(this); - SDL_SetError("Couldn't get OSPACE parameters"); - return 0; - } - this->spec.size = info.fragsize; - this->spec.samples = this->spec.size / ((this->spec.format & 0xFF) / 8); - this->spec.samples /= this->spec.channels; - num_buffers = info.fragstotal; - dma_len = num_buffers * this->spec.size; - dma_buf = (Uint8 *) mmap(NULL, dma_len, PROT_WRITE, MAP_SHARED, - audio_fd, 0); - if (dma_buf == MAP_FAILED) { - DMA_CloseDevice(this); - SDL_SetError("DMA memory map failed"); - dma_buf = NULL; - return 0; - } - SDL_memset(dma_buf, this->spec.silence, dma_len); - - /* Check to see if we need to use select() workaround */ - { - char *workaround; - workaround = SDL_getenv("SDL_DSP_NOSELECT"); - if (workaround) { - frame_ticks = - (float) (this->spec.samples * 1000) / this->spec.freq; - next_frame = SDL_GetTicks() + frame_ticks; - } - } - - /* Trigger audio playback */ - value = 0; - ioctl(audio_fd, SNDCTL_DSP_SETTRIGGER, &value); - value = PCM_ENABLE_OUTPUT; - if (ioctl(audio_fd, SNDCTL_DSP_SETTRIGGER, &value) < 0) { - DMA_CloseDevice(this); - SDL_SetError("Couldn't trigger audio output"); - return 0; - } - - /* Get the parent process id (we're the parent of the audio thread) */ - parent = getpid(); - - /* We're ready to rock and roll. :-) */ - return 1; -} - - -/* This function waits until it is possible to write a full sound buffer */ -static void -DMA_WaitDevice(_THIS) -{ - fd_set fdset; - - /* Check to see if the thread-parent process is still alive */ - { - static int cnt = 0; - /* Note that this only works with thread implementations - that use a different process id for each thread. - */ - if (parent && (((++cnt) % 10) == 0)) { /* Check every 10 loops */ - if (kill(parent, 0) < 0 && errno == ESRCH) { - this->enabled = 0; - } - } - } - - /* See if we need to use timed audio synchronization */ - if (frame_ticks) { - /* Use timer for general audio synchronization */ - Sint32 ticks; - - ticks = ((Sint32) (next_frame - SDL_GetTicks())) - FUDGE_TICKS; - if (ticks > 0) { - SDL_Delay(ticks); - } - } else { - /* Use select() for audio synchronization */ - struct timeval timeout; - FD_ZERO(&fdset); - FD_SET(audio_fd, &fdset); - timeout.tv_sec = 10; - timeout.tv_usec = 0; -#ifdef DEBUG_AUDIO - fprintf(stderr, "Waiting for audio to get ready\n"); -#endif - if (select(audio_fd + 1, NULL, &fdset, NULL, &timeout) <= 0) { - const char *message = -#ifdef AUDIO_OSPACE_HACK - "Audio timeout - buggy audio driver? (trying ospace)"; -#else - "Audio timeout - buggy audio driver? (disabled)"; -#endif - /* In general we should never print to the screen, - but in this case we have no other way of letting - the user know what happened. - */ - fprintf(stderr, "SDL: %s\n", message); -#ifdef AUDIO_OSPACE_HACK - /* We may be able to use GET_OSPACE trick */ - frame_ticks = (float) (this->spec.samples * 1000) / - this->spec.freq; - next_frame = SDL_GetTicks() + frame_ticks; -#else - this->enabled = 0; - /* Don't try to close - may hang */ - audio_fd = -1; -#ifdef DEBUG_AUDIO - fprintf(stderr, "Done disabling audio\n"); -#endif -#endif /* AUDIO_OSPACE_HACK */ - } -#ifdef DEBUG_AUDIO - fprintf(stderr, "Ready!\n"); -#endif - } -} - -static void -DMA_PlayDevice(_THIS) -{ - /* If timer synchronization is enabled, set the next write frame */ - if (frame_ticks) { - next_frame += frame_ticks; - } - return; -} - -static Uint8 * -DMA_GetDeviceBuf(_THIS) -{ - count_info info; - int playing; - int filling; - - /* Get number of blocks, looping if we're not using select() */ - do { - if (ioctl(audio_fd, SNDCTL_DSP_GETOPTR, &info) < 0) { - /* Uh oh... */ - this->enabled = 0; - return (NULL); - } - } while (frame_ticks && (info.blocks < 1)); -#ifdef DEBUG_AUDIO - if (info.blocks > 1) { - printf("Warning: audio underflow (%d frags)\n", info.blocks - 1); - } -#endif - playing = info.ptr / this->spec.size; - filling = (playing + 1) % num_buffers; - return (dma_buf + (filling * this->spec.size)); -} - - -static int -DMA_Init(SDL_AudioDriverImpl * impl) -{ - /* Set the function pointers */ - impl->DetectDevices = DMA_DetectDevices; - impl->GetDeviceName = DMA_GetDeviceName; - impl->OpenDevice = DMA_OpenDevice; - impl->WaitDevice = DMA_WaitDevice; - impl->PlayDevice = DMA_PlayDevice; - impl->GetDeviceBuf = DMA_GetDeviceBuf; - impl->CloseDevice = DMA_CloseDevice; - impl->Deinitialize = DMA_Deinitialize; - - build_device_lists(); - - return 1; /* this audio target is available. */ -} - -AudioBootStrap DMA_bootstrap = { - DMA_DRIVER_NAME, "OSS /dev/dsp DMA audio", DMA_Init, 0 -}; - -/* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/audio/dma/SDL_dmaaudio.h b/src/audio/dma/SDL_dmaaudio.h deleted file mode 100644 index 6485d8cda..000000000 --- a/src/audio/dma/SDL_dmaaudio.h +++ /dev/null @@ -1,62 +0,0 @@ -/* - Simple DirectMedia Layer - Copyright (C) 1997-2011 Sam Lantinga - - This software is provided 'as-is', without any express or implied - warranty. In no event will the authors be held liable for any damages - arising from the use of this software. - - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. -*/ -#include "SDL_config.h" - -#ifndef _SDL_dmaaudio_h -#define _SDL_dmaaudio_h - -#include "../SDL_sysaudio.h" - -/* Hidden "this" pointer for the audio functions */ -#define _THIS SDL_AudioDevice *this - -struct SDL_PrivateAudioData -{ - /* The file descriptor for the audio device */ - int audio_fd; - - /* The parent process id, to detect when application quits */ - pid_t parent; - - /* Raw mixing buffer */ - Uint8 *dma_buf; - int dma_len; - int num_buffers; - - /* Support for audio timing using a timer, in addition to select() */ - float frame_ticks; - float next_frame; -}; -#define FUDGE_TICKS 10 /* The scheduler overhead ticks per frame */ - -/* Old variable names */ -/* !!! FIXME: remove these. */ -#define audio_fd (this->hidden->audio_fd) -#define parent (this->hidden->parent) -#define dma_buf (this->hidden->dma_buf) -#define dma_len (this->hidden->dma_len) -#define num_buffers (this->hidden->num_buffers) -#define frame_ticks (this->hidden->frame_ticks) -#define next_frame (this->hidden->next_frame) - -#endif /* _SDL_dmaaudio_h */ - -/* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/audio/paudio/SDL_paudio.c b/src/audio/paudio/SDL_paudio.c index 6137ddd15..b53fcbf74 100644 --- a/src/audio/paudio/SDL_paudio.c +++ b/src/audio/paudio/SDL_paudio.c @@ -429,7 +429,7 @@ PAUDIO_OpenDevice(_THIS, const char *devname, int iscapture) /* * The AIX paud device init can't modify the values of the audio_init * structure that we pass to it. So we don't need any recalculation - * of this stuff and no reinit call as in linux dsp and dma code. + * of this stuff and no reinit call as in linux dsp code. * * /dev/paud supports all of the encoding formats, so we don't need * to do anything like reopening the device, either. From ac93bd6e55715df6e5075a90a128ff537350c104 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 4 Aug 2011 01:26:12 -0400 Subject: [PATCH 29/72] Reworked Windows DirectSound code. Now supports multiple devices, and uses DirectSound 8 instead of 5. Changed name to "directsound" and renamed source directory. --HG-- rename : src/audio/windx5/SDL_dx5audio.c => src/audio/directsound/SDL_directsound.c rename : src/audio/windx5/SDL_dx5audio.h => src/audio/directsound/SDL_directsound.h rename : src/audio/windx5/directx.h => src/audio/directsound/directx.h --- VisualC/SDL/SDL_VS2005.vcproj | 6 +- VisualC/SDL/SDL_VS2008.vcproj | 6 +- VisualC/SDL/SDL_VS2010.vcxproj | 6 +- configure.in | 4 +- .../SDL_directsound.c} | 220 +++++++++++++----- .../SDL_directsound.h} | 6 +- src/audio/{windx5 => directsound}/directx.h | 4 +- 7 files changed, 179 insertions(+), 73 deletions(-) rename src/audio/{windx5/SDL_dx5audio.c => directsound/SDL_directsound.c} (73%) rename src/audio/{windx5/SDL_dx5audio.h => directsound/SDL_directsound.h} (93%) rename src/audio/{windx5 => directsound}/directx.h (94%) diff --git a/VisualC/SDL/SDL_VS2005.vcproj b/VisualC/SDL/SDL_VS2005.vcproj index 5a3223c13..02fe16db2 100644 --- a/VisualC/SDL/SDL_VS2005.vcproj +++ b/VisualC/SDL/SDL_VS2005.vcproj @@ -580,7 +580,7 @@ > - + @@ -279,7 +279,7 @@ - + @@ -380,7 +380,7 @@ - + diff --git a/configure.in b/configure.in index 8155e01db..4bae56ace 100644 --- a/configure.in +++ b/configure.in @@ -2061,7 +2061,7 @@ AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[defau SOURCES="$SOURCES $srcdir/src/audio/windib/*.c" if test x$have_dsound = xyes; then AC_DEFINE(SDL_AUDIO_DRIVER_DSOUND, 1, [ ]) - SOURCES="$SOURCES $srcdir/src/audio/windx5/*.c" + SOURCES="$SOURCES $srcdir/src/audio/directsound/*.c" fi have_audio=yes fi @@ -2148,7 +2148,7 @@ AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[defau SOURCES="$SOURCES $srcdir/src/audio/windib/*.c" if test x$have_dsound = xyes; then AC_DEFINE(SDL_AUDIO_DRIVER_DSOUND, 1, [ ]) - SOURCES="$SOURCES $srcdir/src/audio/windx5/*.c" + SOURCES="$SOURCES $srcdir/src/audio/directsound/*.c" fi have_audio=yes fi diff --git a/src/audio/windx5/SDL_dx5audio.c b/src/audio/directsound/SDL_directsound.c similarity index 73% rename from src/audio/windx5/SDL_dx5audio.c rename to src/audio/directsound/SDL_directsound.c index 94e8554f7..ac6fe15f3 100644 --- a/src/audio/windx5/SDL_dx5audio.c +++ b/src/audio/directsound/SDL_directsound.c @@ -26,26 +26,23 @@ #include "SDL_loadso.h" #include "SDL_audio.h" #include "../SDL_audio_c.h" -#include "SDL_dx5audio.h" - -/* !!! FIXME: move this somewhere that other drivers can use it... */ -#if defined(_WIN32_WCE) -#define WINDOWS_OS_NAME "Windows CE/PocketPC" -#elif defined(WIN64) -#define WINDOWS_OS_NAME "Win64" -#else -#define WINDOWS_OS_NAME "Win32" -#endif +#include "SDL_directsound.h" /* DirectX function pointers for audio */ static void* DSoundDLL = NULL; -static HRESULT(WINAPI * DSoundCreate) (LPGUID, LPDIRECTSOUND *, LPUNKNOWN) = - NULL; +typedef HRESULT(WINAPI*fnDirectSoundCreate8)(LPGUID,LPDIRECTSOUND*,LPUNKNOWN); +typedef HRESULT(WINAPI*fnDirectSoundEnumerateW)(LPDSENUMCALLBACKW, LPVOID); +typedef HRESULT(WINAPI*fnDirectSoundCaptureEnumerateW)(LPDSENUMCALLBACKW,LPVOID); +static fnDirectSoundCreate8 pDirectSoundCreate8 = NULL; +static fnDirectSoundEnumerateW pDirectSoundEnumerateW = NULL; +static fnDirectSoundCaptureEnumerateW pDirectSoundCaptureEnumerateW = NULL; static void DSOUND_Unload(void) { - DSoundCreate = NULL; + pDirectSoundCreate8 = NULL; + pDirectSoundEnumerateW = NULL; + pDirectSoundCaptureEnumerateW = NULL; if (DSoundDLL != NULL) { SDL_UnloadObject(DSoundDLL); @@ -65,18 +62,19 @@ DSOUND_Load(void) if (DSoundDLL == NULL) { SDL_SetError("DirectSound: failed to load DSOUND.DLL"); } else { - /* Now make sure we have DirectX 5 or better... */ - /* (DirectSoundCaptureCreate was added in DX5) */ - if (!SDL_LoadFunction(DSoundDLL, "DirectSoundCaptureCreate")) { - SDL_SetError("DirectSound: System doesn't appear to have DX5."); - } else { - DSoundCreate = SDL_LoadFunction(DSoundDLL, "DirectSoundCreate"); + /* Now make sure we have DirectX 8 or better... */ + #define DSOUNDLOAD(f) { \ + p##f = (fn##f) SDL_LoadFunction(DSoundDLL, #f); \ + if (!p##f) loaded = 0; \ } + loaded = 1; /* will reset if necessary. */ + DSOUNDLOAD(DirectSoundCreate8); + DSOUNDLOAD(DirectSoundEnumerateW); + DSOUNDLOAD(DirectSoundCaptureEnumerateW); + #undef DSOUNDLOAD - if (!DSoundCreate) { - SDL_SetError("DirectSound: Failed to find DirectSoundCreate"); - } else { - loaded = 1; + if (!loaded) { + SDL_SetError("DirectSound: System doesn't appear to have DX8."); } } @@ -87,6 +85,13 @@ DSOUND_Load(void) return loaded; } +static __inline__ char * +utf16_to_utf8(const WCHAR *S) +{ + /* !!! FIXME: this should be UTF-16, not UCS-2! */ + return SDL_iconv_string("UTF-8", "UCS-2", (char *)(S), + (SDL_wcslen(S)+1)*sizeof(WCHAR)); +} static void SetDSerror(const char *function, int code) @@ -97,7 +102,7 @@ SetDSerror(const char *function, int code) errbuf[0] = 0; switch (code) { case E_NOINTERFACE: - error = "Unsupported interface -- Is DirectX 5.0 or later installed?"; + error = "Unsupported interface -- Is DirectX 8.0 or later installed?"; break; case DSERR_ALLOCATED: error = "Audio device in use"; @@ -142,23 +147,100 @@ SetDSerror(const char *function, int code) return; } -/* DirectSound needs to be associated with a window */ -static HWND mainwin = NULL; -/* */ -void -DSOUND_SoundFocus(HWND hwnd) -{ - /* !!! FIXME: probably broken with multi-window support in SDL 1.3 ... */ - mainwin = hwnd; -} +/* !!! FIXME: this is a cut and paste of SDL_FreeUnixAudioDevices(), + * !!! FIXME: which is more proof this needs to be managed in SDL_audio.c + * !!! FIXME: and not in drivers. + */ static void -DSOUND_ThreadInit(_THIS) +FreeDSoundAudioDevices(char ***devices, int *devCount) { - SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_HIGHEST); + int i = *devCount; + if ((i > 0) && (*devices != NULL)) { + while (i--) { + SDL_free((*devices)[i]); + } + } + + if (*devices != NULL) { + SDL_free(*devices); + } + + *devices = NULL; + *devCount = 0; } + +typedef struct FindAllDevsData +{ + const char **devs; + unsigned int devcount; +} FindAllDevsData; + +static BOOL CALLBACK +FindAllDevs(LPGUID guid, LPCWSTR desc, LPCWSTR module, LPVOID _data) +{ + FindAllDevsData *data = (FindAllDevsData *) _data; + void *ptr; + char *name; + + if (guid == NULL) + return TRUE; /* skip default device, go to the next one. */ + + ptr = SDL_realloc(data->devs, ((data->devcount) + 1) * sizeof(char *)); + if (ptr == NULL) + return TRUE; /* oh well. */ + + data->devs = (const char **) ptr; + name = utf16_to_utf8(desc); + if (name != NULL) + data->devs[data->devcount++] = name; + + return TRUE; /* keep enumerating. */ +} + +static char **outputDevices = NULL; +static int outputDeviceCount = 0; +static char **inputDevices = NULL; +static int inputDeviceCount = 0; + +static int +DSOUND_DetectDevices(int iscapture) +{ + FindAllDevsData data; + data.devs = NULL; + data.devcount = 0; + + if (iscapture) { + FreeDSoundAudioDevices(&inputDevices, &inputDeviceCount); + pDirectSoundCaptureEnumerateW(FindAllDevs, &devs); + inputDevices = data.devs; + inputDeviceCount = data.devcount; + } else { + FreeDSoundAudioDevices(&outputDevices, &outputDeviceCount); + pDirectSoundEnumerateW(FindAllDevs, &devs); + outputDevices = data.devs; + outputDeviceCount = data.devcount; + } + + return data.devcount; +} + +static const char * +DSOUND_GetDeviceName(int index, int iscapture) +{ + if ((iscapture) && (index < inputDeviceCount)) { + return inputDevices[index]; + } else if ((!iscapture) && (index < outputDeviceCount)) { + return outputDevices[index]; + } + + SDL_SetError("No such device"); + return NULL; +} + + static void DSOUND_WaitDevice(_THIS) { @@ -393,6 +475,30 @@ CreateSecondary(_THIS, HWND focus, WAVEFORMATEX * wavefmt) return (numchunks); } +typedef struct FindDevGUIDData +{ + const char *devname; + GUID guid; + int found; +} FindDevGUIDData; + +static BOOL CALLBACK +FindDevGUID(LPGUID guid, LPCWSTR desc, LPCWSTR module, LPVOID _data) +{ + if (guid != NULL) { /* skip the default device. */ + FindDevGUIDData *data = (FindDevGUIDData *) _data; + char *str = utf16_to_utf8(desc); + const int match = (SDL_strcmp(str, data->devname) == 0); + SDL_free(str); + if (match) { + data->found = 1; + SDL_memcpy(&data->guid, guid, sizeof (data->guid)); + return FALSE; /* found it! stop enumerating. */ + } + } + return TRUE; /* keep enumerating. */ +} + static int DSOUND_OpenDevice(_THIS, const char *devname, int iscapture) { @@ -400,9 +506,23 @@ DSOUND_OpenDevice(_THIS, const char *devname, int iscapture) WAVEFORMATEX waveformat; int valid_format = 0; SDL_AudioFormat test_format = SDL_FirstAudioFormat(this->spec.format); + FindDevGUIDData devguid; + LPGUID guid = NULL; - /* !!! FIXME: handle devname */ - /* !!! FIXME: handle iscapture */ + if (devname != NULL) { + devguid.found = 0; + devguid.devname = devname; + if (iscapture) + pDirectSoundCaptureEnumerateW(FindDevGUID, &devguid); + else + pDirectSoundEnumerateW(FindDevGUID, &devguid); + + if (!devguid.found) { + SDL_SetError("DirectSound: Requested device not found"); + return 0; + } + guid = &devguid.guid; + } /* Initialize all variables that we clean on shutdown */ this->hidden = (struct SDL_PrivateAudioData *) @@ -445,7 +565,7 @@ DSOUND_OpenDevice(_THIS, const char *devname, int iscapture) SDL_CalculateAudioSpec(&this->spec); /* Open the audio device */ - result = DSoundCreate(NULL, &this->hidden->sound, NULL); + result = pDirectSoundCreate8(guid, &this->hidden->sound, NULL); if (result != DS_OK) { DSOUND_CloseDevice(this); SetDSerror("DirectSoundCreate", result); @@ -469,6 +589,8 @@ DSOUND_OpenDevice(_THIS, const char *devname, int iscapture) static void DSOUND_Deinitialize(void) { + FreeDSoundAudioDevices(&inputDevices, &inputDeviceCount); + FreeDSoundAudioDevices(&outputDevices, &outputDeviceCount); DSOUND_Unload(); } @@ -476,42 +598,26 @@ DSOUND_Deinitialize(void) static int DSOUND_Init(SDL_AudioDriverImpl * impl) { - OSVERSIONINFO ver; - - /* - * Unfortunately, the sound drivers on NT have higher latencies than the - * audio buffers used by many SDL applications, so there are gaps in the - * audio - it sounds terrible. Punt for now. - */ - SDL_memset(&ver, '\0', sizeof(OSVERSIONINFO)); - ver.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); - GetVersionEx(&ver); - if (ver.dwPlatformId == VER_PLATFORM_WIN32_NT) { - if (ver.dwMajorVersion <= 4) { - return 0; /* NT4.0 or earlier. Disable dsound support. */ - } - } - if (!DSOUND_Load()) { return 0; } /* Set the function pointers */ + impl->DetectDevices = DSOUND_DetectDevices; + impl->GetDeviceName = DSOUND_GetDeviceName; impl->OpenDevice = DSOUND_OpenDevice; impl->PlayDevice = DSOUND_PlayDevice; impl->WaitDevice = DSOUND_WaitDevice; impl->WaitDone = DSOUND_WaitDone; - impl->ThreadInit = DSOUND_ThreadInit; impl->GetDeviceBuf = DSOUND_GetDeviceBuf; impl->CloseDevice = DSOUND_CloseDevice; impl->Deinitialize = DSOUND_Deinitialize; - impl->OnlyHasDefaultOutputDevice = 1; /* !!! FIXME */ return 1; /* this audio target is available. */ } AudioBootStrap DSOUND_bootstrap = { - "dsound", WINDOWS_OS_NAME "DirectSound", DSOUND_Init, 0 + "directsound", "DirectSound", DSOUND_Init, 0 }; /* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/audio/windx5/SDL_dx5audio.h b/src/audio/directsound/SDL_directsound.h similarity index 93% rename from src/audio/windx5/SDL_dx5audio.h rename to src/audio/directsound/SDL_directsound.h index 6af5808b0..29e6504c5 100644 --- a/src/audio/windx5/SDL_dx5audio.h +++ b/src/audio/directsound/SDL_directsound.h @@ -20,8 +20,8 @@ */ #include "SDL_config.h" -#ifndef _SDL_dx5audio_h -#define _SDL_dx5audio_h +#ifndef _SDL_directsound_h +#define _SDL_directsound_h #include "directx.h" @@ -41,6 +41,6 @@ struct SDL_PrivateAudioData Uint8 *locked_buf; }; -#endif /* _SDL_dx5audio_h */ +#endif /* _SDL_directsound_h */ /* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/audio/windx5/directx.h b/src/audio/directsound/directx.h similarity index 94% rename from src/audio/windx5/directx.h rename to src/audio/directsound/directx.h index 1c371f953..8ddfa00cb 100644 --- a/src/audio/windx5/directx.h +++ b/src/audio/directsound/directx.h @@ -2,7 +2,7 @@ #ifndef _directx_h #define _directx_h -/* Include all of the DirectX 5.0 headers and adds any necessary tweaks */ +/* Include all of the DirectX 8.0 headers and adds any necessary tweaks */ #include "../../core/windows/SDL_windows.h" #include @@ -70,7 +70,7 @@ */ /* We need these defines to mark what version of DirectX API we use */ #define DIRECTDRAW_VERSION 0x0700 -#define DIRECTSOUND_VERSION 0x0500 +#define DIRECTSOUND_VERSION 0x0800 #define DIRECTINPUT_VERSION 0x0500 #include From 6bd5c1b002b4c77949eb35790d6542e1026fdd1a Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 4 Aug 2011 01:24:22 -0400 Subject: [PATCH 30/72] Reworked Windows waveOut code. Implemented multi-device support, changed name to "winmm". --HG-- rename : src/audio/windib/SDL_dibaudio.h => src/audio/winmm/SDL_winmm.h --- VisualC/SDL/SDL_VS2005.vcproj | 4 +- VisualC/SDL/SDL_VS2008.vcproj | 4 +- VisualC/SDL/SDL_VS2010.vcxproj | 4 +- configure.in | 8 +- include/SDL_config.h.in | 2 +- include/SDL_config_windows.h | 2 +- src/audio/SDL_audio.c | 6 +- .../SDL_dibaudio.c => winmm/SDL_winmm.c} | 242 ++++++++++++++---- .../SDL_dibaudio.h => winmm/SDL_winmm.h} | 9 +- 9 files changed, 210 insertions(+), 71 deletions(-) rename src/audio/{windib/SDL_dibaudio.c => winmm/SDL_winmm.c} (56%) rename src/audio/{windib/SDL_dibaudio.h => winmm/SDL_winmm.h} (93%) diff --git a/VisualC/SDL/SDL_VS2005.vcproj b/VisualC/SDL/SDL_VS2005.vcproj index 02fe16db2..1de6dc174 100644 --- a/VisualC/SDL/SDL_VS2005.vcproj +++ b/VisualC/SDL/SDL_VS2005.vcproj @@ -796,11 +796,11 @@ > - + @@ -377,7 +377,7 @@ - + diff --git a/configure.in b/configure.in index 4bae56ace..dcd39e6b5 100644 --- a/configure.in +++ b/configure.in @@ -2057,8 +2057,8 @@ AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[defau fi # Set up files for the audio library if test x$enable_audio = xyes; then - AC_DEFINE(SDL_AUDIO_DRIVER_WINWAVEOUT, 1, [ ]) - SOURCES="$SOURCES $srcdir/src/audio/windib/*.c" + AC_DEFINE(SDL_AUDIO_DRIVER_WINMM, 1, [ ]) + SOURCES="$SOURCES $srcdir/src/audio/winmm/*.c" if test x$have_dsound = xyes; then AC_DEFINE(SDL_AUDIO_DRIVER_DSOUND, 1, [ ]) SOURCES="$SOURCES $srcdir/src/audio/directsound/*.c" @@ -2144,8 +2144,8 @@ AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[defau fi # Set up files for the audio library if test x$enable_audio = xyes; then - AC_DEFINE(SDL_AUDIO_DRIVER_WINWAVEOUT, 1, [ ]) - SOURCES="$SOURCES $srcdir/src/audio/windib/*.c" + AC_DEFINE(SDL_AUDIO_DRIVER_WINMM, 1, [ ]) + SOURCES="$SOURCES $srcdir/src/audio/winmm/*.c" if test x$have_dsound = xyes; then AC_DEFINE(SDL_AUDIO_DRIVER_DSOUND, 1, [ ]) SOURCES="$SOURCES $srcdir/src/audio/directsound/*.c" diff --git a/include/SDL_config.h.in b/include/SDL_config.h.in index 6c5714c15..84d921006 100644 --- a/include/SDL_config.h.in +++ b/include/SDL_config.h.in @@ -195,7 +195,7 @@ #undef SDL_AUDIO_DRIVER_PAUDIO #undef SDL_AUDIO_DRIVER_QSA #undef SDL_AUDIO_DRIVER_SUNAUDIO -#undef SDL_AUDIO_DRIVER_WINWAVEOUT +#undef SDL_AUDIO_DRIVER_WINMM #undef SDL_AUDIO_DRIVER_FUSIONSOUND #undef SDL_AUDIO_DRIVER_FUSIONSOUND_DYNAMIC diff --git a/include/SDL_config_windows.h b/include/SDL_config_windows.h index b844b2a8e..6b9295150 100644 --- a/include/SDL_config_windows.h +++ b/include/SDL_config_windows.h @@ -146,7 +146,7 @@ typedef unsigned int uintptr_t; #ifndef _WIN32_WCE #define SDL_AUDIO_DRIVER_DSOUND 1 #endif -#define SDL_AUDIO_DRIVER_WINWAVEOUT 1 +#define SDL_AUDIO_DRIVER_WINMM 1 #define SDL_AUDIO_DRIVER_DISK 1 #define SDL_AUDIO_DRIVER_DUMMY 1 diff --git a/src/audio/SDL_audio.c b/src/audio/SDL_audio.c index 1aaa756c2..7f16a6549 100644 --- a/src/audio/SDL_audio.c +++ b/src/audio/SDL_audio.c @@ -53,7 +53,7 @@ extern AudioBootStrap ARTS_bootstrap; extern AudioBootStrap ESD_bootstrap; extern AudioBootStrap NAS_bootstrap; extern AudioBootStrap DSOUND_bootstrap; -extern AudioBootStrap WINWAVEOUT_bootstrap; +extern AudioBootStrap WINMM_bootstrap; extern AudioBootStrap PAUDIO_bootstrap; extern AudioBootStrap BEOSAUDIO_bootstrap; extern AudioBootStrap COREAUDIO_bootstrap; @@ -100,8 +100,8 @@ static const AudioBootStrap *const bootstrap[] = { #if SDL_AUDIO_DRIVER_DSOUND &DSOUND_bootstrap, #endif -#if SDL_AUDIO_DRIVER_WINWAVEOUT - &WINWAVEOUT_bootstrap, +#if SDL_AUDIO_DRIVER_WINMM + &WINMM_bootstrap, #endif #if SDL_AUDIO_DRIVER_PAUDIO &PAUDIO_bootstrap, diff --git a/src/audio/windib/SDL_dibaudio.c b/src/audio/winmm/SDL_winmm.c similarity index 56% rename from src/audio/windib/SDL_dibaudio.c rename to src/audio/winmm/SDL_winmm.c index f2650586d..4a2c30a4e 100644 --- a/src/audio/windib/SDL_dibaudio.c +++ b/src/audio/winmm/SDL_winmm.c @@ -28,23 +28,119 @@ #include "SDL_timer.h" #include "SDL_audio.h" #include "../SDL_audio_c.h" -#include "SDL_dibaudio.h" +#include "SDL_winmm.h" #if defined(_WIN32_WCE) && (_WIN32_WCE < 300) #include "win_ce_semaphore.h" #endif -#if defined(_WIN32_WCE) -#define WINDOWS_OS_NAME "Windows CE/PocketPC" -#elif defined(WIN64) -#define WINDOWS_OS_NAME "Win64" + +/* !!! FIXME: this is a cut and paste of SDL_FreeUnixAudioDevices(), + * !!! FIXME: which is more proof this needs to be managed in SDL_audio.c + * !!! FIXME: and not in drivers. + */ +static void +FreeWaveOutAudioDevices(char ***devices, int *devCount) +{ + int i = *devCount; + if ((i > 0) && (*devices != NULL)) { + while (i--) { + SDL_free((*devices)[i]); + } + } + + if (*devices != NULL) { + SDL_free(*devices); + } + + *devices = NULL; + *devCount = 0; +} + +static char **outputDevices = NULL; +static int outputDeviceCount = 0; +static char **inputDevices = NULL; +static int inputDeviceCount = 0; + +static int +DetectWaveOutDevices(void) +{ + UINT i; + const UINT devcount = waveOutGetNumDevs(); + WAVEOUTCAPS caps; + FreeWaveOutAudioDevices(&outputDevices, &outputDeviceCount); + outputDevices = (const char **) SDL_malloc(sizeof (char *) * devcount); + for (i = 0; i < devcount; i++) { + if (waveOutGetDevCaps(i, &caps, sizeof (caps)) == MMSYSERR_NOERROR) { + outputDevices[outputDeviceCount] = WIN_StringToUTF8(caps.szPname); + if (outputDevices[outputDeviceCount] != NULL) { + outputDeviceCount++; + } + } + } + return outputDeviceCount; +} + +static int +DetectWaveInDevices(void) +{ + UINT i; + const UINT devcount = waveInGetNumDevs(); + WAVEINCAPS caps; + FreeWaveInAudioDevices(&inputDevices, &inputDeviceCount); + inputDevices = (const char **) SDL_malloc(sizeof (char *) * devcount); + for (i = 0; i < devcount; i++) { + if (waveInGetDevCaps(i, &caps, sizeof (caps)) == MMSYSERR_NOERROR) { + inputDevices[inputDeviceCount] = WIN_StringToUTF8(caps.szPname); + if (inputDevices[inputDeviceCount] != NULL) { + inputDeviceCount++; + } + } + } + return inputDeviceCount; +} + +static int +WINMM_DetectDevices(int iscapture) +{ + return (iscapture) ? DetectWaveInDevices() : DetectWaveOutDevices(); +} + +static const char * +WINMM_GetDeviceName(int index, int iscapture) +{ + if ((iscapture) && (index < inputDeviceCount)) { + return inputDevices[index]; + } else if ((!iscapture) && (index < outputDeviceCount)) { + return outputDevices[index]; + } + + SDL_SetError("No such device"); + return NULL; +} + +static void CALLBACK +CaptureSound(HWAVEIN hwi, UINT uMsg, DWORD_PTR dwInstance, + DWORD_PTR dwParam1, DWORD_PTR dwParam2) +{ + SDL_AudioDevice *this = (SDL_AudioDevice *) dwInstance; + + /* Only service "buffer is filled" messages */ + if (uMsg != WIM_DATA) + return; + + /* Signal that we have a new buffer of data */ +#if defined(_WIN32_WCE) && (_WIN32_WCE < 300) + ReleaseSemaphoreCE(this->hidden->audio_sem, 1, NULL); #else -#define WINDOWS_OS_NAME "Win32" + ReleaseSemaphore(this->hidden->audio_sem, 1, NULL); #endif +} + /* The Win32 callback for filling the WAVE device */ static void CALLBACK FillSound(HWAVEOUT hwo, UINT uMsg, DWORD_PTR dwInstance, - DWORD dwParam1, DWORD dwParam2) + DWORD_PTR dwParam1, DWORD_PTR dwParam2) { SDL_AudioDevice *this = (SDL_AudioDevice *) dwInstance; @@ -77,15 +173,8 @@ SetMMerror(char *function, MMRESULT code) SDL_SetError("%s", errbuf); } -/* Set high priority for the audio thread */ static void -WINWAVEOUT_ThreadInit(_THIS) -{ - SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_HIGHEST); -} - -void -WINWAVEOUT_WaitDevice(_THIS) +WINMM_WaitDevice(_THIS) { /* Wait for an audio chunk to finish */ #if defined(_WIN32_WCE) && (_WIN32_WCE < 300) @@ -95,25 +184,25 @@ WINWAVEOUT_WaitDevice(_THIS) #endif } -Uint8 * -WINWAVEOUT_GetDeviceBuf(_THIS) +static Uint8 * +WINMM_GetDeviceBuf(_THIS) { return (Uint8 *) (this->hidden-> wavebuf[this->hidden->next_buffer].lpData); } -void -WINWAVEOUT_PlayDevice(_THIS) +static void +WINMM_PlayDevice(_THIS) { /* Queue it up */ - waveOutWrite(this->hidden->sound, + waveOutWrite(this->hidden->hout, &this->hidden->wavebuf[this->hidden->next_buffer], sizeof(this->hidden->wavebuf[0])); this->hidden->next_buffer = (this->hidden->next_buffer + 1) % NUM_BUFFERS; } -void -WINWAVEOUT_WaitDone(_THIS) +static void +WINMM_WaitDone(_THIS) { int i, left; @@ -130,8 +219,8 @@ WINWAVEOUT_WaitDone(_THIS) } while (left > 0); } -void -WINWAVEOUT_CloseDevice(_THIS) +static void +WINMM_CloseDevice(_THIS) { /* Close up audio */ if (this->hidden != NULL) { @@ -146,15 +235,20 @@ WINWAVEOUT_CloseDevice(_THIS) this->hidden->audio_sem = 0; } - if (this->hidden->sound) { - waveOutClose(this->hidden->sound); - this->hidden->sound = 0; + if (this->hidden->hin) { + waveInClose(this->hidden->hin); + this->hidden->hin = 0; + } + + if (this->hidden->hout) { + waveOutClose(this->hidden->hout); + this->hidden->hout = 0; } /* Clean up mixing buffers */ for (i = 0; i < NUM_BUFFERS; ++i) { if (this->hidden->wavebuf[i].dwUser != 0xFFFF) { - waveOutUnprepareHeader(this->hidden->sound, + waveOutUnprepareHeader(this->hidden->hout, &this->hidden->wavebuf[i], sizeof(this->hidden->wavebuf[i])); this->hidden->wavebuf[i].dwUser = 0xFFFF; @@ -172,15 +266,52 @@ WINWAVEOUT_CloseDevice(_THIS) } } -int -WINWAVEOUT_OpenDevice(_THIS, const char *devname, int iscapture) +static int +WINMM_OpenDevice(_THIS, const char *devname, int iscapture) { SDL_AudioFormat test_format = SDL_FirstAudioFormat(this->spec.format); int valid_datatype = 0; MMRESULT result; WAVEFORMATEX waveformat; + UINT_PTR devId = WAVE_MAPPER; /* WAVE_MAPPER == choose system's default */ + char *utf8 = NULL; int i; + if (devname != NULL) { /* specific device requested? */ + if (iscapture) { + const int devcount = (int) waveInGetNumDevs(); + WAVEINCAPS caps; + for (i = 0; (i < devcount) && (devId == WAVE_MAPPER); i++) { + result = waveInGetDevCaps(i, &caps, sizeof (caps)); + if (result != MMSYSERR_NOERROR) + continue; + else if ((utf8 = WIN_StringToUTF8(caps.szPname)) == NULL) + continue; + else if (SDL_strcmp(devname, utf8) == 0) + devId = (UINT_PTR) i; + SDL_free(utf8); + } + } else { + const int devcount = (int) waveOutGetNumDevs(); + WAVEOUTCAPS caps; + for (i = 0; (i < devcount) && (devId == WAVE_MAPPER); i++) { + result = waveOutGetDevCaps(i, &caps, sizeof (caps)); + if (result != MMSYSERR_NOERROR) + continue; + else if ((utf8 = WIN_StringToUTF8(caps.szPname)) == NULL) + continue; + else if (SDL_strcmp(devname, utf8) == 0) + devId = (UINT_PTR) i; + SDL_free(utf8); + } + } + + if (devId == WAVE_MAPPER) { + SDL_SetError("Requested device not found"); + return 0; + } + } + /* Initialize all variables that we clean on shutdown */ this->hidden = (struct SDL_PrivateAudioData *) SDL_malloc((sizeof *this->hidden)); @@ -211,7 +342,7 @@ WINWAVEOUT_OpenDevice(_THIS, const char *devname, int iscapture) } if (!valid_datatype) { - WINWAVEOUT_CloseDevice(this); + WINMM_CloseDevice(this); SDL_SetError("Unsupported audio format"); return 0; } @@ -239,11 +370,18 @@ WINWAVEOUT_OpenDevice(_THIS, const char *devname, int iscapture) SDL_CalculateAudioSpec(&this->spec); /* Open the audio device */ - result = waveOutOpen(&this->hidden->sound, WAVE_MAPPER, &waveformat, - (DWORD_PTR) FillSound, (DWORD_PTR) this, - CALLBACK_FUNCTION); + if (iscapture) { + result = waveInOpen(&this->hidden->hin, devId, &waveformat, + (DWORD_PTR) CaptureSound, (DWORD_PTR) this, + CALLBACK_FUNCTION); + } else { + result = waveOutOpen(&this->hidden->hout, devId, &waveformat, + (DWORD_PTR) FillSound, (DWORD_PTR) this, + CALLBACK_FUNCTION); + } + if (result != MMSYSERR_NOERROR) { - WINWAVEOUT_CloseDevice(this); + WINMM_CloseDevice(this); SetMMerror("waveOutOpen()", result); return 0; } @@ -252,10 +390,10 @@ WINWAVEOUT_OpenDevice(_THIS, const char *devname, int iscapture) { WAVEOUTCAPS caps; - result = waveOutGetDevCaps((UINT) this->hidden->sound, + result = waveOutGetDevCaps((UINT) this->hidden->hout, &caps, sizeof(caps)); if (result != MMSYSERR_NOERROR) { - WINWAVEOUT_CloseDevice(this); + WINMM_CloseDevice(this); SetMMerror("waveOutGetDevCaps()", result); return 0; } @@ -271,7 +409,7 @@ WINWAVEOUT_OpenDevice(_THIS, const char *devname, int iscapture) CreateSemaphore(NULL, NUM_BUFFERS - 1, NUM_BUFFERS, NULL); #endif if (this->hidden->audio_sem == NULL) { - WINWAVEOUT_CloseDevice(this); + WINMM_CloseDevice(this); SDL_SetError("Couldn't create semaphore"); return 0; } @@ -280,7 +418,7 @@ WINWAVEOUT_OpenDevice(_THIS, const char *devname, int iscapture) this->hidden->mixbuf = (Uint8 *) SDL_malloc(NUM_BUFFERS * this->spec.size); if (this->hidden->mixbuf == NULL) { - WINWAVEOUT_CloseDevice(this); + WINMM_CloseDevice(this); SDL_OutOfMemory(); return 0; } @@ -291,11 +429,11 @@ WINWAVEOUT_OpenDevice(_THIS, const char *devname, int iscapture) this->hidden->wavebuf[i].dwFlags = WHDR_DONE; this->hidden->wavebuf[i].lpData = (LPSTR) & this->hidden->mixbuf[i * this->spec.size]; - result = waveOutPrepareHeader(this->hidden->sound, + result = waveOutPrepareHeader(this->hidden->hout, &this->hidden->wavebuf[i], sizeof(this->hidden->wavebuf[i])); if (result != MMSYSERR_NOERROR) { - WINWAVEOUT_CloseDevice(this); + WINMM_CloseDevice(this); SetMMerror("waveOutPrepareHeader()", result); return 0; } @@ -306,23 +444,23 @@ WINWAVEOUT_OpenDevice(_THIS, const char *devname, int iscapture) static int -WINWAVEOUT_Init(SDL_AudioDriverImpl * impl) +WINMM_Init(SDL_AudioDriverImpl * impl) { /* Set the function pointers */ - impl->OpenDevice = WINWAVEOUT_OpenDevice; - impl->ThreadInit = WINWAVEOUT_ThreadInit; - impl->PlayDevice = WINWAVEOUT_PlayDevice; - impl->WaitDevice = WINWAVEOUT_WaitDevice; - impl->WaitDone = WINWAVEOUT_WaitDone; - impl->GetDeviceBuf = WINWAVEOUT_GetDeviceBuf; - impl->CloseDevice = WINWAVEOUT_CloseDevice; - impl->OnlyHasDefaultOutputDevice = 1; /* !!! FIXME: Is this true? */ + impl->DetectDevices = WINMM_DetectDevices; + impl->GetDeviceName = WINMM_GetDeviceName; + impl->OpenDevice = WINMM_OpenDevice; + impl->PlayDevice = WINMM_PlayDevice; + impl->WaitDevice = WINMM_WaitDevice; + impl->WaitDone = WINMM_WaitDone; + impl->GetDeviceBuf = WINMM_GetDeviceBuf; + impl->CloseDevice = WINMM_CloseDevice; return 1; /* this audio target is available. */ } -AudioBootStrap WINWAVEOUT_bootstrap = { - "waveout", WINDOWS_OS_NAME " WaveOut", WINWAVEOUT_Init, 0 +AudioBootStrap WINMM_bootstrap = { + "winmm", "Windows Waveform Audio", WINMM_Init, 0 }; /* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/audio/windib/SDL_dibaudio.h b/src/audio/winmm/SDL_winmm.h similarity index 93% rename from src/audio/windib/SDL_dibaudio.h rename to src/audio/winmm/SDL_winmm.h index 8a2fcc91d..f68ed28d7 100644 --- a/src/audio/windib/SDL_dibaudio.h +++ b/src/audio/winmm/SDL_winmm.h @@ -20,8 +20,8 @@ */ #include "SDL_config.h" -#ifndef _SDL_dibaudio_h -#define _SDL_dibaudio_h +#ifndef _SDL_winmm_h +#define _SDL_winmm_h #include "../SDL_sysaudio.h" @@ -32,13 +32,14 @@ struct SDL_PrivateAudioData { - HWAVEOUT sound; + HWAVEOUT hout; + HWAVEIN hin; HANDLE audio_sem; Uint8 *mixbuf; /* The raw allocated mixing buffer */ WAVEHDR wavebuf[NUM_BUFFERS]; /* Wave audio fragments */ int next_buffer; }; -#endif /* _SDL_dibaudio_h */ +#endif /* _SDL_winmm_h */ /* vi: set ts=4 sw=4 expandtab: */ From 26f05bd0767bde24e95cd03c22abd6bff161bb45 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 22 Jul 2011 16:09:13 -0700 Subject: [PATCH 31/72] Took out some more bitfields in the audio subsystem. --- src/audio/SDL_sysaudio.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/audio/SDL_sysaudio.h b/src/audio/SDL_sysaudio.h index dd5cea150..624fa3384 100644 --- a/src/audio/SDL_sysaudio.h +++ b/src/audio/SDL_sysaudio.h @@ -46,11 +46,11 @@ typedef struct SDL_AudioDriverImpl void (*Deinitialize) (void); /* Some flags to push duplicate code into the core and reduce #ifdefs. */ - int ProvidesOwnCallbackThread:1; - int SkipMixerLock:1; - int HasCaptureSupport:1; - int OnlyHasDefaultOutputDevice:1; - int OnlyHasDefaultInputDevice:1; + int ProvidesOwnCallbackThread; + int SkipMixerLock; + int HasCaptureSupport; + int OnlyHasDefaultOutputDevice; + int OnlyHasDefaultInputDevice; } SDL_AudioDriverImpl; From 0dea877a7852f76ae7fa2463a9c3e7d7e875e74c Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 4 Aug 2011 01:07:13 -0400 Subject: [PATCH 32/72] Added some FIXMEs. --- src/audio/SDL_sysaudio.h | 4 +++- src/audio/qsa/SDL_qsa_audio.c | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/audio/SDL_sysaudio.h b/src/audio/SDL_sysaudio.h index 624fa3384..027e3dbb8 100644 --- a/src/audio/SDL_sysaudio.h +++ b/src/audio/SDL_sysaudio.h @@ -45,9 +45,11 @@ typedef struct SDL_AudioDriverImpl void (*UnlockDevice) (_THIS); void (*Deinitialize) (void); + /* !!! FIXME: add pause(), so we can optimize instead of mixing silence. */ + /* Some flags to push duplicate code into the core and reduce #ifdefs. */ int ProvidesOwnCallbackThread; - int SkipMixerLock; + int SkipMixerLock; /* !!! FIXME: do we need this anymore? */ int HasCaptureSupport; int OnlyHasDefaultOutputDevice; int OnlyHasDefaultInputDevice; diff --git a/src/audio/qsa/SDL_qsa_audio.c b/src/audio/qsa/SDL_qsa_audio.c index cd9d18655..c3588941d 100644 --- a/src/audio/qsa/SDL_qsa_audio.c +++ b/src/audio/qsa/SDL_qsa_audio.c @@ -113,6 +113,7 @@ QSA_CheckBuggyCards(_THIS, unsigned long checkfor) return 0; } +/* !!! FIXME: does this need to be here? Does the SDL version not work? */ static void QSA_ThreadInit(_THIS) { From 8fa65eea5c74445acb3d6b8774c7eb091a08b163 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Wed, 3 Aug 2011 04:22:47 -0400 Subject: [PATCH 33/72] Cleaned up CoInitialize() politics on Windows. --- src/core/windows/SDL_windows.c | 21 +++++++++++++++++++++ src/core/windows/SDL_windows.h | 4 ++++ src/haptic/windows/SDL_syshaptic.c | 20 +++++++++++++++++--- src/joystick/windows/SDL_dxjoystick.c | 19 ++++++++++++++++--- src/video/windows/SDL_windowskeyboard.c | 4 ++-- 5 files changed, 60 insertions(+), 8 deletions(-) diff --git a/src/core/windows/SDL_windows.c b/src/core/windows/SDL_windows.c index f154bebc5..275ec4469 100644 --- a/src/core/windows/SDL_windows.c +++ b/src/core/windows/SDL_windows.c @@ -23,6 +23,8 @@ #include "SDL_error.h" #include "SDL_windows.h" +#include /* for CoInitialize/CoUninitialize */ + /* Sets an error message based on GetLastError() */ void @@ -37,4 +39,23 @@ WIN_SetError(const char *prefix) SDL_free(message); } +HRESULT +WIN_CoInitialize(void) +{ + /* S_FALSE means success, but someone else already initialized. */ + /* You still need to call CoUninitialize in this case! */ + const HRESULT hr = CoInitialize(NULL); + if ((hr == S_OK) || (hr == S_FALSE)) { + return S_OK; + } + + return hr; +} + +void +WIN_CoUninitialize(void) +{ + CoUninitialize(); +} + /* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/core/windows/SDL_windows.h b/src/core/windows/SDL_windows.h index 194c8a176..604370ba4 100644 --- a/src/core/windows/SDL_windows.h +++ b/src/core/windows/SDL_windows.h @@ -47,6 +47,10 @@ /* Sets an error message based on GetLastError() */ extern void WIN_SetError(const char *prefix); +/* Wrap up the oddities of CoInitialize() into a common function. */ +extern HRESULT WIN_CoInitialize(void); +extern void WIN_CoUninitialize(void); + #endif /* _INCLUDED_WINDOWS_H */ /* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/haptic/windows/SDL_syshaptic.c b/src/haptic/windows/SDL_syshaptic.c index 6209257cb..79a9ab9b1 100644 --- a/src/haptic/windows/SDL_syshaptic.c +++ b/src/haptic/windows/SDL_syshaptic.c @@ -68,6 +68,7 @@ struct haptic_hweffect /* * Internal stuff. */ +static SDL_bool coinitialized = SDL_FALSE; static LPDIRECTINPUT dinput = NULL; @@ -147,15 +148,18 @@ SDL_SYS_HapticInit(void) SDL_numhaptics = 0; - ret = CoInitialize(NULL); + ret = WIN_CoInitialize(); if (FAILED(ret)) { DI_SetError("Coinitialize", ret); return -1; } + coinitialized = SDL_TRUE; + ret = CoCreateInstance(&CLSID_DirectInput, NULL, CLSCTX_INPROC_SERVER, &IID_IDirectInput, (LPVOID) & dinput); if (FAILED(ret)) { + SDL_SYS_HapticQuit(); DI_SetError("CoCreateInstance", ret); return -1; } @@ -163,12 +167,14 @@ SDL_SYS_HapticInit(void) /* Because we used CoCreateInstance, we need to Initialize it, first. */ instance = GetModuleHandle(NULL); if (instance == NULL) { + SDL_SYS_HapticQuit(); SDL_SetError("GetModuleHandle() failed with error code %d.", GetLastError()); return -1; } ret = IDirectInput_Initialize(dinput, instance, DIRECTINPUT_VERSION); if (FAILED(ret)) { + SDL_SYS_HapticQuit(); DI_SetError("Initializing DirectInput device", ret); return -1; } @@ -181,6 +187,7 @@ SDL_SYS_HapticInit(void) DIEDFL_FORCEFEEDBACK | DIEDFL_ATTACHEDONLY); if (FAILED(ret)) { + SDL_SYS_HapticQuit(); DI_SetError("Enumerating DirectInput devices", ret); return -1; } @@ -664,8 +671,15 @@ SDL_SYS_HapticQuit(void) } } - IDirectInput_Release(dinput); - dinput = NULL; + if (dinput != NULL) { + IDirectInput_Release(dinput); + dinput = NULL; + } + + if (coinitialized) { + WIN_CoUninitialize(); + coinitialized = SDL_FALSE; + } } diff --git a/src/joystick/windows/SDL_dxjoystick.c b/src/joystick/windows/SDL_dxjoystick.c index 8799511b4..6d9b44ff8 100644 --- a/src/joystick/windows/SDL_dxjoystick.c +++ b/src/joystick/windows/SDL_dxjoystick.c @@ -57,6 +57,7 @@ extern HWND SDL_HelperWindow; /* local variables */ +static SDL_bool coinitialized = SDL_FALSE; static LPDIRECTINPUT dinput = NULL; extern HRESULT(WINAPI * DInputCreate) (HINSTANCE hinst, DWORD dwVersion, LPDIRECTINPUT * ppDI, @@ -284,16 +285,19 @@ SDL_SYS_JoystickInit(void) SYS_NumJoysticks = 0; - result = CoInitialize(NULL); + result = WIN_CoInitialize(); if (FAILED(result)) { SetDIerror("CoInitialize", result); return (-1); } + coinitialized = SDL_TRUE; + result = CoCreateInstance(&CLSID_DirectInput, NULL, CLSCTX_INPROC_SERVER, &IID_IDirectInput, (LPVOID)&dinput); if (FAILED(result)) { + SDL_SYS_JoystickQuit(); SetDIerror("CoCreateInstance", result); return (-1); } @@ -301,6 +305,7 @@ SDL_SYS_JoystickInit(void) /* Because we used CoCreateInstance, we need to Initialize it, first. */ instance = GetModuleHandle(NULL); if (instance == NULL) { + SDL_SYS_JoystickQuit(); SDL_SetError("GetModuleHandle() failed with error code %d.", GetLastError()); return (-1); @@ -308,6 +313,7 @@ SDL_SYS_JoystickInit(void) result = IDirectInput_Initialize(dinput, instance, DIRECTINPUT_VERSION); if (FAILED(result)) { + SDL_SYS_JoystickQuit(); SetDIerror("IDirectInput::Initialize", result); return (-1); } @@ -802,8 +808,15 @@ SDL_SYS_JoystickQuit(void) } } - IDirectInput_Release(dinput); - dinput = NULL; + if (dinput != NULL) { + IDirectInput_Release(dinput); + dinput = NULL; + } + + if (coinitialized) { + WIN_CoUninitialize(); + coinitialized = SDL_FALSE; + } } #endif /* SDL_JOYSTICK_DINPUT */ diff --git a/src/video/windows/SDL_windowskeyboard.c b/src/video/windows/SDL_windowskeyboard.c index 43b1416c1..ca03e529b 100644 --- a/src/video/windows/SDL_windowskeyboard.c +++ b/src/video/windows/SDL_windowskeyboard.c @@ -305,7 +305,7 @@ IME_Init(SDL_VideoData *videodata, HWND hwnd) return; videodata->ime_hwnd_main = hwnd; - if (SUCCEEDED(CoInitializeEx(NULL, COINIT_APARTMENTTHREADED))) { + if (SUCCEEDED(WIN_CoInitialize())) { videodata->ime_com_initialized = SDL_TRUE; CoCreateInstance(&CLSID_TF_ThreadMgr, NULL, CLSCTX_INPROC_SERVER, &IID_ITfThreadMgr, (LPVOID *)&videodata->ime_threadmgr); } @@ -389,7 +389,7 @@ IME_Quit(SDL_VideoData *videodata) videodata->ime_threadmgr = 0; } if (videodata->ime_com_initialized) { - CoUninitialize(); + WIN_CoUninitialize(); videodata->ime_com_initialized = SDL_FALSE; } IME_DestroyTextures(videodata); From 46bb3d8770ba2c4324939db9bc1c38f00a8af787 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 4 Aug 2011 01:07:09 -0400 Subject: [PATCH 34/72] Implemented XAudio2 target for Windows (and Xbox360, theoretically!). --- VisualC/SDL/SDL_VS2005.vcproj | 8 + VisualC/SDL/SDL_VS2008.vcproj | 8 + VisualC/SDL/SDL_VS2010.vcxproj | 2 + configure.in | 9 + include/SDL_config.h.in | 1 + include/SDL_config_windows.h | 1 + src/audio/SDL_audio.c | 4 + src/audio/xaudio2/SDL_xaudio2.c | 455 ++++++++++++++++++++++++++++++++ src/audio/xaudio2/SDL_xaudio2.h | 46 ++++ 9 files changed, 534 insertions(+) create mode 100644 src/audio/xaudio2/SDL_xaudio2.c create mode 100644 src/audio/xaudio2/SDL_xaudio2.h diff --git a/VisualC/SDL/SDL_VS2005.vcproj b/VisualC/SDL/SDL_VS2005.vcproj index 1de6dc174..ec7921d2b 100644 --- a/VisualC/SDL/SDL_VS2005.vcproj +++ b/VisualC/SDL/SDL_VS2005.vcproj @@ -847,6 +847,14 @@ RelativePath="..\..\src\audio\directsound\SDL_directsound.h" > + + + + diff --git a/VisualC/SDL/SDL_VS2008.vcproj b/VisualC/SDL/SDL_VS2008.vcproj index 028d1132f..49c0d4701 100644 --- a/VisualC/SDL/SDL_VS2008.vcproj +++ b/VisualC/SDL/SDL_VS2008.vcproj @@ -836,6 +836,14 @@ RelativePath="..\..\src\audio\directsound\SDL_directsound.h" > + + + + diff --git a/VisualC/SDL/SDL_VS2010.vcxproj b/VisualC/SDL/SDL_VS2010.vcxproj index 061e06d54..33bba4d54 100644 --- a/VisualC/SDL/SDL_VS2010.vcxproj +++ b/VisualC/SDL/SDL_VS2010.vcxproj @@ -280,6 +280,7 @@ + @@ -381,6 +382,7 @@ + diff --git a/configure.in b/configure.in index dcd39e6b5..845d1d296 100644 --- a/configure.in +++ b/configure.in @@ -1726,6 +1726,7 @@ AC_HELP_STRING([--enable-directx], [use DirectX for Windows audio/video [[defaul AC_CHECK_HEADER(ddraw.h, have_ddraw=yes) AC_CHECK_HEADER(dsound.h, have_dsound=yes) AC_CHECK_HEADER(dinput.h, have_dinput=yes) + AC_CHECK_HEADER(xaudio2.h, have_xaudio2=yes) fi } @@ -2063,6 +2064,10 @@ AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[defau AC_DEFINE(SDL_AUDIO_DRIVER_DSOUND, 1, [ ]) SOURCES="$SOURCES $srcdir/src/audio/directsound/*.c" fi + if test x$have_xaudio2 = xyes; then + AC_DEFINE(SDL_AUDIO_DRIVER_XAUDIO2, 1, [ ]) + SOURCES="$SOURCES $srcdir/src/audio/xaudio2/*.c" + fi have_audio=yes fi # Set up dummy files for the joystick for now @@ -2150,6 +2155,10 @@ AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[defau AC_DEFINE(SDL_AUDIO_DRIVER_DSOUND, 1, [ ]) SOURCES="$SOURCES $srcdir/src/audio/directsound/*.c" fi + if test x$have_xaudio2 = xyes; then + AC_DEFINE(SDL_AUDIO_DRIVER_XAUDIO2, 1, [ ]) + SOURCES="$SOURCES $srcdir/src/audio/xaudio2/*.c" + fi have_audio=yes fi # Set up files for the joystick library diff --git a/include/SDL_config.h.in b/include/SDL_config.h.in index 84d921006..14167fdd3 100644 --- a/include/SDL_config.h.in +++ b/include/SDL_config.h.in @@ -184,6 +184,7 @@ #undef SDL_AUDIO_DRIVER_COREAUDIO #undef SDL_AUDIO_DRIVER_DISK #undef SDL_AUDIO_DRIVER_DUMMY +#undef SDL_AUDIO_DRIVER_XAUDIO2 #undef SDL_AUDIO_DRIVER_DSOUND #undef SDL_AUDIO_DRIVER_ESD #undef SDL_AUDIO_DRIVER_ESD_DYNAMIC diff --git a/include/SDL_config_windows.h b/include/SDL_config_windows.h index 6b9295150..b980f0d1a 100644 --- a/include/SDL_config_windows.h +++ b/include/SDL_config_windows.h @@ -145,6 +145,7 @@ typedef unsigned int uintptr_t; /* Enable various audio drivers */ #ifndef _WIN32_WCE #define SDL_AUDIO_DRIVER_DSOUND 1 +#define SDL_AUDIO_DRIVER_XAUDIO2 1 #endif #define SDL_AUDIO_DRIVER_WINMM 1 #define SDL_AUDIO_DRIVER_DISK 1 diff --git a/src/audio/SDL_audio.c b/src/audio/SDL_audio.c index 7f16a6549..2df703486 100644 --- a/src/audio/SDL_audio.c +++ b/src/audio/SDL_audio.c @@ -52,6 +52,7 @@ extern AudioBootStrap SUNAUDIO_bootstrap; extern AudioBootStrap ARTS_bootstrap; extern AudioBootStrap ESD_bootstrap; extern AudioBootStrap NAS_bootstrap; +extern AudioBootStrap XAUDIO2_bootstrap; extern AudioBootStrap DSOUND_bootstrap; extern AudioBootStrap WINMM_bootstrap; extern AudioBootStrap PAUDIO_bootstrap; @@ -97,6 +98,9 @@ static const AudioBootStrap *const bootstrap[] = { #if SDL_AUDIO_DRIVER_NAS &NAS_bootstrap, #endif +#if SDL_AUDIO_DRIVER_XAUDIO2 + &XAUDIO2_bootstrap, +#endif #if SDL_AUDIO_DRIVER_DSOUND &DSOUND_bootstrap, #endif diff --git a/src/audio/xaudio2/SDL_xaudio2.c b/src/audio/xaudio2/SDL_xaudio2.c new file mode 100644 index 000000000..4c769474a --- /dev/null +++ b/src/audio/xaudio2/SDL_xaudio2.c @@ -0,0 +1,455 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2011 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ +#include "SDL_config.h" +#include "../../core/windows/SDL_windows.h" +#include "SDL_audio.h" +#include "../SDL_audio_c.h" +#include "SDL_assert.h" + +#define INITGUID 1 +#include "SDL_xaudio2.h" + +/* !!! FIXME: this is a cut and paste of SDL_FreeUnixAudioDevices(), + * !!! FIXME: which is more proof this needs to be managed in SDL_audio.c + * !!! FIXME: and not in drivers. + */ +static void +FreeXAudio2AudioDevices(char ***devices, int *devCount) +{ + int i = *devCount; + if ((i > 0) && (*devices != NULL)) { + while (i--) { + SDL_free((*devices)[i]); + } + } + + if (*devices != NULL) { + SDL_free(*devices); + } + + *devices = NULL; + *devCount = 0; +} + + +static char **outputDevices = NULL; +static int outputDeviceCount = 0; + +static __inline__ char * +utf16_to_utf8(const WCHAR *S) +{ + /* !!! FIXME: this should be UTF-16, not UCS-2! */ + return SDL_iconv_string("UTF-8", "UCS-2", (char *)(S), + (SDL_wcslen(S)+1)*sizeof(WCHAR)); +} + +static int +XAUDIO2_DetectDevices(int iscapture) +{ + IXAudio2 *ixa2 = NULL; + UINT32 devcount = 0; + UINT32 i = 0; + void *ptr = NULL; + + if (!iscapture) { + FreeXAudio2AudioDevices(&outputDevices, &outputDeviceCount); + } + + if (iscapture) { + SDL_SetError("XAudio2: capture devices unsupported."); + return 0; + } else if (XAudio2Create(&ixa2, 0, XAUDIO2_DEFAULT_PROCESSOR) != S_OK) { + SDL_SetError("XAudio2: XAudio2Create() failed."); + return 0; + } else if (IXAudio2_GetDeviceCount(ixa2, &devcount) != S_OK) { + SDL_SetError("XAudio2: IXAudio2::GetDeviceCount() failed."); + IXAudio2_Release(ixa2); + return 0; + } else if ((ptr = SDL_malloc(sizeof (char *) * devcount)) == NULL) { + SDL_OutOfMemory(); + IXAudio2_Release(ixa2); + return 0; + } + + outputDevices = (char **) ptr; + for (i = 0; i < devcount; i++) { + XAUDIO2_DEVICE_DETAILS details; + if (IXAudio2_GetDeviceDetails(ixa2, i, &details) == S_OK) { + char *str = utf16_to_utf8(details.DisplayName); + if (str != NULL) { + outputDevices[outputDeviceCount++] = str; + } + } + } + + IXAudio2_Release(ixa2); + + return outputDeviceCount; +} + +static const char * +XAUDIO2_GetDeviceName(int index, int iscapture) +{ + if ((!iscapture) && (index < outputDeviceCount)) { + return outputDevices[index]; + } + + SDL_SetError("XAudio2: No such device"); + return NULL; +} + +static void STDMETHODCALLTYPE +VoiceCBOnBufferEnd(THIS_ void *data) +{ + /* Just signal the SDL audio thread and get out of XAudio2's way. */ + SDL_AudioDevice *this = (SDL_AudioDevice *) data; + ReleaseSemaphore(this->hidden->semaphore, 1, NULL); +} + +static void STDMETHODCALLTYPE +VoiceCBOnVoiceError(THIS_ void *data, HRESULT Error) +{ + /* !!! FIXME: attempt to recover, or mark device disconnected. */ + SDL_assert(0 && "write me!"); +} + +/* no-op callbacks... */ +static void STDMETHODCALLTYPE VoiceCBOnStreamEnd(THIS) {} +static void STDMETHODCALLTYPE VoiceCBOnVoiceProcessPassStart(THIS_ UINT32 b) {} +static void STDMETHODCALLTYPE VoiceCBOnVoiceProcessPassEnd(THIS) {} +static void STDMETHODCALLTYPE VoiceCBOnBufferStart(THIS_ void *data) {} +static void STDMETHODCALLTYPE VoiceCBOnLoopEnd(THIS_ void *data) {} + + +static Uint8 * +XAUDIO2_GetDeviceBuf(_THIS) +{ + return this->hidden->nextbuf; +} + +static void +XAUDIO2_PlayDevice(_THIS) +{ + XAUDIO2_BUFFER buffer; + Uint8 *mixbuf = this->hidden->mixbuf; + Uint8 *nextbuf = this->hidden->nextbuf; + const int mixlen = this->hidden->mixlen; + IXAudio2SourceVoice *source = this->hidden->source; + HRESULT result = S_OK; + + if (!this->enabled) { /* shutting down? */ + return; + } + + /* Submit the next filled buffer */ + SDL_zero(buffer); + buffer.AudioBytes = mixlen; + buffer.pAudioData = nextbuf; + buffer.pContext = this; + + if (nextbuf == mixbuf) { + nextbuf += mixlen; + } else { + nextbuf = mixbuf; + } + this->hidden->nextbuf = nextbuf; + + result = IXAudio2SourceVoice_SubmitSourceBuffer(source, &buffer, NULL); + if (result == XAUDIO2_E_DEVICE_INVALIDATED) { + /* !!! FIXME: possibly disconnected or temporary lost. Recover? */ + } + + if (result != S_OK) { /* uhoh, panic! */ + IXAudio2SourceVoice_FlushSourceBuffers(source); + this->enabled = 0; + } +} + +static void +XAUDIO2_WaitDevice(_THIS) +{ + if (this->enabled) { + WaitForSingleObject(this->hidden->semaphore, INFINITE); + } +} + +static void +XAUDIO2_WaitDone(_THIS) +{ + IXAudio2SourceVoice *source = this->hidden->source; + XAUDIO2_VOICE_STATE state; + SDL_assert(!this->enabled); /* flag that stops playing. */ + IXAudio2SourceVoice_Discontinuity(source); + IXAudio2SourceVoice_GetState(source, &state); + while (state.BuffersQueued > 0) { + WaitForSingleObject(this->hidden->semaphore, INFINITE); + IXAudio2SourceVoice_GetState(source, &state); + } +} + + +static void +XAUDIO2_CloseDevice(_THIS) +{ + if (this->hidden != NULL) { + IXAudio2 *ixa2 = this->hidden->ixa2; + IXAudio2SourceVoice *source = this->hidden->source; + IXAudio2MasteringVoice *mastering = this->hidden->mastering; + + if (source != NULL) { + IXAudio2SourceVoice_Stop(source, 0, XAUDIO2_COMMIT_NOW); + IXAudio2SourceVoice_FlushSourceBuffers(source); + IXAudio2SourceVoice_DestroyVoice(source); + } + if (ixa2 != NULL) { + IXAudio2_StopEngine(ixa2); + } + if (mastering != NULL) { + IXAudio2MasteringVoice_DestroyVoice(mastering); + } + if (ixa2 != NULL) { + IXAudio2_Release(ixa2); + } + if (this->hidden->mixbuf != NULL) { + SDL_free(this->hidden->mixbuf); + } + if (this->hidden->semaphore != NULL) { + CloseHandle(this->hidden->semaphore); + } + + SDL_free(this->hidden); + this->hidden = NULL; + } +} + +static int +XAUDIO2_OpenDevice(_THIS, const char *devname, int iscapture) +{ + HRESULT result = S_OK; + WAVEFORMATEX waveformat; + int valid_format = 0; + SDL_AudioFormat test_format = SDL_FirstAudioFormat(this->spec.format); + IXAudio2 *ixa2 = NULL; + IXAudio2SourceVoice *source = NULL; + UINT32 devId = 0; /* 0 == system default device. */ + + static IXAudio2VoiceCallbackVtbl callbacks_vtable = { + VoiceCBOnVoiceProcessPassStart, + VoiceCBOnVoiceProcessPassEnd, + VoiceCBOnStreamEnd, + VoiceCBOnBufferStart, + VoiceCBOnBufferEnd, + VoiceCBOnLoopEnd, + VoiceCBOnVoiceError + }; + + static IXAudio2VoiceCallback callbacks = { &callbacks_vtable }; + + if (iscapture) { + SDL_SetError("XAudio2: capture devices unsupported."); + return 0; + } else if (XAudio2Create(&ixa2, 0, XAUDIO2_DEFAULT_PROCESSOR) != S_OK) { + SDL_SetError("XAudio2: XAudio2Create() failed."); + return 0; + } + + if (devname != NULL) { + UINT32 devcount = 0; + UINT32 i = 0; + + if (IXAudio2_GetDeviceCount(ixa2, &devcount) != S_OK) { + IXAudio2_Release(ixa2); + SDL_SetError("XAudio2: IXAudio2_GetDeviceCount() failed."); + return 0; + } + for (i = 0; i < devcount; i++) { + XAUDIO2_DEVICE_DETAILS details; + if (IXAudio2_GetDeviceDetails(ixa2, i, &details) == S_OK) { + char *str = utf16_to_utf8(details.DisplayName); + if (str != NULL) { + const int match = (SDL_strcmp(str, devname) == 0); + SDL_free(str); + if (match) { + devId = i; + break; + } + } + } + } + + if (i == devcount) { + IXAudio2_Release(ixa2); + SDL_SetError("XAudio2: Requested device not found."); + return 0; + } + } + + /* Initialize all variables that we clean on shutdown */ + this->hidden = (struct SDL_PrivateAudioData *) + SDL_malloc((sizeof *this->hidden)); + if (this->hidden == NULL) { + IXAudio2_Release(ixa2); + SDL_OutOfMemory(); + return 0; + } + SDL_memset(this->hidden, 0, (sizeof *this->hidden)); + + this->hidden->ixa2 = ixa2; + this->hidden->semaphore = CreateSemaphore(NULL, 1, 2, NULL); + if (this->hidden->semaphore == NULL) { + XAUDIO2_CloseDevice(this); + SDL_SetError("XAudio2: CreateSemaphore() failed!"); + return 0; + } + + while ((!valid_format) && (test_format)) { + switch (test_format) { + case AUDIO_U8: + case AUDIO_S16: + case AUDIO_S32: + case AUDIO_F32: + this->spec.format = test_format; + valid_format = 1; + break; + } + test_format = SDL_NextAudioFormat(); + } + + if (!valid_format) { + XAUDIO2_CloseDevice(this); + SDL_SetError("XAudio2: Unsupported audio format"); + return 0; + } + + /* Update the fragment size as size in bytes */ + SDL_CalculateAudioSpec(&this->spec); + + /* We feed a Source, it feeds the Mastering, which feeds the device. */ + this->hidden->mixlen = this->spec.size; + this->hidden->mixbuf = (Uint8 *) SDL_malloc(2 * this->hidden->mixlen); + if (this->hidden->mixbuf == NULL) { + XAUDIO2_CloseDevice(this); + SDL_OutOfMemory(); + return 0; + } + this->hidden->nextbuf = this->hidden->mixbuf; + SDL_memset(this->hidden->mixbuf, '\0', 2 * this->hidden->mixlen); + + /* We use XAUDIO2_DEFAULT_CHANNELS instead of this->spec.channels. On + Xbox360, this means 5.1 output, but on Windows, it means "figure out + what the system has." It might be preferable to let XAudio2 blast + stereo output to appropriate surround sound configurations + instead of clamping to 2 channels, even though we'll configure the + Source Voice for whatever number of channels you supply. */ + result = IXAudio2_CreateMasteringVoice(ixa2, &this->hidden->mastering, + XAUDIO2_DEFAULT_CHANNELS, + this->spec.freq, 0, devId, NULL); + if (result != S_OK) { + XAUDIO2_CloseDevice(this); + SDL_SetError("XAudio2: Couldn't create mastering voice"); + return 0; + } + + SDL_zero(waveformat); + if (SDL_AUDIO_ISFLOAT(this->spec.format)) { + waveformat.wFormatTag = WAVE_FORMAT_IEEE_FLOAT; + } else { + waveformat.wFormatTag = WAVE_FORMAT_PCM; + } + waveformat.wBitsPerSample = SDL_AUDIO_BITSIZE(this->spec.format); + waveformat.nChannels = this->spec.channels; + waveformat.nSamplesPerSec = this->spec.freq; + waveformat.nBlockAlign = + waveformat.nChannels * (waveformat.wBitsPerSample / 8); + waveformat.nAvgBytesPerSec = + waveformat.nSamplesPerSec * waveformat.nBlockAlign; + + result = IXAudio2_CreateSourceVoice(ixa2, &source, &waveformat, + XAUDIO2_VOICE_NOSRC | + XAUDIO2_VOICE_NOPITCH, + 1.0f, &callbacks, NULL, NULL); + if (result != S_OK) { + XAUDIO2_CloseDevice(this); + SDL_SetError("XAudio2: Couldn't create source voice"); + return 0; + } + this->hidden->source = source; + + /* Start everything playing! */ + result = IXAudio2_StartEngine(ixa2); + if (result != S_OK) { + XAUDIO2_CloseDevice(this); + SDL_SetError("XAudio2: Couldn't start engine"); + return 0; + } + + result = IXAudio2SourceVoice_Start(source, 0, XAUDIO2_COMMIT_NOW); + if (result != S_OK) { + XAUDIO2_CloseDevice(this); + SDL_SetError("XAudio2: Couldn't start source voice"); + return 0; + } + + return 1; /* good to go. */ +} + +static void +XAUDIO2_Deinitialize(void) +{ + WIN_CoUninitialize(); +} + +static int +XAUDIO2_Init(SDL_AudioDriverImpl * impl) +{ + /* XAudio2Create() is a macro that uses COM; we don't load the .dll */ + IXAudio2 *ixa2 = NULL; + if (FAILED(WIN_CoInitialize())) { + SDL_SetError("XAudio2: CoInitialize() failed"); + return 0; + } + + if (XAudio2Create(&ixa2, 0, XAUDIO2_DEFAULT_PROCESSOR) != S_OK) { + WIN_CoUninitialize(); + SDL_SetError("XAudio2: XAudio2Create() failed"); + return 0; /* not available. */ + } + IXAudio2_Release(ixa2); + + /* Set the function pointers */ + impl->DetectDevices = XAUDIO2_DetectDevices; + impl->GetDeviceName = XAUDIO2_GetDeviceName; + impl->OpenDevice = XAUDIO2_OpenDevice; + impl->PlayDevice = XAUDIO2_PlayDevice; + impl->WaitDevice = XAUDIO2_WaitDevice; + impl->WaitDone = XAUDIO2_WaitDone; + impl->GetDeviceBuf = XAUDIO2_GetDeviceBuf; + impl->CloseDevice = XAUDIO2_CloseDevice; + impl->Deinitialize = XAUDIO2_Deinitialize; + + return 1; /* this audio target is available. */ +} + +AudioBootStrap XAUDIO2_bootstrap = { + "xaudio2", "XAudio2", XAUDIO2_Init, 0 +}; + +/* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/audio/xaudio2/SDL_xaudio2.h b/src/audio/xaudio2/SDL_xaudio2.h new file mode 100644 index 000000000..1794ae179 --- /dev/null +++ b/src/audio/xaudio2/SDL_xaudio2.h @@ -0,0 +1,46 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2011 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. +*/ +#include "SDL_config.h" + +#ifndef _SDL_xaudio2_h +#define _SDL_xaudio2_h + +#include "../SDL_sysaudio.h" + +#include + +/* Hidden "this" pointer for the audio functions */ +#define _THIS SDL_AudioDevice *this + +struct SDL_PrivateAudioData +{ + IXAudio2 *ixa2; + IXAudio2SourceVoice *source; + IXAudio2MasteringVoice *mastering; + HANDLE semaphore; + Uint8 *mixbuf; + int mixlen; + Uint8 *nextbuf; +}; + +#endif /* _SDL_xaudio2_h */ + +/* vi: set ts=4 sw=4 expandtab: */ From 8e6153c36b9c2bdd258e48352795b71854074ee7 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 4 Aug 2011 00:31:11 -0400 Subject: [PATCH 35/72] Cleaned up audio device detection. Cleared out a lot of cut-and-paste. --- src/audio/SDL_audio.c | 108 ++++++++++++++++--- src/audio/SDL_audiodev.c | 45 ++------ src/audio/SDL_audiodev_c.h | 18 +++- src/audio/SDL_sysaudio.h | 12 ++- src/audio/bsd/SDL_bsdaudio.c | 82 +-------------- src/audio/directsound/SDL_directsound.c | 95 +++-------------- src/audio/dsp/SDL_dspaudio.c | 75 +------------ src/audio/macosx/SDL_coreaudio.c | 134 +++++++----------------- src/audio/qsa/SDL_qsa_audio.c | 34 +----- src/audio/winmm/SDL_winmm.c | 103 ++++-------------- src/audio/xaudio2/SDL_xaudio2.c | 64 ++--------- 11 files changed, 221 insertions(+), 549 deletions(-) diff --git a/src/audio/SDL_audio.c b/src/audio/SDL_audio.c index 2df703486..a03115768 100644 --- a/src/audio/SDL_audio.c +++ b/src/audio/SDL_audio.c @@ -151,10 +151,9 @@ get_audio_device(SDL_AudioDeviceID id) /* stubs for audio drivers that don't need a specific entry point... */ -static int -SDL_AudioDetectDevices_Default(int iscapture) -{ - return -1; +static void +SDL_AudioDetectDevices_Default(int iscapture, SDL_AddAudioDevice addfn) +{ /* no-op. */ } static void @@ -199,13 +198,6 @@ SDL_AudioOpenDevice_Default(_THIS, const char *devname, int iscapture) return 0; } -static const char * -SDL_AudioGetDeviceName_Default(int index, int iscapture) -{ - SDL_SetError("No such device"); - return NULL; -} - static void SDL_AudioLockDevice_Default(SDL_AudioDevice * device) { @@ -238,7 +230,6 @@ finalize_audio_entry_points(void) current_audio.impl.x = SDL_Audio##x##_Default; \ } FILL_STUB(DetectDevices); - FILL_STUB(GetDeviceName); FILL_STUB(OpenDevice); FILL_STUB(ThreadInit); FILL_STUB(WaitDevice); @@ -641,13 +632,64 @@ SDL_GetCurrentAudioDriver() return current_audio.name; } +static void +free_device_list(char ***devices, int *devCount) +{ + int i = *devCount; + if ((i > 0) && (*devices != NULL)) { + while (i--) { + SDL_free((*devices)[i]); + } + } + + if (*devices != NULL) { + SDL_free(*devices); + } + + *devices = NULL; + *devCount = 0; +} + +static +void SDL_AddCaptureAudioDevice(const char *_name) +{ + char *name = NULL; + void *ptr = SDL_realloc(current_audio.inputDevices, + (current_audio.inputDeviceCount+1) * sizeof(char*)); + if (ptr == NULL) { + return; /* oh well. */ + } + + current_audio.inputDevices = (char **) ptr; + name = SDL_strdup(_name); /* if this returns NULL, that's okay. */ + current_audio.inputDevices[current_audio.inputDeviceCount++] = name; +} + +static +void SDL_AddOutputAudioDevice(const char *_name) +{ + char *name = NULL; + void *ptr = SDL_realloc(current_audio.outputDevices, + (current_audio.outputDeviceCount+1) * sizeof(char*)); + if (ptr == NULL) { + return; /* oh well. */ + } + + current_audio.outputDevices = (char **) ptr; + name = SDL_strdup(_name); /* if this returns NULL, that's okay. */ + current_audio.outputDevices[current_audio.outputDeviceCount++] = name; +} + int SDL_GetNumAudioDevices(int iscapture) { + int retval = 0; + if (!SDL_WasInit(SDL_INIT_AUDIO)) { return -1; } + if ((iscapture) && (!current_audio.impl.HasCaptureSupport)) { return 0; } @@ -660,7 +702,19 @@ SDL_GetNumAudioDevices(int iscapture) return 1; } - return current_audio.impl.DetectDevices(iscapture); + if (iscapture) { + free_device_list(¤t_audio.inputDevices, + ¤t_audio.inputDeviceCount); + current_audio.impl.DetectDevices(iscapture, SDL_AddCaptureAudioDevice); + retval = current_audio.inputDeviceCount; + } else { + free_device_list(¤t_audio.outputDevices, + ¤t_audio.outputDeviceCount); + current_audio.impl.DetectDevices(iscapture, SDL_AddOutputAudioDevice); + retval = current_audio.outputDeviceCount; + } + + return retval; } @@ -678,8 +732,7 @@ SDL_GetAudioDeviceName(int index, int iscapture) } if (index < 0) { - SDL_SetError("No such device"); - return NULL; + goto no_such_device; } if ((iscapture) && (current_audio.impl.OnlyHasDefaultInputDevice)) { @@ -690,7 +743,21 @@ SDL_GetAudioDeviceName(int index, int iscapture) return DEFAULT_OUTPUT_DEVNAME; } - return current_audio.impl.GetDeviceName(index, iscapture); + if (iscapture) { + if (index >= current_audio.inputDeviceCount) { + goto no_such_device; + } + return current_audio.inputDevices[index]; + } else { + if (index >= current_audio.outputDeviceCount) { + goto no_such_device; + } + return current_audio.outputDevices[index]; + } + +no_such_device: + SDL_SetError("No such device"); + return NULL; } @@ -880,6 +947,11 @@ open_audio_device(const char *devname, int iscapture, } } + /* force a device detection if we haven't done one yet. */ + if ( ((iscapture) && (current_audio.inputDevices == NULL)) || + ((!iscapture) && (current_audio.outputDevices == NULL)) ) + SDL_GetNumAudioDevices(iscapture); + if (!current_audio.impl.OpenDevice(device, devname, iscapture)) { close_audio_device(device); return 0; @@ -1121,6 +1193,10 @@ SDL_AudioQuit(void) /* Free the driver data */ current_audio.impl.Deinitialize(); + free_device_list(¤t_audio.outputDevices, + ¤t_audio.outputDeviceCount); + free_device_list(¤t_audio.inputDevices, + ¤t_audio.inputDeviceCount); SDL_memset(¤t_audio, '\0', sizeof(current_audio)); SDL_memset(open_devices, '\0', sizeof(open_devices)); } diff --git a/src/audio/SDL_audiodev.c b/src/audio/SDL_audiodev.c index 2b1551ae6..2d8e3936a 100644 --- a/src/audio/SDL_audiodev.c +++ b/src/audio/SDL_audiodev.c @@ -48,46 +48,20 @@ static inline void test_device(const char *fname, int flags, int (*test) (int fd), - char ***devices, int *devCount) + SDL_AddAudioDevice addfn) { struct stat sb; if ((stat(fname, &sb) == 0) && (S_ISCHR(sb.st_mode))) { - int audio_fd = open(fname, flags, 0); - if ((audio_fd >= 0) && (test(audio_fd))) { - void *p = - SDL_realloc(*devices, ((*devCount) + 1) * sizeof(char *)); - if (p != NULL) { - size_t len = strlen(fname) + 1; - char *str = (char *) SDL_malloc(len); - *devices = (char **) p; - if (str != NULL) { - SDL_strlcpy(str, fname, len); - (*devices)[(*devCount)++] = str; - } + const int audio_fd = open(fname, flags, 0); + if (audio_fd >= 0) { + if (test(audio_fd)) { + addfn(fname); } close(audio_fd); } } } -void -SDL_FreeUnixAudioDevices(char ***devices, int *devCount) -{ - int i = *devCount; - if ((i > 0) && (*devices != NULL)) { - while (i--) { - SDL_free((*devices)[i]); - } - } - - if (*devices != NULL) { - SDL_free(*devices); - } - - *devices = NULL; - *devCount = 0; -} - static int test_stub(int fd) { @@ -95,9 +69,10 @@ test_stub(int fd) } void -SDL_EnumUnixAudioDevices(int flags, int classic, int (*test) (int fd), - char ***devices, int *devCount) +SDL_EnumUnixAudioDevices(int iscapture, int classic, int (*test)(int fd), + SDL_AddAudioDevice addfn) { + const int flags = ((iscapture) ? OPEN_FLAGS_INPUT : OPEN_FLAGS_OUTPUT); const char *audiodev; char audiopath[1024]; @@ -122,14 +97,14 @@ SDL_EnumUnixAudioDevices(int flags, int classic, int (*test) (int fd), } } } - test_device(audiodev, flags, test, devices, devCount); + test_device(audiodev, flags, test, addfn); if (SDL_strlen(audiodev) < (sizeof(audiopath) - 3)) { int instance = 0; while (instance++ <= 64) { SDL_snprintf(audiopath, SDL_arraysize(audiopath), "%s%d", audiodev, instance); - test_device(audiopath, flags, test, devices, devCount); + test_device(audiopath, flags, test, addfn); } } } diff --git a/src/audio/SDL_audiodev_c.h b/src/audio/SDL_audiodev_c.h index 7a4340044..919b3a855 100644 --- a/src/audio/SDL_audiodev_c.h +++ b/src/audio/SDL_audiodev_c.h @@ -18,10 +18,22 @@ misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ +#include "SDL.h" #include "SDL_config.h" +#include "SDL_sysaudio.h" -void SDL_EnumUnixAudioDevices(int flags, int classic, int (*test) (int fd), - char ***devs, int *count); -void SDL_FreeUnixAudioDevices(char ***devices, int *devCount); +/* Open the audio device for playback, and don't block if busy */ +/* #define USE_BLOCKING_WRITES */ + +#ifdef USE_BLOCKING_WRITES +#define OPEN_FLAGS_OUTPUT O_WRONLY +#define OPEN_FLAGS_INPUT O_RDONLY +#else +#define OPEN_FLAGS_OUTPUT (O_WRONLY|O_NONBLOCK) +#define OPEN_FLAGS_INPUT (O_RDONLY|O_NONBLOCK) +#endif + +void SDL_EnumUnixAudioDevices(int iscapture, int classic, + int (*test) (int fd), SDL_AddAudioDevice addfn); /* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/audio/SDL_sysaudio.h b/src/audio/SDL_sysaudio.h index 027e3dbb8..14e22a8c1 100644 --- a/src/audio/SDL_sysaudio.h +++ b/src/audio/SDL_sysaudio.h @@ -30,10 +30,12 @@ typedef struct SDL_AudioDevice SDL_AudioDevice; #define _THIS SDL_AudioDevice *_this +/* Used by audio targets during DetectDevices() */ +typedef void (*SDL_AddAudioDevice)(const char *name); + typedef struct SDL_AudioDriverImpl { - int (*DetectDevices) (int iscapture); - const char *(*GetDeviceName) (int index, int iscapture); + void (*DetectDevices) (int iscapture, SDL_AddAudioDevice addfn); int (*OpenDevice) (_THIS, const char *devname, int iscapture); void (*ThreadInit) (_THIS); /* Called by audio thread at start */ void (*WaitDevice) (_THIS); @@ -67,6 +69,12 @@ typedef struct SDL_AudioDriver const char *desc; SDL_AudioDriverImpl impl; + + char **outputDevices; + int outputDeviceCount; + + char **inputDevices; + int inputDeviceCount; } SDL_AudioDriver; diff --git a/src/audio/bsd/SDL_bsdaudio.c b/src/audio/bsd/SDL_bsdaudio.c index 5f39935ea..ef881cfb8 100644 --- a/src/audio/bsd/SDL_bsdaudio.c +++ b/src/audio/bsd/SDL_bsdaudio.c @@ -50,91 +50,23 @@ #define BSD_AUDIO_DRIVER_DESC "Native OpenBSD audio" #endif -/* Open the audio device for playback, and don't block if busy */ -/* #define USE_BLOCKING_WRITES */ - /* Use timer for synchronization */ /* #define USE_TIMER_SYNC */ /* #define DEBUG_AUDIO */ /* #define DEBUG_AUDIO_STREAM */ -#ifdef USE_BLOCKING_WRITES -#define OPEN_FLAGS_OUTPUT O_WRONLY -#define OPEN_FLAGS_INPUT O_RDONLY -#else -#define OPEN_FLAGS_OUTPUT (O_WRONLY|O_NONBLOCK) -#define OPEN_FLAGS_INPUT (O_RDONLY|O_NONBLOCK) -#endif - -/* !!! FIXME: so much cut and paste with dsp target... */ -static char **outputDevices = NULL; -static int outputDeviceCount = 0; -static char **inputDevices = NULL; -static int inputDeviceCount = 0; - -static inline void -free_device_list(char ***devs, int *count) -{ - SDL_FreeUnixAudioDevices(devs, count); -} - -static inline void -build_device_list(int iscapture, char ***devs, int *count) -{ - const int flags = ((iscapture) ? OPEN_FLAGS_INPUT : OPEN_FLAGS_OUTPUT); - free_device_list(devs, count); - SDL_EnumUnixAudioDevices(flags, 0, NULL, devs, count); -} - -static inline void -build_device_lists(void) -{ - build_device_list(0, &outputDevices, &outputDeviceCount); - build_device_list(1, &inputDevices, &inputDeviceCount); -} - - -static inline void -free_device_lists(void) -{ - free_device_list(&outputDevices, &outputDeviceCount); - free_device_list(&inputDevices, &inputDeviceCount); -} - static void BSDAUDIO_Deinitialize(void) { - free_device_lists(); } -static int -BSDAUDIO_DetectDevices(int iscapture) +static void +BSDAUDIO_DetectDevices(int iscapture, SDL_AddAudioDevice addfn) { - if (iscapture) { - build_device_list(1, &inputDevices, &inputDeviceCount); - return inputDeviceCount; - } else { - build_device_list(0, &outputDevices, &outputDeviceCount); - return outputDeviceCount; - } - - return 0; /* shouldn't ever hit this. */ -} - -static const char * -BSDAUDIO_GetDeviceName(int index, int iscapture) -{ - if ((iscapture) && (index < inputDeviceCount)) { - return inputDevices[index]; - } else if ((!iscapture) && (index < outputDeviceCount)) { - return outputDevices[index]; - } - - SDL_SetError("No such device"); - return NULL; + SDL_EnumUnixAudioDevices(iscapture, 0, NULL, addfn); } @@ -318,12 +250,11 @@ BSDAUDIO_OpenDevice(_THIS, const char *devname, int iscapture) /* We don't care what the devname is...we'll try to open anything. */ /* ...but default to first name in the list... */ if (devname == NULL) { - if (((iscapture) && (inputDeviceCount == 0)) || - ((!iscapture) && (outputDeviceCount == 0))) { + devname = SDL_GetAudioDeviceName(0, iscapture); + if (devname == NULL) { SDL_SetError("No such audio device"); return 0; } - devname = ((iscapture) ? inputDevices[0] : outputDevices[0]); } /* Initialize all variables that we clean on shutdown */ @@ -434,7 +365,6 @@ BSDAUDIO_Init(SDL_AudioDriverImpl * impl) { /* Set the function pointers */ impl->DetectDevices = BSDAUDIO_DetectDevices; - impl->GetDeviceName = BSDAUDIO_GetDeviceName; impl->OpenDevice = BSDAUDIO_OpenDevice; impl->PlayDevice = BSDAUDIO_PlayDevice; impl->WaitDevice = BSDAUDIO_WaitDevice; @@ -442,8 +372,6 @@ BSDAUDIO_Init(SDL_AudioDriverImpl * impl) impl->CloseDevice = BSDAUDIO_CloseDevice; impl->Deinitialize = BSDAUDIO_Deinitialize; - build_device_lists(); - return 1; /* this audio target is available. */ } diff --git a/src/audio/directsound/SDL_directsound.c b/src/audio/directsound/SDL_directsound.c index ac6fe15f3..03db0be4d 100644 --- a/src/audio/directsound/SDL_directsound.c +++ b/src/audio/directsound/SDL_directsound.c @@ -148,96 +148,28 @@ SetDSerror(const char *function, int code) } - -/* !!! FIXME: this is a cut and paste of SDL_FreeUnixAudioDevices(), - * !!! FIXME: which is more proof this needs to be managed in SDL_audio.c - * !!! FIXME: and not in drivers. - */ -static void -FreeDSoundAudioDevices(char ***devices, int *devCount) +static BOOL CALLBACK +FindAllDevs(LPGUID guid, LPCWSTR desc, LPCWSTR module, LPVOID data) { - int i = *devCount; - if ((i > 0) && (*devices != NULL)) { - while (i--) { - SDL_free((*devices)[i]); + SDL_AddAudioDevice addfn = (SDL_AddAudioDevice) data; + if (guid != NULL) { /* skip default device */ + char *str = utf16_to_utf8(desc); + if (str != NULL) { + addfn(str); + SDL_free(str); /* addfn() makes a copy of this string. */ } } - - if (*devices != NULL) { - SDL_free(*devices); - } - - *devices = NULL; - *devCount = 0; -} - - -typedef struct FindAllDevsData -{ - const char **devs; - unsigned int devcount; -} FindAllDevsData; - -static BOOL CALLBACK -FindAllDevs(LPGUID guid, LPCWSTR desc, LPCWSTR module, LPVOID _data) -{ - FindAllDevsData *data = (FindAllDevsData *) _data; - void *ptr; - char *name; - - if (guid == NULL) - return TRUE; /* skip default device, go to the next one. */ - - ptr = SDL_realloc(data->devs, ((data->devcount) + 1) * sizeof(char *)); - if (ptr == NULL) - return TRUE; /* oh well. */ - - data->devs = (const char **) ptr; - name = utf16_to_utf8(desc); - if (name != NULL) - data->devs[data->devcount++] = name; - return TRUE; /* keep enumerating. */ } -static char **outputDevices = NULL; -static int outputDeviceCount = 0; -static char **inputDevices = NULL; -static int inputDeviceCount = 0; - -static int -DSOUND_DetectDevices(int iscapture) +static void +DSOUND_DetectDevices(int iscapture, SDL_AddAudioDevice addfn) { - FindAllDevsData data; - data.devs = NULL; - data.devcount = 0; - if (iscapture) { - FreeDSoundAudioDevices(&inputDevices, &inputDeviceCount); - pDirectSoundCaptureEnumerateW(FindAllDevs, &devs); - inputDevices = data.devs; - inputDeviceCount = data.devcount; + pDirectSoundCaptureEnumerateW(FindAllDevs, addfn); } else { - FreeDSoundAudioDevices(&outputDevices, &outputDeviceCount); - pDirectSoundEnumerateW(FindAllDevs, &devs); - outputDevices = data.devs; - outputDeviceCount = data.devcount; + pDirectSoundEnumerateW(FindAllDevs, addfn); } - - return data.devcount; -} - -static const char * -DSOUND_GetDeviceName(int index, int iscapture) -{ - if ((iscapture) && (index < inputDeviceCount)) { - return inputDevices[index]; - } else if ((!iscapture) && (index < outputDeviceCount)) { - return outputDevices[index]; - } - - SDL_SetError("No such device"); - return NULL; } @@ -589,8 +521,6 @@ DSOUND_OpenDevice(_THIS, const char *devname, int iscapture) static void DSOUND_Deinitialize(void) { - FreeDSoundAudioDevices(&inputDevices, &inputDeviceCount); - FreeDSoundAudioDevices(&outputDevices, &outputDeviceCount); DSOUND_Unload(); } @@ -604,7 +534,6 @@ DSOUND_Init(SDL_AudioDriverImpl * impl) /* Set the function pointers */ impl->DetectDevices = DSOUND_DetectDevices; - impl->GetDeviceName = DSOUND_GetDeviceName; impl->OpenDevice = DSOUND_OpenDevice; impl->PlayDevice = DSOUND_PlayDevice; impl->WaitDevice = DSOUND_WaitDevice; diff --git a/src/audio/dsp/SDL_dspaudio.c b/src/audio/dsp/SDL_dspaudio.c index ef303ee7b..a621b7ba3 100644 --- a/src/audio/dsp/SDL_dspaudio.c +++ b/src/audio/dsp/SDL_dspaudio.c @@ -50,77 +50,16 @@ /* The tag name used by DSP audio */ #define DSP_DRIVER_NAME "dsp" -/* Open the audio device for playback, and don't block if busy */ -#define OPEN_FLAGS_OUTPUT (O_WRONLY|O_NONBLOCK) -#define OPEN_FLAGS_INPUT (O_RDONLY|O_NONBLOCK) - -static char **outputDevices = NULL; -static int outputDeviceCount = 0; -static char **inputDevices = NULL; -static int inputDeviceCount = 0; - -static inline void -free_device_list(char ***devs, int *count) +static void +DSP_Deinitialize(void) { - SDL_FreeUnixAudioDevices(devs, count); -} - -static inline void -build_device_list(int iscapture, char ***devs, int *count) -{ - const int flags = ((iscapture) ? OPEN_FLAGS_INPUT : OPEN_FLAGS_OUTPUT); - free_device_list(devs, count); - SDL_EnumUnixAudioDevices(flags, 0, NULL, devs, count); -} - -static inline void -build_device_lists(void) -{ - build_device_list(0, &outputDevices, &outputDeviceCount); - build_device_list(1, &inputDevices, &inputDeviceCount); -} - - -static inline void -free_device_lists(void) -{ - free_device_list(&outputDevices, &outputDeviceCount); - free_device_list(&inputDevices, &inputDeviceCount); } static void -DSP_Deinitialize(void) -{ - free_device_lists(); -} - - -static int DSP_DetectDevices(int iscapture) { - if (iscapture) { - build_device_list(1, &inputDevices, &inputDeviceCount); - return inputDeviceCount; - } else { - build_device_list(0, &outputDevices, &outputDeviceCount); - return outputDeviceCount; - } - - return 0; /* shouldn't ever hit this. */ -} - -static const char * -DSP_GetDeviceName(int index, int iscapture) -{ - if ((iscapture) && (index < inputDeviceCount)) { - return inputDevices[index]; - } else if ((!iscapture) && (index < outputDeviceCount)) { - return outputDevices[index]; - } - - SDL_SetError("No such device"); - return NULL; + SDL_EnumUnixAudioDevices(iscapture, 0, NULL); } @@ -154,12 +93,11 @@ DSP_OpenDevice(_THIS, const char *devname, int iscapture) /* We don't care what the devname is...we'll try to open anything. */ /* ...but default to first name in the list... */ if (devname == NULL) { - if (((iscapture) && (inputDeviceCount == 0)) || - ((!iscapture) && (outputDeviceCount == 0))) { + devname = SDL_GetAudioDeviceName(0, iscapture); + if (devname == NULL) { SDL_SetError("No such audio device"); return 0; } - devname = ((iscapture) ? inputDevices[0] : outputDevices[0]); } /* Make sure fragment size stays a power of 2, or OSS fails. */ @@ -369,15 +307,12 @@ DSP_Init(SDL_AudioDriverImpl * impl) { /* Set the function pointers */ impl->DetectDevices = DSP_DetectDevices; - impl->GetDeviceName = DSP_GetDeviceName; impl->OpenDevice = DSP_OpenDevice; impl->PlayDevice = DSP_PlayDevice; impl->GetDeviceBuf = DSP_GetDeviceBuf; impl->CloseDevice = DSP_CloseDevice; impl->Deinitialize = DSP_Deinitialize; - build_device_lists(); - return 1; /* this audio target is available. */ } diff --git a/src/audio/macosx/SDL_coreaudio.c b/src/audio/macosx/SDL_coreaudio.c index e1f877d5e..d03176de0 100644 --- a/src/audio/macosx/SDL_coreaudio.c +++ b/src/audio/macosx/SDL_coreaudio.c @@ -34,34 +34,36 @@ #define DEBUG_COREAUDIO 0 -typedef struct COREAUDIO_DeviceList -{ - AudioDeviceID id; - const char *name; -} COREAUDIO_DeviceList; - -static COREAUDIO_DeviceList *inputDevices = NULL; -static int inputDeviceCount = 0; -static COREAUDIO_DeviceList *outputDevices = NULL; -static int outputDeviceCount = 0; +typedef void (*addDevFn)(const char *name, AudioDeviceID devId, void *data); static void -free_device_list(COREAUDIO_DeviceList ** devices, int *devCount) +addToDevList(const char *name, AudioDeviceID devId, void *data) { - if (*devices) { - int i = *devCount; - while (i--) - SDL_free((void *) (*devices)[i].name); - SDL_free(*devices); - *devices = NULL; - } - *devCount = 0; + SDL_AddAudioDevice addfn = (SDL_AddAudioDevice) data; + addfn(name); } +typedef struct +{ + const char *findname; + AudioDeviceID devId; + int found; +} FindDevIdData; static void -build_device_list(int iscapture, COREAUDIO_DeviceList ** devices, - int *devCount) +findDevId(const char *name, AudioDeviceID devId, void *_data) +{ + FindDevIdData *data = (FindDevIdData *) _data; + if (!data->found) { + if (SDL_strcmp(name, data->findname) == 0) { + data->found = 1; + data->devId = devId; + } + } +} + +static void +build_device_list(int iscapture, addDevFn addfn, void *addfndata) { Boolean outWritable = 0; OSStatus result = noErr; @@ -70,8 +72,6 @@ build_device_list(int iscapture, COREAUDIO_DeviceList ** devices, UInt32 i = 0; UInt32 max = 0; - free_device_list(devices, devCount); - result = AudioHardwareGetPropertyInfo(kAudioHardwarePropertyDevices, &size, &outWritable); @@ -82,16 +82,12 @@ build_device_list(int iscapture, COREAUDIO_DeviceList ** devices, if (devs == NULL) return; - max = size / sizeof(AudioDeviceID); - *devices = (COREAUDIO_DeviceList *) SDL_malloc(max * sizeof(**devices)); - if (*devices == NULL) - return; - result = AudioHardwareGetProperty(kAudioHardwarePropertyDevices, &size, devs); if (result != kAudioHardwareNoError) return; + max = size / sizeof (AudioDeviceID); for (i = 0; i < max; i++) { CFStringRef cfstr = NULL; char *ptr = NULL; @@ -156,9 +152,7 @@ build_device_list(int iscapture, COREAUDIO_DeviceList ** devices, usable = (len > 0); } - if (!usable) { - SDL_free(ptr); - } else { + if (usable) { ptr[len] = '\0'; #if DEBUG_COREAUDIO @@ -166,80 +160,22 @@ build_device_list(int iscapture, COREAUDIO_DeviceList ** devices, ((iscapture) ? "capture" : "output"), (int) *devCount, ptr, (int) dev); #endif - - (*devices)[*devCount].id = dev; - (*devices)[*devCount].name = ptr; - (*devCount)++; + addfn(ptr, dev, addfndata); } + SDL_free(ptr); /* addfn() would have copied the string. */ } } -static inline void -build_device_lists(void) +static void +COREAUDIO_DetectDevices(int iscapture, SDL_AddAudioDevice addfn) { - build_device_list(0, &outputDevices, &outputDeviceCount); - build_device_list(1, &inputDevices, &inputDeviceCount); -} - - -static inline void -free_device_lists(void) -{ - free_device_list(&outputDevices, &outputDeviceCount); - free_device_list(&inputDevices, &inputDeviceCount); -} - - -static int -find_device_id(const char *devname, int iscapture, AudioDeviceID * id) -{ - int i = ((iscapture) ? inputDeviceCount : outputDeviceCount); - COREAUDIO_DeviceList *devs = ((iscapture) ? inputDevices : outputDevices); - while (i--) { - if (SDL_strcmp(devname, devs->name) == 0) { - *id = devs->id; - return 1; - } - devs++; - } - - return 0; -} - - -static int -COREAUDIO_DetectDevices(int iscapture) -{ - if (iscapture) { - build_device_list(1, &inputDevices, &inputDeviceCount); - return inputDeviceCount; - } else { - build_device_list(0, &outputDevices, &outputDeviceCount); - return outputDeviceCount; - } - - return 0; /* shouldn't ever hit this. */ -} - - -static const char * -COREAUDIO_GetDeviceName(int index, int iscapture) -{ - if ((iscapture) && (index < inputDeviceCount)) { - return inputDevices[index].name; - } else if ((!iscapture) && (index < outputDeviceCount)) { - return outputDevices[index].name; - } - - SDL_SetError("No such device"); - return NULL; + build_device_list(iscapture, addToDevList, addfn); } static void COREAUDIO_Deinitialize(void) { - free_device_lists(); } @@ -378,10 +314,15 @@ find_device_by_name(_THIS, const char *devname, int iscapture) result = AudioHardwareGetProperty(propid, &size, &devid); CHECK_RESULT("AudioHardwareGetProperty (default device)"); } else { - if (!find_device_id(devname, iscapture, &devid)) { + FindDevIdData data; + SDL_zero(data); + data.findname = devname; + build_device_list(iscapture, findDevId, &data); + if (!data.found) { SDL_SetError("CoreAudio: No such audio device."); return 0; } + devid = data.devId; } size = sizeof(alive); @@ -565,14 +506,11 @@ COREAUDIO_Init(SDL_AudioDriverImpl * impl) { /* Set the function pointers */ impl->DetectDevices = COREAUDIO_DetectDevices; - impl->GetDeviceName = COREAUDIO_GetDeviceName; impl->OpenDevice = COREAUDIO_OpenDevice; impl->CloseDevice = COREAUDIO_CloseDevice; impl->Deinitialize = COREAUDIO_Deinitialize; impl->ProvidesOwnCallbackThread = 1; - build_device_lists(); /* do an initial check for devices... */ - return 1; /* this audio target is available. */ } diff --git a/src/audio/qsa/SDL_qsa_audio.c b/src/audio/qsa/SDL_qsa_audio.c index c3588941d..4cfc2e7d0 100644 --- a/src/audio/qsa/SDL_qsa_audio.c +++ b/src/audio/qsa/SDL_qsa_audio.c @@ -651,8 +651,8 @@ QSA_OpenDevice(_THIS, const char *devname, int iscapture) return 1; } -static int -QSA_DetectDevices(int iscapture) +static void +QSA_DetectDevices(int iscapture, SDL_AddAudioDevice addfn) { uint32_t it; uint32_t cards; @@ -667,7 +667,7 @@ QSA_DetectDevices(int iscapture) /* of available audio devices */ if (cards == 0) { /* We have no any available audio devices */ - return 0; + return; } /* Find requested devices by type */ @@ -702,6 +702,7 @@ QSA_DetectDevices(int iscapture) devices; status = snd_pcm_close(handle); if (status == EOK) { + addfn(qsa_playback_device[qsa_playback_devices].name); qsa_playback_devices++; } } else { @@ -757,6 +758,7 @@ QSA_DetectDevices(int iscapture) devices; status = snd_pcm_close(handle); if (status == EOK) { + addfn(qsa_capture_device[qsa_capture_devices].name); qsa_capture_devices++; } } else { @@ -782,31 +784,6 @@ QSA_DetectDevices(int iscapture) } } } - - /* Return amount of available playback or capture devices */ - if (!iscapture) { - return qsa_playback_devices; - } else { - return qsa_capture_devices; - } -} - -static const char * -QSA_GetDeviceName(int index, int iscapture) -{ - if (!iscapture) { - if (index >= qsa_playback_devices) { - return "No such playback device"; - } - - return qsa_playback_device[index].name; - } else { - if (index >= qsa_capture_devices) { - return "No such capture device"; - } - - return qsa_capture_device[index].name; - } } static void @@ -857,7 +834,6 @@ QSA_Init(SDL_AudioDriverImpl * impl) /* DeviceLock and DeviceUnlock functions are used default, */ /* provided by SDL, which uses pthread_mutex for lock/unlock */ impl->DetectDevices = QSA_DetectDevices; - impl->GetDeviceName = QSA_GetDeviceName; impl->OpenDevice = QSA_OpenDevice; impl->ThreadInit = QSA_ThreadInit; impl->WaitDevice = QSA_WaitDevice; diff --git a/src/audio/winmm/SDL_winmm.c b/src/audio/winmm/SDL_winmm.c index 4a2c30a4e..de73f7118 100644 --- a/src/audio/winmm/SDL_winmm.c +++ b/src/audio/winmm/SDL_winmm.c @@ -33,89 +33,33 @@ #include "win_ce_semaphore.h" #endif +#define DETECT_DEV_IMPL(typ, capstyp) \ +static void DetectWave##typ##Devs(SDL_AddAudioDevice addfn) { \ + const UINT devcount = wave##typ##GetNumDevs(); \ + capstyp caps; \ + UINT i; \ + for (i = 0; i < devcount; i++) { \ + if (wave##typ##GetDevCaps(i,&caps,sizeof(caps))==MMSYSERR_NOERROR) { \ + char *name = WIN_StringToUTF8(caps.szPname); \ + if (name != NULL) { \ + addfn(name); \ + SDL_free(name); \ + } \ + } \ + } \ +} + +DETECT_DEV_IMPL(Out, WAVEOUTCAPS) +DETECT_DEV_IMPL(In, WAVEINCAPS) -/* !!! FIXME: this is a cut and paste of SDL_FreeUnixAudioDevices(), - * !!! FIXME: which is more proof this needs to be managed in SDL_audio.c - * !!! FIXME: and not in drivers. - */ static void -FreeWaveOutAudioDevices(char ***devices, int *devCount) +WINMM_DetectDevices(int iscapture, SDL_AddAudioDevice addfn) { - int i = *devCount; - if ((i > 0) && (*devices != NULL)) { - while (i--) { - SDL_free((*devices)[i]); - } + if (iscapture) { + DetectWaveInDevs(addfn); + } else { + DetectWaveOutDevs(addfn); } - - if (*devices != NULL) { - SDL_free(*devices); - } - - *devices = NULL; - *devCount = 0; -} - -static char **outputDevices = NULL; -static int outputDeviceCount = 0; -static char **inputDevices = NULL; -static int inputDeviceCount = 0; - -static int -DetectWaveOutDevices(void) -{ - UINT i; - const UINT devcount = waveOutGetNumDevs(); - WAVEOUTCAPS caps; - FreeWaveOutAudioDevices(&outputDevices, &outputDeviceCount); - outputDevices = (const char **) SDL_malloc(sizeof (char *) * devcount); - for (i = 0; i < devcount; i++) { - if (waveOutGetDevCaps(i, &caps, sizeof (caps)) == MMSYSERR_NOERROR) { - outputDevices[outputDeviceCount] = WIN_StringToUTF8(caps.szPname); - if (outputDevices[outputDeviceCount] != NULL) { - outputDeviceCount++; - } - } - } - return outputDeviceCount; -} - -static int -DetectWaveInDevices(void) -{ - UINT i; - const UINT devcount = waveInGetNumDevs(); - WAVEINCAPS caps; - FreeWaveInAudioDevices(&inputDevices, &inputDeviceCount); - inputDevices = (const char **) SDL_malloc(sizeof (char *) * devcount); - for (i = 0; i < devcount; i++) { - if (waveInGetDevCaps(i, &caps, sizeof (caps)) == MMSYSERR_NOERROR) { - inputDevices[inputDeviceCount] = WIN_StringToUTF8(caps.szPname); - if (inputDevices[inputDeviceCount] != NULL) { - inputDeviceCount++; - } - } - } - return inputDeviceCount; -} - -static int -WINMM_DetectDevices(int iscapture) -{ - return (iscapture) ? DetectWaveInDevices() : DetectWaveOutDevices(); -} - -static const char * -WINMM_GetDeviceName(int index, int iscapture) -{ - if ((iscapture) && (index < inputDeviceCount)) { - return inputDevices[index]; - } else if ((!iscapture) && (index < outputDeviceCount)) { - return outputDevices[index]; - } - - SDL_SetError("No such device"); - return NULL; } static void CALLBACK @@ -448,7 +392,6 @@ WINMM_Init(SDL_AudioDriverImpl * impl) { /* Set the function pointers */ impl->DetectDevices = WINMM_DetectDevices; - impl->GetDeviceName = WINMM_GetDeviceName; impl->OpenDevice = WINMM_OpenDevice; impl->PlayDevice = WINMM_PlayDevice; impl->WaitDevice = WINMM_WaitDevice; diff --git a/src/audio/xaudio2/SDL_xaudio2.c b/src/audio/xaudio2/SDL_xaudio2.c index 4c769474a..b28169d12 100644 --- a/src/audio/xaudio2/SDL_xaudio2.c +++ b/src/audio/xaudio2/SDL_xaudio2.c @@ -24,35 +24,9 @@ #include "../SDL_audio_c.h" #include "SDL_assert.h" -#define INITGUID 1 +#define INITGUID 1 #include "SDL_xaudio2.h" -/* !!! FIXME: this is a cut and paste of SDL_FreeUnixAudioDevices(), - * !!! FIXME: which is more proof this needs to be managed in SDL_audio.c - * !!! FIXME: and not in drivers. - */ -static void -FreeXAudio2AudioDevices(char ***devices, int *devCount) -{ - int i = *devCount; - if ((i > 0) && (*devices != NULL)) { - while (i--) { - SDL_free((*devices)[i]); - } - } - - if (*devices != NULL) { - SDL_free(*devices); - } - - *devices = NULL; - *devCount = 0; -} - - -static char **outputDevices = NULL; -static int outputDeviceCount = 0; - static __inline__ char * utf16_to_utf8(const WCHAR *S) { @@ -61,59 +35,38 @@ utf16_to_utf8(const WCHAR *S) (SDL_wcslen(S)+1)*sizeof(WCHAR)); } -static int -XAUDIO2_DetectDevices(int iscapture) +static void +XAUDIO2_DetectDevices(int iscapture, SDL_AddAudioDevice addfn) { IXAudio2 *ixa2 = NULL; UINT32 devcount = 0; UINT32 i = 0; void *ptr = NULL; - if (!iscapture) { - FreeXAudio2AudioDevices(&outputDevices, &outputDeviceCount); - } - if (iscapture) { SDL_SetError("XAudio2: capture devices unsupported."); - return 0; + return; } else if (XAudio2Create(&ixa2, 0, XAUDIO2_DEFAULT_PROCESSOR) != S_OK) { SDL_SetError("XAudio2: XAudio2Create() failed."); - return 0; + return; } else if (IXAudio2_GetDeviceCount(ixa2, &devcount) != S_OK) { SDL_SetError("XAudio2: IXAudio2::GetDeviceCount() failed."); IXAudio2_Release(ixa2); - return 0; - } else if ((ptr = SDL_malloc(sizeof (char *) * devcount)) == NULL) { - SDL_OutOfMemory(); - IXAudio2_Release(ixa2); - return 0; + return; } - outputDevices = (char **) ptr; for (i = 0; i < devcount; i++) { XAUDIO2_DEVICE_DETAILS details; if (IXAudio2_GetDeviceDetails(ixa2, i, &details) == S_OK) { char *str = utf16_to_utf8(details.DisplayName); if (str != NULL) { - outputDevices[outputDeviceCount++] = str; + addfn(str); + SDL_free(str); /* addfn() made a copy of the string. */ } } } IXAudio2_Release(ixa2); - - return outputDeviceCount; -} - -static const char * -XAUDIO2_GetDeviceName(int index, int iscapture) -{ - if ((!iscapture) && (index < outputDeviceCount)) { - return outputDevices[index]; - } - - SDL_SetError("XAudio2: No such device"); - return NULL; } static void STDMETHODCALLTYPE @@ -436,7 +389,6 @@ XAUDIO2_Init(SDL_AudioDriverImpl * impl) /* Set the function pointers */ impl->DetectDevices = XAUDIO2_DetectDevices; - impl->GetDeviceName = XAUDIO2_GetDeviceName; impl->OpenDevice = XAUDIO2_OpenDevice; impl->PlayDevice = XAUDIO2_PlayDevice; impl->WaitDevice = XAUDIO2_WaitDevice; From b4cf784f88d630422d54f51c94fae5eee4638c7a Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 26 Jul 2011 14:18:00 -0700 Subject: [PATCH 36/72] Removed needless macros in various audio targets. --- src/audio/alsa/SDL_alsa_audio.c | 5 +---- src/audio/arts/SDL_artsaudio.c | 5 +---- src/audio/bsd/SDL_bsdaudio.c | 11 +---------- src/audio/disk/SDL_diskaudio.c | 5 +---- src/audio/dsp/SDL_dspaudio.c | 5 +---- src/audio/esd/SDL_esdaudio.c | 5 +---- src/audio/fusionsound/SDL_fsaudio.c | 4 +--- src/audio/nas/SDL_nasaudio.c | 5 +---- src/audio/paudio/SDL_paudio.c | 5 +---- src/audio/pulseaudio/SDL_pulseaudio.c | 5 +---- src/audio/qsa/SDL_qsa_audio.c | 5 +---- src/audio/ums/SDL_umsaudio.c | 6 +----- 12 files changed, 12 insertions(+), 54 deletions(-) diff --git a/src/audio/alsa/SDL_alsa_audio.c b/src/audio/alsa/SDL_alsa_audio.c index 71c993b0c..31b2063b9 100644 --- a/src/audio/alsa/SDL_alsa_audio.c +++ b/src/audio/alsa/SDL_alsa_audio.c @@ -37,9 +37,6 @@ #include "SDL_loadso.h" #endif -/* The tag name used by ALSA audio */ -#define DRIVER_NAME "alsa" - static int (*ALSA_snd_pcm_open) (snd_pcm_t **, const char *, snd_pcm_stream_t, int); static int (*ALSA_snd_pcm_close) (snd_pcm_t * pcm); @@ -684,7 +681,7 @@ ALSA_Init(SDL_AudioDriverImpl * impl) AudioBootStrap ALSA_bootstrap = { - DRIVER_NAME, "ALSA PCM audio", ALSA_Init, 0 + "alsa", "ALSA PCM audio", ALSA_Init, 0 }; /* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/audio/arts/SDL_artsaudio.c b/src/audio/arts/SDL_artsaudio.c index 66704ef5b..0abe283e7 100644 --- a/src/audio/arts/SDL_artsaudio.c +++ b/src/audio/arts/SDL_artsaudio.c @@ -41,9 +41,6 @@ #define SDL_NAME(X) X #endif -/* The tag name used by artsc audio */ -#define ARTS_DRIVER_NAME "arts" - #ifdef SDL_AUDIO_DRIVER_ARTS_DYNAMIC static const char *arts_library = SDL_AUDIO_DRIVER_ARTS_DYNAMIC; @@ -372,7 +369,7 @@ ARTS_Init(SDL_AudioDriverImpl * impl) AudioBootStrap ARTS_bootstrap = { - ARTS_DRIVER_NAME, "Analog RealTime Synthesizer", ARTS_Init, 0 + "arts", "Analog RealTime Synthesizer", ARTS_Init, 0 }; /* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/audio/bsd/SDL_bsdaudio.c b/src/audio/bsd/SDL_bsdaudio.c index ef881cfb8..546eba93f 100644 --- a/src/audio/bsd/SDL_bsdaudio.c +++ b/src/audio/bsd/SDL_bsdaudio.c @@ -41,15 +41,6 @@ #include "../SDL_audiodev_c.h" #include "SDL_bsdaudio.h" -/* The tag name used by NetBSD/OpenBSD audio */ -#ifdef __NetBSD__ -#define BSD_AUDIO_DRIVER_NAME "netbsd" -#define BSD_AUDIO_DRIVER_DESC "Native NetBSD audio" -#else -#define BSD_AUDIO_DRIVER_NAME "openbsd" -#define BSD_AUDIO_DRIVER_DESC "Native OpenBSD audio" -#endif - /* Use timer for synchronization */ /* #define USE_TIMER_SYNC */ @@ -377,7 +368,7 @@ BSDAUDIO_Init(SDL_AudioDriverImpl * impl) AudioBootStrap BSD_AUDIO_bootstrap = { - BSD_AUDIO_DRIVER_NAME, BSD_AUDIO_DRIVER_DESC, BSDAUDIO_Init, 0 + "bsd", "BSD audio", BSDAUDIO_Init, 0 }; /* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/audio/disk/SDL_diskaudio.c b/src/audio/disk/SDL_diskaudio.c index 4544f473e..283ef22d1 100644 --- a/src/audio/disk/SDL_diskaudio.c +++ b/src/audio/disk/SDL_diskaudio.c @@ -33,9 +33,6 @@ #include "../SDL_audio_c.h" #include "SDL_diskaudio.h" -/* The tag name used by DISK audio */ -#define DISKAUD_DRIVER_NAME "disk" - /* environment variables and defaults. */ #define DISKENVR_OUTFILE "SDL_DISKAUDIOFILE" #define DISKDEFAULT_OUTFILE "sdlaudio.raw" @@ -159,7 +156,7 @@ DISKAUD_Init(SDL_AudioDriverImpl * impl) } AudioBootStrap DISKAUD_bootstrap = { - DISKAUD_DRIVER_NAME, "direct-to-disk audio", DISKAUD_Init, 1 + "disk", "direct-to-disk audio", DISKAUD_Init, 1 }; /* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/audio/dsp/SDL_dspaudio.c b/src/audio/dsp/SDL_dspaudio.c index a621b7ba3..31688aa8c 100644 --- a/src/audio/dsp/SDL_dspaudio.c +++ b/src/audio/dsp/SDL_dspaudio.c @@ -47,9 +47,6 @@ #include "../SDL_audiodev_c.h" #include "SDL_dspaudio.h" -/* The tag name used by DSP audio */ -#define DSP_DRIVER_NAME "dsp" - static void DSP_Deinitialize(void) { @@ -318,7 +315,7 @@ DSP_Init(SDL_AudioDriverImpl * impl) AudioBootStrap DSP_bootstrap = { - DSP_DRIVER_NAME, "OSS /dev/dsp standard audio", DSP_Init, 0 + "dsp", "OSS /dev/dsp standard audio", DSP_Init, 0 }; /* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/audio/esd/SDL_esdaudio.c b/src/audio/esd/SDL_esdaudio.c index e03fee47b..4cc8e2914 100644 --- a/src/audio/esd/SDL_esdaudio.c +++ b/src/audio/esd/SDL_esdaudio.c @@ -41,9 +41,6 @@ #define SDL_NAME(X) X #endif -/* The tag name used by ESD audio */ -#define ESD_DRIVER_NAME "esd" - #ifdef SDL_AUDIO_DRIVER_ESD_DYNAMIC static const char *esd_library = SDL_AUDIO_DRIVER_ESD_DYNAMIC; @@ -345,7 +342,7 @@ ESD_Init(SDL_AudioDriverImpl * impl) AudioBootStrap ESD_bootstrap = { - ESD_DRIVER_NAME, "Enlightened Sound Daemon", ESD_Init, 0 + "esd", "Enlightened Sound Daemon", ESD_Init, 0 }; /* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/audio/fusionsound/SDL_fsaudio.c b/src/audio/fusionsound/SDL_fsaudio.c index 63bbfd807..ebe2eb079 100644 --- a/src/audio/fusionsound/SDL_fsaudio.c +++ b/src/audio/fusionsound/SDL_fsaudio.c @@ -48,8 +48,6 @@ typedef DFBResult DirectResult; #endif -/* The tag name used by fusionsoundc audio */ -#define SDL_FS_DRIVER_NAME "fusionsound" /* Buffers to use - more than 2 gives a lot of latency */ #define FUSION_BUFFERS (2) @@ -344,7 +342,7 @@ SDL_FS_Init(SDL_AudioDriverImpl * impl) AudioBootStrap FUSIONSOUND_bootstrap = { - SDL_FS_DRIVER_NAME, "FusionSound", SDL_FS_Init, 0 + "fusionsound", "FusionSound", SDL_FS_Init, 0 }; /* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/audio/nas/SDL_nasaudio.c b/src/audio/nas/SDL_nasaudio.c index 7c9534b72..eb622035e 100644 --- a/src/audio/nas/SDL_nasaudio.c +++ b/src/audio/nas/SDL_nasaudio.c @@ -32,9 +32,6 @@ #include "../SDL_audio_c.h" #include "SDL_nasaudio.h" -/* The tag name used by nas audio */ -#define NAS_DRIVER_NAME "nas" - static struct SDL_PrivateAudioData *this2 = NULL; @@ -397,7 +394,7 @@ NAS_Init(SDL_AudioDriverImpl * impl) } AudioBootStrap NAS_bootstrap = { - NAS_DRIVER_NAME, "Network Audio System", NAS_Init, 0 + "nas", "Network Audio System", NAS_Init, 0 }; /* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/audio/paudio/SDL_paudio.c b/src/audio/paudio/SDL_paudio.c index b53fcbf74..2036c0c2f 100644 --- a/src/audio/paudio/SDL_paudio.c +++ b/src/audio/paudio/SDL_paudio.c @@ -45,9 +45,6 @@ #undef BIG_ENDIAN #include -/* The tag name used by paud audio */ -#define PAUDIO_DRIVER_NAME "paud" - /* Open the audio device for playback, and don't block if busy */ /* #define OPEN_FLAGS (O_WRONLY|O_NONBLOCK) */ #define OPEN_FLAGS O_WRONLY @@ -545,7 +542,7 @@ PAUDIO_Init(SDL_AudioDriverImpl * impl) } AudioBootStrap PAUDIO_bootstrap = { - PAUDIO_DRIVER_NAME, "AIX Paudio", PAUDIO_Init, 0 + "paud", "AIX Paudio", PAUDIO_Init, 0 }; /* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/audio/pulseaudio/SDL_pulseaudio.c b/src/audio/pulseaudio/SDL_pulseaudio.c index 2bc19e9a2..6b2333e02 100644 --- a/src/audio/pulseaudio/SDL_pulseaudio.c +++ b/src/audio/pulseaudio/SDL_pulseaudio.c @@ -47,9 +47,6 @@ #include "SDL_pulseaudio.h" #include "SDL_loadso.h" -/* The tag name used by pulse audio */ -#define PULSEAUDIO_DRIVER_NAME "pulseaudio" - #if (PA_API_VERSION < 12) /** Return non-zero if the passed state is one of the connected states */ static inline int PA_CONTEXT_IS_GOOD(pa_context_state_t x) { @@ -502,7 +499,7 @@ PULSEAUDIO_Init(SDL_AudioDriverImpl * impl) AudioBootStrap PULSEAUDIO_bootstrap = { - PULSEAUDIO_DRIVER_NAME, "PulseAudio", PULSEAUDIO_Init, 0 + "pulseaudio", "PulseAudio", PULSEAUDIO_Init, 0 }; #endif /* SDL_AUDIO_DRIVER_PULSEAUDIO */ diff --git a/src/audio/qsa/SDL_qsa_audio.c b/src/audio/qsa/SDL_qsa_audio.c index 4cfc2e7d0..590b089e8 100644 --- a/src/audio/qsa/SDL_qsa_audio.c +++ b/src/audio/qsa/SDL_qsa_audio.c @@ -38,9 +38,6 @@ #include "../SDL_audio_c.h" #include "SDL_qsa_audio.h" -/* The tag name used by QSA audio framework */ -#define DRIVER_NAME "qsa" - /* default channel communication parameters */ #define DEFAULT_CPARAMS_RATE 44100 #define DEFAULT_CPARAMS_VOICES 1 @@ -863,7 +860,7 @@ QSA_Init(SDL_AudioDriverImpl * impl) } AudioBootStrap QSAAUDIO_bootstrap = { - DRIVER_NAME, "QNX QSA Audio", QSA_Init, 0 + "qsa", "QNX QSA Audio", QSA_Init, 0 }; /* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/audio/ums/SDL_umsaudio.c b/src/audio/ums/SDL_umsaudio.c index 81db62623..999ad01e8 100644 --- a/src/audio/ums/SDL_umsaudio.c +++ b/src/audio/ums/SDL_umsaudio.c @@ -40,9 +40,6 @@ #include "../SDL_audio_c.h" #include "SDL_umsaudio.h" -/* The tag name used by UMS audio */ -#define UMS_DRIVER_NAME "ums" - #define DEBUG_AUDIO 1 /* Audio driver functions */ @@ -152,8 +149,7 @@ Audio_CreateDevice(int devindex) } AudioBootStrap UMS_bootstrap = { - UMS_DRIVER_NAME, "AIX UMS audio", - Audio_Available, Audio_CreateDevice, 0 + "ums", "AIX UMS audio", Audio_Available, Audio_CreateDevice, 0 }; static Uint8 * From cd8da3097b1598c3a65fca2fa6330e70729d2bae Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 26 Jul 2011 14:20:22 -0700 Subject: [PATCH 37/72] Removed no-op Deinitialize methods in audio drivers. --- src/audio/bsd/SDL_bsdaudio.c | 7 ------- src/audio/dsp/SDL_dspaudio.c | 6 ------ src/audio/iphoneos/SDL_coreaudio_iphone.c | 6 ------ src/audio/macosx/SDL_coreaudio.c | 8 -------- 4 files changed, 27 deletions(-) diff --git a/src/audio/bsd/SDL_bsdaudio.c b/src/audio/bsd/SDL_bsdaudio.c index 546eba93f..7da1687ed 100644 --- a/src/audio/bsd/SDL_bsdaudio.c +++ b/src/audio/bsd/SDL_bsdaudio.c @@ -48,12 +48,6 @@ /* #define DEBUG_AUDIO_STREAM */ -static void -BSDAUDIO_Deinitialize(void) -{ -} - - static void BSDAUDIO_DetectDevices(int iscapture, SDL_AddAudioDevice addfn) { @@ -361,7 +355,6 @@ BSDAUDIO_Init(SDL_AudioDriverImpl * impl) impl->WaitDevice = BSDAUDIO_WaitDevice; impl->GetDeviceBuf = BSDAUDIO_GetDeviceBuf; impl->CloseDevice = BSDAUDIO_CloseDevice; - impl->Deinitialize = BSDAUDIO_Deinitialize; return 1; /* this audio target is available. */ } diff --git a/src/audio/dsp/SDL_dspaudio.c b/src/audio/dsp/SDL_dspaudio.c index 31688aa8c..0d3aeb09d 100644 --- a/src/audio/dsp/SDL_dspaudio.c +++ b/src/audio/dsp/SDL_dspaudio.c @@ -47,11 +47,6 @@ #include "../SDL_audiodev_c.h" #include "SDL_dspaudio.h" -static void -DSP_Deinitialize(void) -{ -} - static void DSP_DetectDevices(int iscapture) @@ -308,7 +303,6 @@ DSP_Init(SDL_AudioDriverImpl * impl) impl->PlayDevice = DSP_PlayDevice; impl->GetDeviceBuf = DSP_GetDeviceBuf; impl->CloseDevice = DSP_CloseDevice; - impl->Deinitialize = DSP_Deinitialize; return 1; /* this audio target is available. */ } diff --git a/src/audio/iphoneos/SDL_coreaudio_iphone.c b/src/audio/iphoneos/SDL_coreaudio_iphone.c index 0d67657a6..dcd3cd355 100644 --- a/src/audio/iphoneos/SDL_coreaudio_iphone.c +++ b/src/audio/iphoneos/SDL_coreaudio_iphone.c @@ -29,11 +29,6 @@ #define DEBUG_COREAUDIO 0 -static void -COREAUDIO_Deinitialize(void) -{ -} - /* The CoreAudio callback */ static OSStatus outputCallback(void *inRefCon, @@ -320,7 +315,6 @@ COREAUDIO_Init(SDL_AudioDriverImpl * impl) /* Set the function pointers */ impl->OpenDevice = COREAUDIO_OpenDevice; impl->CloseDevice = COREAUDIO_CloseDevice; - impl->Deinitialize = COREAUDIO_Deinitialize; impl->ProvidesOwnCallbackThread = 1; /* added for iPhone */ diff --git a/src/audio/macosx/SDL_coreaudio.c b/src/audio/macosx/SDL_coreaudio.c index d03176de0..542a1c9dd 100644 --- a/src/audio/macosx/SDL_coreaudio.c +++ b/src/audio/macosx/SDL_coreaudio.c @@ -172,13 +172,6 @@ COREAUDIO_DetectDevices(int iscapture, SDL_AddAudioDevice addfn) build_device_list(iscapture, addToDevList, addfn); } - -static void -COREAUDIO_Deinitialize(void) -{ -} - - /* The CoreAudio callback */ static OSStatus outputCallback(void *inRefCon, @@ -508,7 +501,6 @@ COREAUDIO_Init(SDL_AudioDriverImpl * impl) impl->DetectDevices = COREAUDIO_DetectDevices; impl->OpenDevice = COREAUDIO_OpenDevice; impl->CloseDevice = COREAUDIO_CloseDevice; - impl->Deinitialize = COREAUDIO_Deinitialize; impl->ProvidesOwnCallbackThread = 1; return 1; /* this audio target is available. */ From b2540abd8e7382e60016aa57c9ce3645843fddbb Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 4 Aug 2011 00:45:09 -0400 Subject: [PATCH 38/72] Merged Mac OS X and iOS audio targets. --HG-- rename : src/audio/macosx/SDL_coreaudio.c => src/audio/coreaudio/SDL_coreaudio.c rename : src/audio/macosx/SDL_coreaudio.h => src/audio/coreaudio/SDL_coreaudio.h --- .../SDL/SDLiPhoneOS.xcodeproj/project.pbxproj | 32 +- Xcode/SDL/SDL.xcodeproj/project.pbxproj | 6 +- configure.in | 2 +- src/audio/SDL_audio.c | 4 - .../{macosx => coreaudio}/SDL_coreaudio.c | 178 ++++++---- .../{macosx => coreaudio}/SDL_coreaudio.h | 6 + src/audio/iphoneos/SDL_coreaudio_iphone.c | 333 ------------------ src/audio/iphoneos/SDL_coreaudio_iphone.h | 42 --- 8 files changed, 135 insertions(+), 468 deletions(-) rename src/audio/{macosx => coreaudio}/SDL_coreaudio.c (94%) rename src/audio/{macosx => coreaudio}/SDL_coreaudio.h (93%) delete mode 100644 src/audio/iphoneos/SDL_coreaudio_iphone.c delete mode 100644 src/audio/iphoneos/SDL_coreaudio_iphone.h diff --git a/Xcode-iPhoneOS/SDL/SDLiPhoneOS.xcodeproj/project.pbxproj b/Xcode-iPhoneOS/SDL/SDLiPhoneOS.xcodeproj/project.pbxproj index 50fa59986..dfbc46337 100755 --- a/Xcode-iPhoneOS/SDL/SDLiPhoneOS.xcodeproj/project.pbxproj +++ b/Xcode-iPhoneOS/SDL/SDLiPhoneOS.xcodeproj/project.pbxproj @@ -123,6 +123,8 @@ 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, ); }; }; 22C905CD13A22646003FE4E4 /* SDL_hints_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 22C905CC13A22646003FE4E4 /* SDL_hints_c.h */; }; + 56EA86FB13E9EC2B002E47EB /* SDL_coreaudio.c in Sources */ = {isa = PBXBuildFile; fileRef = 56EA86F913E9EC2B002E47EB /* SDL_coreaudio.c */; }; + 56EA86FC13E9EC2B002E47EB /* SDL_coreaudio.h in Headers */ = {isa = PBXBuildFile; fileRef = 56EA86FA13E9EC2B002E47EB /* SDL_coreaudio.h */; }; 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 */; }; @@ -191,8 +193,6 @@ 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 */; }; @@ -378,6 +378,8 @@ 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; }; 22C905CC13A22646003FE4E4 /* SDL_hints_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_hints_c.h; path = ../../src/SDL_hints_c.h; sourceTree = ""; }; + 56EA86F913E9EC2B002E47EB /* SDL_coreaudio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_coreaudio.c; path = coreaudio/SDL_coreaudio.c; sourceTree = ""; }; + 56EA86FA13E9EC2B002E47EB /* SDL_coreaudio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_coreaudio.h; path = coreaudio/SDL_coreaudio.h; sourceTree = ""; }; 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 = ""; }; @@ -392,8 +394,6 @@ 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 = ""; }; @@ -785,6 +785,15 @@ name = Frameworks; sourceTree = ""; }; + 56EA86F813E9EBF9002E47EB /* coreaudio */ = { + isa = PBXGroup; + children = ( + 56EA86F913E9EC2B002E47EB /* SDL_coreaudio.c */, + 56EA86FA13E9EC2B002E47EB /* SDL_coreaudio.h */, + ); + name = coreaudio; + sourceTree = ""; + }; 56ED04DE118A8E9A00A56AA6 /* power */ = { isa = PBXGroup; children = ( @@ -828,15 +837,6 @@ path = ../../src/joystick; sourceTree = SOURCE_ROOT; }; - FD689EF80E26E57800F90B21 /* iphoneos */ = { - isa = PBXGroup; - children = ( - FD689EF90E26E57800F90B21 /* SDL_coreaudio_iphone.c */, - FD689EFA0E26E57800F90B21 /* SDL_coreaudio_iphone.h */, - ); - path = iphoneos; - sourceTree = ""; - }; FD689EFF0E26E5B600F90B21 /* iphoneos */ = { isa = PBXGroup; children = ( @@ -983,7 +983,7 @@ FD99B8FB0DD52EDC00FB1D6B /* audio */ = { isa = PBXGroup; children = ( - FD689EF80E26E57800F90B21 /* iphoneos */, + 56EA86F813E9EBF9002E47EB /* coreaudio */, FD99B91C0DD52EDC00FB1D6B /* dummy */, FD99B9440DD52EDC00FB1D6B /* SDL_audio.c */, FD99B9450DD52EDC00FB1D6B /* SDL_audio_c.h */, @@ -1196,7 +1196,6 @@ FDA686000DF244C800F98A1A /* SDL_nullvideo.h in Headers */, FD5F9D300E0E08B3008E885B /* SDL_joystick_c.h in Headers */, FD5F9D310E0E08B3008E885B /* SDL_sysjoystick.h in Headers */, - FD689EFC0E26E57800F90B21 /* SDL_coreaudio_iphone.h in Headers */, FD689F040E26E5B600F90B21 /* SDLUIAccelerationDelegate.h in Headers */, FD689F1C0E26E5D900F90B21 /* SDL_uikitevents.h in Headers */, FD689F1E0E26E5D900F90B21 /* SDL_uikitopengles.h in Headers */, @@ -1245,6 +1244,7 @@ 04BAC09C1300C1290055DE28 /* SDL_assert_c.h in Headers */, 0417A516130C988500578583 /* SDL_keycode.h in Headers */, 22C905CD13A22646003FE4E4 /* SDL_hints_c.h in Headers */, + 56EA86FC13E9EC2B002E47EB /* SDL_coreaudio.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1433,7 +1433,6 @@ FDA685FB0DF244C800F98A1A /* SDL_nullevents.c in Sources */, FDA685FF0DF244C800F98A1A /* SDL_nullvideo.c in Sources */, FD5F9D2F0E0E08B3008E885B /* SDL_joystick.c in Sources */, - FD689EFB0E26E57800F90B21 /* SDL_coreaudio_iphone.c in Sources */, FD689F030E26E5B600F90B21 /* SDL_sysjoystick.m in Sources */, FD689F050E26E5B600F90B21 /* SDLUIAccelerationDelegate.m in Sources */, FD689F1D0E26E5D900F90B21 /* SDL_uikitevents.m in Sources */, @@ -1474,6 +1473,7 @@ 0402A85812FE70C600CECEE3 /* SDL_render_gles2.c in Sources */, 0402A85912FE70C600CECEE3 /* SDL_shaders_gles2.c in Sources */, 04BAC09D1300C1290055DE28 /* SDL_log.c in Sources */, + 56EA86FB13E9EC2B002E47EB /* SDL_coreaudio.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; diff --git a/Xcode/SDL/SDL.xcodeproj/project.pbxproj b/Xcode/SDL/SDL.xcodeproj/project.pbxproj index 5595ba1a9..bb44fa18f 100755 --- a/Xcode/SDL/SDL.xcodeproj/project.pbxproj +++ b/Xcode/SDL/SDL.xcodeproj/project.pbxproj @@ -1139,7 +1139,7 @@ children = ( 04BDFD8712E6671700899322 /* disk */, 04BDFD9312E6671700899322 /* dummy */, - 04BDFD9F12E6671700899322 /* macosx */, + 04BDFD9F12E6671700899322 /* coreaudio */, 04BDFDB412E6671700899322 /* SDL_audio.c */, 04BDFDB512E6671700899322 /* SDL_audio_c.h */, 04BDFDB612E6671700899322 /* SDL_audiocvt.c */, @@ -1174,13 +1174,13 @@ path = dummy; sourceTree = ""; }; - 04BDFD9F12E6671700899322 /* macosx */ = { + 04BDFD9F12E6671700899322 /* coreaudio */ = { isa = PBXGroup; children = ( 04BDFDA012E6671700899322 /* SDL_coreaudio.c */, 04BDFDA112E6671700899322 /* SDL_coreaudio.h */, ); - path = macosx; + path = coreaudio; sourceTree = ""; }; 04BDFDD312E6671700899322 /* cpuinfo */ = { diff --git a/configure.in b/configure.in index 845d1d296..9da74125c 100644 --- a/configure.in +++ b/configure.in @@ -2306,7 +2306,7 @@ AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[defau # Set up files for the audio library if test x$enable_audio = xyes; then AC_DEFINE(SDL_AUDIO_DRIVER_COREAUDIO, 1, [ ]) - SOURCES="$SOURCES $srcdir/src/audio/macosx/*.c" + SOURCES="$SOURCES $srcdir/src/audio/coreaudio/*.c" have_audio=yes fi # Set up files for the joystick library diff --git a/src/audio/SDL_audio.c b/src/audio/SDL_audio.c index a03115768..1a544fcd8 100644 --- a/src/audio/SDL_audio.c +++ b/src/audio/SDL_audio.c @@ -58,7 +58,6 @@ extern AudioBootStrap WINMM_bootstrap; extern AudioBootStrap PAUDIO_bootstrap; extern AudioBootStrap BEOSAUDIO_bootstrap; extern AudioBootStrap COREAUDIO_bootstrap; -extern AudioBootStrap COREAUDIOIPHONE_bootstrap; extern AudioBootStrap SNDMGR_bootstrap; extern AudioBootStrap DISKAUD_bootstrap; extern AudioBootStrap DUMMYAUD_bootstrap; @@ -116,9 +115,6 @@ static const AudioBootStrap *const bootstrap[] = { #if SDL_AUDIO_DRIVER_COREAUDIO &COREAUDIO_bootstrap, #endif -#if SDL_AUDIO_DRIVER_COREAUDIOIPHONE - &COREAUDIOIPHONE_bootstrap, -#endif #if SDL_AUDIO_DRIVER_DISK &DISKAUD_bootstrap, #endif diff --git a/src/audio/macosx/SDL_coreaudio.c b/src/audio/coreaudio/SDL_coreaudio.c similarity index 94% rename from src/audio/macosx/SDL_coreaudio.c rename to src/audio/coreaudio/SDL_coreaudio.c index 542a1c9dd..c8d8aedaf 100644 --- a/src/audio/macosx/SDL_coreaudio.c +++ b/src/audio/coreaudio/SDL_coreaudio.c @@ -20,12 +20,15 @@ */ #include "SDL_config.h" +#if MACOSX_COREAUDIO #include #include -#include #if MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_5 #include #endif +#endif + +#include #include "SDL_audio.h" #include "../SDL_audio_c.h" @@ -34,6 +37,16 @@ #define DEBUG_COREAUDIO 0 +static void COREAUDIO_CloseDevice(_THIS); + +#define CHECK_RESULT(msg) \ + if (result != noErr) { \ + COREAUDIO_CloseDevice(this); \ + SDL_SetError("CoreAudio error (%s): %d", msg, (int) result); \ + return 0; \ + } + +#if MACOSX_COREAUDIO typedef void (*addDevFn)(const char *name, AudioDeviceID devId, void *data); static void @@ -172,6 +185,62 @@ COREAUDIO_DetectDevices(int iscapture, SDL_AddAudioDevice addfn) build_device_list(iscapture, addToDevList, addfn); } +static int +find_device_by_name(_THIS, const char *devname, int iscapture) +{ + AudioDeviceID devid = 0; + OSStatus result = noErr; + UInt32 size = 0; + UInt32 alive = 0; + pid_t pid = 0; + + if (devname == NULL) { + size = sizeof(AudioDeviceID); + const AudioHardwarePropertyID propid = + ((iscapture) ? kAudioHardwarePropertyDefaultInputDevice : + kAudioHardwarePropertyDefaultOutputDevice); + + result = AudioHardwareGetProperty(propid, &size, &devid); + CHECK_RESULT("AudioHardwareGetProperty (default device)"); + } else { + FindDevIdData data; + SDL_zero(data); + data.findname = devname; + build_device_list(iscapture, findDevId, &data); + if (!data.found) { + SDL_SetError("CoreAudio: No such audio device."); + return 0; + } + devid = data.devId; + } + + size = sizeof(alive); + result = AudioDeviceGetProperty(devid, 0, iscapture, + kAudioDevicePropertyDeviceIsAlive, + &size, &alive); + CHECK_RESULT + ("AudioDeviceGetProperty (kAudioDevicePropertyDeviceIsAlive)"); + + if (!alive) { + SDL_SetError("CoreAudio: requested device exists, but isn't alive."); + return 0; + } + + size = sizeof(pid); + result = AudioDeviceGetProperty(devid, 0, iscapture, + kAudioDevicePropertyHogMode, &size, &pid); + + /* some devices don't support this property, so errors are fine here. */ + if ((result == noErr) && (pid != -1)) { + SDL_SetError("CoreAudio: requested device is being hogged."); + return 0; + } + + this->hidden->deviceID = devid; + return 1; +} +#endif + /* The CoreAudio callback */ static OSStatus outputCallback(void *inRefCon, @@ -272,7 +341,11 @@ COREAUDIO_CloseDevice(_THIS) scope, bus, &callback, sizeof(callback)); + /* !!! FIXME: how does iOS free this? */ + #if MACOSX_COREAUDIO CloseComponent(this->hidden->audioUnit); + #endif + this->hidden->audioUnitOpened = 0; } SDL_free(this->hidden->buffer); @@ -282,105 +355,65 @@ COREAUDIO_CloseDevice(_THIS) } -#define CHECK_RESULT(msg) \ - if (result != noErr) { \ - COREAUDIO_CloseDevice(this); \ - SDL_SetError("CoreAudio error (%s): %d", msg, (int) result); \ - return 0; \ - } - -static int -find_device_by_name(_THIS, const char *devname, int iscapture) -{ - AudioDeviceID devid = 0; - OSStatus result = noErr; - UInt32 size = 0; - UInt32 alive = 0; - pid_t pid = 0; - - if (devname == NULL) { - size = sizeof(AudioDeviceID); - const AudioHardwarePropertyID propid = - ((iscapture) ? kAudioHardwarePropertyDefaultInputDevice : - kAudioHardwarePropertyDefaultOutputDevice); - - result = AudioHardwareGetProperty(propid, &size, &devid); - CHECK_RESULT("AudioHardwareGetProperty (default device)"); - } else { - FindDevIdData data; - SDL_zero(data); - data.findname = devname; - build_device_list(iscapture, findDevId, &data); - if (!data.found) { - SDL_SetError("CoreAudio: No such audio device."); - return 0; - } - devid = data.devId; - } - - size = sizeof(alive); - result = AudioDeviceGetProperty(devid, 0, iscapture, - kAudioDevicePropertyDeviceIsAlive, - &size, &alive); - CHECK_RESULT - ("AudioDeviceGetProperty (kAudioDevicePropertyDeviceIsAlive)"); - - if (!alive) { - SDL_SetError("CoreAudio: requested device exists, but isn't alive."); - return 0; - } - - size = sizeof(pid); - result = AudioDeviceGetProperty(devid, 0, iscapture, - kAudioDevicePropertyHogMode, &size, &pid); - - /* some devices don't support this property, so errors are fine here. */ - if ((result == noErr) && (pid != -1)) { - SDL_SetError("CoreAudio: requested device is being hogged."); - return 0; - } - - this->hidden->deviceID = devid; - return 1; -} - - static int prepare_audiounit(_THIS, const char *devname, int iscapture, const AudioStreamBasicDescription * strdesc) { OSStatus result = noErr; AURenderCallbackStruct callback; +#if MACOSX_COREAUDIO ComponentDescription desc; Component comp = NULL; +#else + AudioComponentDescription desc; + AudioComponent comp = NULL; +#endif const AudioUnitElement output_bus = 0; const AudioUnitElement input_bus = 1; const AudioUnitElement bus = ((iscapture) ? input_bus : output_bus); const AudioUnitScope scope = ((iscapture) ? kAudioUnitScope_Output : kAudioUnitScope_Input); +#if MACOSX_COREAUDIO if (!find_device_by_name(this, devname, iscapture)) { SDL_SetError("Couldn't find requested CoreAudio device"); return 0; } - - SDL_memset(&desc, '\0', sizeof(ComponentDescription)); +#endif + + SDL_zero(desc); desc.componentType = kAudioUnitType_Output; - desc.componentSubType = kAudioUnitSubType_DefaultOutput; desc.componentManufacturer = kAudioUnitManufacturer_Apple; +#if MACOSX_COREAUDIO + desc.componentSubType = kAudioUnitSubType_DefaultOutput; comp = FindNextComponent(NULL, &desc); +#else + desc.componentSubType = kAudioUnitSubType_RemoteIO; /* !!! FIXME: ? */ + comp = AudioComponentFindNext(NULL, &desc); +#endif + if (comp == NULL) { SDL_SetError("Couldn't find requested CoreAudio component"); return 0; } /* Open & initialize the audio unit */ +#if MACOSX_COREAUDIO result = OpenAComponent(comp, &this->hidden->audioUnit); CHECK_RESULT("OpenAComponent"); +#else + /* + AudioComponentInstanceNew only available on iPhone OS 2.0 and Mac OS X 10.6 + We can't use OpenAComponent on iPhone because it is not present + */ + result = AudioComponentInstanceNew(comp, &this->hidden->audioUnit); + CHECK_RESULT("AudioComponentInstanceNew"); +#endif this->hidden->audioUnitOpened = 1; +#if MACOSX_COREAUDIO result = AudioUnitSetProperty(this->hidden->audioUnit, kAudioOutputUnitProperty_CurrentDevice, kAudioUnitScope_Global, 0, @@ -388,6 +421,7 @@ prepare_audiounit(_THIS, const char *devname, int iscapture, sizeof(AudioDeviceID)); CHECK_RESULT ("AudioUnitSetProperty (kAudioOutputUnitProperty_CurrentDevice)"); +#endif /* Set the data format of the audio unit. */ result = AudioUnitSetProperty(this->hidden->audioUnit, @@ -498,16 +532,22 @@ static int COREAUDIO_Init(SDL_AudioDriverImpl * impl) { /* Set the function pointers */ - impl->DetectDevices = COREAUDIO_DetectDevices; impl->OpenDevice = COREAUDIO_OpenDevice; impl->CloseDevice = COREAUDIO_CloseDevice; + +#if MACOSX_COREAUDIO + impl->DetectDevices = COREAUDIO_DetectDevices; +#else + impl->OnlyHasDefaultOutputDevice = 1; +#endif + impl->ProvidesOwnCallbackThread = 1; return 1; /* this audio target is available. */ } AudioBootStrap COREAUDIO_bootstrap = { - "coreaudio", "Mac OS X CoreAudio", COREAUDIO_Init, 0 + "coreaudio", "CoreAudio", COREAUDIO_Init, 0 }; /* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/audio/macosx/SDL_coreaudio.h b/src/audio/coreaudio/SDL_coreaudio.h similarity index 93% rename from src/audio/macosx/SDL_coreaudio.h rename to src/audio/coreaudio/SDL_coreaudio.h index 7dd64be6d..026f63da4 100644 --- a/src/audio/macosx/SDL_coreaudio.h +++ b/src/audio/coreaudio/SDL_coreaudio.h @@ -25,6 +25,10 @@ #include "../SDL_sysaudio.h" +#if !defined(__IPHONEOS__) +#define MACOSX_COREAUDIO 1 +#endif + /* Hidden "this" pointer for the audio functions */ #define _THIS SDL_AudioDevice *this @@ -35,7 +39,9 @@ struct SDL_PrivateAudioData void *buffer; UInt32 bufferOffset; UInt32 bufferSize; +#if MACOSX_COREAUDIO AudioDeviceID deviceID; +#endif }; #endif /* _SDL_coreaudio_h */ diff --git a/src/audio/iphoneos/SDL_coreaudio_iphone.c b/src/audio/iphoneos/SDL_coreaudio_iphone.c deleted file mode 100644 index dcd3cd355..000000000 --- a/src/audio/iphoneos/SDL_coreaudio_iphone.c +++ /dev/null @@ -1,333 +0,0 @@ -/* - Simple DirectMedia Layer - Copyright (C) 1997-2011 Sam Lantinga - - This software is provided 'as-is', without any express or implied - warranty. In no event will the authors be held liable for any damages - arising from the use of this software. - - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. -*/ -#include "SDL_config.h" - -#include - -#include "SDL_audio.h" -#include "../SDL_audio_c.h" -#include "../SDL_sysaudio.h" -#include "SDL_coreaudio_iphone.h" - -#define DEBUG_COREAUDIO 0 - -/* The CoreAudio callback */ -static OSStatus -outputCallback(void *inRefCon, - AudioUnitRenderActionFlags * ioActionFlags, - const AudioTimeStamp * inTimeStamp, - UInt32 inBusNumber, UInt32 inNumberFrames, - AudioBufferList * ioDataList) -{ - SDL_AudioDevice *this = (SDL_AudioDevice *) inRefCon; - AudioBuffer *ioData = &ioDataList->mBuffers[0]; - UInt32 remaining, len; - void *ptr; - - /* Is there ever more than one buffer, and what do you do with it? */ - if (ioDataList->mNumberBuffers != 1) { - return noErr; - } - - /* Only do anything if audio is enabled and not paused */ - if (!this->enabled || this->paused) { - SDL_memset(ioData->mData, this->spec.silence, ioData->mDataByteSize); - return 0; - } - - /* No SDL conversion should be needed here, ever, since we accept - any input format in OpenAudio, and leave the conversion to CoreAudio. - */ - /* - assert(!this->convert.needed); - assert(this->spec.channels == ioData->mNumberChannels); - */ - - remaining = ioData->mDataByteSize; - ptr = ioData->mData; - while (remaining > 0) { - if (this->hidden->bufferOffset >= this->hidden->bufferSize) { - /* Generate the data */ - SDL_memset(this->hidden->buffer, this->spec.silence, - this->hidden->bufferSize); - SDL_mutexP(this->mixer_lock); - (*this->spec.callback) (this->spec.userdata, this->hidden->buffer, - this->hidden->bufferSize); - SDL_mutexV(this->mixer_lock); - this->hidden->bufferOffset = 0; - } - - len = this->hidden->bufferSize - this->hidden->bufferOffset; - if (len > remaining) - len = remaining; - SDL_memcpy(ptr, - (char *) this->hidden->buffer + this->hidden->bufferOffset, - len); - ptr = (char *) ptr + len; - remaining -= len; - this->hidden->bufferOffset += len; - } - - return 0; -} - -static OSStatus -inputCallback(void *inRefCon, - AudioUnitRenderActionFlags * ioActionFlags, - const AudioTimeStamp * inTimeStamp, - UInt32 inBusNumber, UInt32 inNumberFrames, - AudioBufferList * ioData) -{ - //err = AudioUnitRender(afr->fAudioUnit, ioActionFlags, inTimeStamp, inBusNumber, inNumberFrames, afr->fAudioBuffer); - // !!! FIXME: write me! - return noErr; -} - - -static void -COREAUDIO_CloseDevice(_THIS) -{ - if (this->hidden != NULL) { - if (this->hidden->audioUnitOpened) { - OSStatus result = noErr; - AURenderCallbackStruct callback; - const AudioUnitElement output_bus = 0; - const AudioUnitElement input_bus = 1; - const int iscapture = this->iscapture; - const AudioUnitElement bus = - ((iscapture) ? input_bus : output_bus); - const AudioUnitScope scope = - ((iscapture) ? kAudioUnitScope_Output : - kAudioUnitScope_Input); - - /* stop processing the audio unit */ - result = AudioOutputUnitStop(this->hidden->audioUnit); - - /* Remove the input callback */ - SDL_memset(&callback, '\0', sizeof(AURenderCallbackStruct)); - result = AudioUnitSetProperty(this->hidden->audioUnit, - kAudioUnitProperty_SetRenderCallback, - scope, bus, &callback, - sizeof(callback)); - - //CloseComponent(this->hidden->audioUnit); - this->hidden->audioUnitOpened = 0; - } - SDL_free(this->hidden->buffer); - SDL_free(this->hidden); - this->hidden = NULL; - } -} - - -#define CHECK_RESULT(msg) \ - if (result != noErr) { \ - COREAUDIO_CloseDevice(this); \ - SDL_SetError("CoreAudio error (%s): %d", msg, result); \ - return 0; \ - } - -static int -prepare_audiounit(_THIS, const char *devname, int iscapture, - const AudioStreamBasicDescription * strdesc) -{ - OSStatus result = noErr; - AURenderCallbackStruct callback; - AudioComponentDescription desc; - AudioComponent comp = NULL; - - UInt32 enableIO = 0; - const AudioUnitElement output_bus = 0; - const AudioUnitElement input_bus = 1; - const AudioUnitElement bus = ((iscapture) ? input_bus : output_bus); - const AudioUnitScope scope = ((iscapture) ? kAudioUnitScope_Output : - kAudioUnitScope_Input); - - SDL_memset(&desc, '\0', sizeof(AudioComponentDescription)); - desc.componentType = kAudioUnitType_Output; - desc.componentSubType = kAudioUnitSubType_RemoteIO; - desc.componentManufacturer = kAudioUnitManufacturer_Apple; - - comp = AudioComponentFindNext(NULL, &desc); - if (comp == NULL) { - SDL_SetError("Couldn't find requested CoreAudio component"); - return 0; - } - - /* Open & initialize the audio unit */ - /* - AudioComponentInstanceNew only available on iPhone OS 2.0 and Mac OS X 10.6 - We can't use OpenAComponent on iPhone because it is not present - */ - result = AudioComponentInstanceNew(comp, &this->hidden->audioUnit); - CHECK_RESULT("AudioComponentInstanceNew"); - - this->hidden->audioUnitOpened = 1; - - // !!! FIXME: this is wrong? - enableIO = ((iscapture) ? 1 : 0); - result = AudioUnitSetProperty(this->hidden->audioUnit, - kAudioOutputUnitProperty_EnableIO, - kAudioUnitScope_Input, input_bus, - &enableIO, sizeof(enableIO)); - CHECK_RESULT("AudioUnitSetProperty (kAudioUnitProperty_EnableIO input)"); - - // !!! FIXME: this is wrong? - enableIO = ((iscapture) ? 0 : 1); - result = AudioUnitSetProperty(this->hidden->audioUnit, - kAudioOutputUnitProperty_EnableIO, - kAudioUnitScope_Output, output_bus, - &enableIO, sizeof(enableIO)); - CHECK_RESULT("AudioUnitSetProperty (kAudioUnitProperty_EnableIO output)"); - - /*result = AudioUnitSetProperty(this->hidden->audioUnit, - kAudioOutputUnitProperty_CurrentDevice, - kAudioUnitScope_Global, 0, - &this->hidden->deviceID, - sizeof(AudioDeviceID)); - - CHECK_RESULT("AudioUnitSetProperty (kAudioOutputUnitProperty_CurrentDevice)"); */ - - /* Set the data format of the audio unit. */ - result = AudioUnitSetProperty(this->hidden->audioUnit, - kAudioUnitProperty_StreamFormat, - scope, bus, strdesc, sizeof(*strdesc)); - CHECK_RESULT("AudioUnitSetProperty (kAudioUnitProperty_StreamFormat)"); - - /* Set the audio callback */ - SDL_memset(&callback, '\0', sizeof(AURenderCallbackStruct)); - callback.inputProc = ((iscapture) ? inputCallback : outputCallback); - callback.inputProcRefCon = this; - result = AudioUnitSetProperty(this->hidden->audioUnit, - kAudioUnitProperty_SetRenderCallback, - scope, bus, &callback, sizeof(callback)); - CHECK_RESULT - ("AudioUnitSetProperty (kAudioUnitProperty_SetInputCallback)"); - - /* Calculate the final parameters for this audio specification */ - SDL_CalculateAudioSpec(&this->spec); - - /* Allocate a sample buffer */ - this->hidden->bufferOffset = this->hidden->bufferSize = this->spec.size; - this->hidden->buffer = SDL_malloc(this->hidden->bufferSize); - - result = AudioUnitInitialize(this->hidden->audioUnit); - CHECK_RESULT("AudioUnitInitialize"); - - /* Finally, start processing of the audio unit */ - result = AudioOutputUnitStart(this->hidden->audioUnit); - CHECK_RESULT("AudioOutputUnitStart"); - /* We're running! */ - return 1; -} - -static int -COREAUDIO_OpenDevice(_THIS, const char *devname, int iscapture) -{ - AudioStreamBasicDescription strdesc; - SDL_AudioFormat test_format = SDL_FirstAudioFormat(this->spec.format); - int valid_datatype = 0; - - /* Initialize all variables that we clean on shutdown */ - this->hidden = (struct SDL_PrivateAudioData *) - SDL_malloc((sizeof *this->hidden)); - if (this->hidden == NULL) { - SDL_OutOfMemory(); - return (0); - } - SDL_memset(this->hidden, 0, (sizeof *this->hidden)); - - /* Setup a AudioStreamBasicDescription with the requested format */ - SDL_memset(&strdesc, '\0', sizeof(AudioStreamBasicDescription)); - strdesc.mFormatID = kAudioFormatLinearPCM; - strdesc.mFormatFlags = kLinearPCMFormatFlagIsPacked; - strdesc.mChannelsPerFrame = this->spec.channels; - strdesc.mSampleRate = this->spec.freq; - strdesc.mFramesPerPacket = 1; - - while ((!valid_datatype) && (test_format)) { - this->spec.format = test_format; - /* Just a list of valid SDL formats, so people don't pass junk here. */ - switch (test_format) { - case AUDIO_U8: - case AUDIO_S8: - case AUDIO_U16LSB: - case AUDIO_S16LSB: - case AUDIO_U16MSB: - case AUDIO_S16MSB: - case AUDIO_S32LSB: - case AUDIO_S32MSB: - case AUDIO_F32LSB: - case AUDIO_F32MSB: - valid_datatype = 1; - strdesc.mBitsPerChannel = SDL_AUDIO_BITSIZE(this->spec.format); - if (SDL_AUDIO_ISBIGENDIAN(this->spec.format)) - strdesc.mFormatFlags |= kLinearPCMFormatFlagIsBigEndian; - - if (SDL_AUDIO_ISFLOAT(this->spec.format)) - strdesc.mFormatFlags |= kLinearPCMFormatFlagIsFloat; - else if (SDL_AUDIO_ISSIGNED(this->spec.format)) - strdesc.mFormatFlags |= kLinearPCMFormatFlagIsSignedInteger; - break; - } - } - - if (!valid_datatype) { /* shouldn't happen, but just in case... */ - COREAUDIO_CloseDevice(this); - SDL_SetError("Unsupported audio format"); - return 0; - } - - strdesc.mBytesPerFrame = - strdesc.mBitsPerChannel * strdesc.mChannelsPerFrame / 8; - strdesc.mBytesPerPacket = - strdesc.mBytesPerFrame * strdesc.mFramesPerPacket; - - if (!prepare_audiounit(this, devname, iscapture, &strdesc)) { - COREAUDIO_CloseDevice(this); - return 0; /* prepare_audiounit() will call SDL_SetError()... */ - } - - return 1; /* good to go. */ -} - -static int -COREAUDIO_Init(SDL_AudioDriverImpl * impl) -{ - /* Set the function pointers */ - impl->OpenDevice = COREAUDIO_OpenDevice; - impl->CloseDevice = COREAUDIO_CloseDevice; - impl->ProvidesOwnCallbackThread = 1; - - /* added for iPhone */ - impl->OnlyHasDefaultInputDevice = 1; - impl->OnlyHasDefaultOutputDevice = 1; - impl->HasCaptureSupport = 0; /* still needs to be written */ - - return 1; /* this audio target is available. */ -} - -AudioBootStrap COREAUDIOIPHONE_bootstrap = { - "coreaudio-iphoneos", "SDL CoreAudio (iPhone OS) audio driver", - COREAUDIO_Init, 0 -}; - -/* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/audio/iphoneos/SDL_coreaudio_iphone.h b/src/audio/iphoneos/SDL_coreaudio_iphone.h deleted file mode 100644 index 91910c96b..000000000 --- a/src/audio/iphoneos/SDL_coreaudio_iphone.h +++ /dev/null @@ -1,42 +0,0 @@ -/* - Simple DirectMedia Layer - Copyright (C) 1997-2011 Sam Lantinga - - This software is provided 'as-is', without any express or implied - warranty. In no event will the authors be held liable for any damages - arising from the use of this software. - - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. -*/ -#include "SDL_config.h" - -#ifndef _SDL_coreaudio_h -#define _SDL_coreaudio_h - -#include "../SDL_sysaudio.h" - -/* Hidden "this" pointer for the audio functions */ -#define _THIS SDL_AudioDevice *this - -struct SDL_PrivateAudioData -{ - AudioUnit audioUnit; - int audioUnitOpened; - void *buffer; - UInt32 bufferOffset; - UInt32 bufferSize; - // AudioDeviceID deviceID; -}; - -#endif /* _SDL_coreaudio_h */ -/* vi: set ts=4 sw=4 expandtab: */ From 75b5258790d4b1e30d6df3988bf1c2d93530f74c Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Wed, 3 Aug 2011 03:12:07 -0400 Subject: [PATCH 39/72] testmultiaudio.c needs to #include . --- test/testmultiaudio.c | 1 + 1 file changed, 1 insertion(+) diff --git a/test/testmultiaudio.c b/test/testmultiaudio.c index 29fc20506..049073906 100644 --- a/test/testmultiaudio.c +++ b/test/testmultiaudio.c @@ -10,6 +10,7 @@ freely. */ #include "SDL.h" +#include static SDL_AudioSpec spec; static Uint8 *sound = NULL; /* Pointer to wave data */ From e42ca42e7619c98cc26570c3999dee1875d5d958 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 4 Aug 2011 01:36:23 -0400 Subject: [PATCH 40/72] Removed some Windows endlines. --- src/audio/xaudio2/SDL_xaudio2.h | 2 +- src/core/windows/SDL_windows.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/audio/xaudio2/SDL_xaudio2.h b/src/audio/xaudio2/SDL_xaudio2.h index 1794ae179..1cf5fc86c 100644 --- a/src/audio/xaudio2/SDL_xaudio2.h +++ b/src/audio/xaudio2/SDL_xaudio2.h @@ -24,7 +24,7 @@ #define _SDL_xaudio2_h #include "../SDL_sysaudio.h" - + #include /* Hidden "this" pointer for the audio functions */ diff --git a/src/core/windows/SDL_windows.c b/src/core/windows/SDL_windows.c index 275ec4469..63a94f158 100644 --- a/src/core/windows/SDL_windows.c +++ b/src/core/windows/SDL_windows.c @@ -23,7 +23,7 @@ #include "SDL_error.h" #include "SDL_windows.h" -#include /* for CoInitialize/CoUninitialize */ +#include /* for CoInitialize/CoUninitialize */ /* Sets an error message based on GetLastError() */ From 67740a37fa348ee557f381f50665eed701f381c3 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 4 Aug 2011 19:33:45 -0400 Subject: [PATCH 41/72] Patched to compile. --- src/audio/directsound/SDL_directsound.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/audio/directsound/SDL_directsound.c b/src/audio/directsound/SDL_directsound.c index 03db0be4d..4e2a48d66 100644 --- a/src/audio/directsound/SDL_directsound.c +++ b/src/audio/directsound/SDL_directsound.c @@ -505,7 +505,7 @@ DSOUND_OpenDevice(_THIS, const char *devname, int iscapture) } /* Create the audio buffer to which we write */ - this->hidden->num_buffers = CreateSecondary(this, mainwin, &waveformat); + this->hidden->num_buffers = CreateSecondary(this, NULL, &waveformat); if (this->hidden->num_buffers < 0) { DSOUND_CloseDevice(this); return 0; From 2c03d6f4e6848a9dcb37ea9d73331ce34d257612 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 5 Aug 2011 00:48:56 -0400 Subject: [PATCH 42/72] Patched to compile on Linux. (Grumble grumble, should have tested better after all the history editing...) --- src/audio/dsp/SDL_dspaudio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/audio/dsp/SDL_dspaudio.c b/src/audio/dsp/SDL_dspaudio.c index 0d3aeb09d..f61b4aacd 100644 --- a/src/audio/dsp/SDL_dspaudio.c +++ b/src/audio/dsp/SDL_dspaudio.c @@ -49,9 +49,9 @@ static void -DSP_DetectDevices(int iscapture) +DSP_DetectDevices(int iscapture, SDL_AddAudioDevice addfn) { - SDL_EnumUnixAudioDevices(iscapture, 0, NULL); + SDL_EnumUnixAudioDevices(iscapture, 0, NULL, addfn); } From 961d8e70e6b4b90c7993ab38f0fa70839e8b0cff Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 5 Aug 2011 00:49:31 -0400 Subject: [PATCH 43/72] More patches to compile. --- configure | 1 - 1 file changed, 1 deletion(-) diff --git a/configure b/configure index 8252dbbf3..0db9ad499 100755 --- a/configure +++ b/configure @@ -19132,7 +19132,6 @@ echo "${ECHO_T}$have_oss" >&6; } _ACEOF SOURCES="$SOURCES $srcdir/src/audio/dsp/*.c" - SOURCES="$SOURCES $srcdir/src/audio/dma/*.c" have_audio=yes # We may need to link with ossaudio emulation library From 7ab5cda6fc0a4643cb96cdacb71ee14f7fa86b61 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 5 Aug 2011 00:55:29 -0400 Subject: [PATCH 44/72] X11 touch handling fixed for one device (LPC32xx Touchscreen). --- src/video/x11/SDL_x11events.c | 47 ++++++++++++++++++++--------------- src/video/x11/SDL_x11touch.c | 8 +++--- 2 files changed, 31 insertions(+), 24 deletions(-) diff --git a/src/video/x11/SDL_x11events.c b/src/video/x11/SDL_x11events.c index 6970f12df..1079199e3 100644 --- a/src/video/x11/SDL_x11events.c +++ b/src/video/x11/SDL_x11events.c @@ -549,6 +549,7 @@ X11_PumpEvents(_THIS) struct input_event ev[64]; int size = sizeof (struct input_event); +/* !!! FIXME: clean the tabstops out of here. */ for(i = 0;i < SDL_GetNumTouch();++i) { SDL_Touch* touch = SDL_GetTouchIndex(i); if(!touch) printf("Touch %i/%i DNE\n",i,SDL_GetNumTouch()); @@ -561,12 +562,10 @@ X11_PumpEvents(_THIS) if(data->eventStream <= 0) printf("Error: Couldn't open stream\n"); rd = read(data->eventStream, ev, size * 64); - //printf("Got %i/%i bytes\n",rd,size); if(rd >= size) { for (i = 0; i < rd / sizeof(struct input_event); i++) { switch (ev[i].type) { case EV_ABS: - //printf("Got position x: %i!\n",data->x); switch (ev[i].code) { case ABS_X: data->x = ev[i].value; @@ -585,29 +584,37 @@ X11_PumpEvents(_THIS) } break; case EV_MSC: - if(ev[i].code == MSC_SERIAL) - data->finger = ev[i].value; - break; + if(ev[i].code == MSC_SERIAL) + data->finger = ev[i].value; + break; + case EV_KEY: + if(ev[i].code == BTN_TOUCH) + if(ev[i].value == 0) + data->up = SDL_TRUE; + break; case EV_SYN: - //printf("Id: %i\n",touch->id); - if(data->up) { + if(!data->down) { + data->down = SDL_TRUE; SDL_SendFingerDown(touch->id,data->finger, - SDL_FALSE,data->x,data->y, - data->pressure); + data->down, data->x, data->y, + data->pressure); } - else if(data->x >= 0 || data->y >= 0) + else if(!data->up) SDL_SendTouchMotion(touch->id,data->finger, - SDL_FALSE,data->x,data->y, + SDL_FALSE, data->x,data->y, data->pressure); - - //printf("Synched: %i tx: %i, ty: %i\n", - // data->finger,data->x,data->y); - data->x = -1; - data->y = -1; - data->pressure = -1; - data->finger = 0; - data->up = SDL_FALSE; - + else + { + data->down = SDL_FALSE; + SDL_SendFingerDown(touch->id,data->finger, + data->down, data->x,data->y, + data->pressure); + data->x = -1; + data->y = -1; + data->pressure = -1; + data->finger = 0; + data->up = SDL_FALSE; + } break; } } diff --git a/src/video/x11/SDL_x11touch.c b/src/video/x11/SDL_x11touch.c index a73092f9a..4b4702a77 100644 --- a/src/video/x11/SDL_x11touch.c +++ b/src/video/x11/SDL_x11touch.c @@ -47,10 +47,9 @@ X11_InitTouch(_THIS) while(!feof(fd)) { if(fgets(line,256,fd) <=0) continue; if(line[0] == '\n') { - if(vendor == 1386){ - /*printf("Wacom... Assuming it is a touch device\n");*/ - /*sprintf(tstr,"/dev/input/event%i",event);*/ - /*printf("At location: %s\n",tstr);*/ + if(vendor == 1386 || vendor==1){ + + sprintf(tstr,"/dev/input/event%i",event); SDL_Touch touch; touch.pressure_max = 0; @@ -66,6 +65,7 @@ X11_InitTouch(_THIS) data->pressure = -1; data->finger = 0; data->up = SDL_FALSE; + data->down = SDL_FALSE; data->eventStream = open(tstr, From 1724358663e08aab9ee24c6f67c3a0430fa2f947 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 6 Aug 2011 01:21:24 -0400 Subject: [PATCH 45/72] Updated configure for new changes in configure.in --- configure | 761 +++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 604 insertions(+), 157 deletions(-) diff --git a/configure b/configure index 0db9ad499..3b3d97564 100755 --- a/configure +++ b/configure @@ -2064,6 +2064,7 @@ ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. + orig_CFLAGS="$CFLAGS" # @@ -3771,13 +3772,13 @@ if test "${lt_cv_nm_interface+set}" = set; then else lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext - (eval echo "\"\$as_me:3774: $ac_compile\"" >&5) + (eval echo "\"\$as_me:3775: $ac_compile\"" >&5) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&5 - (eval echo "\"\$as_me:3777: $NM \\\"conftest.$ac_objext\\\"\"" >&5) + (eval echo "\"\$as_me:3778: $NM \\\"conftest.$ac_objext\\\"\"" >&5) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&5 - (eval echo "\"\$as_me:3780: output\"" >&5) + (eval echo "\"\$as_me:3781: output\"" >&5) cat conftest.out >&5 if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" @@ -5004,7 +5005,7 @@ ia64-*-hpux*) ;; *-*-irix6*) # Find out which ABI we are using. - echo '#line 5007 "configure"' > conftest.$ac_ext + echo '#line 5008 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? @@ -7165,11 +7166,11 @@ else -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:7168: $lt_compile\"" >&5) + (eval echo "\"\$as_me:7169: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:7172: \$? = $ac_status" >&5 + echo "$as_me:7173: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. @@ -7504,11 +7505,11 @@ else -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:7507: $lt_compile\"" >&5) + (eval echo "\"\$as_me:7508: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:7511: \$? = $ac_status" >&5 + echo "$as_me:7512: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. @@ -7609,11 +7610,11 @@ else -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:7612: $lt_compile\"" >&5) + (eval echo "\"\$as_me:7613: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:7616: \$? = $ac_status" >&5 + echo "$as_me:7617: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -7664,11 +7665,11 @@ else -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:7667: $lt_compile\"" >&5) + (eval echo "\"\$as_me:7668: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:7671: \$? = $ac_status" >&5 + echo "$as_me:7672: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -10422,7 +10423,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 10425 "configure" +#line 10426 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -10518,7 +10519,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 10521 "configure" +#line 10522 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -14200,11 +14201,11 @@ else -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:14203: $lt_compile\"" >&5) + (eval echo "\"\$as_me:14204: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:14207: \$? = $ac_status" >&5 + echo "$as_me:14208: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. @@ -14299,11 +14300,11 @@ else -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:14302: $lt_compile\"" >&5) + (eval echo "\"\$as_me:14303: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:14306: \$? = $ac_status" >&5 + echo "$as_me:14307: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -14351,11 +14352,11 @@ else -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:14354: $lt_compile\"" >&5) + (eval echo "\"\$as_me:14355: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:14358: \$? = $ac_status" >&5 + echo "$as_me:14359: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -15786,25 +15787,29 @@ case "$enable_assertions" in auto) # Use optimization settings to determine assertion level ;; disabled) - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_DEFAULT_ASSERT_LEVEL 0 _ACEOF ;; release) - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_DEFAULT_ASSERT_LEVEL 1 _ACEOF ;; enabled) - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_DEFAULT_ASSERT_LEVEL 2 _ACEOF ;; paranoid) - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_DEFAULT_ASSERT_LEVEL 3 _ACEOF @@ -15891,7 +15896,8 @@ else fi if test x$enable_libc = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define HAVE_LIBC 1 _ACEOF @@ -16785,7 +16791,8 @@ esac if test x$ac_cv_func_memcmp_working = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define HAVE_MEMCMP 1 _ACEOF @@ -17034,7 +17041,8 @@ fi fi if test x$ac_cv_func_strtod = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define HAVE_STRTOD 1 _ACEOF @@ -17158,7 +17166,8 @@ eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 test ! -s conftest.err } && test -s conftest.$ac_objext; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define HAVE_MPROTECT 1 _ACEOF @@ -17649,6 +17658,109 @@ _ACEOF fi done + + { echo "$as_me:$LINENO: checking for struct sigaction.sa_sigaction" >&5 +echo $ECHO_N "checking for struct sigaction.sa_sigaction... $ECHO_C" >&6; } +if test "${ac_cv_member_struct_sigaction_sa_sigaction+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include + +int +main () +{ +static struct sigaction ac_aggr; +if (ac_aggr.sa_sigaction) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_sigaction_sa_sigaction=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include + +int +main () +{ +static struct sigaction ac_aggr; +if (sizeof ac_aggr.sa_sigaction) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_sigaction_sa_sigaction=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_struct_sigaction_sa_sigaction=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ echo "$as_me:$LINENO: result: $ac_cv_member_struct_sigaction_sa_sigaction" >&5 +echo "${ECHO_T}$ac_cv_member_struct_sigaction_sa_sigaction" >&6; } +if test $ac_cv_member_struct_sigaction_sa_sigaction = yes; then + cat >>confdefs.h <<\_ACEOF +#define HAVE_SA_SIGACTION 1 +_ACEOF + +fi + fi { echo "$as_me:$LINENO: checking for void*" >&5 @@ -18126,7 +18238,8 @@ rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ echo "${ECHO_T}$have_gcc_atomics" >&6; } if test x$have_gcc_atomics = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define HAVE_GCC_ATOMICS 1 _ACEOF @@ -18183,7 +18296,8 @@ fi rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext if test x$have_gcc_sync_lock_test_and_set = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define HAVE_GCC_SYNC_LOCK_TEST_AND_SET 1 _ACEOF @@ -18191,6 +18305,73 @@ _ACEOF fi fi +# Check for pthread implementation +{ echo "$as_me:$LINENO: checking for pthread spinlock" >&5 +echo $ECHO_N "checking for pthread spinlock... $ECHO_C" >&6; } +have_pthread_spinlock=no + +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +#include + +int +main () +{ + +pthread_spinlock_t a; +pthread_spin_trylock(&a); +pthread_spin_unlock(&a); + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + +have_pthread_spinlock=yes + +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +{ echo "$as_me:$LINENO: result: $have_pthread_spinlock" >&5 +echo "${ECHO_T}$have_pthread_spinlock" >&6; } +if test x$have_pthread_spinlock = xyes; then + +cat >>confdefs.h <<\_ACEOF +#define HAVE_PTHREAD_SPINLOCK 1 +_ACEOF + +fi + + # Standard C sources SOURCES="$SOURCES $srcdir/src/*.c" SOURCES="$SOURCES $srcdir/src/atomic/*.c" @@ -18214,7 +18395,8 @@ else fi if test x$enable_atomic != xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_ATOMIC_DISABLED 1 _ACEOF @@ -18227,7 +18409,8 @@ else fi if test x$enable_audio != xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_AUDIO_DISABLED 1 _ACEOF @@ -18240,7 +18423,8 @@ else fi if test x$enable_video != xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_DISABLED 1 _ACEOF @@ -18253,7 +18437,8 @@ else fi if test x$enable_render != xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_RENDER_DISABLED 1 _ACEOF @@ -18266,7 +18451,8 @@ else fi if test x$enable_events != xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_EVENTS_DISABLED 1 _ACEOF @@ -18279,7 +18465,8 @@ else fi if test x$enable_joystick != xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_JOYSTICK_DISABLED 1 _ACEOF @@ -18294,7 +18481,8 @@ else fi if test x$enable_haptic != xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_HAPTIC_DISABLED 1 _ACEOF @@ -18309,7 +18497,8 @@ else fi if test x$enable_power != xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_POWER_DISABLED 1 _ACEOF @@ -18324,7 +18513,8 @@ else fi if test x$enable_threads != xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_THREADS_DISABLED 1 _ACEOF @@ -18337,7 +18527,8 @@ else fi if test x$enable_timers != xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_TIMERS_DISABLED 1 _ACEOF @@ -18350,7 +18541,8 @@ else fi if test x$enable_file != xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_FILE_DISABLED 1 _ACEOF @@ -18363,7 +18555,8 @@ else fi if test x$enable_loadso != xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_LOADSO_DISABLED 1 _ACEOF @@ -18376,7 +18569,8 @@ else fi if test x$enable_cpuinfo != xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_CPUINFO_DISABLED 1 _ACEOF @@ -18389,7 +18583,8 @@ else fi if test x$enable_atomic != xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_ATOMIC_DISABLED 1 _ACEOF @@ -18402,7 +18597,8 @@ else fi if test x$enable_assembly = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_ASSEMBLY_ROUTINES 1 _ACEOF @@ -18994,12 +19190,14 @@ echo "${ECHO_T}$have_gcc_altivec" >&6; } CFLAGS="$save_CFLAGS" if test x$have_gcc_altivec = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_ALTIVEC_BLITTERS 1 _ACEOF if test x$have_altivec_h_hdr = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define HAVE_ALTIVEC_H 1 _ACEOF @@ -19110,7 +19308,8 @@ eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 } && test -s conftest.$ac_objext; then have_oss=yes - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_AUDIO_DRIVER_OSS_SOUNDCARD_H 1 _ACEOF @@ -19127,7 +19326,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { echo "$as_me:$LINENO: result: $have_oss" >&5 echo "${ECHO_T}$have_oss" >&6; } if test x$have_oss = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_AUDIO_DRIVER_OSS 1 _ACEOF @@ -19424,7 +19624,8 @@ fi alsa_lib=`find_lib "libasound.so.*" "$ALSA_LIBS" | sed 's/.*\/\(.*\)/\1/; q'` - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_AUDIO_DRIVER_ALSA 1 _ACEOF @@ -19438,7 +19639,8 @@ echo "$as_me: WARNING: You must have SDL_LoadObject() support for dynamic ALSA l if test x$have_loadso = xyes && \ test x$enable_alsa_shared = xyes && test x$alsa_lib != x; then echo "-- dynamic libasound -> $alsa_lib" - cat >>confdefs.h <<_ACEOF + +cat >>confdefs.h <<_ACEOF #define SDL_AUDIO_DRIVER_ALSA_DYNAMIC "$alsa_lib" _ACEOF @@ -19760,7 +19962,8 @@ fi esd_lib=`find_lib "libesd.so.*" "$ESD_LIBS" | sed 's/.*\/\(.*\)/\1/; q'` - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_AUDIO_DRIVER_ESD 1 _ACEOF @@ -19774,7 +19977,8 @@ echo "$as_me: WARNING: You must have SDL_LoadObject() support for dynamic ESD lo if test x$have_loadso = xyes && \ test x$enable_esd_shared = xyes && test x$esd_lib != x; then echo "-- dynamic libesd -> $esd_lib" - cat >>confdefs.h <<_ACEOF + +cat >>confdefs.h <<_ACEOF #define SDL_AUDIO_DRIVER_ESD_DYNAMIC "$esd_lib" _ACEOF @@ -19863,7 +20067,8 @@ fi pulseaudio_lib=`find_lib "libpulse-simple.so.*" "$PULSEAUDIO_LIBS" | sed 's/.*\/\(.*\)/\1/; q'` - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_AUDIO_DRIVER_PULSEAUDIO 1 _ACEOF @@ -19877,7 +20082,8 @@ echo "$as_me: WARNING: You must have SDL_LoadObject() support for dynamic PulseA if test x$have_loadso = xyes && \ test x$enable_pulseaudio_shared = xyes && test x$pulseaudio_lib != x; then echo "-- dynamic libpulse-simple -> $pulseaudio_lib" - cat >>confdefs.h <<_ACEOF + +cat >>confdefs.h <<_ACEOF #define SDL_AUDIO_DRIVER_PULSEAUDIO_DYNAMIC "$pulseaudio_lib" _ACEOF @@ -20009,7 +20215,8 @@ fi arts_lib=`find_lib "libartsc.so.*" "$ARTS_LIBS" | sed 's/.*\/\(.*\)/\1/; q'` - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_AUDIO_DRIVER_ARTS 1 _ACEOF @@ -20023,7 +20230,8 @@ echo "$as_me: WARNING: You must have SDL_LoadObject() support for dynamic ARTS l if test x$have_loadso = xyes && \ test x$enable_arts_shared = xyes && test x$arts_lib != x; then echo "-- dynamic libartsc -> $arts_lib" - cat >>confdefs.h <<_ACEOF + +cat >>confdefs.h <<_ACEOF #define SDL_AUDIO_DRIVER_ARTS_DYNAMIC "$arts_lib" _ACEOF @@ -20278,7 +20486,8 @@ echo "$as_me: WARNING: You must have SDL_LoadObject() support for dynamic NAS lo if test x$have_loadso = xyes && \ test x$enable_nas_shared = xyes && test x$nas_lib != x; then echo "-- dynamic libaudio -> $nas_lib" - cat >>confdefs.h <<_ACEOF + +cat >>confdefs.h <<_ACEOF #define SDL_AUDIO_DRIVER_NAS_DYNAMIC "$nas_lib" _ACEOF @@ -20286,7 +20495,8 @@ _ACEOF EXTRA_LDFLAGS="$EXTRA_LDFLAGS $NAS_LIBS" fi - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_AUDIO_DRIVER_NAS 1 _ACEOF @@ -20307,7 +20517,8 @@ else fi if test x$enable_audio = xyes -a x$enable_diskaudio = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_AUDIO_DRIVER_DISK 1 _ACEOF @@ -20325,7 +20536,8 @@ else fi if test x$enable_audio = xyes -a x$enable_dummyaudio = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_AUDIO_DRIVER_DUMMY 1 _ACEOF @@ -21781,7 +21993,8 @@ fi CFLAGS="$CFLAGS $X_CFLAGS" LDFLAGS="$LDFLAGS $X_LIBS" - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_DRIVER_X11 1 _ACEOF @@ -21808,11 +22021,13 @@ echo "$as_me: WARNING: You must have gcc4 (-fvisibility=hidden) for dynamic X11 test x$enable_x11_shared = xyes && test x$x11_lib != x && test x$x11ext_lib != x; then echo "-- dynamic libX11 -> $x11_lib" echo "-- dynamic libX11ext -> $x11ext_lib" - cat >>confdefs.h <<_ACEOF + +cat >>confdefs.h <<_ACEOF #define SDL_VIDEO_DRIVER_X11_DYNAMIC "$x11_lib" _ACEOF - cat >>confdefs.h <<_ACEOF + +cat >>confdefs.h <<_ACEOF #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT "$x11ext_lib" _ACEOF @@ -21886,7 +22101,8 @@ fi if test x$have_xcursor_h_hdr = xyes; then if test x$enable_x11_shared = xyes && test x$xcursor_lib != x ; then echo "-- dynamic libXcursor -> $xcursor_lib" - cat >>confdefs.h <<_ACEOF + +cat >>confdefs.h <<_ACEOF #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XCURSOR "$xcursor_lib" _ACEOF @@ -21965,7 +22181,8 @@ fi fi fi if test x$definitely_enable_video_x11_xcursor = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_DRIVER_X11_XCURSOR 1 _ACEOF @@ -22034,7 +22251,8 @@ fi if test x$have_xinerama_h_hdr = xyes; then if test x$enable_x11_shared = xyes && test x$xinerama_lib != x ; then echo "-- dynamic libXinerama -> $xinerama_lib" - cat >>confdefs.h <<_ACEOF + +cat >>confdefs.h <<_ACEOF #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XINERAMA "$xinerama_lib" _ACEOF @@ -22113,7 +22331,8 @@ fi fi fi if test x$definitely_enable_video_x11_xinerama = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_DRIVER_X11_XINERAMA 1 _ACEOF @@ -22182,7 +22401,8 @@ fi if test x$have_xinput_h_hdr = xyes; then if test x$enable_x11_shared = xyes && test x$xinput_lib != x ; then echo "-- dynamic libXi -> $xinput_lib" - cat >>confdefs.h <<_ACEOF + +cat >>confdefs.h <<_ACEOF #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XINPUT "$xinput_lib" _ACEOF @@ -22261,7 +22481,8 @@ fi fi fi if test x$definitely_enable_video_x11_xinput = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_DRIVER_X11_XINPUT 1 _ACEOF @@ -22330,7 +22551,8 @@ fi if test x$have_xrandr_h_hdr = xyes; then if test x$enable_x11_shared = xyes && test x$xrandr_lib != x ; then echo "-- dynamic libXrandr -> $xrandr_lib" - cat >>confdefs.h <<_ACEOF + +cat >>confdefs.h <<_ACEOF #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR "$xrandr_lib" _ACEOF @@ -22409,7 +22631,8 @@ fi fi fi if test x$definitely_enable_video_x11_xrandr = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_DRIVER_X11_XRANDR 1 _ACEOF @@ -22477,7 +22700,8 @@ fi if test x$have_scrnsaver_h_hdr = xyes; then if test x$enable_x11_shared = xyes && test x$xss_lib != x ; then echo "-- dynamic libXss -> $xss_lib" - cat >>confdefs.h <<_ACEOF + +cat >>confdefs.h <<_ACEOF #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XSS "$xss_lib" _ACEOF @@ -22556,7 +22780,8 @@ fi fi fi if test x$definitely_enable_video_x11_scrnsaver = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_DRIVER_X11_XSCRNSAVER 1 _ACEOF @@ -22622,7 +22847,8 @@ fi if test x$have_shape_h_hdr = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_DRIVER_X11_XSHAPE 1 _ACEOF @@ -22692,7 +22918,8 @@ fi if test x$have_vm_h_hdr = xyes; then if test x$enable_x11_shared = xyes && test x$xvidmode_lib != x ; then echo "-- dynamic libXxf86vm -> $xvidmode_lib" - cat >>confdefs.h <<_ACEOF + +cat >>confdefs.h <<_ACEOF #define SDL_VIDEO_DRIVER_X11_DYNAMIC_XVIDMODE "$xvidmode_lib" _ACEOF @@ -22771,7 +22998,8 @@ fi fi fi if test x$definitely_enable_video_x11_vm = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_DRIVER_X11_XVIDMODE 1 _ACEOF @@ -22783,7 +23011,8 @@ _ACEOF CheckBWINDOW() { if test x$enable_video = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_DRIVER_BWINDOW 1 _ACEOF @@ -22857,7 +23086,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext echo "${ECHO_T}$have_cocoa" >&6; } CFLAGS="$save_CFLAGS" if test x$have_cocoa = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_DRIVER_COCOA 1 _ACEOF @@ -23142,11 +23372,13 @@ else fi - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_DRIVER_DIRECTFB 1 _ACEOF - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_RENDER_DIRECTFB 1 _ACEOF @@ -23169,7 +23401,8 @@ echo "$as_me: WARNING: You must have SDL_LoadObject() support for dynamic direct test x$enable_directfb_shared = xyes && test x$directfb_lib != x; then directfb_shared=yes echo "-- $directfb_lib_spec -> $directfb_lib" - cat >>confdefs.h <<_ACEOF + +cat >>confdefs.h <<_ACEOF #define SDL_VIDEO_DRIVER_DIRECTFB_DYNAMIC "$directfb_lib" _ACEOF @@ -23251,7 +23484,8 @@ echo $ECHO_N "checking for FusionSound $FUSIONSOUND_REQUIRED_VERSION support... echo "${ECHO_T}$fusionsound" >&6; } if test x$fusionsound = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_AUDIO_DRIVER_FUSIONSOUND 1 _ACEOF @@ -23275,7 +23509,8 @@ echo "$as_me: WARNING: You must have SDL_LoadObject() support for dynamic fusion fi if test x$have_loadso = xyes && \ test x$enable_fusionsound_shared = xyes; then - cat >>confdefs.h <<_ACEOF + +cat >>confdefs.h <<_ACEOF #define SDL_AUDIO_DRIVER_FUSIONSOUND_DYNAMIC "libfusionsound.so" _ACEOF @@ -23301,7 +23536,8 @@ else fi if test x$enable_video_dummy = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_DRIVER_DUMMY 1 _ACEOF @@ -23374,15 +23610,18 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { echo "$as_me:$LINENO: result: $video_opengl" >&5 echo "${ECHO_T}$video_opengl" >&6; } if test x$video_opengl = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_OPENGL 1 _ACEOF - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_OPENGL_GLX 1 _ACEOF - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_RENDER_OGL 1 _ACEOF @@ -23393,15 +23632,18 @@ _ACEOF CheckWINDOWSGL() { if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_OPENGL 1 _ACEOF - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_OPENGL_WGL 1 _ACEOF - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_RENDER_OGL 1 _ACEOF @@ -23411,15 +23653,18 @@ _ACEOF CheckBeGL() { if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_OPENGL 1 _ACEOF - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_OPENGL_BGL 1 _ACEOF - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_RENDER_OGL 1 _ACEOF @@ -23430,15 +23675,18 @@ _ACEOF CheckMacGL() { if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_OPENGL 1 _ACEOF - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_OPENGL_CGL 1 _ACEOF - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_RENDER_OGL 1 _ACEOF @@ -23516,7 +23764,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { echo "$as_me:$LINENO: result: $use_input_events" >&5 echo "${ECHO_T}$use_input_events" >&6; } if test x$use_input_events = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_INPUT_LINUXEV 1 _ACEOF @@ -23586,7 +23835,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { echo "$as_me:$LINENO: result: $enable_input_tslib" >&5 echo "${ECHO_T}$enable_input_tslib" >&6; } if test x$enable_input_tslib = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_INPUT_TSLIB 1 _ACEOF @@ -23724,7 +23974,8 @@ echo "${ECHO_T}$use_pthreads" >&6; } # Do futher testing if we have pthread support... if test x$use_pthreads = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_THREAD_PTHREAD 1 _ACEOF @@ -23782,7 +24033,8 @@ eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 } && test -s conftest.$ac_objext; then has_recursive_mutexes=yes - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_THREAD_PTHREAD_RECURSIVE_MUTEX 1 _ACEOF @@ -23836,7 +24088,8 @@ eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 } && test -s conftest.$ac_objext; then has_recursive_mutexes=yes - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_THREAD_PTHREAD_RECURSIVE_MUTEX_NP 1 _ACEOF @@ -24584,6 +24837,136 @@ if test $ac_cv_header_dinput_h = yes; then fi + if test "${ac_cv_header_xaudio2_h+set}" = set; then + { echo "$as_me:$LINENO: checking for xaudio2.h" >&5 +echo $ECHO_N "checking for xaudio2.h... $ECHO_C" >&6; } +if test "${ac_cv_header_xaudio2_h+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +fi +{ echo "$as_me:$LINENO: result: $ac_cv_header_xaudio2_h" >&5 +echo "${ECHO_T}$ac_cv_header_xaudio2_h" >&6; } +else + # Is the header compilable? +{ echo "$as_me:$LINENO: checking xaudio2.h usability" >&5 +echo $ECHO_N "checking xaudio2.h usability... $ECHO_C" >&6; } +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_includes_default +#include +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +echo "${ECHO_T}$ac_header_compiler" >&6; } + +# Is the header present? +{ echo "$as_me:$LINENO: checking xaudio2.h presence" >&5 +echo $ECHO_N "checking xaudio2.h presence... $ECHO_C" >&6; } +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +_ACEOF +if { (ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no +fi + +rm -f conftest.err conftest.$ac_ext +{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +echo "${ECHO_T}$ac_header_preproc" >&6; } + +# So? What about this header? +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) + { echo "$as_me:$LINENO: WARNING: xaudio2.h: accepted by the compiler, rejected by the preprocessor!" >&5 +echo "$as_me: WARNING: xaudio2.h: accepted by the compiler, rejected by the preprocessor!" >&2;} + { echo "$as_me:$LINENO: WARNING: xaudio2.h: proceeding with the compiler's result" >&5 +echo "$as_me: WARNING: xaudio2.h: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) + { echo "$as_me:$LINENO: WARNING: xaudio2.h: present but cannot be compiled" >&5 +echo "$as_me: WARNING: xaudio2.h: present but cannot be compiled" >&2;} + { echo "$as_me:$LINENO: WARNING: xaudio2.h: check for missing prerequisite headers?" >&5 +echo "$as_me: WARNING: xaudio2.h: check for missing prerequisite headers?" >&2;} + { echo "$as_me:$LINENO: WARNING: xaudio2.h: see the Autoconf documentation" >&5 +echo "$as_me: WARNING: xaudio2.h: see the Autoconf documentation" >&2;} + { echo "$as_me:$LINENO: WARNING: xaudio2.h: section \"Present But Cannot Be Compiled\"" >&5 +echo "$as_me: WARNING: xaudio2.h: section \"Present But Cannot Be Compiled\"" >&2;} + { echo "$as_me:$LINENO: WARNING: xaudio2.h: proceeding with the preprocessor's result" >&5 +echo "$as_me: WARNING: xaudio2.h: proceeding with the preprocessor's result" >&2;} + { echo "$as_me:$LINENO: WARNING: xaudio2.h: in the future, the compiler will take precedence" >&5 +echo "$as_me: WARNING: xaudio2.h: in the future, the compiler will take precedence" >&2;} + + ;; +esac +{ echo "$as_me:$LINENO: checking for xaudio2.h" >&5 +echo $ECHO_N "checking for xaudio2.h... $ECHO_C" >&6; } +if test "${ac_cv_header_xaudio2_h+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_cv_header_xaudio2_h=$ac_header_preproc +fi +{ echo "$as_me:$LINENO: result: $ac_cv_header_xaudio2_h" >&5 +echo "${ECHO_T}$ac_cv_header_xaudio2_h" >&6; } + +fi +if test $ac_cv_header_xaudio2_h = yes; then + have_xaudio2=yes +fi + + fi } @@ -24850,7 +25233,8 @@ fi fi - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_LOADSO_DLOPEN 1 _ACEOF @@ -25793,7 +26177,8 @@ fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test x$have_machine_joystick = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_JOYSTICK_USBHID_MACHINE_JOYSTICK_H 1 _ACEOF @@ -25801,7 +26186,8 @@ _ACEOF { echo "$as_me:$LINENO: result: $have_machine_joystick" >&5 echo "${ECHO_T}$have_machine_joystick" >&6; } - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_JOYSTICK_USBHID 1 _ACEOF @@ -25890,7 +26276,8 @@ if test $ac_cv_lib_rt_clock_gettime = yes; then fi if test x$have_clock_gettime = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define HAVE_CLOCK_GETTIME 1 _ACEOF @@ -25962,7 +26349,8 @@ if test $ac_cv_lib_c_clock_gettime = yes; then fi if test x$have_clock_gettime = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define HAVE_CLOCK_GETTIME 1 _ACEOF @@ -26166,7 +26554,8 @@ case "$host" in if test x$enable_audio = xyes; then case $ARCH in sysv5|solaris|hpux) - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_AUDIO_DRIVER_SUNAUDIO 1 _ACEOF @@ -26174,7 +26563,8 @@ _ACEOF have_audio=yes ;; netbsd|openbsd) - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_AUDIO_DRIVER_BSD 1 _ACEOF @@ -26182,7 +26572,8 @@ _ACEOF have_audio=yes ;; aix) - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_AUDIO_DRIVER_PAUDIO 1 _ACEOF @@ -26195,7 +26586,8 @@ _ACEOF if test x$enable_joystick = xyes; then case $ARCH in linux) - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_JOYSTICK_LINUX 1 _ACEOF @@ -26209,7 +26601,8 @@ _ACEOF if test x$use_input_events = xyes; then case $ARCH in linux) - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_HAPTIC_LINUX 1 _ACEOF @@ -26223,7 +26616,8 @@ _ACEOF if test x$enable_power = xyes; then case $ARCH in linux) - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_POWER_LINUX 1 _ACEOF @@ -26234,7 +26628,8 @@ _ACEOF fi # Set up files for the timer library if test x$enable_timers = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_TIMER_UNIX 1 _ACEOF @@ -26249,7 +26644,8 @@ _ACEOF CheckDummyAudio CheckWINDOWS if test x$enable_video = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_DRIVER_WINDOWS 1 _ACEOF @@ -26264,7 +26660,8 @@ fi enable_render_d3d=no if test x$enable_render_d3d = xyes -a x$have_d3d = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_RENDER_D3D 1 _ACEOF @@ -26272,23 +26669,34 @@ _ACEOF fi # Set up files for the audio library if test x$enable_audio = xyes; then - cat >>confdefs.h <<\_ACEOF -#define SDL_AUDIO_DRIVER_WINWAVEOUT 1 + +cat >>confdefs.h <<\_ACEOF +#define SDL_AUDIO_DRIVER_WINMM 1 _ACEOF - SOURCES="$SOURCES $srcdir/src/audio/windib/*.c" + SOURCES="$SOURCES $srcdir/src/audio/winmm/*.c" if test x$have_dsound = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_AUDIO_DRIVER_DSOUND 1 _ACEOF - SOURCES="$SOURCES $srcdir/src/audio/windx5/*.c" + SOURCES="$SOURCES $srcdir/src/audio/directsound/*.c" + fi + if test x$have_xaudio2 = xyes; then + +cat >>confdefs.h <<\_ACEOF +#define SDL_AUDIO_DRIVER_XAUDIO2 1 +_ACEOF + + SOURCES="$SOURCES $srcdir/src/audio/xaudio2/*.c" fi have_audio=yes fi # Set up dummy files for the joystick for now if test x$enable_joystick = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_JOYSTICK_DUMMY 1 _ACEOF @@ -26297,7 +26705,8 @@ _ACEOF fi # Set up files for the thread library if test x$enable_threads = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_THREAD_WINDOWS 1 _ACEOF @@ -26309,7 +26718,8 @@ _ACEOF fi # Set up files for the timer library if test x$enable_timers = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_TIMER_WINCE 1 _ACEOF @@ -26318,7 +26728,8 @@ _ACEOF fi # Set up files for the shared object loading library if test x$enable_loadso = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_LOADSO_WINDOWS 1 _ACEOF @@ -26365,7 +26776,8 @@ _ACEOF # Set up files for the video library if test x$enable_video = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_DRIVER_WINDOWS 1 _ACEOF @@ -26379,7 +26791,8 @@ else fi if test x$enable_render_d3d = xyes -a x$have_d3d = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_VIDEO_RENDER_D3D 1 _ACEOF @@ -26387,31 +26800,43 @@ _ACEOF fi # Set up files for the audio library if test x$enable_audio = xyes; then - cat >>confdefs.h <<\_ACEOF -#define SDL_AUDIO_DRIVER_WINWAVEOUT 1 + +cat >>confdefs.h <<\_ACEOF +#define SDL_AUDIO_DRIVER_WINMM 1 _ACEOF - SOURCES="$SOURCES $srcdir/src/audio/windib/*.c" + SOURCES="$SOURCES $srcdir/src/audio/winmm/*.c" if test x$have_dsound = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_AUDIO_DRIVER_DSOUND 1 _ACEOF - SOURCES="$SOURCES $srcdir/src/audio/windx5/*.c" + SOURCES="$SOURCES $srcdir/src/audio/directsound/*.c" + fi + if test x$have_xaudio2 = xyes; then + +cat >>confdefs.h <<\_ACEOF +#define SDL_AUDIO_DRIVER_XAUDIO2 1 +_ACEOF + + SOURCES="$SOURCES $srcdir/src/audio/xaudio2/*.c" fi have_audio=yes fi # Set up files for the joystick library if test x$enable_joystick = xyes; then if test x$have_dinput = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_JOYSTICK_DINPUT 1 _ACEOF SOURCES="$SOURCES $srcdir/src/joystick/windows/SDL_dxjoystick.c" EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ldinput8 -ldxguid -ldxerr8" else - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_JOYSTICK_WINMM 1 _ACEOF @@ -26421,7 +26846,8 @@ _ACEOF fi if test x$enable_haptic = xyes; then if test x$have_dinput = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_HAPTIC_DINPUT 1 _ACEOF @@ -26430,7 +26856,8 @@ _ACEOF fi fi if test x$enable_power = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_POWER_WINDOWS 1 _ACEOF @@ -26439,7 +26866,8 @@ _ACEOF fi # Set up files for the thread library if test x$enable_threads = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_THREAD_WINDOWS 1 _ACEOF @@ -26451,7 +26879,8 @@ _ACEOF fi # Set up files for the timer library if test x$enable_timers = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_TIMER_WINDOWS 1 _ACEOF @@ -26460,7 +26889,8 @@ _ACEOF fi # Set up files for the shared object loading library if test x$enable_loadso = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_LOADSO_WINDOWS 1 _ACEOF @@ -26488,7 +26918,8 @@ _ACEOF CheckBeGL # Set up files for the audio library if test x$enable_audio = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_AUDIO_DRIVER_BEOSAUDIO 1 _ACEOF @@ -26497,7 +26928,8 @@ _ACEOF fi # Set up files for the joystick library if test x$enable_joystick = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_JOYSTICK_BEOS 1 _ACEOF @@ -26506,7 +26938,8 @@ _ACEOF fi # Set up files for the thread library if test x$enable_threads = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_THREAD_BEOS 1 _ACEOF @@ -26517,7 +26950,8 @@ _ACEOF fi # Set up files for the timer library if test x$enable_timers = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_TIMER_BEOS 1 _ACEOF @@ -26526,7 +26960,8 @@ _ACEOF fi # Set up files for the shared object loading library if test x$enable_loadso = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_LOADSO_BEOS 1 _ACEOF @@ -26535,7 +26970,8 @@ _ACEOF fi # Set up files for the system power library if test x$enable_power = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_POWER_BEOS 1 _ACEOF @@ -26565,7 +27001,8 @@ _ACEOF # Set up files for the shared object loading library # (this needs to be done before the dynamic X11 check) if test x$enable_loadso = xyes -a x$have_dlopen != xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_LOADSO_DLCOMPAT 1 _ACEOF @@ -26587,16 +27024,18 @@ _ACEOF # Set up files for the audio library if test x$enable_audio = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_AUDIO_DRIVER_COREAUDIO 1 _ACEOF - SOURCES="$SOURCES $srcdir/src/audio/macosx/*.c" + SOURCES="$SOURCES $srcdir/src/audio/coreaudio/*.c" have_audio=yes fi # Set up files for the joystick library if test x$enable_joystick = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_JOYSTICK_IOKIT 1 _ACEOF @@ -26605,7 +27044,8 @@ _ACEOF fi # Set up files for the haptic library if test x$enable_haptic = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_HAPTIC_IOKIT 1 _ACEOF @@ -26615,7 +27055,8 @@ _ACEOF fi # Set up files for the power library if test x$enable_power = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_POWER_MACOSX 1 _ACEOF @@ -26624,7 +27065,8 @@ _ACEOF fi # Set up files for the timer library if test x$enable_timers = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_TIMER_UNIX 1 _ACEOF @@ -26661,7 +27103,8 @@ esac if test x$have_joystick != xyes; then if test x$enable_joystick = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_JOYSTICK_DISABLED 1 _ACEOF @@ -26670,7 +27113,8 @@ _ACEOF fi if test x$have_haptic != xyes; then if test x$enable_haptic = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_HAPTIC_DISABLED 1 _ACEOF @@ -26679,7 +27123,8 @@ _ACEOF fi if test x$have_threads != xyes; then if test x$enable_threads = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_THREADS_DISABLED 1 _ACEOF @@ -26688,7 +27133,8 @@ _ACEOF fi if test x$have_timers != xyes; then if test x$enable_timers = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_TIMERS_DISABLED 1 _ACEOF @@ -26697,7 +27143,8 @@ _ACEOF fi if test x$have_loadso != xyes; then if test x$enable_loadso = xyes; then - cat >>confdefs.h <<\_ACEOF + +cat >>confdefs.h <<\_ACEOF #define SDL_LOADSO_DISABLED 1 _ACEOF From 0463ea420b9b193accd03058a0d03e63dd254428 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 6 Aug 2011 02:15:23 -0400 Subject: [PATCH 46/72] Patched to compile on Mac OS X. --- src/audio/coreaudio/SDL_coreaudio.c | 11 ----------- src/audio/coreaudio/SDL_coreaudio.h | 10 ++++++++++ 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/src/audio/coreaudio/SDL_coreaudio.c b/src/audio/coreaudio/SDL_coreaudio.c index c8d8aedaf..bc8145abd 100644 --- a/src/audio/coreaudio/SDL_coreaudio.c +++ b/src/audio/coreaudio/SDL_coreaudio.c @@ -19,17 +19,6 @@ 3. This notice may not be removed or altered from any source distribution. */ #include "SDL_config.h" - -#if MACOSX_COREAUDIO -#include -#include -#if MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_5 -#include -#endif -#endif - -#include - #include "SDL_audio.h" #include "../SDL_audio_c.h" #include "../SDL_sysaudio.h" diff --git a/src/audio/coreaudio/SDL_coreaudio.h b/src/audio/coreaudio/SDL_coreaudio.h index 026f63da4..1fa14ec51 100644 --- a/src/audio/coreaudio/SDL_coreaudio.h +++ b/src/audio/coreaudio/SDL_coreaudio.h @@ -29,6 +29,16 @@ #define MACOSX_COREAUDIO 1 #endif +#if MACOSX_COREAUDIO +#include +#include +#if MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_5 +#include +#endif +#endif + +#include + /* Hidden "this" pointer for the audio functions */ #define _THIS SDL_AudioDevice *this From f22df7726879f313ad1bb78707a0588f54c8b7d9 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sun, 14 Aug 2011 17:17:34 -0400 Subject: [PATCH 47/72] Fat build doesn't support PPC anymore. --- build-scripts/fatbuild.sh | 76 --------------------------------------- 1 file changed, 76 deletions(-) diff --git a/build-scripts/fatbuild.sh b/build-scripts/fatbuild.sh index e4edb7e07..d86c20451 100755 --- a/build-scripts/fatbuild.sh +++ b/build-scripts/fatbuild.sh @@ -16,60 +16,6 @@ fi # Generic, cross-platform CFLAGS you always want go here. CFLAGS="-O3 -g -pipe" -# They changed this from "darwin9" to "darwin10" in Xcode 3.2 (Snow Leopard). -GCCUSRPATH_PPC=`ls -d $SDK_PATH/MacOSX10.4u.sdk/usr/lib/gcc/powerpc-apple-darwin*/4.0.1` -if [ ! -d "$GCCUSRPATH_PPC" ]; then - echo "Couldn't find any GCC usr path for 32-bit ppc" - exit 1 -fi -GCCUSRPATH_PPC64=`ls -d $SDK_PATH/MacOSX10.5.sdk/usr/lib/gcc/powerpc-apple-darwin*/4.0.1` -if [ ! -d "$GCCUSRPATH_PPC64" ]; then - echo "Couldn't find any GCC usr path for 64-bit ppc" - exit 1 -fi - -# PowerPC 32-bit configure flags (10.4 runtime compatibility) -# We dynamically load X11, so using the system X11 headers is fine. -CONFIG_PPC="--build=`uname -p`-apple-darwin --host=powerpc-apple-darwin \ ---x-includes=/usr/X11R6/include --x-libraries=/usr/X11R6/lib" - -# PowerPC 32-bit compiler flags -CC_PPC="gcc-4.0 -arch ppc" -CXX_PPC="g++-4.0 -arch ppc" -CFLAGS_PPC="-mmacosx-version-min=10.4" -CPPFLAGS_PPC="-DMAC_OS_X_VERSION_MIN_REQUIRED=1040 \ --nostdinc \ --F$SDK_PATH/MacOSX10.4u.sdk/System/Library/Frameworks \ --I$GCCUSRPATH_PPC/include \ --isystem $SDK_PATH/MacOSX10.4u.sdk/usr/include" - -# PowerPC 32-bit linker flags -LFLAGS_PPC="-arch ppc -Wl,-headerpad_max_install_names -mmacosx-version-min=10.4 \ --F$SDK_PATH/MacOSX10.4u.sdk/System/Library/Frameworks \ --L$GCCUSRPATH_PPC \ --Wl,-syslibroot,$SDK_PATH/MacOSX10.4u.sdk" - -# PowerPC 64-bit configure flags (10.5 runtime compatibility) -# We dynamically load X11, so using the system X11 headers is fine. -CONFIG_PPC64="--build=`uname -p`-apple-darwin --host=powerpc-apple-darwin \ ---x-includes=/usr/X11R6/include --x-libraries=/usr/X11R6/lib" - -# PowerPC 64-bit compiler flags -CC_PPC64="gcc-4.0 -arch ppc64" -CXX_PPC64="g++-4.0 -arch ppc64" -CFLAGS_PPC64="-mmacosx-version-min=10.5" -CPPFLAGS_PPC64="-DMAC_OS_X_VERSION_MIN_REQUIRED=1050 \ --nostdinc \ --F$SDK_PATH/MacOSX10.5.sdk/System/Library/Frameworks \ --I$GCCUSRPATH_PPC64/include \ --isystem $SDK_PATH/MacOSX10.5.sdk/usr/include" - -# PowerPC 64-bit linker flags -LFLAGS_PPC64="-arch ppc64 -Wl,-headerpad_max_install_names -mmacosx-version-min=10.5 \ --F$SDK_PATH/MacOSX10.5.sdk/System/Library/Frameworks \ --L$GCCUSRPATH_PPC64/ppc64 \ --Wl,-syslibroot,$SDK_PATH/MacOSX10.5.sdk" - # Intel 32-bit configure flags (10.4 runtime compatibility) # We dynamically load X11, so using the system X11 headers is fine. CONFIG_X86="--build=`uname -p`-apple-darwin --host=i386-apple-darwin \ @@ -270,28 +216,6 @@ for dir in build build/ppc build/ppc64 build/x86 build/x64; do fi done -# -# Build the PowerPC 32-bit binary -# -if test x$configure_ppc = xyes; then - (cd build/ppc && \ - sh ../../configure $CONFIG_PPC CC="$CC_PPC" CXX="$CXX_PPC" CFLAGS="$CFLAGS $CFLAGS_PPC" CPPFLAGS="$CPPFLAGS_PPC" LDFLAGS="$LFLAGS_PPC") || exit 2 -fi -if test x$make_ppc = xyes; then - (cd build/ppc && ls include && make -j$NJOB) || exit 3 -fi - -# -# Build the PowerPC 64-bit binary -# -if test x$configure_ppc64 = xyes; then - (cd build/ppc64 && \ - sh ../../configure $CONFIG_PPC64 CC="$CC_PPC64" CXX="$CXX_PPC64" CFLAGS="$CFLAGS $CFLAGS_PPC64" CPPFLAGS="$CPPFLAGS_PPC64" LDFLAGS="$LFLAGS_PPC64") || exit 2 -fi -if test x$make_ppc64 = xyes; then - (cd build/ppc64 && ls include && make -j$NJOB) || exit 3 -fi - # # Build the Intel 32-bit binary # From a854e65d49eb6148319640d687b86a01ba3444df Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sun, 14 Aug 2011 17:21:21 -0400 Subject: [PATCH 48/72] Removed some extra ppc scaffolding --- build-scripts/fatbuild.sh | 47 +++++---------------------------------- 1 file changed, 6 insertions(+), 41 deletions(-) diff --git a/build-scripts/fatbuild.sh b/build-scripts/fatbuild.sh index d86c20451..bcaf5a28c 100755 --- a/build-scripts/fatbuild.sh +++ b/build-scripts/fatbuild.sh @@ -80,8 +80,8 @@ cd $srcdir # # Figure out which phase to build: # all, -# configure, configure-ppc, configure-ppc64, configure-x86, configure-x64 -# make, make-ppc, make-ppc64, make-x86, make-x64, merge +# configure, configure-x86, configure-x64 +# make, make-x86, make-x64, merge # install # clean if test x"$1" = x; then @@ -91,28 +91,16 @@ else fi case $phase in all) - configure_ppc="yes" - configure_ppc64="yes" configure_x86="yes" configure_x64="yes" - make_ppc="yes" - make_ppc64="yes" make_x86="yes" make_x64="yes" merge="yes" ;; configure) - configure_ppc="yes" - configure_ppc64="yes" configure_x86="yes" configure_x64="yes" ;; - configure-ppc) - configure_ppc="yes" - ;; - configure-ppc64) - configure_ppc64="yes" - ;; configure-x86) configure_x86="yes" ;; @@ -120,18 +108,10 @@ case $phase in configure_x64="yes" ;; make) - make_ppc="yes" - make_ppc64="yes" make_x86="yes" make_x64="yes" merge="yes" ;; - make-ppc) - make_ppc="yes" - ;; - make-ppc64) - make_ppc64="yes" - ;; make-x86) make_x86="yes" ;; @@ -164,17 +144,9 @@ case $phase in install_man="yes" ;; clean) - clean_ppc="yes" - clean_ppc64="yes" clean_x86="yes" clean_x64="yes" ;; - clean-ppc) - clean_ppc="yes" - ;; - clean-ppc64) - clean_ppc64="yes" - ;; clean-x86) clean_x86="yes" ;; @@ -182,17 +154,11 @@ case $phase in clean_x64="yes" ;; *) - echo "Usage: $0 [all|configure[-ppc|-ppc64|-x86|-x64]|make[-ppc|-ppc64|-x86|-x64]|merge|install|clean[-ppc|-ppc64|-x86|-x64]]" + echo "Usage: $0 [all|configure[-x86|-x64]|make[-x86|-x64]|merge|install|clean[-x86|-x64]]" exit 1 ;; esac case `uname -p` in - powerpc) - native_path=ppc - ;; - powerpc64) - native_path=ppc64 - ;; *86) native_path=x86 ;; @@ -208,7 +174,7 @@ esac # # Create the build directories # -for dir in build build/ppc build/ppc64 build/x86 build/x64; do +for dir in build build/x86 build/x64; do if test -d $dir; then : else @@ -328,7 +294,6 @@ do_clean() if test x$clean_x86 = xyes; then do_clean rm -r build/x86 fi -if test x$clean_ppc = xyes; then - do_clean rm -r build/ppc +if test x$clean_x64 = xyes; then + do_clean rm -r build/x64 fi - From 3cc0d7d6e4d1bea82673b3c21562b2b7252f9419 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sun, 14 Aug 2011 21:57:50 -0400 Subject: [PATCH 49/72] Don't lose the icon surface if it's freed immediately after SDL_WM_SetIcon() This is a memory leak, but we don't have a good place to free the icon surface a the moment. --- src/SDL_compat.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/SDL_compat.c b/src/SDL_compat.c index 013dd22b1..dd23b9cec 100644 --- a/src/SDL_compat.c +++ b/src/SDL_compat.c @@ -821,6 +821,7 @@ void SDL_WM_SetIcon(SDL_Surface * icon, Uint8 * mask) { SDL_VideoIcon = icon; + ++SDL_VideoIcon->refcount; } int From 531efe97f1ee5668d1982dd6a19798637d6c2b09 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 15 Aug 2011 02:51:13 -0400 Subject: [PATCH 50/72] Patched to compile. --- src/video/x11/SDL_x11touch.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/video/x11/SDL_x11touch.h b/src/video/x11/SDL_x11touch.h index 47fbb3b7c..476e1f02e 100644 --- a/src/video/x11/SDL_x11touch.h +++ b/src/video/x11/SDL_x11touch.h @@ -23,14 +23,19 @@ #ifndef _SDL_x11touch_h #define _SDL_x11touch_h +/* +!!! FIXME: remove the evdev code; +!!! FIXME: this should be using XInput 2.1's new multitouch API. +*/ -//What should this be? +/* What should this be? */ #ifdef SDL_INPUT_LINUXEV typedef struct EventTouchData { - int x,y,pressure,finger; //Temporary Variables until sync + int x,y,pressure,finger; /* Temporary Variables until sync */ int eventStream; SDL_bool up; + SDL_bool down; } EventTouchData; #endif From afc8e3d3123e668c8888f5af23d30544e9b39cac Mon Sep 17 00:00:00 2001 From: Kees Bakker Date: Thu, 18 Aug 2011 22:43:37 +0200 Subject: [PATCH 51/72] Convert a few TABs into spaces --- src/video/uikit/SDL_uikitappdelegate.m | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/video/uikit/SDL_uikitappdelegate.m b/src/video/uikit/SDL_uikitappdelegate.m index 4a8ce3989..381f9b08c 100644 --- a/src/video/uikit/SDL_uikitappdelegate.m +++ b/src/video/uikit/SDL_uikitappdelegate.m @@ -130,7 +130,7 @@ static void SDL_IdleTimerDisabledChanged(const char *name, const char *oldValue, if (!_this) { return; } - + SDL_Window *window; for (window = _this->windows; window != nil; window = window->next) { SDL_SendWindowEvent(window, SDL_WINDOWEVENT_MINIMIZED, 0, 0); @@ -146,10 +146,10 @@ static void SDL_IdleTimerDisabledChanged(const char *name, const char *oldValue, if (!_this) { return; } - - SDL_Window *window; + + SDL_Window *window; for (window = _this->windows; window != nil; window = window->next) { - SDL_SendWindowEvent(window, SDL_WINDOWEVENT_RESTORED, 0, 0); + SDL_SendWindowEvent(window, SDL_WINDOWEVENT_RESTORED, 0, 0); } } From 40480fb3c47ef6b9f52349f50f04086f3a2220aa Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 21 Aug 2011 02:35:13 -0400 Subject: [PATCH 52/72] Make sure XAudio2 is supported by the DirectX headers at compile time. --HG-- extra : rebase_source : a461903e0d9d4334a29cb0c9848a36f268d8f0e6 --- src/audio/xaudio2/SDL_xaudio2.c | 9 +++++++++ src/audio/xaudio2/SDL_xaudio2.h | 10 ++++++++++ 2 files changed, 19 insertions(+) diff --git a/src/audio/xaudio2/SDL_xaudio2.c b/src/audio/xaudio2/SDL_xaudio2.c index b28169d12..de0e9a351 100644 --- a/src/audio/xaudio2/SDL_xaudio2.c +++ b/src/audio/xaudio2/SDL_xaudio2.c @@ -27,6 +27,8 @@ #define INITGUID 1 #include "SDL_xaudio2.h" +#if SDL_HAVE_XAUDIO2_H + static __inline__ char * utf16_to_utf8(const WCHAR *S) { @@ -370,9 +372,15 @@ XAUDIO2_Deinitialize(void) WIN_CoUninitialize(); } +#endif /* SDL_HAVE_XAUDIO2_H */ + + static int XAUDIO2_Init(SDL_AudioDriverImpl * impl) { +#if !SDL_HAVE_XAUDIO2_H + return 0; /* no XAudio2 support, ever. Update your SDK! */ +#else /* XAudio2Create() is a macro that uses COM; we don't load the .dll */ IXAudio2 *ixa2 = NULL; if (FAILED(WIN_CoInitialize())) { @@ -398,6 +406,7 @@ XAUDIO2_Init(SDL_AudioDriverImpl * impl) impl->Deinitialize = XAUDIO2_Deinitialize; return 1; /* this audio target is available. */ +#endif } AudioBootStrap XAUDIO2_bootstrap = { diff --git a/src/audio/xaudio2/SDL_xaudio2.h b/src/audio/xaudio2/SDL_xaudio2.h index 1cf5fc86c..e0e20ebe6 100644 --- a/src/audio/xaudio2/SDL_xaudio2.h +++ b/src/audio/xaudio2/SDL_xaudio2.h @@ -25,6 +25,15 @@ #include "../SDL_sysaudio.h" +/* XAudio2 is available as of the March 2008 DirectX SDK */ +#include +#if (defined(_DXSDK_BUILD_MAJOR) && (_DXSDK_BUILD_MAJOR >= 1284)) +# define SDL_HAVE_XAUDIO2_H 1 +#else +# define SDL_HAVE_XAUDIO2_H 0 +#endif + +#if SDL_HAVE_XAUDIO2_H #include /* Hidden "this" pointer for the audio functions */ @@ -40,6 +49,7 @@ struct SDL_PrivateAudioData int mixlen; Uint8 *nextbuf; }; +#endif #endif /* _SDL_xaudio2_h */ From 98babc200455d9767f02c99e41bd06cced9c3907 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 21 Aug 2011 11:52:21 -0400 Subject: [PATCH 53/72] Ported ALSA minimum-sample-count fix from 1.2 branch to 1.3. --- src/audio/alsa/SDL_alsa_audio.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/audio/alsa/SDL_alsa_audio.c b/src/audio/alsa/SDL_alsa_audio.c index 31b2063b9..523be6e28 100644 --- a/src/audio/alsa/SDL_alsa_audio.c +++ b/src/audio/alsa/SDL_alsa_audio.c @@ -81,7 +81,8 @@ static int (*ALSA_snd_pcm_sw_params_set_start_threshold) static int (*ALSA_snd_pcm_sw_params) (snd_pcm_t *, snd_pcm_sw_params_t *); static int (*ALSA_snd_pcm_nonblock) (snd_pcm_t *, int); static int (*ALSA_snd_pcm_wait)(snd_pcm_t *, int); - +static int (*ALSA_snd_pcm_sw_params_set_avail_min) + (snd_pcm_t *, snd_pcm_sw_params_t *, snd_pcm_uframes_t); #ifdef SDL_AUDIO_DRIVER_ALSA_DYNAMIC #define snd_pcm_hw_params_sizeof ALSA_snd_pcm_hw_params_sizeof @@ -140,6 +141,7 @@ load_alsa_syms(void) SDL_ALSA_SYM(snd_pcm_sw_params); SDL_ALSA_SYM(snd_pcm_nonblock); SDL_ALSA_SYM(snd_pcm_wait); + SDL_ALSA_SYM(snd_pcm_sw_params_set_avail_min); return 0; } @@ -618,6 +620,13 @@ ALSA_OpenDevice(_THIS, const char *devname, int iscapture) ALSA_snd_strerror(status)); return 0; } + status = ALSA_snd_pcm_sw_params_set_avail_min(pcm_handle, swparams, this->spec.samples); + if (status < 0) { + ALSA_CloseDevice(this); + SDL_SetError("Couldn't set minimum available samples: %s", + ALSA_snd_strerror(status)); + return 0; + } status = ALSA_snd_pcm_sw_params_set_start_threshold(pcm_handle, swparams, 1); if (status < 0) { From f9268ec8761992c8272475bd65ace757cbf5dba3 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 21 Aug 2011 12:24:27 -0400 Subject: [PATCH 54/72] Fix SDL_GL_ACCELERATED_VISUAL on Windows in the 1.3 branch. Fixes Bugzilla #1254. Thanks to Thilo Schulz for the patch! --- src/video/windows/SDL_windowsopengl.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/video/windows/SDL_windowsopengl.c b/src/video/windows/SDL_windowsopengl.c index db8be74e5..419e0f1fe 100644 --- a/src/video/windows/SDL_windowsopengl.c +++ b/src/video/windows/SDL_windowsopengl.c @@ -466,9 +466,11 @@ WIN_GL_SetupWindow(_THIS, SDL_Window * window) *iAttr++ = _this->gl_config.multisamplesamples; } - *iAttr++ = WGL_ACCELERATION_ARB; - *iAttr++ = (_this->gl_config.accelerated ? WGL_FULL_ACCELERATION_ARB : - WGL_NO_ACCELERATION_ARB); + if ( this->gl_config.accelerated >= 0 ) { + *iAttr++ = WGL_ACCELERATION_ARB; + *iAttr++ = (_this->gl_config.accelerated ? WGL_FULL_ACCELERATION_ARB : + WGL_NO_ACCELERATION_ARB); + } *iAttr = 0; From b4c91cf7b3276f864bdeb2a5dab88d97615652aa Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 21 Aug 2011 12:36:55 -0400 Subject: [PATCH 55/72] Fixed -pedantic warning in SDL_assert.h. Fixes Bugzilla #1282. --- include/SDL_assert.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SDL_assert.h b/include/SDL_assert.h index a11b3812a..19331232b 100644 --- a/include/SDL_assert.h +++ b/include/SDL_assert.h @@ -99,7 +99,7 @@ typedef enum SDL_ASSERTION_BREAK, /**< Make the debugger trigger a breakpoint. */ SDL_ASSERTION_ABORT, /**< Terminate the program. */ SDL_ASSERTION_IGNORE, /**< Ignore the assert. */ - SDL_ASSERTION_ALWAYS_IGNORE, /**< Ignore the assert from now on. */ + SDL_ASSERTION_ALWAYS_IGNORE /**< Ignore the assert from now on. */ } SDL_assert_state; typedef struct SDL_assert_data From 08f49bd2d3847e48a79e817136f9e35834b72243 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 22 Aug 2011 02:26:11 -0400 Subject: [PATCH 56/72] Apparently glXSwapIntervalEXT() _does_ return a value. Revision 6 of the GLX_EXT_swap_control spec has a typo; the function signature they list is void, but the docs talk about a return value, and the glxext.h headers list "int". --- src/video/x11/SDL_x11opengl.c | 12 ++++++++---- src/video/x11/SDL_x11opengl.h | 2 +- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/src/video/x11/SDL_x11opengl.c b/src/video/x11/SDL_x11opengl.c index 96f5079ac..49ed345ea 100644 --- a/src/video/x11/SDL_x11opengl.c +++ b/src/video/x11/SDL_x11opengl.c @@ -265,7 +265,7 @@ X11_GL_InitExtensions(_THIS) /* Check for GLX_EXT_swap_control */ if (HasExtension("GLX_EXT_swap_control", extensions)) { _this->gl_data->glXSwapIntervalEXT = - (void (*)(Display*,GLXDrawable,int)) + (int (*)(Display*,GLXDrawable,int)) X11_GL_GetProcAddress(_this, "glXSwapIntervalEXT"); } @@ -538,9 +538,13 @@ X11_GL_SetSwapInterval(_THIS, int interval) const SDL_WindowData *windowdata = (SDL_WindowData *) _this->current_glwin->driverdata; Window drawable = windowdata->xwindow; - _this->gl_data->glXSwapIntervalEXT(display, drawable, interval); - status = 0; /* always succeeds, apparently. */ - swapinterval = interval; + status = _this->gl_data->glXSwapIntervalEXT(display,drawable,interval); + if (status != 0) { + SDL_SetError("glxSwapIntervalEXT failed"); + status = -1; + } else { + swapinterval = interval; + } } else if (_this->gl_data->glXSwapIntervalMESA) { status = _this->gl_data->glXSwapIntervalMESA(interval); if (status != 0) { diff --git a/src/video/x11/SDL_x11opengl.h b/src/video/x11/SDL_x11opengl.h index 730566446..cb5cb3d9c 100644 --- a/src/video/x11/SDL_x11opengl.h +++ b/src/video/x11/SDL_x11opengl.h @@ -38,7 +38,7 @@ struct SDL_GLDriverData Bool(*glXMakeCurrent) (Display*,GLXDrawable,GLXContext); void (*glXSwapBuffers) (Display*, GLXDrawable); void (*glXQueryDrawable) (Display*,GLXDrawable,int,unsigned int*); - void (*glXSwapIntervalEXT) (Display*,GLXDrawable,int); + int (*glXSwapIntervalEXT) (Display*,GLXDrawable,int); int (*glXSwapIntervalSGI) (int); int (*glXSwapIntervalMESA) (int); int (*glXGetSwapIntervalMESA) (void); From 747072f8a3b11a76cb4f46e120d0f449e8de6a70 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 22 Aug 2011 13:34:58 -0400 Subject: [PATCH 57/72] RLE: Don't trash alpha channel in copy_32(). It was being set to (mask|value) instead of (value). Thanks to li zhuo for the bug report! --- src/video/SDL_RLEaccel.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/video/SDL_RLEaccel.c b/src/video/SDL_RLEaccel.c index 3cf01d935..562341d0f 100644 --- a/src/video/SDL_RLEaccel.c +++ b/src/video/SDL_RLEaccel.c @@ -984,10 +984,9 @@ copy_32(void *dst, Uint32 * src, int n, Uint32 *d = dst; for (i = 0; i < n; i++) { unsigned r, g, b, a; - Uint32 pixel; RGBA_FROM_8888(*src, sfmt, r, g, b, a); - PIXEL_FROM_RGB(pixel, dfmt, r, g, b); - *d++ = pixel | a << 24; + PIXEL_FROM_RGBA(*d, dfmt, r, g, b, a); + d++; src++; } return n * 4; From 1f5750981e21453a8da026d64b2702946a55cc2a Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 22 Aug 2011 13:41:35 -0400 Subject: [PATCH 58/72] Fixed compiler warning on 64-bit builds. --- src/haptic/darwin/SDL_syshaptic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/haptic/darwin/SDL_syshaptic.c b/src/haptic/darwin/SDL_syshaptic.c index 48a7c45c7..0f771d72c 100644 --- a/src/haptic/darwin/SDL_syshaptic.c +++ b/src/haptic/darwin/SDL_syshaptic.c @@ -520,7 +520,7 @@ SDL_SYS_JoystickIsHaptic(SDL_Joystick * joystick) int SDL_SYS_JoystickSameHaptic(SDL_Haptic * haptic, SDL_Joystick * joystick) { - if (IOObjectIsEqualTo((io_object_t) haptic->hwdata->device, + if (IOObjectIsEqualTo((io_object_t) ((size_t)haptic->hwdata->device), joystick->hwdata->ffservice)) return 1; return 0; From 3b667bacd58c3b6607630ef2857b5c7c2d08f63e Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 22 Aug 2011 14:25:11 -0400 Subject: [PATCH 59/72] Apple's C runtime has the non-const iconv(), too. --- src/stdlib/SDL_iconv.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stdlib/SDL_iconv.c b/src/stdlib/SDL_iconv.c index 32c2c89bd..225e03368 100644 --- a/src/stdlib/SDL_iconv.c +++ b/src/stdlib/SDL_iconv.c @@ -31,8 +31,8 @@ iconv() may or may not use const char ** for the inbuf param. If we get this wrong, it's just a warning, so no big deal. */ -#if defined(_XGP6) || \ - defined(__GLIBC__) && ((__GLIBC__ > 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 2)) +#if defined(_XGP6) || defined(__APPLE__) || \ + (defined(__GLIBC__) && ((__GLIBC__ > 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 2))) #define ICONV_INBUF_NONCONST #endif From 023503370cf3956736e60b99c8ef7dc2e2b61706 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 22 Aug 2011 14:30:49 -0400 Subject: [PATCH 60/72] Let XAudio2 target be removed from the build by removing it from SDL_config.h --- src/audio/xaudio2/SDL_xaudio2.c | 2 +- src/audio/xaudio2/SDL_xaudio2.h | 9 ++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/src/audio/xaudio2/SDL_xaudio2.c b/src/audio/xaudio2/SDL_xaudio2.c index de0e9a351..8fb74cbd9 100644 --- a/src/audio/xaudio2/SDL_xaudio2.c +++ b/src/audio/xaudio2/SDL_xaudio2.c @@ -27,7 +27,7 @@ #define INITGUID 1 #include "SDL_xaudio2.h" -#if SDL_HAVE_XAUDIO2_H +#ifdef SDL_HAVE_XAUDIO2_H static __inline__ char * utf16_to_utf8(const WCHAR *S) diff --git a/src/audio/xaudio2/SDL_xaudio2.h b/src/audio/xaudio2/SDL_xaudio2.h index e0e20ebe6..8a55c1a2f 100644 --- a/src/audio/xaudio2/SDL_xaudio2.h +++ b/src/audio/xaudio2/SDL_xaudio2.h @@ -25,15 +25,14 @@ #include "../SDL_sysaudio.h" -/* XAudio2 is available as of the March 2008 DirectX SDK */ -#include +#if SDL_AUDIO_DRIVER_XAUDIO2 +#include /* XAudio2 exists as of the March 2008 DirectX SDK */ #if (defined(_DXSDK_BUILD_MAJOR) && (_DXSDK_BUILD_MAJOR >= 1284)) # define SDL_HAVE_XAUDIO2_H 1 -#else -# define SDL_HAVE_XAUDIO2_H 0 +#endif #endif -#if SDL_HAVE_XAUDIO2_H +#ifdef SDL_HAVE_XAUDIO2_H #include /* Hidden "this" pointer for the audio functions */ From 6412a3147e77b6c6efad55fa9049016d841d97cf Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 22 Aug 2011 14:37:45 -0400 Subject: [PATCH 61/72] Removed SDL_xaudio2.h ... no real need for this to be separate. --- VisualC/SDL/SDL_VS2005.vcproj | 4 --- VisualC/SDL/SDL_VS2008.vcproj | 4 --- VisualC/SDL/SDL_VS2010.vcxproj | 1 - src/audio/xaudio2/SDL_xaudio2.c | 28 +++++++++++++++-- src/audio/xaudio2/SDL_xaudio2.h | 55 --------------------------------- 5 files changed, 26 insertions(+), 66 deletions(-) delete mode 100644 src/audio/xaudio2/SDL_xaudio2.h diff --git a/VisualC/SDL/SDL_VS2005.vcproj b/VisualC/SDL/SDL_VS2005.vcproj index ec7921d2b..e37a3e8c2 100644 --- a/VisualC/SDL/SDL_VS2005.vcproj +++ b/VisualC/SDL/SDL_VS2005.vcproj @@ -851,10 +851,6 @@ RelativePath="..\..\src\audio\xaudio2\SDL_xaudio2.c" > - - diff --git a/VisualC/SDL/SDL_VS2008.vcproj b/VisualC/SDL/SDL_VS2008.vcproj index 49c0d4701..085bffc8c 100644 --- a/VisualC/SDL/SDL_VS2008.vcproj +++ b/VisualC/SDL/SDL_VS2008.vcproj @@ -840,10 +840,6 @@ RelativePath="..\..\src\audio\xaudio2\SDL_xaudio2.c" > - - diff --git a/VisualC/SDL/SDL_VS2010.vcxproj b/VisualC/SDL/SDL_VS2010.vcxproj index 33bba4d54..ad91eb5a5 100644 --- a/VisualC/SDL/SDL_VS2010.vcxproj +++ b/VisualC/SDL/SDL_VS2010.vcxproj @@ -280,7 +280,6 @@ - diff --git a/src/audio/xaudio2/SDL_xaudio2.c b/src/audio/xaudio2/SDL_xaudio2.c index 8fb74cbd9..4db1ac032 100644 --- a/src/audio/xaudio2/SDL_xaudio2.c +++ b/src/audio/xaudio2/SDL_xaudio2.c @@ -24,11 +24,35 @@ #include "../SDL_audio_c.h" #include "SDL_assert.h" -#define INITGUID 1 -#include "SDL_xaudio2.h" +#include "../SDL_sysaudio.h" + +#if SDL_AUDIO_DRIVER_XAUDIO2 +#include /* XAudio2 exists as of the March 2008 DirectX SDK */ +#if (defined(_DXSDK_BUILD_MAJOR) && (_DXSDK_BUILD_MAJOR >= 1284)) +# define SDL_HAVE_XAUDIO2_H 1 +#endif +#endif #ifdef SDL_HAVE_XAUDIO2_H +#define INITGUID 1 +#include + +/* Hidden "this" pointer for the audio functions */ +#define _THIS SDL_AudioDevice *this + +struct SDL_PrivateAudioData +{ + IXAudio2 *ixa2; + IXAudio2SourceVoice *source; + IXAudio2MasteringVoice *mastering; + HANDLE semaphore; + Uint8 *mixbuf; + int mixlen; + Uint8 *nextbuf; +}; + + static __inline__ char * utf16_to_utf8(const WCHAR *S) { diff --git a/src/audio/xaudio2/SDL_xaudio2.h b/src/audio/xaudio2/SDL_xaudio2.h deleted file mode 100644 index 8a55c1a2f..000000000 --- a/src/audio/xaudio2/SDL_xaudio2.h +++ /dev/null @@ -1,55 +0,0 @@ -/* - Simple DirectMedia Layer - Copyright (C) 1997-2011 Sam Lantinga - - This software is provided 'as-is', without any express or implied - warranty. In no event will the authors be held liable for any damages - arising from the use of this software. - - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. -*/ -#include "SDL_config.h" - -#ifndef _SDL_xaudio2_h -#define _SDL_xaudio2_h - -#include "../SDL_sysaudio.h" - -#if SDL_AUDIO_DRIVER_XAUDIO2 -#include /* XAudio2 exists as of the March 2008 DirectX SDK */ -#if (defined(_DXSDK_BUILD_MAJOR) && (_DXSDK_BUILD_MAJOR >= 1284)) -# define SDL_HAVE_XAUDIO2_H 1 -#endif -#endif - -#ifdef SDL_HAVE_XAUDIO2_H -#include - -/* Hidden "this" pointer for the audio functions */ -#define _THIS SDL_AudioDevice *this - -struct SDL_PrivateAudioData -{ - IXAudio2 *ixa2; - IXAudio2SourceVoice *source; - IXAudio2MasteringVoice *mastering; - HANDLE semaphore; - Uint8 *mixbuf; - int mixlen; - Uint8 *nextbuf; -}; -#endif - -#endif /* _SDL_xaudio2_h */ - -/* vi: set ts=4 sw=4 expandtab: */ From 5df7568eec1d33fe1abcf658f01e7d782806778c Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 22 Aug 2011 14:56:46 -0400 Subject: [PATCH 62/72] Further XAudio2 build test cleanups. --- src/audio/xaudio2/SDL_xaudio2.c | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/src/audio/xaudio2/SDL_xaudio2.c b/src/audio/xaudio2/SDL_xaudio2.c index 4db1ac032..5287586e8 100644 --- a/src/audio/xaudio2/SDL_xaudio2.c +++ b/src/audio/xaudio2/SDL_xaudio2.c @@ -22,18 +22,19 @@ #include "../../core/windows/SDL_windows.h" #include "SDL_audio.h" #include "../SDL_audio_c.h" +#include "../SDL_sysaudio.h" #include "SDL_assert.h" -#include "../SDL_sysaudio.h" - #if SDL_AUDIO_DRIVER_XAUDIO2 + #include /* XAudio2 exists as of the March 2008 DirectX SDK */ -#if (defined(_DXSDK_BUILD_MAJOR) && (_DXSDK_BUILD_MAJOR >= 1284)) -# define SDL_HAVE_XAUDIO2_H 1 -#endif +#if (!defined(_DXSDK_BUILD_MAJOR) || (_DXSDK_BUILD_MAJOR < 1284)) +# warning Your DirectX SDK is too old. Disabling XAudio2 support. +#else +# define SDL_XAUDIO2_HAS_SDK 1 #endif -#ifdef SDL_HAVE_XAUDIO2_H +#ifdef SDL_XAUDIO2_HAS_SDK #define INITGUID 1 #include @@ -396,13 +397,14 @@ XAUDIO2_Deinitialize(void) WIN_CoUninitialize(); } -#endif /* SDL_HAVE_XAUDIO2_H */ +#endif /* SDL_XAUDIO2_HAS_SDK */ static int XAUDIO2_Init(SDL_AudioDriverImpl * impl) { -#if !SDL_HAVE_XAUDIO2_H +#ifndef SDL_XAUDIO2_HAS_SDK + SDL_SetError("XAudio2: SDL was built without XAudio2 support (old DirectX SDK)."); return 0; /* no XAudio2 support, ever. Update your SDK! */ #else /* XAudio2Create() is a macro that uses COM; we don't load the .dll */ @@ -437,4 +439,6 @@ AudioBootStrap XAUDIO2_bootstrap = { "xaudio2", "XAudio2", XAUDIO2_Init, 0 }; +#endif /* SDL_AUDIO_DRIVER_XAUDIO2 */ + /* vi: set ts=4 sw=4 expandtab: */ From cfa202c1f56f34290164e6fd2a3d4eb8845bda79 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 23 Aug 2011 03:12:27 -0400 Subject: [PATCH 63/72] Fixed another printf() compiler warning, this time in the 1.3 branch. --- test/testplatform.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/testplatform.c b/test/testplatform.c index 6cd502658..5317b56f9 100644 --- a/test/testplatform.c +++ b/test/testplatform.c @@ -123,8 +123,9 @@ TestEndian(SDL_bool verbose) printf("Value 64 = 0x%I64X, swapped = 0x%I64X\n", value64, SDL_Swap64(value64)); #else - printf("Value 64 = 0x%llX, swapped = 0x%llX\n", value64, - SDL_Swap64(value64)); + printf("Value 64 = 0x%llX, swapped = 0x%llX\n", + (unsigned long long) value64, + (unsigned long long) SDL_Swap64(value64)); #endif } if (SDL_Swap64(value64) != swapped64) { From 315893bf288ea2927d2063c5712dad00faa42322 Mon Sep 17 00:00:00 2001 From: Kees Bakker Date: Wed, 17 Aug 2011 23:26:58 +0200 Subject: [PATCH 64/72] Split off SDL_uikitviewcontroller in its own module --HG-- extra : rebase_source : 9f436d0751280968fb49307fb522b0d6c72d4409 --- .../SDL/SDLiPhoneOS.xcodeproj/project.pbxproj | 8 + src/video/uikit/SDL_uikitview.h | 11 +- src/video/uikit/SDL_uikitviewcontroller.h | 35 +++++ src/video/uikit/SDL_uikitviewcontroller.m | 146 ++++++++++++++++++ src/video/uikit/SDL_uikitwindow.m | 113 -------------- 5 files changed, 190 insertions(+), 123 deletions(-) create mode 100644 src/video/uikit/SDL_uikitviewcontroller.h create mode 100644 src/video/uikit/SDL_uikitviewcontroller.m diff --git a/Xcode-iPhoneOS/SDL/SDLiPhoneOS.xcodeproj/project.pbxproj b/Xcode-iPhoneOS/SDL/SDLiPhoneOS.xcodeproj/project.pbxproj index dfbc46337..12d3f0bfa 100755 --- a/Xcode-iPhoneOS/SDL/SDLiPhoneOS.xcodeproj/project.pbxproj +++ b/Xcode-iPhoneOS/SDL/SDLiPhoneOS.xcodeproj/project.pbxproj @@ -127,6 +127,8 @@ 56EA86FC13E9EC2B002E47EB /* SDL_coreaudio.h in Headers */ = {isa = PBXBuildFile; fileRef = 56EA86FA13E9EC2B002E47EB /* SDL_coreaudio.h */; }; 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 */; }; + 93CB792313FC5E5200BD3E05 /* SDL_uikitviewcontroller.h in Headers */ = {isa = PBXBuildFile; fileRef = 93CB792213FC5E5200BD3E05 /* SDL_uikitviewcontroller.h */; }; + 93CB792613FC5F5300BD3E05 /* SDL_uikitviewcontroller.m in Sources */ = {isa = PBXBuildFile; fileRef = 93CB792513FC5F5300BD3E05 /* SDL_uikitviewcontroller.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, ); }; }; @@ -382,6 +384,8 @@ 56EA86FA13E9EC2B002E47EB /* SDL_coreaudio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_coreaudio.h; path = coreaudio/SDL_coreaudio.h; sourceTree = ""; }; 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; }; + 93CB792213FC5E5200BD3E05 /* SDL_uikitviewcontroller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_uikitviewcontroller.h; sourceTree = ""; }; + 93CB792513FC5F5300BD3E05 /* SDL_uikitviewcontroller.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_uikitviewcontroller.m; sourceTree = ""; }; 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 = ""; }; @@ -868,6 +872,8 @@ FD689F170E26E5D900F90B21 /* SDL_uikitopenglview.m */, FD689FCD0E26E9D400F90B21 /* SDL_uikitappdelegate.h */, FD689FCC0E26E9D400F90B21 /* SDL_uikitappdelegate.m */, + 93CB792213FC5E5200BD3E05 /* SDL_uikitviewcontroller.h */, + 93CB792513FC5F5300BD3E05 /* SDL_uikitviewcontroller.m */, ); path = uikit; sourceTree = ""; @@ -1245,6 +1251,7 @@ 0417A516130C988500578583 /* SDL_keycode.h in Headers */, 22C905CD13A22646003FE4E4 /* SDL_hints_c.h in Headers */, 56EA86FC13E9EC2B002E47EB /* SDL_coreaudio.h in Headers */, + 93CB792313FC5E5200BD3E05 /* SDL_uikitviewcontroller.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1474,6 +1481,7 @@ 0402A85912FE70C600CECEE3 /* SDL_shaders_gles2.c in Sources */, 04BAC09D1300C1290055DE28 /* SDL_log.c in Sources */, 56EA86FB13E9EC2B002E47EB /* SDL_coreaudio.c in Sources */, + 93CB792613FC5F5300BD3E05 /* SDL_uikitviewcontroller.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; diff --git a/src/video/uikit/SDL_uikitview.h b/src/video/uikit/SDL_uikitview.h index 0ec8ded4d..0d1af7c3c 100644 --- a/src/video/uikit/SDL_uikitview.h +++ b/src/video/uikit/SDL_uikitview.h @@ -22,6 +22,7 @@ #import #include "SDL_stdinc.h" #include "SDL_events.h" +#import "SDL_uikitviewcontroller.h" #define IPHONE_TOUCH_EFFICIENT_DANGEROUS #define FIXED_MULTITOUCH @@ -30,16 +31,6 @@ #define MAX_SIMULTANEOUS_TOUCHES 5 #endif -@interface SDL_uikitviewcontroller : UIViewController { -@private - SDL_Window *window; -} -- (id)initWithSDLWindow:(SDL_Window *)_window; -- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orient; -- (void)loadView; -- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation; -@end - /* *INDENT-OFF* */ #if SDL_IPHONE_KEYBOARD @interface SDL_uikitview : UIView { diff --git a/src/video/uikit/SDL_uikitviewcontroller.h b/src/video/uikit/SDL_uikitviewcontroller.h new file mode 100644 index 000000000..6b2ae859d --- /dev/null +++ b/src/video/uikit/SDL_uikitviewcontroller.h @@ -0,0 +1,35 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2011 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + */ + +#import + +#include "SDL_video.h" + + +@interface SDL_uikitviewcontroller : UIViewController { +@private + SDL_Window *window; +} +- (id)initWithSDLWindow:(SDL_Window *)_window; +- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orient; +- (void)loadView; +- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation; +@end diff --git a/src/video/uikit/SDL_uikitviewcontroller.m b/src/video/uikit/SDL_uikitviewcontroller.m new file mode 100644 index 000000000..2eeed5313 --- /dev/null +++ b/src/video/uikit/SDL_uikitviewcontroller.m @@ -0,0 +1,146 @@ +/* + Simple DirectMedia Layer + Copyright (C) 1997-2011 Sam Lantinga + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + */ +#include "SDL_config.h" + +#include "SDL_video.h" +#include "SDL_assert.h" +#include "SDL_hints.h" +#include "../SDL_sysvideo.h" +#include "../../events/SDL_events_c.h" + +#include "SDL_uikitwindow.h" + +#import "SDL_uikitviewcontroller.h" + + +@implementation SDL_uikitviewcontroller + +- (id)initWithSDLWindow:(SDL_Window *)_window { + if ((self = [self init]) == nil) { + return nil; + } + self->window = _window; + return self; +} + +- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orient { + const char *orientationsCString; + if ((orientationsCString = SDL_GetHint(SDL_HINT_ORIENTATIONS)) != NULL) { + BOOL rotate = NO; + NSString *orientationsNSString = [NSString stringWithCString:orientationsCString + encoding:NSUTF8StringEncoding]; + NSArray *orientations = [orientationsNSString componentsSeparatedByCharactersInSet: + [NSCharacterSet characterSetWithCharactersInString:@" "]]; + + switch (orient) { + case UIInterfaceOrientationLandscapeLeft: + rotate = [orientations containsObject:@"LandscapeLeft"]; + break; + + case UIInterfaceOrientationLandscapeRight: + rotate = [orientations containsObject:@"LandscapeRight"]; + break; + + case UIInterfaceOrientationPortrait: + rotate = [orientations containsObject:@"Portrait"]; + break; + + case UIInterfaceOrientationPortraitUpsideDown: + rotate = [orientations containsObject:@"PortraitUpsideDown"]; + break; + + default: break; + } + + return rotate; + } + + if (self->window->flags & SDL_WINDOW_RESIZABLE) { + return YES; // any orientation is okay. + } + + // If not resizable, allow device to orient to other matching sizes + // (that is, let the user turn the device upside down...same screen + // dimensions, but it lets the user place the device where it's most + // comfortable in relation to its physical buttons, headphone jack, etc). + switch (orient) { + case UIInterfaceOrientationLandscapeLeft: + case UIInterfaceOrientationLandscapeRight: + return (self->window->w >= self->window->h); + + case UIInterfaceOrientationPortrait: + case UIInterfaceOrientationPortraitUpsideDown: + return (self->window->h >= self->window->w); + + default: break; + } + + return NO; // Nothing else is acceptable. +} + +- (void)loadView { + // do nothing. +} + +// Send a resized event when the orientation changes. +- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation { + if ((self->window->flags & SDL_WINDOW_RESIZABLE) == 0) { + return; // don't care, we're just flipping over in this case. + } + + const UIInterfaceOrientation toInterfaceOrientation = [self interfaceOrientation]; + SDL_WindowData *data = self->window->driverdata; + UIWindow *uiwindow = data->uiwindow; + UIScreen *uiscreen = [uiwindow screen]; + const int noborder = self->window->flags & SDL_WINDOW_BORDERLESS; + CGRect frame = noborder ? [uiscreen bounds] : [uiscreen applicationFrame]; + const CGSize size = frame.size; + int w, h; + + switch (toInterfaceOrientation) { + case UIInterfaceOrientationPortrait: + case UIInterfaceOrientationPortraitUpsideDown: + w = (size.width < size.height) ? size.width : size.height; + h = (size.width > size.height) ? size.width : size.height; + break; + + case UIInterfaceOrientationLandscapeLeft: + case UIInterfaceOrientationLandscapeRight: + w = (size.width > size.height) ? size.width : size.height; + h = (size.width < size.height) ? size.width : size.height; + break; + + default: + SDL_assert(0 && "Unexpected interface orientation!"); + return; + } + + frame.size.width = w; + frame.size.height = h; + frame.origin.x = 0; + frame.origin.y = 0; + + [uiwindow setFrame:frame]; + [data->view updateFrame]; + SDL_SendWindowEvent(self->window, SDL_WINDOWEVENT_RESIZED, w, h); +} + +@end diff --git a/src/video/uikit/SDL_uikitwindow.m b/src/video/uikit/SDL_uikitwindow.m index 50a8ec819..1745f0033 100644 --- a/src/video/uikit/SDL_uikitwindow.m +++ b/src/video/uikit/SDL_uikitwindow.m @@ -38,119 +38,6 @@ #include -@implementation SDL_uikitviewcontroller - -- (id)initWithSDLWindow:(SDL_Window *)_window { - if ((self = [self init]) == nil) { - return nil; - } - self->window = _window; - return self; -} - -- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orient { - const char *orientationsCString; - if ((orientationsCString = SDL_GetHint(SDL_HINT_ORIENTATIONS)) != NULL) { - BOOL rotate = NO; - NSString *orientationsNSString = [NSString stringWithCString:orientationsCString - encoding:NSUTF8StringEncoding]; - NSArray *orientations = [orientationsNSString componentsSeparatedByCharactersInSet: - [NSCharacterSet characterSetWithCharactersInString:@" "]]; - - switch (orient) { - case UIInterfaceOrientationLandscapeLeft: - rotate = [orientations containsObject:@"LandscapeLeft"]; - break; - - case UIInterfaceOrientationLandscapeRight: - rotate = [orientations containsObject:@"LandscapeRight"]; - break; - - case UIInterfaceOrientationPortrait: - rotate = [orientations containsObject:@"Portrait"]; - break; - - case UIInterfaceOrientationPortraitUpsideDown: - rotate = [orientations containsObject:@"PortraitUpsideDown"]; - break; - - default: break; - } - - return rotate; - } - - if (self->window->flags & SDL_WINDOW_RESIZABLE) { - return YES; // any orientation is okay. - } - - // If not resizable, allow device to orient to other matching sizes - // (that is, let the user turn the device upside down...same screen - // dimensions, but it lets the user place the device where it's most - // comfortable in relation to its physical buttons, headphone jack, etc). - switch (orient) { - case UIInterfaceOrientationLandscapeLeft: - case UIInterfaceOrientationLandscapeRight: - return (self->window->w >= self->window->h); - - case UIInterfaceOrientationPortrait: - case UIInterfaceOrientationPortraitUpsideDown: - return (self->window->h >= self->window->w); - - default: break; - } - - return NO; // Nothing else is acceptable. -} - -- (void)loadView { - // do nothing. -} - -// Send a resized event when the orientation changes. -- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation { - if ((self->window->flags & SDL_WINDOW_RESIZABLE) == 0) { - return; // don't care, we're just flipping over in this case. - } - - const UIInterfaceOrientation toInterfaceOrientation = [self interfaceOrientation]; - SDL_WindowData *data = self->window->driverdata; - UIWindow *uiwindow = data->uiwindow; - UIScreen *uiscreen = [uiwindow screen]; - const int noborder = self->window->flags & SDL_WINDOW_BORDERLESS; - CGRect frame = noborder ? [uiscreen bounds] : [uiscreen applicationFrame]; - const CGSize size = frame.size; - int w, h; - - switch (toInterfaceOrientation) { - case UIInterfaceOrientationPortrait: - case UIInterfaceOrientationPortraitUpsideDown: - w = (size.width < size.height) ? size.width : size.height; - h = (size.width > size.height) ? size.width : size.height; - break; - - case UIInterfaceOrientationLandscapeLeft: - case UIInterfaceOrientationLandscapeRight: - w = (size.width > size.height) ? size.width : size.height; - h = (size.width < size.height) ? size.width : size.height; - break; - - default: - SDL_assert(0 && "Unexpected interface orientation!"); - return; - } - - frame.size.width = w; - frame.size.height = h; - frame.origin.x = 0; - frame.origin.y = 0; - - [uiwindow setFrame:frame]; - [data->view updateFrame]; - SDL_SendWindowEvent(self->window, SDL_WINDOWEVENT_RESIZED, w, h); -} - -@end From 84d42b9a9ff56418f508666cfa0eddbe1596cc08 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 23 Aug 2011 06:27:04 -0400 Subject: [PATCH 65/72] Fixed wrong datatype for shaders and programs. This is a pointer on Mac OS X, so it risked losing data in 64-bit builds. --- src/render/opengl/SDL_shaders_gl.c | 8 ++++---- test/testshader.c | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/render/opengl/SDL_shaders_gl.c b/src/render/opengl/SDL_shaders_gl.c index 2803ee6d4..1bf351d72 100644 --- a/src/render/opengl/SDL_shaders_gl.c +++ b/src/render/opengl/SDL_shaders_gl.c @@ -34,9 +34,9 @@ typedef struct { - GLenum program; - GLenum vert_shader; - GLenum frag_shader; + GLhandleARB program; + GLhandleARB vert_shader; + GLhandleARB frag_shader; } GL_ShaderData; struct GL_ShaderContext @@ -167,7 +167,7 @@ static const char *shader_source[NUM_SHADERS][2] = }; static SDL_bool -CompileShader(GL_ShaderContext *ctx, GLenum shader, const char *defines, const char *source) +CompileShader(GL_ShaderContext *ctx, GLhandleARB shader, const char *defines, const char *source) { GLint status; const char *sources[2]; diff --git a/test/testshader.c b/test/testshader.c index 2c0920f21..6b27c3447 100644 --- a/test/testshader.c +++ b/test/testshader.c @@ -29,9 +29,9 @@ enum { }; typedef struct { - GLuint program; - GLuint vert_shader; - GLuint frag_shader; + GLhandleARB program; + GLhandleARB vert_shader; + GLhandleARB frag_shader; const char *vert_source; const char *frag_source; } ShaderData; @@ -124,7 +124,7 @@ static PFNGLSHADERSOURCEARBPROC glShaderSourceARB; static PFNGLUNIFORM1IARBPROC glUniform1iARB; static PFNGLUSEPROGRAMOBJECTARBPROC glUseProgramObjectARB; -static SDL_bool CompileShader(GLenum shader, const char *source) +static SDL_bool CompileShader(GLhandleARB shader, const char *source) { GLint status; From 51254fce6ac367dbf482166d4ef8c9bb1f7b8efc Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 23 Aug 2011 06:28:28 -0400 Subject: [PATCH 66/72] Added more test programs to .hgignore --- .hgignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.hgignore b/.hgignore index 38a81b7f7..dce4e9a6c 100644 --- a/.hgignore +++ b/.hgignore @@ -92,5 +92,7 @@ test/testwm test/testwm2 test/threadwin test/torturethread +test/testthread +test/testgamma test/*.exe test/*.dSYM From 1ea43749bd5c777610f3563fc87e5d0d1e8aac53 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 23 Aug 2011 15:17:44 -0400 Subject: [PATCH 67/72] Cleaned out functions deprecated in Mac OS X 10.6 SDK. --- src/audio/coreaudio/SDL_coreaudio.c | 69 ++++++---- src/video/cocoa/SDL_cocoamodes.h | 2 +- src/video/cocoa/SDL_cocoamodes.m | 196 ++++++++++++++++++++++------ 3 files changed, 200 insertions(+), 67 deletions(-) diff --git a/src/audio/coreaudio/SDL_coreaudio.c b/src/audio/coreaudio/SDL_coreaudio.c index bc8145abd..d5f6b4fef 100644 --- a/src/audio/coreaudio/SDL_coreaudio.c +++ b/src/audio/coreaudio/SDL_coreaudio.c @@ -67,16 +67,20 @@ findDevId(const char *name, AudioDeviceID devId, void *_data) static void build_device_list(int iscapture, addDevFn addfn, void *addfndata) { - Boolean outWritable = 0; OSStatus result = noErr; UInt32 size = 0; AudioDeviceID *devs = NULL; UInt32 i = 0; UInt32 max = 0; - result = AudioHardwareGetPropertyInfo(kAudioHardwarePropertyDevices, - &size, &outWritable); + AudioObjectPropertyAddress addr = { + kAudioHardwarePropertyDevices, + kAudioObjectPropertyScopeGlobal, + kAudioObjectPropertyElementMaster + }; + result = AudioObjectGetPropertyDataSize(kAudioObjectSystemObject, &addr, + 0, NULL, &size); if (result != kAudioHardwareNoError) return; @@ -84,8 +88,8 @@ build_device_list(int iscapture, addDevFn addfn, void *addfndata) if (devs == NULL) return; - result = AudioHardwareGetProperty(kAudioHardwarePropertyDevices, - &size, devs); + result = AudioObjectGetPropertyData(kAudioObjectSystemObject, &addr, + 0, NULL, &size, devs); if (result != kAudioHardwareNoError) return; @@ -98,9 +102,11 @@ build_device_list(int iscapture, addDevFn addfn, void *addfndata) int usable = 0; CFIndex len = 0; - result = AudioDeviceGetPropertyInfo(dev, 0, iscapture, - kAudioDevicePropertyStreamConfiguration, - &size, &outWritable); + addr.mScope = iscapture ? kAudioDevicePropertyScopeInput : + kAudioDevicePropertyScopeOutput; + addr.mSelector = kAudioDevicePropertyStreamConfiguration; + + result = AudioObjectGetPropertyDataSize(dev, &addr, 0, NULL, &size); if (result != noErr) continue; @@ -108,9 +114,8 @@ build_device_list(int iscapture, addDevFn addfn, void *addfndata) if (buflist == NULL) continue; - result = AudioDeviceGetProperty(dev, 0, iscapture, - kAudioDevicePropertyStreamConfiguration, - &size, buflist); + result = AudioObjectGetPropertyData(dev, &addr, 0, NULL, + &size, buflist); if (result == noErr) { UInt32 j; @@ -127,11 +132,9 @@ build_device_list(int iscapture, addDevFn addfn, void *addfndata) if (!usable) continue; - size = sizeof(CFStringRef); - result = AudioDeviceGetProperty(dev, 0, iscapture, - kAudioDevicePropertyDeviceNameCFString, - &size, &cfstr); - + addr.mSelector = kAudioObjectPropertyName; + size = sizeof (CFStringRef); + result = AudioObjectGetPropertyData(dev, &addr, 0, NULL, &size, &cfstr); if (result != kAudioHardwareNoError) continue; @@ -183,13 +186,19 @@ find_device_by_name(_THIS, const char *devname, int iscapture) UInt32 alive = 0; pid_t pid = 0; - if (devname == NULL) { - size = sizeof(AudioDeviceID); - const AudioHardwarePropertyID propid = - ((iscapture) ? kAudioHardwarePropertyDefaultInputDevice : - kAudioHardwarePropertyDefaultOutputDevice); + AudioObjectPropertyAddress addr = { + 0, + kAudioObjectPropertyScopeGlobal, + kAudioObjectPropertyElementMaster + }; - result = AudioHardwareGetProperty(propid, &size, &devid); + if (devname == NULL) { + size = sizeof (AudioDeviceID); + addr.mSelector = + ((iscapture) ? kAudioHardwarePropertyDefaultInputDevice : + kAudioHardwarePropertyDefaultOutputDevice); + result = AudioObjectGetPropertyData(kAudioObjectSystemObject, &addr, + 0, NULL, &size, &devid); CHECK_RESULT("AudioHardwareGetProperty (default device)"); } else { FindDevIdData data; @@ -203,10 +212,12 @@ find_device_by_name(_THIS, const char *devname, int iscapture) devid = data.devId; } - size = sizeof(alive); - result = AudioDeviceGetProperty(devid, 0, iscapture, - kAudioDevicePropertyDeviceIsAlive, - &size, &alive); + addr.mSelector = kAudioDevicePropertyDeviceIsAlive; + addr.mScope = iscapture ? kAudioDevicePropertyScopeInput : + kAudioDevicePropertyScopeOutput; + + size = sizeof (alive); + result = AudioObjectGetPropertyData(devid, &addr, 0, NULL, &size, &alive); CHECK_RESULT ("AudioDeviceGetProperty (kAudioDevicePropertyDeviceIsAlive)"); @@ -215,9 +226,9 @@ find_device_by_name(_THIS, const char *devname, int iscapture) return 0; } - size = sizeof(pid); - result = AudioDeviceGetProperty(devid, 0, iscapture, - kAudioDevicePropertyHogMode, &size, &pid); + addr.mSelector = kAudioDevicePropertyHogMode; + size = sizeof (pid); + result = AudioObjectGetPropertyData(devid, &addr, 0, NULL, &size, &pid); /* some devices don't support this property, so errors are fine here. */ if ((result == noErr) && (pid != -1)) { diff --git a/src/video/cocoa/SDL_cocoamodes.h b/src/video/cocoa/SDL_cocoamodes.h index ea8b13b19..b60a36ba1 100644 --- a/src/video/cocoa/SDL_cocoamodes.h +++ b/src/video/cocoa/SDL_cocoamodes.h @@ -30,7 +30,7 @@ typedef struct typedef struct { - CFDictionaryRef moderef; + const void *moderef; } SDL_DisplayModeData; extern void Cocoa_InitModes(_THIS); diff --git a/src/video/cocoa/SDL_cocoamodes.m b/src/video/cocoa/SDL_cocoamodes.m index 2662b04f3..de59493ea 100644 --- a/src/video/cocoa/SDL_cocoamodes.m +++ b/src/video/cocoa/SDL_cocoamodes.m @@ -22,6 +22,14 @@ #include "SDL_cocoavideo.h" +/* !!! FIXME: clean out the pre-10.6 code when it makes sense to do so. */ +#define FORCE_OLD_API 0 || (MAC_OS_X_VERSION_MAX_ALLOWED < 1060) + +#if FORCE_OLD_API +#undef MAC_OS_X_VERSION_MIN_REQUIRED +#define MAC_OS_X_VERSION_MIN_REQUIRED MAC_OS_X_VERSION_10_5 +#endif + #if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_5 /* Add methods to get at private members of NSScreen. @@ -42,6 +50,16 @@ @end #endif +static inline BOOL +IS_SNOW_LEOPARD_OR_LATER(_THIS) +{ +#if FORCE_OLD_API + return NO; +#else + return ((((SDL_VideoData *) _this->driverdata))->osversion >= 0x1060); +#endif +} + static void CG_SetError(const char *prefix, CGDisplayErr result) { @@ -92,7 +110,7 @@ CG_SetError(const char *prefix, CGDisplayErr result) } static SDL_bool -GetDisplayMode(CFDictionaryRef moderef, SDL_DisplayMode *mode) +GetDisplayMode(_THIS, const void *moderef, SDL_DisplayMode *mode) { SDL_DisplayModeData *data; CFNumberRef number; @@ -104,26 +122,53 @@ GetDisplayMode(CFDictionaryRef moderef, SDL_DisplayMode *mode) } data->moderef = moderef; - number = CFDictionaryGetValue(moderef, kCGDisplayWidth); - CFNumberGetValue(number, kCFNumberLongType, &width); - number = CFDictionaryGetValue(moderef, kCGDisplayHeight); - CFNumberGetValue(number, kCFNumberLongType, &height); - number = CFDictionaryGetValue(moderef, kCGDisplayBitsPerPixel); - CFNumberGetValue(number, kCFNumberLongType, &bpp); - number = CFDictionaryGetValue(moderef, kCGDisplayRefreshRate); - CFNumberGetValue(number, kCFNumberLongType, &refreshRate); + #if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6) + if (IS_SNOW_LEOPARD_OR_LATER(_this)) { + CGDisplayModeRef vidmode = (CGDisplayModeRef) moderef; + CFStringRef fmt = CGDisplayModeCopyPixelEncoding(vidmode); + width = (long) CGDisplayModeGetWidth(vidmode); + height = (long) CGDisplayModeGetHeight(vidmode); + refreshRate = (long) CGDisplayModeGetRefreshRate(vidmode); + + if (CFStringCompare(fmt, CFSTR(IO32BitDirectPixels), + kCFCompareCaseInsensitive) == kCFCompareEqualTo) { + bpp = 32; + } else if (CFStringCompare(fmt, CFSTR(IO16BitDirectPixels), + kCFCompareCaseInsensitive) == kCFCompareEqualTo) { + bpp = 16; + } else { + bpp = 0; /* ignore 8-bit and such for now. */ + } + + CFRelease(fmt); + } + #endif + + #if (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_6) + if (!IS_SNOW_LEOPARD_OR_LATER(_this)) { + CFDictionaryRef vidmode = (CFDictionaryRef) moderef; + number = CFDictionaryGetValue(vidmode, kCGDisplayWidth); + CFNumberGetValue(number, kCFNumberLongType, &width); + number = CFDictionaryGetValue(vidmode, kCGDisplayHeight); + CFNumberGetValue(number, kCFNumberLongType, &height); + number = CFDictionaryGetValue(vidmode, kCGDisplayBitsPerPixel); + CFNumberGetValue(number, kCFNumberLongType, &bpp); + number = CFDictionaryGetValue(vidmode, kCGDisplayRefreshRate); + CFNumberGetValue(number, kCFNumberLongType, &refreshRate); + } + #endif mode->format = SDL_PIXELFORMAT_UNKNOWN; switch (bpp) { - case 8: - /* We don't support palettized modes now */ - return SDL_FALSE; case 16: mode->format = SDL_PIXELFORMAT_ARGB1555; break; case 32: mode->format = SDL_PIXELFORMAT_ARGB8888; break; + case 8: /* We don't support palettized modes now */ + default: /* Totally unrecognizable bit depth. */ + return SDL_FALSE; } mode->w = width; mode->h = height; @@ -132,6 +177,28 @@ GetDisplayMode(CFDictionaryRef moderef, SDL_DisplayMode *mode) return SDL_TRUE; } +static inline void +Cocoa_ReleaseDisplayMode(_THIS, const void *moderef) +{ + /* We don't own moderef unless we use the 10.6+ APIs. */ + #if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6) + if (IS_SNOW_LEOPARD_OR_LATER(_this)) { + CGDisplayModeRelease((CGDisplayModeRef) moderef); /* NULL is ok */ + } + #endif +} + +static inline void +Cocoa_ReleaseDisplayModeList(_THIS, CFArrayRef modelist) +{ + /* We don't own modelis unless we use the 10.6+ APIs. */ + #if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6) + if (IS_SNOW_LEOPARD_OR_LATER(_this)) { + CFRelease(modelist); /* NULL is ok */ + } + #endif +} + void Cocoa_InitModes(_THIS) { @@ -159,7 +226,7 @@ Cocoa_InitModes(_THIS) SDL_VideoDisplay display; SDL_DisplayData *displaydata; SDL_DisplayMode mode; - CFDictionaryRef moderef; + const void *moderef = NULL; if (pass == 0) { if (!CGDisplayIsMain(displays[i])) { @@ -174,22 +241,37 @@ Cocoa_InitModes(_THIS) if (CGDisplayMirrorsDisplay(displays[i]) != kCGNullDirectDisplay) { continue; } - moderef = CGDisplayCurrentMode(displays[i]); + + #if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6) + if (IS_SNOW_LEOPARD_OR_LATER(_this)) { + moderef = CGDisplayCopyDisplayMode(displays[i]); + } + #endif + + #if (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_6) + if (!IS_SNOW_LEOPARD_OR_LATER(_this)) { + moderef = CGDisplayCurrentMode(displays[i]); + } + #endif + if (!moderef) { continue; } displaydata = (SDL_DisplayData *) SDL_malloc(sizeof(*displaydata)); if (!displaydata) { + Cocoa_ReleaseDisplayMode(_this, moderef); continue; } displaydata->display = displays[i]; SDL_zero(display); - if (!GetDisplayMode (moderef, &mode)) { + if (!GetDisplayMode (_this, moderef, &mode)) { + Cocoa_ReleaseDisplayMode(_this, moderef); SDL_free(displaydata); continue; } + display.desktop_mode = mode; display.current_mode = mode; display.driverdata = displaydata; @@ -213,31 +295,61 @@ Cocoa_GetDisplayBounds(_THIS, SDL_VideoDisplay * display, SDL_Rect * rect) return 0; } -static void -AddDisplayMode(const void *moderef, void *context) -{ - SDL_VideoDisplay *display = (SDL_VideoDisplay *) context; - SDL_DisplayMode mode; - - if (GetDisplayMode(moderef, &mode)) { - SDL_AddDisplayMode(display, &mode); - } -} - void Cocoa_GetDisplayModes(_THIS, SDL_VideoDisplay * display) { SDL_DisplayData *data = (SDL_DisplayData *) display->driverdata; - CFArrayRef modes; - CFRange range; + CFArrayRef modes = NULL; - modes = CGDisplayAvailableModes(data->display); - if (!modes) { - return; + #if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6) + if (IS_SNOW_LEOPARD_OR_LATER(_this)) { + modes = CGDisplayCopyAllDisplayModes(data->display, NULL); } - range.location = 0; - range.length = CFArrayGetCount(modes); - CFArrayApplyFunction(modes, range, AddDisplayMode, display); + #endif + + #if (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_6) + if (!IS_SNOW_LEOPARD_OR_LATER(_this)) { + modes = CGDisplayAvailableModes(data->display); + } + #endif + + if (modes) { + const CFIndex count = CFArrayGetCount(modes); + CFIndex i; + + for (i = 0; i < count; i++) { + const void *moderef = CFArrayGetValueAtIndex(modes, i); + SDL_DisplayMode mode; + if (GetDisplayMode(_this, moderef, &mode)) { + #if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6) + if (IS_SNOW_LEOPARD_OR_LATER(_this)) { + CGDisplayModeRetain((CGDisplayModeRef) moderef); + } + #endif + SDL_AddDisplayMode(display, &mode); + } + } + + Cocoa_ReleaseDisplayModeList(_this, modes); + } +} + +static CGError +Cocoa_SwitchMode(_THIS, CGDirectDisplayID display, const void *mode) +{ + #if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6) + if (IS_SNOW_LEOPARD_OR_LATER(_this)) { + return CGDisplaySetDisplayMode(display, (CGDisplayModeRef) mode, NULL); + } + #endif + + #if (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_6) + if (!IS_SNOW_LEOPARD_OR_LATER(_this)) { + return CGDisplaySwitchToMode(display, (CFDictionaryRef) mode); + } + #endif + + return kCGErrorFailure; } int @@ -255,7 +367,7 @@ Cocoa_SetDisplayMode(_THIS, SDL_VideoDisplay * display, SDL_DisplayMode * mode) if (data == display->desktop_mode.driverdata) { /* Restoring desktop mode */ - CGDisplaySwitchToMode(displaydata->display, data->moderef); + Cocoa_SwitchMode(_this, displaydata->display, data->moderef); if (CGDisplayIsMain(displaydata->display)) { CGReleaseAllDisplays(); @@ -280,7 +392,7 @@ Cocoa_SetDisplayMode(_THIS, SDL_VideoDisplay * display, SDL_DisplayMode * mode) } /* Do the physical switch */ - result = CGDisplaySwitchToMode(displaydata->display, data->moderef); + result = Cocoa_SwitchMode(_this, displaydata->display, data->moderef); if (result != kCGErrorSuccess) { CG_SetError("CGDisplaySwitchToMode()", result); goto ERR_NO_SWITCH; @@ -314,14 +426,24 @@ ERR_NO_CAPTURE: void Cocoa_QuitModes(_THIS) { - int i; + int i, j; for (i = 0; i < _this->num_displays; ++i) { SDL_VideoDisplay *display = &_this->displays[i]; + SDL_DisplayModeData *mode; if (display->current_mode.driverdata != display->desktop_mode.driverdata) { Cocoa_SetDisplayMode(_this, display, &display->desktop_mode); } + + mode = (SDL_DisplayModeData *) display->desktop_mode.driverdata; + Cocoa_ReleaseDisplayMode(_this, mode->moderef); + + for (j = 0; j < display->num_display_modes; j++) { + mode = (SDL_DisplayModeData*) display->display_modes[j].driverdata; + Cocoa_ReleaseDisplayMode(_this, mode->moderef); + } + } ShowMenuBar(); } From c3366d1756ae10dc31aeb2d953d88657a89f8161 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 23 Aug 2011 16:47:22 -0400 Subject: [PATCH 68/72] Patched to compile on Windows. --- src/video/windows/SDL_windowsopengl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/windows/SDL_windowsopengl.c b/src/video/windows/SDL_windowsopengl.c index 419e0f1fe..f9ebf91d2 100644 --- a/src/video/windows/SDL_windowsopengl.c +++ b/src/video/windows/SDL_windowsopengl.c @@ -466,7 +466,7 @@ WIN_GL_SetupWindow(_THIS, SDL_Window * window) *iAttr++ = _this->gl_config.multisamplesamples; } - if ( this->gl_config.accelerated >= 0 ) { + if (_this->gl_config.accelerated >= 0) { *iAttr++ = WGL_ACCELERATION_ARB; *iAttr++ = (_this->gl_config.accelerated ? WGL_FULL_ACCELERATION_ARB : WGL_NO_ACCELERATION_ARB); From 0daed19a0e7d1a296049cb1d45f06dc8260a4d92 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 25 Aug 2011 03:11:28 -0400 Subject: [PATCH 69/72] Removed the MAC_OS_X_VERSION_10_x macros from the 1.3 branch. --- include/SDL_platform.h | 9 --------- src/audio/coreaudio/SDL_coreaudio.h | 2 +- src/video/cocoa/SDL_cocoaclipboard.m | 2 +- src/video/cocoa/SDL_cocoakeyboard.m | 10 +++++----- src/video/cocoa/SDL_cocoamodes.m | 26 +++++++++++++------------- src/video/cocoa/SDL_cocoashape.m | 2 +- src/video/cocoa/SDL_cocoavideo.h | 2 +- src/video/cocoa/SDL_cocoawindow.h | 2 +- src/video/cocoa/SDL_cocoawindow.m | 6 +++--- 9 files changed, 26 insertions(+), 35 deletions(-) diff --git a/include/SDL_platform.h b/include/SDL_platform.h index 9e7a33b02..ec29b06b8 100644 --- a/include/SDL_platform.h +++ b/include/SDL_platform.h @@ -74,15 +74,6 @@ /* lets us know what version of Mac OS X we're compiling on */ #include "AvailabilityMacros.h" #include "TargetConditionals.h" -#ifndef MAC_OS_X_VERSION_10_4 -#define MAC_OS_X_VERSION_10_4 1040 -#endif -#ifndef MAC_OS_X_VERSION_10_5 -#define MAC_OS_X_VERSION_10_5 1050 -#endif -#ifndef MAC_OS_X_VERSION_10_6 -#define MAC_OS_X_VERSION_10_6 1060 -#endif #if TARGET_OS_IPHONE /* if compiling for iPhone */ #undef __IPHONEOS__ diff --git a/src/audio/coreaudio/SDL_coreaudio.h b/src/audio/coreaudio/SDL_coreaudio.h index 1fa14ec51..511e1325f 100644 --- a/src/audio/coreaudio/SDL_coreaudio.h +++ b/src/audio/coreaudio/SDL_coreaudio.h @@ -32,7 +32,7 @@ #if MACOSX_COREAUDIO #include #include -#if MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_5 +#if MAC_OS_X_VERSION_MAX_ALLOWED <= 1050 #include #endif #endif diff --git a/src/video/cocoa/SDL_cocoaclipboard.m b/src/video/cocoa/SDL_cocoaclipboard.m index 1d437aea0..3166708ce 100644 --- a/src/video/cocoa/SDL_cocoaclipboard.m +++ b/src/video/cocoa/SDL_cocoaclipboard.m @@ -26,7 +26,7 @@ static NSString * GetTextFormat(_THIS) { -#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6 +#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1060 SDL_VideoData *data = (SDL_VideoData *) _this->driverdata; if (data->osversion >= 0x1060) { diff --git a/src/video/cocoa/SDL_cocoakeyboard.m b/src/video/cocoa/SDL_cocoakeyboard.m index da1ac84eb..e420a2fe9 100644 --- a/src/video/cocoa/SDL_cocoakeyboard.m +++ b/src/video/cocoa/SDL_cocoakeyboard.m @@ -170,7 +170,7 @@ } /* Needs long instead of NSInteger for compilation on Mac OS X 10.4 */ -#if MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5 +#if MAC_OS_X_VERSION_MIN_REQUIRED < 1050 - (long) conversationIdentifier #else - (NSInteger) conversationIdentifier @@ -481,7 +481,7 @@ HandleModifiers(_THIS, unsigned short scancode, unsigned int modifierFlags) static void UpdateKeymap(SDL_VideoData *data) { -#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5 +#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1050 TISInputSourceRef key_layout; #else KeyboardLayoutRef key_layout; @@ -492,7 +492,7 @@ UpdateKeymap(SDL_VideoData *data) SDL_Keycode keymap[SDL_NUM_SCANCODES]; /* See if the keymap needs to be updated */ -#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5 +#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1050 key_layout = TISCopyCurrentKeyboardLayoutInputSource(); #else KLGetCurrentKeyboardLayout(&key_layout); @@ -505,7 +505,7 @@ UpdateKeymap(SDL_VideoData *data) SDL_GetDefaultKeymap(keymap); /* Try Unicode data first (preferred as of Mac OS X 10.5) */ -#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5 +#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1050 CFDataRef uchrDataRef = TISGetInputSourceProperty(key_layout, kTISPropertyUnicodeKeyLayoutData); if (uchrDataRef) chr_data = CFDataGetBytePtr(uchrDataRef); @@ -547,7 +547,7 @@ UpdateKeymap(SDL_VideoData *data) return; } -#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5 +#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1050 cleanup: CFRelease(key_layout); #else diff --git a/src/video/cocoa/SDL_cocoamodes.m b/src/video/cocoa/SDL_cocoamodes.m index de59493ea..5babd40d1 100644 --- a/src/video/cocoa/SDL_cocoamodes.m +++ b/src/video/cocoa/SDL_cocoamodes.m @@ -27,10 +27,10 @@ #if FORCE_OLD_API #undef MAC_OS_X_VERSION_MIN_REQUIRED -#define MAC_OS_X_VERSION_MIN_REQUIRED MAC_OS_X_VERSION_10_5 +#define MAC_OS_X_VERSION_MIN_REQUIRED 1050 #endif -#if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_5 +#if MAC_OS_X_VERSION_MAX_ALLOWED < 1050 /* Add methods to get at private members of NSScreen. Since there is a bug in Apple's screen switching code @@ -122,7 +122,7 @@ GetDisplayMode(_THIS, const void *moderef, SDL_DisplayMode *mode) } data->moderef = moderef; - #if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6) + #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1060 if (IS_SNOW_LEOPARD_OR_LATER(_this)) { CGDisplayModeRef vidmode = (CGDisplayModeRef) moderef; CFStringRef fmt = CGDisplayModeCopyPixelEncoding(vidmode); @@ -144,7 +144,7 @@ GetDisplayMode(_THIS, const void *moderef, SDL_DisplayMode *mode) } #endif - #if (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_6) + #if MAC_OS_X_VERSION_MIN_REQUIRED < 1060 if (!IS_SNOW_LEOPARD_OR_LATER(_this)) { CFDictionaryRef vidmode = (CFDictionaryRef) moderef; number = CFDictionaryGetValue(vidmode, kCGDisplayWidth); @@ -181,7 +181,7 @@ static inline void Cocoa_ReleaseDisplayMode(_THIS, const void *moderef) { /* We don't own moderef unless we use the 10.6+ APIs. */ - #if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6) + #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1060 if (IS_SNOW_LEOPARD_OR_LATER(_this)) { CGDisplayModeRelease((CGDisplayModeRef) moderef); /* NULL is ok */ } @@ -192,7 +192,7 @@ static inline void Cocoa_ReleaseDisplayModeList(_THIS, CFArrayRef modelist) { /* We don't own modelis unless we use the 10.6+ APIs. */ - #if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6) + #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1060 if (IS_SNOW_LEOPARD_OR_LATER(_this)) { CFRelease(modelist); /* NULL is ok */ } @@ -242,13 +242,13 @@ Cocoa_InitModes(_THIS) continue; } - #if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6) + #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1060 if (IS_SNOW_LEOPARD_OR_LATER(_this)) { moderef = CGDisplayCopyDisplayMode(displays[i]); } #endif - #if (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_6) + #if MAC_OS_X_VERSION_MIN_REQUIRED < 1060 if (!IS_SNOW_LEOPARD_OR_LATER(_this)) { moderef = CGDisplayCurrentMode(displays[i]); } @@ -301,13 +301,13 @@ Cocoa_GetDisplayModes(_THIS, SDL_VideoDisplay * display) SDL_DisplayData *data = (SDL_DisplayData *) display->driverdata; CFArrayRef modes = NULL; - #if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6) + #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1060 if (IS_SNOW_LEOPARD_OR_LATER(_this)) { modes = CGDisplayCopyAllDisplayModes(data->display, NULL); } #endif - #if (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_6) + #if MAC_OS_X_VERSION_MIN_REQUIRED < 1060 if (!IS_SNOW_LEOPARD_OR_LATER(_this)) { modes = CGDisplayAvailableModes(data->display); } @@ -321,7 +321,7 @@ Cocoa_GetDisplayModes(_THIS, SDL_VideoDisplay * display) const void *moderef = CFArrayGetValueAtIndex(modes, i); SDL_DisplayMode mode; if (GetDisplayMode(_this, moderef, &mode)) { - #if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6) + #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1060 if (IS_SNOW_LEOPARD_OR_LATER(_this)) { CGDisplayModeRetain((CGDisplayModeRef) moderef); } @@ -337,13 +337,13 @@ Cocoa_GetDisplayModes(_THIS, SDL_VideoDisplay * display) static CGError Cocoa_SwitchMode(_THIS, CGDirectDisplayID display, const void *mode) { - #if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6) + #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1060 if (IS_SNOW_LEOPARD_OR_LATER(_this)) { return CGDisplaySetDisplayMode(display, (CGDisplayModeRef) mode, NULL); } #endif - #if (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_6) + #if MAC_OS_X_VERSION_MIN_REQUIRED < 1060 if (!IS_SNOW_LEOPARD_OR_LATER(_this)) { return CGDisplaySwitchToMode(display, (CFDictionaryRef) mode); } diff --git a/src/video/cocoa/SDL_cocoashape.m b/src/video/cocoa/SDL_cocoashape.m index 977a2ebb9..19d432d5f 100644 --- a/src/video/cocoa/SDL_cocoashape.m +++ b/src/video/cocoa/SDL_cocoashape.m @@ -28,7 +28,7 @@ SDL_WindowShaper* Cocoa_CreateShaper(SDL_Window* window) { SDL_WindowData* windata = (SDL_WindowData*)window->driverdata; [windata->nswindow setOpaque:NO]; -#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_6 +#if MAC_OS_X_VERSION_MIN_REQUIRED >= 1060 [windata->nswindow setStyleMask:NSBorderlessWindowMask]; #endif SDL_WindowShaper* result = result = malloc(sizeof(SDL_WindowShaper)); diff --git a/src/video/cocoa/SDL_cocoavideo.h b/src/video/cocoa/SDL_cocoavideo.h index d56e51c5b..d9389cf41 100644 --- a/src/video/cocoa/SDL_cocoavideo.h +++ b/src/video/cocoa/SDL_cocoavideo.h @@ -39,7 +39,7 @@ #include "SDL_cocoaopengl.h" #include "SDL_cocoawindow.h" -#if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_5 +#if MAC_OS_X_VERSION_MAX_ALLOWED < 1050 #if __LP64__ typedef long NSInteger; typedef unsigned long NSUInteger; diff --git a/src/video/cocoa/SDL_cocoawindow.h b/src/video/cocoa/SDL_cocoawindow.h index 7a86fde70..d0e634eb2 100644 --- a/src/video/cocoa/SDL_cocoawindow.h +++ b/src/video/cocoa/SDL_cocoawindow.h @@ -28,7 +28,7 @@ typedef struct SDL_WindowData SDL_WindowData; /* *INDENT-OFF* */ -#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_6 +#if MAC_OS_X_VERSION_MIN_REQUIRED >= 1060 @interface Cocoa_WindowListener : NSResponder { #else @interface Cocoa_WindowListener : NSResponder { diff --git a/src/video/cocoa/SDL_cocoawindow.m b/src/video/cocoa/SDL_cocoawindow.m index e494d62ad..dbdfb5daa 100644 --- a/src/video/cocoa/SDL_cocoawindow.m +++ b/src/video/cocoa/SDL_cocoawindow.m @@ -67,7 +67,7 @@ static __inline__ void ConvertNSRect(NSRect *r) [window setAcceptsMouseMovedEvents:YES]; [view setNextResponder:self]; -#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6 +#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1060 [view setAcceptsTouchEvents:YES]; #endif } @@ -380,7 +380,7 @@ static __inline__ void ConvertNSRect(NSRect *r) - (void)handleTouches:(cocoaTouchType)type withEvent:(NSEvent *)event { -#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6 +#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1060 NSSet *touches = 0; NSEnumerator *enumerator; NSTouch *touch; @@ -442,7 +442,7 @@ static __inline__ void ConvertNSRect(NSRect *r) touch = (NSTouch*)[enumerator nextObject]; } -#endif /* MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6 */ +#endif /* MAC_OS_X_VERSION_MAX_ALLOWED >= 1060 */ } @end From 3d9a6850997e85a21223dc81706001c606064b21 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 26 Aug 2011 03:38:46 -0400 Subject: [PATCH 70/72] Fix another Apple conflict in SDL_opengl.h --- include/SDL_opengl.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/SDL_opengl.h b/include/SDL_opengl.h index 61f3c5c4b..0e5ed0fde 100644 --- a/include/SDL_opengl.h +++ b/include/SDL_opengl.h @@ -5105,9 +5105,14 @@ typedef char GLchar; #ifndef GL_VERSION_1_5 /* GL types for handling large vertex buffer objects */ +#if defined(__APPLE__) +typedef long GLintptr; +typedef long GLsizeiptr; +#else typedef ptrdiff_t GLintptr; typedef ptrdiff_t GLsizeiptr; #endif +#endif #ifndef GL_ARB_vertex_buffer_object /* GL types for handling large vertex buffer objects */ From 6f0f508a4f05bc70013974e899a4890a5baeec89 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Fri, 26 Aug 2011 13:11:53 +0100 Subject: [PATCH 71/72] * Fix many memory leaks in Android FS code * Set SDL error string with Java exception details when one occurs * Fix tabulation of SDLActivity::getContext --- .../src/org/libsdl/app/SDLActivity.java | 6 +- src/core/android/SDL_android.cpp | 155 ++++++++++++------ 2 files changed, 109 insertions(+), 52 deletions(-) diff --git a/android-project/src/org/libsdl/app/SDLActivity.java b/android-project/src/org/libsdl/app/SDLActivity.java index 3f377dea0..b883abf60 100644 --- a/android-project/src/org/libsdl/app/SDLActivity.java +++ b/android-project/src/org/libsdl/app/SDLActivity.java @@ -114,9 +114,9 @@ public class SDLActivity extends Activity { mSingleton.sendCommand(COMMAND_CHANGE_TITLE, title); } - public static Context getContext() { - return mSingleton; - } + public static Context getContext() { + return mSingleton; + } // Audio private static Object buf; diff --git a/src/core/android/SDL_android.cpp b/src/core/android/SDL_android.cpp index 60ef4d521..c5a764297 100644 --- a/src/core/android/SDL_android.cpp +++ b/src/core/android/SDL_android.cpp @@ -259,35 +259,92 @@ extern "C" void Android_JNI_CloseAudioDevice() } } +// Test for an exception and call SDL_SetError with its detail if one occurs +static bool Android_JNI_ExceptionOccurred() +{ + jthrowable exception = mEnv->ExceptionOccurred(); + if (exception != NULL) { + jmethodID mid; + + // Until this happens most JNI operations have undefined behaviour + mEnv->ExceptionClear(); + + jclass exceptionClass = mEnv->GetObjectClass(exception); + jclass classClass = mEnv->FindClass("java/lang/Class"); + + mid = mEnv->GetMethodID(classClass, "getName", "()Ljava/lang/String;"); + jstring exceptionName = (jstring)mEnv->CallObjectMethod(exceptionClass, mid); + const char* exceptionNameUTF8 = mEnv->GetStringUTFChars(exceptionName, 0); + + mid = mEnv->GetMethodID(exceptionClass, "getMessage", "()Ljava/lang/String;"); + jstring exceptionMessage = (jstring)mEnv->CallObjectMethod(exceptionClass, mid); + + if (exceptionMessage != NULL) { + const char* exceptionMessageUTF8 = mEnv->GetStringUTFChars( + exceptionMessage, 0); + SDL_SetError("%s: %s", exceptionNameUTF8, exceptionMessageUTF8); + mEnv->ReleaseStringUTFChars(exceptionMessage, exceptionMessageUTF8); + mEnv->DeleteLocalRef(exceptionMessage); + } else { + SDL_SetError("%s", exceptionNameUTF8); + } + + mEnv->ReleaseStringUTFChars(exceptionName, exceptionNameUTF8); + mEnv->DeleteLocalRef(exceptionName); + mEnv->DeleteLocalRef(classClass); + mEnv->DeleteLocalRef(exceptionClass); + mEnv->DeleteLocalRef(exception); + + return true; + } + + return false; +} + static int Android_JNI_FileOpen(SDL_RWops* ctx) { - jstring fileNameJString = (jstring)ctx->hidden.androidio.fileName; + int result = 0; + + jmethodID mid; + jobject context; + jobject assetManager; + jobject inputStream; + jclass channels; + jobject readableByteChannel; + jstring fileNameJString; + + bool allocatedLocalFrame = false; + + if (mEnv->PushLocalFrame(16) < 0) { + SDL_SetError("Failed to allocate enough JVM local references"); + goto failure; + } else { + allocatedLocalFrame = true; + } + + fileNameJString = (jstring)ctx->hidden.androidio.fileName; // context = SDLActivity.getContext(); - jmethodID mid = mEnv->GetStaticMethodID(mActivityClass, + mid = mEnv->GetStaticMethodID(mActivityClass, "getContext","()Landroid/content/Context;"); - jobject context = mEnv->CallStaticObjectMethod(mActivityClass, mid); + context = mEnv->CallStaticObjectMethod(mActivityClass, mid); // assetManager = context.getAssets(); mid = mEnv->GetMethodID(mEnv->GetObjectClass(context), - "getAssets","()Landroid/content/res/AssetManager;"); - jobject assetManager = mEnv->CallObjectMethod(context, mid); + "getAssets", "()Landroid/content/res/AssetManager;"); + assetManager = mEnv->CallObjectMethod(context, mid); // inputStream = assetManager.open(); - mEnv->ExceptionClear(); mid = mEnv->GetMethodID(mEnv->GetObjectClass(assetManager), "open", "(Ljava/lang/String;)Ljava/io/InputStream;"); - jobject inputStream = mEnv->CallObjectMethod(assetManager, mid, fileNameJString); - if (mEnv->ExceptionOccurred()) { - mEnv->ExceptionDescribe(); - mEnv->ExceptionClear(); - mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.fileNameRef); - return -1; - } else { - ctx->hidden.androidio.inputStream = inputStream; - ctx->hidden.androidio.inputStreamRef = mEnv->NewGlobalRef(inputStream); + inputStream = mEnv->CallObjectMethod(assetManager, mid, fileNameJString); + if (Android_JNI_ExceptionOccurred()) { + goto failure; } + ctx->hidden.androidio.inputStream = inputStream; + ctx->hidden.androidio.inputStreamRef = mEnv->NewGlobalRef(inputStream); + // Store .skip id for seeking purposes mid = mEnv->GetMethodID(mEnv->GetObjectClass(inputStream), "skip", "(J)J"); @@ -300,38 +357,28 @@ static int Android_JNI_FileOpen(SDL_RWops* ctx) // AssetInputStream.available() /will/ always return the total file size // size = inputStream.available(); - mEnv->ExceptionClear(); mid = mEnv->GetMethodID(mEnv->GetObjectClass(inputStream), "available", "()I"); ctx->hidden.androidio.size = mEnv->CallIntMethod(inputStream, mid); - if (mEnv->ExceptionOccurred()) { - mEnv->ExceptionDescribe(); - mEnv->ExceptionClear(); - mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.fileNameRef); - mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.inputStreamRef); - return -1; + if (Android_JNI_ExceptionOccurred()) { + goto failure; } // readableByteChannel = Channels.newChannel(inputStream); - mEnv->ExceptionClear(); - jclass channels = mEnv->FindClass("java/nio/channels/Channels"); + channels = mEnv->FindClass("java/nio/channels/Channels"); mid = mEnv->GetStaticMethodID(channels, "newChannel", "(Ljava/io/InputStream;)Ljava/nio/channels/ReadableByteChannel;"); - jobject readableByteChannel = mEnv->CallStaticObjectMethod( + readableByteChannel = mEnv->CallStaticObjectMethod( channels, mid, inputStream); - if (mEnv->ExceptionOccurred()) { - mEnv->ExceptionDescribe(); - mEnv->ExceptionClear(); - mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.fileNameRef); - mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.inputStreamRef); - return -1; - } else { - ctx->hidden.androidio.readableByteChannel = readableByteChannel; - ctx->hidden.androidio.readableByteChannelRef = - mEnv->NewGlobalRef(readableByteChannel); + if (Android_JNI_ExceptionOccurred()) { + goto failure; } + ctx->hidden.androidio.readableByteChannel = readableByteChannel; + ctx->hidden.androidio.readableByteChannelRef = + mEnv->NewGlobalRef(readableByteChannel); + // Store .read id for reading purposes mid = mEnv->GetMethodID(mEnv->GetObjectClass(readableByteChannel), "read", "(Ljava/nio/ByteBuffer;)I"); @@ -339,7 +386,22 @@ static int Android_JNI_FileOpen(SDL_RWops* ctx) ctx->hidden.androidio.position = 0; - return 0; + if (false) { +failure: + result = -1; + + mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.fileNameRef); + + if(ctx->hidden.androidio.inputStreamRef != NULL) { + mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.inputStreamRef); + } + } + + if (allocatedLocalFrame) { + mEnv->PopLocalFrame(NULL); + } + + return result; } extern "C" int Android_JNI_FileOpen(SDL_RWops* ctx, @@ -352,6 +414,8 @@ extern "C" int Android_JNI_FileOpen(SDL_RWops* ctx, jstring fileNameJString = mEnv->NewStringUTF(fileName); ctx->hidden.androidio.fileName = fileNameJString; ctx->hidden.androidio.fileNameRef = mEnv->NewGlobalRef(fileNameJString); + ctx->hidden.androidio.inputStreamRef = NULL; + mEnv->DeleteLocalRef(fileNameJString); return Android_JNI_FileOpen(ctx); } @@ -366,14 +430,12 @@ extern "C" size_t Android_JNI_FileRead(SDL_RWops* ctx, void* buffer, jmethodID readMethod = (jmethodID)ctx->hidden.androidio.readMethod; jobject byteBuffer = mEnv->NewDirectByteBuffer(buffer, bytesRemaining); - mEnv->ExceptionClear(); while (bytesRemaining > 0) { // result = readableByteChannel.read(...); int result = mEnv->CallIntMethod(readableByteChannel, readMethod, byteBuffer); - if (mEnv->ExceptionOccurred()) { - mEnv->ExceptionDescribe(); - mEnv->ExceptionClear(); + if (Android_JNI_ExceptionOccurred()) { + mEnv->DeleteLocalRef(byteBuffer); return 0; } @@ -386,6 +448,8 @@ extern "C" size_t Android_JNI_FileRead(SDL_RWops* ctx, void* buffer, ctx->hidden.androidio.position += result; } + mEnv->DeleteLocalRef(byteBuffer); + return bytesRead / size; } @@ -408,16 +472,13 @@ static int Android_JNI_FileClose(SDL_RWops* ctx, bool release) jobject inputStream = (jobject)ctx->hidden.androidio.inputStream; // inputStream.close(); - mEnv->ExceptionClear(); jmethodID mid = mEnv->GetMethodID(mEnv->GetObjectClass(inputStream), "close", "()V"); mEnv->CallVoidMethod(inputStream, mid); mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.inputStreamRef); mEnv->DeleteGlobalRef((jobject)ctx->hidden.androidio.readableByteChannelRef); - if (mEnv->ExceptionOccurred()) { + if (Android_JNI_ExceptionOccurred()) { result = -1; - mEnv->ExceptionDescribe(); - mEnv->ExceptionClear(); } if (release) { @@ -460,14 +521,10 @@ extern "C" long Android_JNI_FileSeek(SDL_RWops* ctx, long offset, int whence) if (movement > 0) { // The easy case where we're seeking forwards - mEnv->ExceptionClear(); while (movement > 0) { // inputStream.skip(...); movement -= mEnv->CallLongMethod(inputStream, skipMethod, movement); - if (mEnv->ExceptionOccurred()) { - mEnv->ExceptionDescribe(); - mEnv->ExceptionClear(); - SDL_SetError("Exception while seeking"); + if (Android_JNI_ExceptionOccurred()) { return -1; } } From 1787c689239182f5f2bc419f5ee19dedd9ed1c85 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 29 Aug 2011 00:27:43 -0400 Subject: [PATCH 72/72] Fixed missing audio on iOS. --- include/SDL_config_iphoneos.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SDL_config_iphoneos.h b/include/SDL_config_iphoneos.h index 07d6c183d..e6a1dea92 100644 --- a/include/SDL_config_iphoneos.h +++ b/include/SDL_config_iphoneos.h @@ -104,7 +104,7 @@ #define HAVE_SYSCTLBYNAME 1 /* enable iPhone version of Core Audio driver */ -#define SDL_AUDIO_DRIVER_COREAUDIOIPHONE 1 +#define SDL_AUDIO_DRIVER_COREAUDIO 1 /* Enable the dummy audio driver (src/audio/dummy/\*.c) */ #define SDL_AUDIO_DRIVER_DUMMY 1