diff --git a/.hgignore b/.hgignore new file mode 100644 index 000000000..77e37a785 --- /dev/null +++ b/.hgignore @@ -0,0 +1,62 @@ +syntax:glob +aclocal.m4 +autom4te* +config.cache +config.log +config.status +configure +libtool +Makefile +sdl-config +SDL.spec +SDL.qpg +build +build-deps +.DS_Store +sdl.pc +include/SDL_config.h +test/aclocal.m4 +test/autom4te* +test/config.cache +test/config.log +test/config.status +test/configure +test/Makefile +test/SDL.dll +test/stdout.txt +test/stderr.txt +test/checkkeys +test/graywin +test/loopwave +test/testpower +test/testalpha +test/testbitmap +test/testblitspeed +test/testcdrom +test/testdyngl +test/testerror +test/testfile +test/testgamma +test/testgl +test/testhread +test/testiconv +test/testjoystick +test/testkeys +test/testlock +test/testoverlay +test/testoverlay2 +test/testpalette +test/testplatform +test/testsem +test/testsprite +test/testtimer +test/testver +test/testvidinfo +test/testwin +test/testwm +test/threadwin +test/torturethread +test/testcursor +test/testloadso +test/*.exe +test/*.dSYM diff --git a/BUGS b/BUGS index 5b709c19d..218bf3d15 100644 --- a/BUGS +++ b/BUGS @@ -1,204 +1,18 @@ -All: - Audio rate conversion is only implemented by multiplying or dividing - by a power of two. This is a side-effect of the requirement that the - raw audio buffer size be a power of two, and can hopefully be fixed. - This means 8 KHz audio converted to 22 KHz ends up being 16 KHz. :-/ +Bugs are now managed in the SDL bug tracker, here: - When the implementation is writing directly to video memory the mouse - cursor doesn't work properly. Applications which do this should use - their own mouse cursor and call SDL_ShowCursor(0) to hide the system - cursor. + http://bugzilla.libsdl.org/ -Linux: - Wide UNICODE character input (Kanji, etc.) is not yet supported. - It requires handling of keyboard mapping events and using the XIM - input translation extension. I will implement it as requested. - Latin-1 keyboard input works fine. - (UPDATE 04/06/2004: this bug is now fixed) +You may report bugs there, and search to see if a given issue has already + been reported, discussed, and maybe even fixed. - The keyboard modifiers are not set to the correct state on startup. - The AAlib, GGI, and SVGAlib video drivers are not heavily tested. -Win32: - The MCI driver can't tell if the CD-ROM drive is paused or stopped. +You may also find help at the SDL mailing list. Subscription information: - The SDL_INIT_EVENTTHREAD flag is not supported on Win32 - (Idea: create a separate DirectInput polling thread) - The main purpose of this flag is for smooth cursor motion in - fullscreen environments. + http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org - Wide UNICODE character input (Kanji, etc.) is not yet supported. - This requires the ToUnicode() API which is only implemented on - Windows NT/2000, not on Windows 95/98. - Latin-1 keyboard input works fine. +Bug reports are welcome here, but we really appreciate if you use Bugzilla, as + bugs discussed on the mailing list may be forgotten or missed. - Joysticks are only supported under the Win32 MultiMedia API, - DirectInput support is not yet implemented. - -BeOS: - BePPC is not supported, apparently not even by Be Inc. - - SDL_WM_GrabInput() is not implemented. - Does anyone know how to do this? SDL_WM_GrabInput() is designed - to prevent the user from switching input and mouse focus away from - the SDL application. - - Continuous relative mouse motion is not implemented. - - Wide UNICODE character input (Kanji, etc.) has not been tested. - Latin-1 keyboard input works fine. - -MacOS: - Palette handling isn't implemented in windowed mode yet. - - Audio hasn't been extensively tested, in particular the locking - isn't implemented and mixer routines may not call malloc() or free() - because they are called at interrupt time. - - SDL_WM_GrabInput() is not implemented. - Does anyone know how to do this? SDL_WM_GrabInput() is designed - to prevent the user from switching input and mouse focus away from - the SDL application. - - Continuous relative mouse motion is not implemented. - - SDL_AddTimer() and SDL_RemoveTimer() haven't been implemented yet. - - Not all of the keys are properly recognized on the keyboard. - -Mac OS X: - Depth switching for windowed mode isn't implemented yet. - - Palette handling isn't implemented in windowed mode yet. - - Command-line arguments dialog is not implemented yet. - - Fullscreen drawing has some artifacts. - - Fullscreen OpenGL for the software renderer is broken. - - Some OpenGL parameters are not accounted for, for example color bits customization. - - Continuous mouse motion perhaps is not as smooth as it should be. - - SDL_WM_GrabInput() is implemented, but it "freezes" the hardware - cursor in the center of the window/screen. Also, mouse moved events - are not generated, and the keyboard cannot be grabbed. - - Mac OS X seems to have a broken pthread_cancel() implementation. - Actually, it just only has one cancellation point defined. - http://lists.apple.com/archives/darwin-development/2004/Jun/24/killingapthread.001.txt - -FreeBSD: - pthread_cancel() isn't supported by FreeBSD 3.X, so threads don't - work on versions of FreeBSD earlier than 4.0. - - The CD-ROM handling doesn't work completely. - - Wide UNICODE character input (Kanji, etc.) is not yet supported. - It requires handling of keyboard mapping events and using the XIM - input translation extension. I will implement it as requested. - Latin-1 keyboard input works fine. - (UPDATE 04/06/2004: this bug is now fixed but needs testing) - - The keyboard modifiers are not set to the correct state on startup. - -Solaris: - The joystick functions are not implemented yet. - - Wide UNICODE character input (Kanji, etc.) is not yet supported. - It requires handling of keyboard mapping events and using the XIM - input translation extension. I will implement it as requested. - Latin-1 keyboard input works fine. - (UPDATE 04/06/2004: this bug is now fixed but needs testing) - - The keyboard modifiers are not set to the correct state on startup. - -IRIX: - The CD-ROM handling doesn't work completely. - - The joystick functions are not implemented yet. - - Wide UNICODE character input (Kanji, etc.) is not yet supported. - It requires handling of keyboard mapping events and using the XIM - input translation extension. I will implement it as requested. - Latin-1 keyboard input works fine. - (UPDATE 04/06/2004: this bug is now fixed but needs testing) - - The keyboard modifiers are not set to the correct state on startup. - -EPOC: - Only Crystal version of Epoc/SymbianOS is currently supported. - - SDL is implemented in static library only. SDL uses static/global - variables and that is not allowed in EPOC dll libraries. - - Sound is not yet supported. - - Joystick, OpenGL and cdrom is not supported (think about cdrom in a cell phone:-). - - No console output screen. Printing to stdout do not have any effect. - -QNX: - Fullscreen switch doesn't work (disabled for now). - - -OpenBSD: -= NOT YET SUPPORTED =- - This is reported to work, but I haven't verified this. - - Wide UNICODE character input (Kanji, etc.) is not yet supported. - It requires handling of keyboard mapping events and using the XIM - input translation extension. I will implement it as requested. - Latin-1 keyboard input works fine. - (UPDATE 04/06/2004: this bug is now fixed but needs testing) - - The keyboard modifiers are not set to the correct state on startup. - -OSF/Tru64: -= NOT YET SUPPORTED =- - The audio functions are not implemented yet. - - Joysticks and CD-ROM functions are not implemented yet. - - Wide UNICODE character input (Kanji, etc.) is not yet supported. - It requires handling of keyboard mapping events and using the XIM - input translation extension. I will implement it as requested. - Latin-1 keyboard input works fine. - (UPDATE 04/06/2004: this bug is now fixed but needs testing) - - The keyboard modifiers are not set to the correct state on startup. - -AIX: -= NOT YET SUPPORTED =- - This port has only been tested with AIX 4.3.3 - - The OpenGL support doesn't work yet. - - The joystick subsystem isn't implemented yet. - - Endian detection doesn't work yet - needs a unique CPP symbol. - - Wide UNICODE character input (Kanji, etc.) is not yet supported. - It requires handling of keyboard mapping events and using the XIM - input translation extension. I will implement it as requested. - Latin-1 keyboard input works fine. - (UPDATE 04/06/2004: this bug is now fixed but needs testing) - - The keyboard modifiers are not set to the correct state on startup. - - The AIX port was done by Carsten.Griwodz@KOM.tu-darmstadt.de - More information on this port is available at: - http://www.kom.e-technik.tu-darmstadt.de/~griff/SDL/ - -AmigaOS: -= NOT YET SUPPORTED =- - The OpenGL support isn't implemented yet. - - SDL_WM_GrabInput() is not implemented. - Does anyone know how to do this? SDL_WM_GrabInput() is designed - to prevent the user from switching input and mouse focus away from - the SDL application. - - Continuous relative mouse motion is not implemented. - - The AmigaOS port was done by Gabriele.Greco@galactica.it diff --git a/CREDITS b/CREDITS index ffab8be51..efdcfa4d7 100644 --- a/CREDITS +++ b/CREDITS @@ -22,6 +22,8 @@ Thanks to everyone who made this possible, including: * Ryan Gordon for helping everybody out and keeping the dream alive. :) +* IBM R&D Lab for their PS3 SPE video acceleration code + * Mattias Engdegård, for help with the Solaris port and lots of other help * Max Watson, Matt Slot, and Kyle for help with the MacOS Classic port @@ -40,6 +42,8 @@ Thanks to everyone who made this possible, including: * Hannu Viitala for the EPOC port +* Marcus Mertama for the S60 port. + * Peter Valchev for nagging me about the OpenBSD port until I got it right. :) * Kent B Mein, for a place to do the IRIX port diff --git a/CWprojects.sea.bin b/CWprojects.sea.bin index fb458816e..e8a6fdc29 100644 Binary files a/CWprojects.sea.bin and b/CWprojects.sea.bin differ diff --git a/EpocBuildFiles.zip b/EpocBuildFiles.zip deleted file mode 100644 index 9de7244f9..000000000 Binary files a/EpocBuildFiles.zip and /dev/null differ diff --git a/MPWmake.sea.bin b/MPWmake.sea.bin index 734d4446d..b345e0866 100644 Binary files a/MPWmake.sea.bin and b/MPWmake.sea.bin differ diff --git a/Makefile.ds b/Makefile.ds new file mode 100644 index 000000000..df3d14652 --- /dev/null +++ b/Makefile.ds @@ -0,0 +1,63 @@ +#LibSDL 1.2.12 +#DS porting by Troy Davis(GPF) + + +ifeq ($(strip $(DEVKITPRO)),) +$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=devkitPro) +endif +ifeq ($(strip $(DEVKITARM)),) +DEVKITARM := $(DEVKITPRO)/devkitARM +endif + + +SRCS = $(shell echo ./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/joystick/nds/*.c ./src/cdrom/dummy/*.c ./src/thread/generic/*.c ./src/timer/nds/*.c ./src/loadso/dummy/*.c ./src/audio/dummy/*.c ./src/audio/nds/*.c ./src/video/dummy/*.c ./src/video/nds/*.c) + +OBJS = $(SRCS:.c=.o) + + +SUBDIRS= + +CC=arm-eabi-gcc +CXX=arm-eabi-g++ +LDSHARED=$(CXX) +AR=arm-eabi-ar rc +RANLIB=arm-eabi-ranlib + +CFLAGS = -mthumb -mthumb-interwork \ + -march=armv5te -mtune=arm946e-s \ + -O2 -Wall -Wwrite-strings -Wpointer-arith \ + -DARM9 -D__NDS__ -I$(DEVKITPRO)/libnds/include -Iinclude + +CXXFLAGS += $(CFLAGS) + +all: $(DEVKITPRO)/libnds/lib/libSDL.a + + +$(DEVKITPRO)/libnds/lib/libSDL.a: $(OBJS) + $(AR) $@ $(OBJS) + -@ ($(RANLIB) $@ || true) >/dev/null 2>&1 + +clean: + find . -name "*.o" |xargs rm -f + find . -name "*.d" |xargs rm -f + -rm -f *.elf + -rm -f *.nds + -rm -f *.gba + -rm -f *.arm9 + -rm -f *.map + -rm -f *.img + -rm -Rf *.d + + +subdirs: $(patsubst %, _dir_%, $(SUBDIRS)) + +$(patsubst %, _dir_%, $(SUBDIRS)): + $(MAKE) -C $(patsubst _dir_%, %, $@) + +clean_subdirs: $(patsubst %, _clean_dir_%, $(SUBDIRS)) + +$(patsubst %, _clean_dir_%, $(SUBDIRS)): + $(MAKE) -C $(patsubst _clean_dir_%, %, $@) clean + +#include $(DEVKITARM)/ds_rules + diff --git a/Makefile.in b/Makefile.in index 4795229db..ab51035e0 100644 --- a/Makefile.in +++ b/Makefile.in @@ -6,11 +6,12 @@ objects = build depend = build-deps prefix = @prefix@ exec_prefix = @exec_prefix@ -bindir = $(DESTDIR)@bindir@ -libdir = $(DESTDIR)@libdir@ -includedir = $(DESTDIR)@includedir@ -datadir = $(DESTDIR)@datadir@ -mandir = $(DESTDIR)@mandir@ +bindir = @bindir@ +libdir = @libdir@ +includedir = @includedir@ +datarootdir = @datarootdir@ +datadir = @datadir@ +mandir = @mandir@ auxdir = @ac_aux_dir@ distpath = $(srcdir)/.. distdir = SDL-@SDL_VERSION@ @@ -29,22 +30,26 @@ INSTALL = @INSTALL@ NASM = @NASM@ @NASMFLAGS@ AR = @AR@ RANLIB = @RANLIB@ +WINDRES = @WINDRES@ TARGET = libSDL.la SOURCES = @SOURCES@ OBJECTS = @OBJECTS@ -SDLMAIN_TARGET = libSDLmain.a +SDLMAIN_TARGET = libSDLmain.la SDLMAIN_SOURCES = @SDLMAIN_SOURCES@ SDLMAIN_OBJECTS = @SDLMAIN_OBJECTS@ +SDLMAIN_LDFLAGS = @SDLMAIN_LDFLAGS@ -DIST = acinclude.m4 autogen.sh Borland.html Borland.zip BUGS build-scripts configure configure.in COPYING CREDITS CWprojects.sea.bin docs docs.html EpocBuildFiles.zip include INSTALL Makefile.dc Makefile.minimal Makefile.in MPWmake.sea.bin README* sdl-config.in sdl.m4 sdl.pc.in SDL.qpg.in SDL.spec SDL.spec.in src test TODO VisualCE.zip VisualC.html VisualC.zip Watcom-OS2.zip Watcom-Win32.zip WhatsNew Xcode.tar.gz +DIST = acinclude autogen.sh Borland.html Borland.zip BUGS build-scripts configure configure.in COPYING CREDITS CWprojects.sea.bin docs docs.html include INSTALL Makefile.dc Makefile.minimal Makefile.in MPWmake.sea.bin README* sdl-config.in sdl.m4 sdl.pc.in SDL.qpg.in SDL.spec SDL.spec.in src test TODO VisualCE VisualC.html VisualC Watcom-OS2.zip Watcom-Win32.zip symbian.zip WhatsNew Xcode + +HDRS = SDL.h SDL_active.h SDL_audio.h SDL_byteorder.h SDL_cdrom.h SDL_cpuinfo.h SDL_endian.h SDL_error.h SDL_events.h SDL_getenv.h SDL_joystick.h SDL_keyboard.h SDL_keysym.h SDL_loadso.h SDL_main.h SDL_mouse.h SDL_mutex.h SDL_name.h SDL_opengl.h SDL_platform.h SDL_quit.h SDL_rwops.h SDL_stdinc.h SDL_syswm.h SDL_thread.h SDL_timer.h SDL_types.h SDL_version.h SDL_video.h begin_code.h close_code.h LT_AGE = @LT_AGE@ LT_CURRENT = @LT_CURRENT@ LT_RELEASE = @LT_RELEASE@ LT_REVISION = @LT_REVISION@ -LT_LDFLAGS = -no-undefined -rpath $(libdir) -release $(LT_RELEASE) -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) +LT_LDFLAGS = -no-undefined -rpath $(DESTDIR)$(libdir) -release $(LT_RELEASE) -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) all: $(srcdir)/configure Makefile $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET) @@ -61,70 +66,63 @@ $(objects): .PHONY: all depend install install-bin install-hdrs install-lib install-data install-man uninstall uninstall-bin uninstall-hdrs uninstall-lib uninstall-data uninstall-man clean distclean dist depend: - @SOURCES="$(SOURCES)" INCLUDE="$(INCLUDE)" output="$(depend)" \ + @SOURCES="$(SOURCES) $(SDLMAIN_SOURCES)" INCLUDE="$(INCLUDE)" output="$(depend)" \ $(SHELL) $(auxdir)/makedep.sh - @for src in $(SDLMAIN_SOURCES); do \ - obj=`echo $$src | sed -e 's|.*/||' -e 's|\.[^\.]*$$|.o|'`; \ - echo "\$$(objects)/$$obj: $$src" >>$(depend); \ - echo " \$$(CC) \$$(CFLAGS) \$$(EXTRA_CFLAGS) -c $$src -o \$$@" >>$(depend); \ - done include $(depend) $(objects)/$(TARGET): $(OBJECTS) - $(LIBTOOL) --mode=link $(CC) -o $@ $(OBJECTS) $(LDFLAGS) $(EXTRA_LDFLAGS) $(LT_LDFLAGS) + $(LIBTOOL) --mode=link $(CC) -o $@ $^ $(LDFLAGS) $(EXTRA_LDFLAGS) $(LT_LDFLAGS) $(objects)/$(SDLMAIN_TARGET): $(SDLMAIN_OBJECTS) - $(AR) cru $@ $(SDLMAIN_OBJECTS) - $(RANLIB) $@ + $(LIBTOOL) --mode=link $(CC) -o $@ $^ $(LDFLAGS) $(EXTRA_LDFLAGS) $(LT_LDFLAGS) $(SDLMAIN_LDFLAGS) + install: all install-bin install-hdrs install-lib install-data install-man install-bin: - $(SHELL) $(auxdir)/mkinstalldirs $(bindir) - $(INSTALL) -m 755 sdl-config $(bindir)/sdl-config + $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(bindir) + $(INSTALL) -m 755 sdl-config $(DESTDIR)$(bindir)/sdl-config install-hdrs: - $(SHELL) $(auxdir)/mkinstalldirs $(includedir)/SDL - for src in $(srcdir)/include/*.h; do \ - file=`echo $$src | sed -e 's|^.*/||'`; \ - $(INSTALL) -m 644 $$src $(includedir)/SDL/$$file; \ + $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(includedir)/SDL + for file in $(HDRS); do \ + $(INSTALL) -m 644 $(srcdir)/include/$$file $(DESTDIR)$(includedir)/SDL/$$file; \ done - $(INSTALL) -m 644 include/SDL_config.h $(includedir)/SDL/SDL_config.h -install-lib: - $(SHELL) $(auxdir)/mkinstalldirs $(libdir) - $(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(TARGET) $(libdir)/$(TARGET) - $(INSTALL) -m 644 $(objects)/$(SDLMAIN_TARGET) $(libdir)/$(SDLMAIN_TARGET) - $(RANLIB) $(libdir)/$(SDLMAIN_TARGET) + $(INSTALL) -m 644 include/SDL_config.h $(DESTDIR)$(includedir)/SDL/SDL_config.h +install-lib: $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET) + $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(libdir) + $(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(TARGET) $(DESTDIR)$(libdir)/$(TARGET) + $(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(SDLMAIN_TARGET) $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET) install-data: - $(SHELL) $(auxdir)/mkinstalldirs $(datadir)/aclocal - $(INSTALL) -m 644 $(srcdir)/sdl.m4 $(datadir)/aclocal/sdl.m4 - $(SHELL) $(auxdir)/mkinstalldirs $(libdir)/pkgconfig - $(INSTALL) -m 644 sdl.pc $(libdir)/pkgconfig + $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(datadir)/aclocal + $(INSTALL) -m 644 $(srcdir)/sdl.m4 $(DESTDIR)$(datadir)/aclocal/sdl.m4 + $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(libdir)/pkgconfig + $(INSTALL) -m 644 sdl.pc $(DESTDIR)$(libdir)/pkgconfig install-man: - $(SHELL) $(auxdir)/mkinstalldirs $(mandir)/man3 + $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(mandir)/man3 for src in $(srcdir)/docs/man3/*.3; do \ file=`echo $$src | sed -e 's|^.*/||'`; \ - $(INSTALL) -m 644 $$src $(mandir)/man3/$$file; \ + $(INSTALL) -m 644 $$src $(DESTDIR)$(mandir)/man3/$$file; \ done uninstall: uninstall-bin uninstall-hdrs uninstall-lib uninstall-data uninstall-man uninstall-bin: - rm -f $(bindir)/sdl-config + rm -f $(DESTDIR)$(bindir)/sdl-config uninstall-hdrs: - for src in $(srcdir)/include/*.h; do \ - file=`echo $$src | sed -e 's|^.*/||'`; \ - rm -f $(includedir)/SDL/$$file; \ + for file in $(HDRS); do \ + rm -f $(DESTDIR)$(includedir)/SDL/$$file; \ done - rm -f $(includedir)/SDL/SDL_config.h - -rmdir $(includedir)/SDL + rm -f $(DESTDIR)$(includedir)/SDL/SDL_config.h + -rmdir $(DESTDIR)$(includedir)/SDL uninstall-lib: - $(LIBTOOL) --mode=uninstall rm -f $(libdir)/$(TARGET) - rm -f $(libdir)/$(SDLMAIN_TARGET) + $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$(TARGET) + $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET) uninstall-data: - rm -f $(datadir)/aclocal/sdl.m4 + rm -f $(DESTDIR)$(datadir)/aclocal/sdl.m4 + rm -f $(DESTDIR)$(libdir)/pkgconfig/sdl.pc uninstall-man: for src in $(srcdir)/docs/man3/*.3; do \ file=`echo $$src | sed -e 's|^.*/||'`; \ - rm -f $(mandir)/man3/$$file; \ + rm -f $(DESTDIR)$(mandir)/man3/$$file; \ done clean: @@ -136,6 +134,7 @@ distclean: clean rm -f SDL.qpg rm -f config.status config.cache config.log libtool $(depend) rm -rf $(srcdir)/autom4te* + rm -rf $(srcdir)/test/autom4te* find $(srcdir) \( \ -name '*~' -o \ -name '*.bak' -o \ @@ -152,6 +151,7 @@ dist $(distfile): tar cf - $(DIST) | (cd $(distdir); tar xf -) cp $(distdir)/include/SDL_config.h.default $(distdir)/include/SDL_config.h rm -rf `find $(distdir) -name .svn` + rm -rf $(distdir)/test/autom4te* find $(distdir) \( \ -name '*~' -o \ -name '*.bak' -o \ @@ -169,10 +169,9 @@ rpm: $(distfile) # Create a SVN snapshot that people can run update on snapshot: - svn co svn://libsdl.org/trunk/SDL - (cd SDL && ./autogen.sh && rm -rf autom4te.cache) - cp SDL/include/SDL_config.h.default SDL/include/SDL_config.h - mv SDL SDL-1.2 + svn co http://svn.libsdl.org/branches/SDL-1.2 + (cd SDL-1.2 && ./autogen.sh && rm -rf autom4te.cache) + cp SDL-1.2/include/SDL_config.h.default SDL-1.2/include/SDL_config.h tar zcf $(HOME)/SDL-1.2.tar.gz SDL-1.2 rm -f $(HOME)/SDL-1.2.zip zip -r $(HOME)/SDL-1.2.zip SDL-1.2 diff --git a/README b/README index 17ea835c0..7c0dd5890 100644 --- a/README +++ b/README @@ -12,10 +12,11 @@ This is the Simple DirectMedia Layer, a general API that provides low level access to audio, keyboard, mouse, joystick, 3D hardware via OpenGL, and 2D framebuffer across multiple platforms. -The current version supports Linux, Windows, Windows CE, BeOS, MacOS, -Mac OS X, FreeBSD, NetBSD, OpenBSD, BSD/OS, Solaris, IRIX, and QNX. -The code contains support for AmigaOS, Dreamcast, Atari, AIX, OSF/Tru64, -RISC OS, SymbianOS, and OS/2, but these are not officially supported. +The current version supports Linux, Windows CE/95/98/ME/XP/Vista, BeOS, +MacOS Classic, Mac OS X, FreeBSD, NetBSD, OpenBSD, BSD/OS, Solaris, IRIX, +and QNX. The code contains support for Dreamcast, Atari, AIX, OSF/Tru64, +RISC OS, SymbianOS, Nintendo DS, and OS/2, but these are not officially +supported. SDL is written in C, but works with C++ natively, and has bindings to several other languages, including Ada, C#, Eiffel, Erlang, Euphoria, diff --git a/README.AmigaOS b/README.AmigaOS index dffb850d0..e0d890640 100644 --- a/README.AmigaOS +++ b/README.AmigaOS @@ -1,50 +1,12 @@ -This is the porting of 1.2.0 version of SDL (the latest stable one) -to AmigaOS/68k. +The AmigaOS code has been removed from SDL, since it had been broken for a + long time and had a few bits of fairly invasive code #ifdef'd into the + SDL core. -All the bugs known of the past version have been corrected. And I've -added all the new SDL features. +However, there is an OS4 version of SDL here: + http://www.rcdrummond.net/amiga/index.html -This version of SDL needs Cybergraphx V3 (r69+) or CyberGraphX V4 -and AHI v3+. Probably it works also with P96 or CGXAga, but it's -untested. +And a MorphOS version here: + http://www.lehtoranta.net/powersdl/ -This version is available as linked library for SAS/C and GCC, only 68k this -time, a powerup (ppcemu compatible) and a morphos version will be ready quite -soon (i hope). +--ryan. -Implemented: - -- 8/16/24/32bit video modes, both fullscreen and windowed. -- Hardware surfaces. -- CGX blitting acceleration. -- CGX colorkey blitting acceleration. -- AHI audio (8/16 bit, with any audio format), always uses unit 0 for now. -- Thread support (maybe not 100% compatible with other implementations) -- Semaphores -- Window resizing and backdrop windows (NEW) -- Joystick/Joypad support. - -To do: - -- CDRom audio playing support -- OpenGL (A guy was working on it but I've lost his tracks :( ) - -The SAS/C library is distributed with debug info attached, to strip debug info -simply add STRIPDEBUG argument to the linker. - -NOTE: SDL includes debug output using kprintf, to disable it add to your -project a function like this: - -void kprintf(char *a,...) -{ -} - -Otherwise you can redirect the debug to a console window with sushi, sashimi or -similar tools (the default output is the internal serial port). - -For info, support, bugfix and other feel free to mail me: - -Gabriele Greco (gabriele.greco@aruba.it) - -You can find also a small SDL Amiga page at: -http://ggreco.interfree.it/sdl.html diff --git a/README.CVS b/README.CVS deleted file mode 100644 index 7664e9181..000000000 --- a/README.CVS +++ /dev/null @@ -1,4 +0,0 @@ - -SDL is no longer hosted in a CVS repository. Please see README.SVN for -information on accessing our Subversion repository. - diff --git a/README.Epoc b/README.Epoc deleted file mode 100644 index 380cb2527..000000000 --- a/README.Epoc +++ /dev/null @@ -1,75 +0,0 @@ - -============================================================================== -Using the Simple DirectMedia Layer with EPOC/SymbianOS 6.0 -============================================================================== - -============================================================================== -I. Building the Simple DirectMedia Layer libraries: - - You can get Symbian SDK from: - http://www.symbian.com. - - First create "Epoc" directory under SDL main directory and unpack - EpocBuildFiles.zip in it. - - To build the librarys goto "epoc" directory and type: - bldmake bldfiles - abld makefile vc6 (for creating Microsoft Visual C++ makefiles) - abld build wins udeb (building for wins emulator) - abld build armi urel (building for real device) - -============================================================================== -II. Building the Simple DirectMedia Layer programs: - - Building SDL test programs is easy once you have built the libraries: - abld test build wins udeb - abld test build armi urel - - Supported real screen resolutions - 320 x 200 x 8 bit - 320 x 200 x 12 bit - 640 x 200 x 8 bit - 640 x 200 x 12 bit - Supported "emulated" screen resolutions - 640 x 400 x 8 bit - 640 x 400 x 12 bit - 640 x 480 x 8 bit - 640 x 480 x 12 bit - "Emulated" resolutions are implemented by by shrinking the screen vertically - i.e. only every second scanline is drawn. This is mainly ment to be used for - testing quick ports of programs. Using faked resolutions is a waste of memory - and cpu power! - -============================================================================== -III. Running test programs - - Copy executable to the device and run it from the File manager. The Esc - key quits demo programs. In Crystal, Exe programs do not appear in task list - nor in Extras :-(. Test programs are tested in Nokia 9210 Communicator. - - Special keys used in SDL: - The Caps lock key enables or disables the virtual cursor. - Function keys are mapped as follows: - F1=chr+q, F2=chr+w,..., F8=chr+i, - F9=chr+a,..., F12=chr+d. - -============================================================================== -IV. Enjoy! :) - - If you have a project you'd like me to know about, or want to ask questions, - go ahead and join the SDL developer's mailing list by sending e-mail to: - - sdl-request@libsdl.org - - and put "subscribe" into the subject of the message. Or alternatively you - can use the web interface: - - http://www.libsdl.org/mailman/listinfo/sdl - - You can find more info about Epoc version of SDL from Hannu Viitala's - homepage - http://www.mbnet.fi/~haviital - -============================================================================== - - diff --git a/README.HG b/README.HG new file mode 100644 index 000000000..ecbee0d32 --- /dev/null +++ b/README.HG @@ -0,0 +1,23 @@ + +The latest development version of SDL is available via Mercurial. +Mercurial allows you to get up-to-the-minute fixes and enhancements; +as a developer works on a source tree, you can use "hg" to mirror that +source tree instead of waiting for an official release. Please look +at the Mercurial website ( http://mercurial.selenic.com/ ) for more +information on using hg, where you can also download software for +Mac OS X, Windows, and Unix systems. + + hg clone -u SDL-1.2 http://hg.libsdl.org/SDL + +If you are building SDL with an IDE, you will need to copy the file +include/SDL_config.h.default to include/SDL_config.h before building. + +If you are building SDL via configure, you will need to run autogen.sh +before running configure. + +There is a web interface to the subversion repository at: + http://hg.libsdl.org/SDL/ + +There is an RSS feed available at that URL, for those that want to +track commits in real time. + diff --git a/README.MacOSX b/README.MacOSX index 3bc421371..2ea9f6876 100644 --- a/README.MacOSX +++ b/README.MacOSX @@ -108,14 +108,7 @@ These instructions are for using Apple's Xcode IDE to build SDL applications. - First steps -The first thing to do is to unpack the Xcode.tar.gz archive in the -top level SDL directory (where the Xcode.tar.gz archive resides). -Because Stuffit Expander will unpack the archive into a subdirectory, -you should unpack the archive manually from the command line: - cd [path_to_SDL_source] - tar zxf Xcode.tar.gz -This will create a new folder called Xcode, which you can browse -normally from the Finder. +The Xcode project files are in the "Xcode" directory. - Building the Framework diff --git a/README.MiNT b/README.MiNT index 25a7d5658..eabe3eb1b 100644 --- a/README.MiNT +++ b/README.MiNT @@ -68,15 +68,15 @@ OpenGL (using Mesa offscreen rendering driver) - Dependent driver combinations: Video Kbd Mouse Timer Joysticks xbios ikbd ikbd vbl(2) ikbd -xbios gemdos xbios vbl(2) xbios(3) -xbios bios xbios vbl(2) xbios(3) -gem gem gem(1) vbl(2) xbios(3) +xbios gemdos xbios vbl(2) xbios +xbios bios xbios vbl(2) xbios +gem gem gem(1) vbl(2) xbios Audio O/S Misc dma8 All Uses MFP Timer A interrupt xbios TOS Uses MFP Timer A interrupt -xbios MiNT Uses MiNT thread -xbios Magic Disabled +xbios MiNT Uses MFP Timer A interrupt +xbios Magic Uses MFP Timer A interrupt stfa All Uses MFP interrupt mcsn TOS Uses MFP Timer A interrupt mcsn MiNT Uses MiNT thread @@ -87,16 +87,13 @@ Joypad driver always uses hardware access. OpenGL driver always uses OSMesa. (1) GEM does not report relative mouse motion, so xbios mouse driver is used -to report this type event. Under MiNT, using XBIOS mouse driver is not possible. +to report this type event. A preliminary driver for /dev/mouse device driver is present, but is disabled till it can be used with other applications simultaneously. (2) If you build SDL with threads using the GNU pth library, timers are supported via the pth library. -(3) Redirecting XBIOS vectors does not work under MiNT, so it is disabled in -this case. - ============================================================================== V. Environment variables: @@ -127,12 +124,12 @@ SDL_JOYSTICK_ATARI: 'ikbd-joy1-[on|off]' for IKBD joystick on port 1 (hardware access) 'xbios-joy1-[on|off]' for IKBD joystick on port 1 (xbios access) - 'porta-pad-[on|off]' for joypad on port A + 'porta-pad-[on|off]' for joypad and/or teamtap on port A 'porta-joy0-[on|off]' for joystick 0 on port A 'porta-joy1-[on|off]' for joystick 1 on port A 'porta-lp-[on|off]' for lightpen on port A 'porta-anpad-[on|off]' for analog paddle on port A - 'portb-pad-[on|off]' for joypad on port B + 'portb-pad-[on|off]' for joypad and/or teamtap on port B 'portb-joy0-[on|off]' for joystick 0 on port B 'portb-joy1-[on|off]' for joystick 1 on port B 'portb-anpad-[on|off]' for analog paddle on port B @@ -191,6 +188,8 @@ Xbios video: Falcon: All modes supported by the current monitor (RVB or VGA). BlowUp and Centscreen extended modes, ScreenBlaster 3 current mode. + Milan: + Experimental support Clones and any machine with monochrome monitor: Not supported. @@ -213,7 +212,7 @@ Mouse and joystick xbios driver: Available on all machines (I think). Joypad driver: - Available if _MCH cookie is STE or Falcon. + Available if _MCH cookie is STE or Falcon. Supports teamtap. PTH timer driver: Available with multitasking OS. @@ -247,5 +246,5 @@ Audio drivers: http://www.uni-ulm.de/~s_thuth/atari/xsound_e.html -- -Patrice Mandin +Patrice Mandin http://pmandin.atari.org/ diff --git a/README.NDS b/README.NDS new file mode 100644 index 000000000..e96a9eeec --- /dev/null +++ b/README.NDS @@ -0,0 +1,22 @@ +The SDL port to the Nintendo DS + +This port uses the devKitPro toolchain, available from: +http://www.devkitpro.org + +Precompiled tools for cross-compiling on Linux are available from: +http://www.libsdl.org/extras/nds/devkitPro-20070503-linux.tar.gz + +todo: +add ds console specific features/optimizations +mouse/keyboard support +dual screen support + +build with: +cp include/SDL_config_nds.h include/SDL_config.h +make -f Makefile.ds + +included is an arm9/arm7 template to allow for sound streaming support. + +Enjoy, fix the source and share :) +Troy Davis(GPF) +http://gpf.dcemu.co.uk/ diff --git a/README.PS3 b/README.PS3 new file mode 100644 index 000000000..c66467d39 --- /dev/null +++ b/README.PS3 @@ -0,0 +1,29 @@ + +SDL on Sony Playstation3 +------------------------ + +Installation: + First, you have to install the Cell SDK + - Download the Cell SDK installer RPM and ISO images to + a temporary directory such as /tmp/cellsdk. + - Mount the image: mount -o loop CellSDK-Devel-Fedora_3.1.0.0.0.iso /tmp/cellsdk + - Install the SDK installer: rpm -ivh cell-install-3.1.0-0.0.noarch.rpm + - Install the SDK: cd /opt/cell && ./cellsdk --iso /tmp/cellsdkiso install + + You need to install the SPU-libs before installing SDL + - Go to SDL-1.2/src/video/ps3/spulibs/ + - Run make && make install + + Finally, install SDL + - Go to SDL-1.2/ and build SDL like any other GNU style package. + e.g. + - Build the configure-script with ./autogen.sh + - Configure SDL for your needs: ./configure --enable-video-ps3 ... + - Build and install it: make && make install + + +Todo: + - mouse/keyboard/controller support + +Have fun! + Dirk Herrendoerfer diff --git a/README.SVN b/README.SVN deleted file mode 100644 index bdab4ded3..000000000 --- a/README.SVN +++ /dev/null @@ -1,20 +0,0 @@ - -The latest development version of SDL is available via Subversion. -Subversion allows you to get up-to-the-minute fixes and enhancements; -as a developer works on a source tree, you can use svn to mirror that -source tree instead of waiting for an official release. Please look -at the Subversion website ( http://subversion.tigris.org/ ) for more -information on using svn, where you can also download software for -MacOS, Windows, and Unix systems. - - svn checkout svn://libsdl.org/trunk/SDL - -If you are building SDL with an IDE, you will need to copy the file -include/SDL_config.h.default to include/SDL_config.h before building. - -If you are building SDL via configure, you will need to run autogen.sh -before running configure. - -There is a web interface to the subversion repository at: - http://www.libsdl.org/cgi/viewvc.cgi - diff --git a/README.Symbian b/README.Symbian new file mode 100644 index 000000000..32d925a00 --- /dev/null +++ b/README.Symbian @@ -0,0 +1,23 @@ +============================================================================== +Using the Simple DirectMedia Layer with S60 3.x / Symbian 9.x +============================================================================== + +These instuctions are for people developing for S60 3.x. S60 3.x +uses Symbian OS so you need S60 SDK. + +extract "symbian.zip" into this folder. + +go to symbian folder + +bldmake bldfiles +abld build + +That produces WINSCW and ARMV5 versions of sdl.dll runtime library +and sdl.lib for development. +The sdlexe.dll/sdlexe.lib and sdlmain.lib are for easy SDL S60 +integration, please see http://www.mbnet.fi/~mertama/sdl.html +for further info. + + + + diff --git a/README.WinCE b/README.WinCE index 6f8799ef8..b78d24c11 100644 --- a/README.WinCE +++ b/README.WinCE @@ -1,6 +1,6 @@ Project files for embedded Visual C++ 3.0, 4.0 and -Visual Studio 2005 can be found in VisualCE.zip +Visual Studio 2005 can be found in the VisualCE directory. SDL supports GAPI and WinDib output for Windows CE. diff --git a/SDL.qpg.in b/SDL.qpg.in index 8e1ff8da8..821faa31e 100644 --- a/SDL.qpg.in +++ b/SDL.qpg.in @@ -28,7 +28,8 @@ - + + diff --git a/SDL.spec.in b/SDL.spec.in index 329d5998b..dbda11210 100644 --- a/SDL.spec.in +++ b/SDL.spec.in @@ -54,7 +54,7 @@ make install prefix=$RPM_BUILD_ROOT%{prefix} \ includedir=$RPM_BUILD_ROOT%{_includedir} \ datadir=$RPM_BUILD_ROOT%{_datadir} \ mandir=$RPM_BUILD_ROOT%{_mandir} -ln -s libSDL-1.2.so.0 $RPM_BUILD_ROOT%{prefix}/lib/libSDL-1.1.so.0 +ln -s libSDL-1.2.so.0 $RPM_BUILD_ROOT%{_libdir}/libSDL-1.1.so.0 %else %makeinstall %endif diff --git a/VisualC.html b/VisualC.html index f5dbe784c..292349514 100644 --- a/VisualC.html +++ b/VisualC.html @@ -18,19 +18,7 @@ Building SDL

- Unzip the VisualC.zip file into the directory that contains this - file (VisualC.html). -

-

- Be certain that you unzip the zip file for your compiler into this - directory and not any other directory. If you are using WinZip, be careful to - make sure that it extracts to this folder, because it's - convenient feature of unzipping to a folder with the name of the file currently - being unzipped will get you in trouble if you use it right now. And that's all - I have to say about that. -

-

- Now that it's unzipped, go into the VisualC + Go into the VisualC directory that is created, and double-click on the VC++ file "SDL.dsw" ("SDL.sln"). This should open up the IDE.

@@ -45,6 +33,10 @@ This is done by right clicking on each project in turn (Projects are listed in the Workspace panel in the FileView tab), and selecting "Build".

+

+ If you get an error about SDL_config.h being missing, you should + copy include/SDL_config.h.default to include/SDL_config.h and try again. +

You may get a few warnings, but you should not get any errors. You do have to have at least the DirectX 5 SDK installed, however. The latest diff --git a/VisualC.zip b/VisualC.zip deleted file mode 100644 index 030db1cde..000000000 Binary files a/VisualC.zip and /dev/null differ diff --git a/VisualC/SDL.dsw b/VisualC/SDL.dsw new file mode 100644 index 000000000..6f6b8bb9b --- /dev/null +++ b/VisualC/SDL.dsw @@ -0,0 +1,41 @@ +Microsoft Developer Studio Workspace File, Format Version 5.00 +# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! + +############################################################################### + +Project: "SDL"=.\SDL\SDL.DSP - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "SDLmain"=.\SDLmain\SDLmain.dsp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Global: + +Package=<5> +{{{ +}}} + +Package=<3> +{{{ +}}} + +############################################################################### + diff --git a/VisualC/SDL.sln b/VisualC/SDL.sln new file mode 100644 index 000000000..9703f8f99 --- /dev/null +++ b/VisualC/SDL.sln @@ -0,0 +1,45 @@ +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SDL", "SDL\SDL.vcproj", "{81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SDLmain", "SDLmain\SDLmain.vcproj", "{DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Debug|x64 = Debug|x64 + Release_NoSTDIO|Win32 = Release_NoSTDIO|Win32 + Release_NoSTDIO|x64 = Release_NoSTDIO|x64 + Release|Win32 = Release|Win32 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|Win32.ActiveCfg = Debug|Win32 + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|Win32.Build.0 = Debug|Win32 + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|x64.ActiveCfg = Debug|x64 + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|x64.Build.0 = Debug|x64 + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release_NoSTDIO|Win32.ActiveCfg = Release|Win32 + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release_NoSTDIO|Win32.Build.0 = Release|Win32 + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release_NoSTDIO|x64.ActiveCfg = Release|x64 + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release_NoSTDIO|x64.Build.0 = Release|x64 + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|Win32.ActiveCfg = Release|Win32 + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|Win32.Build.0 = Release|Win32 + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|x64.ActiveCfg = Release|x64 + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|x64.Build.0 = Release|x64 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|Win32.ActiveCfg = Debug|Win32 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|Win32.Build.0 = Debug|Win32 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|x64.ActiveCfg = Debug|x64 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|x64.Build.0 = Debug|x64 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release_NoSTDIO|Win32.ActiveCfg = Release_NoSTDIO|Win32 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release_NoSTDIO|Win32.Build.0 = Release_NoSTDIO|Win32 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release_NoSTDIO|x64.ActiveCfg = Release_NoSTDIO|x64 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release_NoSTDIO|x64.Build.0 = Release_NoSTDIO|x64 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|Win32.ActiveCfg = Release|Win32 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|Win32.Build.0 = Release|Win32 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|x64.ActiveCfg = Release|x64 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/VisualC/SDL/SDL.dsp b/VisualC/SDL/SDL.dsp new file mode 100644 index 000000000..9c2c97a27 --- /dev/null +++ b/VisualC/SDL/SDL.dsp @@ -0,0 +1,546 @@ +# Microsoft Developer Studio Project File - Name="SDL" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 5.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=SDL - Win32 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.MAK". +!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.MAK" CFG="SDL - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "SDL - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "SDL - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "SDL - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "Release" +# PROP Intermediate_Dir "Release" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\include" /D "NDEBUG" /D "_WINDOWS" /D _WIN32_WINNT=0x0400 /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 winmm.lib dxguid.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /dll /machine:I386 + +!ELSEIF "$(CFG)" == "SDL - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Debug" +# PROP Intermediate_Dir "Debug" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /Gm /GX /Zi /Od /I "..\..\include" /D "_DEBUG" /D "_WINDOWS" /D _WIN32_WINNT=0x0400 /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 winmm.lib dxguid.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept + +!ENDIF + +# Begin Target + +# Name "SDL - Win32 Release" +# Name "SDL - Win32 Debug" +# Begin Source File + +SOURCE=..\..\src\video\blank_cursor.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\default_cursor.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\windx5\Directx.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\SDL.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\events\SDL_active.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\SDL_audio.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\SDL_audio_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\SDL_audiocvt.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\SDL_audiomem.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_blit.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_blit.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_blit_0.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_blit_1.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_blit_A.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_blit_A.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_blit_N.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_bmp.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\cdrom\SDL_cdrom.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\cpuinfo\SDL_cpuinfo.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_cursor.c +# 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.c +# 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 +# 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.c +# 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.c +# 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.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\dummy\SDL_dummyaudio.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\windx5\SDL_dx5audio.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\windx5\SDL_dx5audio.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\windx5\SDL_dx5events.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\windx5\SDL_dx5events_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\windx5\SDL_dx5video.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\windx5\SDL_dx5video.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\windx5\SDL_dx5yuv.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\windx5\SDL_dx5yuv_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\SDL_error.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\SDL_error_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\events\SDL_events.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\events\SDL_events_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\events\SDL_expose.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\SDL_fatal.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\SDL_fatal.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_gamma.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\stdlib\SDL_getenv.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\stdlib\SDL_iconv.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\joystick\SDL_joystick.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\joystick\SDL_joystick_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\events\SDL_keyboard.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_leaks.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\wincommon\SDL_lowvideo.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\stdlib\SDL_malloc.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\SDL_mixer.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\SDL_mixer_MMX_VC.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\joystick\win32\SDL_mmjoystick.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\events\SDL_mouse.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\dummy\SDL_nullevents.c +# 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 +# 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.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\dummy\SDL_nullvideo.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_pixels.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_pixels_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\stdlib\SDL_qsort.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\events\SDL_quit.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\events\SDL_resize.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_RLEaccel.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_RLEaccel_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\file\SDL_rwops.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_stretch.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_stretch_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\stdlib\SDL_stdlib.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\stdlib\SDL_string.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_surface.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\SDL_sysaudio.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\cdrom\win32\SDL_syscdrom.c +# 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 +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\wincommon\SDL_sysevents.c +# 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\loadso\win32\SDL_sysloadso.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\wincommon\SDL_sysmouse.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\wincommon\SDL_sysmouse_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\thread\win32\SDL_sysmutex.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\thread\win32\SDL_syssem.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\thread\win32\SDL_systhread.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\thread\SDL_systhread.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\thread\win32\SDL_systhread_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\timer\win32\SDL_systimer.c +# 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=..\..\src\video\wincommon\SDL_syswm.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\wincommon\SDL_syswm_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\thread\SDL_thread.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\thread\SDL_thread_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\timer\SDL_timer.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\timer\SDL_timer_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_video.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\windib\SDL_vkeys.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\SDL_wave.c +# 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 +# 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.c +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_yuv_sw.c +# 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=.\Version.rc +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\wincommon\Wmmsg.h +# End Source File +# End Target +# End Project diff --git a/VisualC/SDL/SDL.vcproj b/VisualC/SDL/SDL.vcproj new file mode 100644 index 000000000..0cdcd96e1 --- /dev/null +++ b/VisualC/SDL/SDL.vcproj @@ -0,0 +1,828 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/VisualC/SDL/Version.rc b/VisualC/SDL/Version.rc new file mode 100644 index 000000000..0e729dd19 --- /dev/null +++ b/VisualC/SDL/Version.rc @@ -0,0 +1,105 @@ +//Microsoft Developer Studio generated resource script. +// +#include "resource.h" + +#define APSTUDIO_READONLY_SYMBOLS +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 2 resource. +// +#include "winresrc.h" + +///////////////////////////////////////////////////////////////////////////// +#undef APSTUDIO_READONLY_SYMBOLS + +///////////////////////////////////////////////////////////////////////////// +// English (U.S.) resources + +#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) +#ifdef _WIN32 +LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US +#pragma code_page(1252) +#endif //_WIN32 + +#ifndef _MAC +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +VS_VERSION_INFO VERSIONINFO + FILEVERSION 1,2,15,0 + PRODUCTVERSION 1,2,15,0 + FILEFLAGSMASK 0x3fL +#ifdef _DEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS 0x40004L + FILETYPE 0x2L + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904b0" + BEGIN + VALUE "CompanyName", "\0" + VALUE "FileDescription", "SDL\0" + VALUE "FileVersion", "1, 2, 15, 0\0" + VALUE "InternalName", "SDL\0" + VALUE "LegalCopyright", "Copyright © 2012 Sam Lantinga\0" + VALUE "OriginalFilename", "SDL.dll\0" + VALUE "ProductName", "Simple DirectMedia Layer\0" + VALUE "ProductVersion", "1, 2, 15, 0\0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1200 + END +END + +#endif // !_MAC + + +#ifdef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// TEXTINCLUDE +// + +1 TEXTINCLUDE DISCARDABLE +BEGIN + "resource.h\0" +END + +2 TEXTINCLUDE DISCARDABLE +BEGIN + "#include ""afxres.h""\r\n" + "\0" +END + +3 TEXTINCLUDE DISCARDABLE +BEGIN + "\r\n" + "\0" +END + +#endif // APSTUDIO_INVOKED + +#endif // English (U.S.) resources +///////////////////////////////////////////////////////////////////////////// + + + +#ifndef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 3 resource. +// + + +///////////////////////////////////////////////////////////////////////////// +#endif // not APSTUDIO_INVOKED + diff --git a/VisualC/SDL/resource.h b/VisualC/SDL/resource.h new file mode 100644 index 000000000..ddc9d9295 --- /dev/null +++ b/VisualC/SDL/resource.h @@ -0,0 +1,15 @@ +//{{NO_DEPENDENCIES}} +// Microsoft Developer Studio generated include file. +// Used by Version.rc +// + +// Next default values for new objects +// +#ifdef APSTUDIO_INVOKED +#ifndef APSTUDIO_READONLY_SYMBOLS +#define _APS_NEXT_RESOURCE_VALUE 101 +#define _APS_NEXT_COMMAND_VALUE 40001 +#define _APS_NEXT_CONTROL_VALUE 1000 +#define _APS_NEXT_SYMED_VALUE 101 +#endif +#endif diff --git a/VisualC/SDLmain/SDLmain.dsp b/VisualC/SDLmain/SDLmain.dsp new file mode 100644 index 000000000..42a48f32b --- /dev/null +++ b/VisualC/SDLmain/SDLmain.dsp @@ -0,0 +1,106 @@ +# Microsoft Developer Studio Project File - Name="SDLmain" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 5.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Static Library" 0x0104 + +CFG=SDLmain - Win32 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.mak". +!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.mak" CFG="SDLmain - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "SDLmain - Win32 Release" (based on "Win32 (x86) Static Library") +!MESSAGE "SDLmain - Win32 Debug" (based on "Win32 (x86) Static Library") +!MESSAGE "SDLmain - Win32 Release_NoSTDIO" (based on\ + "Win32 (x86) Static Library") +!MESSAGE + +# Begin Project +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe + +!IF "$(CFG)" == "SDLmain - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "Release" +# PROP Intermediate_Dir "Release" +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\include" /I "..\..\include\SDL" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo + +!ELSEIF "$(CFG)" == "SDLmain - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Debug" +# PROP Intermediate_Dir "Debug" +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /Z7 /Od /I "..\..\include" /I "..\..\include\SDL" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo + +!ELSEIF "$(CFG)" == "SDLmain - Win32 Release_NoSTDIO" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "SDLmain_" +# PROP BASE Intermediate_Dir "SDLmain_" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "Release_NOSTDIO" +# PROP Intermediate_Dir "Release_NOSTDIO" +# PROP Target_Dir "" +# ADD BASE CPP /nologo /MD /W3 /GX /O2 /I "..\..\include" /I "..\..\include\SDL" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\include" /I "..\..\include\SDL" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "NO_STDIO_REDIRECT" /YX /FD /c +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo + +!ENDIF + +# Begin Target + +# Name "SDLmain - Win32 Release" +# Name "SDLmain - Win32 Debug" +# Name "SDLmain - Win32 Release_NoSTDIO" +# Begin Source File + +SOURCE=..\..\Src\Main\Win32\SDL_win32_main.c +# End Source File +# End Target +# End Project diff --git a/VisualC/SDLmain/SDLmain.vcproj b/VisualC/SDLmain/SDLmain.vcproj new file mode 100644 index 000000000..cc0e66ab3 --- /dev/null +++ b/VisualC/SDLmain/SDLmain.vcproj @@ -0,0 +1,422 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/VisualC/tests/graywin/graywin.dsp b/VisualC/tests/graywin/graywin.dsp new file mode 100644 index 000000000..7ecd03219 --- /dev/null +++ b/VisualC/tests/graywin/graywin.dsp @@ -0,0 +1,102 @@ +# Microsoft Developer Studio Project File - Name="graywin" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 5.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Application" 0x0101 + +CFG=graywin - Win32 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 "graywin.mak". +!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 "graywin.mak" CFG="graywin - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "graywin - Win32 Release" (based on "Win32 (x86) Application") +!MESSAGE "graywin - Win32 Debug" (based on "Win32 (x86) Application") +!MESSAGE + +# Begin Project +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "graywin - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "Release" +# PROP Intermediate_Dir "Release" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\..\include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /machine:I386 + +!ELSEIF "$(CFG)" == "graywin - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Debug" +# PROP Intermediate_Dir "Debug" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /Gm /GX /Zi /Od /I "..\..\..\include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept + +!ENDIF + +# Begin Target + +# Name "graywin - Win32 Release" +# Name "graywin - Win32 Debug" +# Begin Source File + +SOURCE=..\..\..\test\graywin.c +# End Source File +# Begin Source File + +SOURCE=..\..\Sdl\Debug\SDL.lib +# End Source File +# Begin Source File + +SOURCE=..\..\SDLmain\Debug\SDLmain.lib +# End Source File +# End Target +# End Project diff --git a/VisualC/tests/graywin/graywin.vcproj b/VisualC/tests/graywin/graywin.vcproj new file mode 100644 index 000000000..cd1e3aedf --- /dev/null +++ b/VisualC/tests/graywin/graywin.vcproj @@ -0,0 +1,217 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/VisualC/tests/loopwave/loopwave.dsp b/VisualC/tests/loopwave/loopwave.dsp new file mode 100644 index 000000000..584729453 --- /dev/null +++ b/VisualC/tests/loopwave/loopwave.dsp @@ -0,0 +1,102 @@ +# Microsoft Developer Studio Project File - Name="loopwave" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 5.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Application" 0x0101 + +CFG=loopwave - Win32 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.mak". +!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.mak" CFG="loopwave - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "loopwave - Win32 Release" (based on "Win32 (x86) Application") +!MESSAGE "loopwave - Win32 Debug" (based on "Win32 (x86) Application") +!MESSAGE + +# Begin Project +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "loopwave - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "Release" +# PROP Intermediate_Dir "Release" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\..\include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /machine:I386 + +!ELSEIF "$(CFG)" == "loopwave - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Debug" +# PROP Intermediate_Dir "Debug" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /Gm /GX /Zi /Od /I "..\..\..\include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept + +!ENDIF + +# Begin Target + +# Name "loopwave - Win32 Release" +# Name "loopwave - Win32 Debug" +# Begin Source File + +SOURCE=..\..\..\Test\Loopwave.c +# End Source File +# Begin Source File + +SOURCE=..\..\Sdl\Debug\SDL.lib +# End Source File +# Begin Source File + +SOURCE=..\..\SDLmain\Debug\SDLmain.lib +# End Source File +# End Target +# End Project diff --git a/VisualC/tests/loopwave/loopwave.vcproj b/VisualC/tests/loopwave/loopwave.vcproj new file mode 100644 index 000000000..86f428c19 --- /dev/null +++ b/VisualC/tests/loopwave/loopwave.vcproj @@ -0,0 +1,217 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/VisualC/tests/testalpha/testalpha.dsp b/VisualC/tests/testalpha/testalpha.dsp new file mode 100644 index 000000000..ae518abca --- /dev/null +++ b/VisualC/tests/testalpha/testalpha.dsp @@ -0,0 +1,102 @@ +# Microsoft Developer Studio Project File - Name="testalpha" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 5.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Application" 0x0101 + +CFG=testalpha - Win32 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.mak". +!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.mak" CFG="testalpha - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "testalpha - Win32 Release" (based on "Win32 (x86) Application") +!MESSAGE "testalpha - Win32 Debug" (based on "Win32 (x86) Application") +!MESSAGE + +# Begin Project +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "testalpha - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "Release" +# PROP Intermediate_Dir "Release" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\..\include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /machine:I386 + +!ELSEIF "$(CFG)" == "testalpha - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Debug" +# PROP Intermediate_Dir "Debug" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /Gm /GX /Zi /Od /I "..\..\..\include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept + +!ENDIF + +# Begin Target + +# Name "testalpha - Win32 Release" +# Name "testalpha - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Sdl\Debug\SDL.lib +# End Source File +# Begin Source File + +SOURCE=..\..\SDLmain\Debug\SDLmain.lib +# End Source File +# Begin Source File + +SOURCE=..\..\..\Test\testalpha.c +# End Source File +# End Target +# End Project diff --git a/VisualC/tests/testalpha/testalpha.vcproj b/VisualC/tests/testalpha/testalpha.vcproj new file mode 100644 index 000000000..d4d2e723f --- /dev/null +++ b/VisualC/tests/testalpha/testalpha.vcproj @@ -0,0 +1,217 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/VisualC/tests/testfile/testfile.dsp b/VisualC/tests/testfile/testfile.dsp new file mode 100644 index 000000000..9b6f7c8eb --- /dev/null +++ b/VisualC/tests/testfile/testfile.dsp @@ -0,0 +1,102 @@ +# Microsoft Developer Studio Project File - Name="testfile" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 5.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Application" 0x0101 + +CFG=testfile - Win32 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 "testfile.mak". +!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 "testfile.mak" CFG="testfile - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "testfile - Win32 Release" (based on "Win32 (x86) Application") +!MESSAGE "testfile - Win32 Debug" (based on "Win32 (x86) Application") +!MESSAGE + +# Begin Project +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "testfile - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "Release" +# PROP Intermediate_Dir "Release" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\..\include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /machine:I386 + +!ELSEIF "$(CFG)" == "testfile - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Debug" +# PROP Intermediate_Dir "Debug" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /Gm /GX /Zi /Od /I "..\..\..\include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept + +!ENDIF + +# Begin Target + +# Name "testfile - Win32 Release" +# Name "testfile - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Sdl\Debug\SDL.lib +# End Source File +# Begin Source File + +SOURCE=..\..\SDLmain\Debug\SDLmain.lib +# End Source File +# Begin Source File + +SOURCE=..\..\..\Test\testfile.c +# End Source File +# End Target +# End Project diff --git a/VisualC/tests/testfile/testfile.vcproj b/VisualC/tests/testfile/testfile.vcproj new file mode 100644 index 000000000..d882685b2 --- /dev/null +++ b/VisualC/tests/testfile/testfile.vcproj @@ -0,0 +1,217 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/VisualC/tests/testgamma/testgamma.dsp b/VisualC/tests/testgamma/testgamma.dsp new file mode 100644 index 000000000..e160a0d3c --- /dev/null +++ b/VisualC/tests/testgamma/testgamma.dsp @@ -0,0 +1,102 @@ +# Microsoft Developer Studio Project File - Name="testgamma" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 5.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Application" 0x0101 + +CFG=testgamma - Win32 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 "testgamma.mak". +!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 "testgamma.mak" CFG="testgamma - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "testgamma - Win32 Release" (based on "Win32 (x86) Application") +!MESSAGE "testgamma - Win32 Debug" (based on "Win32 (x86) Application") +!MESSAGE + +# Begin Project +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "testgamma - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "Release" +# PROP Intermediate_Dir "Release" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\..\include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /machine:I386 + +!ELSEIF "$(CFG)" == "testgamma - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Debug" +# PROP Intermediate_Dir "Debug" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /Gm /GX /Zi /Od /I "..\..\..\include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept + +!ENDIF + +# Begin Target + +# Name "testgamma - Win32 Release" +# Name "testgamma - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Sdl\Debug\SDL.lib +# End Source File +# Begin Source File + +SOURCE=..\..\SDLmain\Debug\SDLmain.lib +# End Source File +# Begin Source File + +SOURCE=..\..\..\test\testgamma.c +# End Source File +# End Target +# End Project diff --git a/VisualC/tests/testgamma/testgamma.vcproj b/VisualC/tests/testgamma/testgamma.vcproj new file mode 100644 index 000000000..020ef098f --- /dev/null +++ b/VisualC/tests/testgamma/testgamma.vcproj @@ -0,0 +1,217 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/VisualC/tests/testgl/testgl.dsp b/VisualC/tests/testgl/testgl.dsp new file mode 100644 index 000000000..03ce92854 --- /dev/null +++ b/VisualC/tests/testgl/testgl.dsp @@ -0,0 +1,102 @@ +# Microsoft Developer Studio Project File - Name="testgl" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 5.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Application" 0x0101 + +CFG=testgl - Win32 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 "testgl.mak". +!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 "testgl.mak" CFG="testgl - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "testgl - Win32 Release" (based on "Win32 (x86) Application") +!MESSAGE "testgl - Win32 Debug" (based on "Win32 (x86) Application") +!MESSAGE + +# Begin Project +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "testgl - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "Release" +# PROP Intermediate_Dir "Release" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\..\include" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "HAVE_OPENGL" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib opengl32.lib /nologo /subsystem:windows /machine:I386 + +!ELSEIF "$(CFG)" == "testgl - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Debug" +# PROP Intermediate_Dir "Debug" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /Gm /GX /Zi /Od /I "..\..\..\include" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "HAVE_OPENGL" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib opengl32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept + +!ENDIF + +# Begin Target + +# Name "testgl - Win32 Release" +# Name "testgl - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Sdl\Debug\SDL.lib +# End Source File +# Begin Source File + +SOURCE=..\..\SDLmain\Debug\SDLmain.lib +# End Source File +# Begin Source File + +SOURCE=..\..\..\test\testgl.c +# End Source File +# End Target +# End Project diff --git a/VisualC/tests/testgl/testgl.vcproj b/VisualC/tests/testgl/testgl.vcproj new file mode 100644 index 000000000..3116fb899 --- /dev/null +++ b/VisualC/tests/testgl/testgl.vcproj @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/VisualC/tests/testjoystick/testjoystick.dsp b/VisualC/tests/testjoystick/testjoystick.dsp new file mode 100644 index 000000000..98f40488a --- /dev/null +++ b/VisualC/tests/testjoystick/testjoystick.dsp @@ -0,0 +1,102 @@ +# Microsoft Developer Studio Project File - Name="testjoystick" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 5.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Application" 0x0101 + +CFG=testjoystick - Win32 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 "testjoystick.mak". +!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 "testjoystick.mak" CFG="testjoystick - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "testjoystick - Win32 Release" (based on "Win32 (x86) Application") +!MESSAGE "testjoystick - Win32 Debug" (based on "Win32 (x86) Application") +!MESSAGE + +# Begin Project +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "testjoystick - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "Release" +# PROP Intermediate_Dir "Release" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\..\include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /machine:I386 + +!ELSEIF "$(CFG)" == "testjoystick - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Debug" +# PROP Intermediate_Dir "Debug" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /Gm /GX /Zi /Od /I "..\..\..\include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept + +!ENDIF + +# Begin Target + +# Name "testjoystick - Win32 Release" +# Name "testjoystick - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Sdl\Debug\SDL.lib +# End Source File +# Begin Source File + +SOURCE=..\..\SDLmain\Debug\SDLmain.lib +# End Source File +# Begin Source File + +SOURCE=..\..\..\test\testjoystick.c +# End Source File +# End Target +# End Project diff --git a/VisualC/tests/testjoystick/testjoystick.vcproj b/VisualC/tests/testjoystick/testjoystick.vcproj new file mode 100644 index 000000000..7f03866dd --- /dev/null +++ b/VisualC/tests/testjoystick/testjoystick.vcproj @@ -0,0 +1,217 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/VisualC/tests/testpalette/testpalette.dsp b/VisualC/tests/testpalette/testpalette.dsp new file mode 100644 index 000000000..e1ae29673 --- /dev/null +++ b/VisualC/tests/testpalette/testpalette.dsp @@ -0,0 +1,102 @@ +# Microsoft Developer Studio Project File - Name="testpalette" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 5.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Application" 0x0101 + +CFG=testpalette - Win32 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 "testpalette.mak". +!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 "testpalette.mak" CFG="testpalette - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "testpalette - Win32 Release" (based on "Win32 (x86) Application") +!MESSAGE "testpalette - Win32 Debug" (based on "Win32 (x86) Application") +!MESSAGE + +# Begin Project +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "testpalette - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "Release" +# PROP Intermediate_Dir "Release" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\..\include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /machine:I386 + +!ELSEIF "$(CFG)" == "testpalette - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Debug" +# PROP Intermediate_Dir "Debug" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /Gm /GX /Zi /Od /I "..\..\..\include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept + +!ENDIF + +# Begin Target + +# Name "testpalette - Win32 Release" +# Name "testpalette - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Sdl\Debug\SDL.lib +# End Source File +# Begin Source File + +SOURCE=..\..\SDLmain\Debug\SDLmain.lib +# End Source File +# Begin Source File + +SOURCE=..\..\..\test\testpalette.c +# End Source File +# End Target +# End Project diff --git a/VisualC/tests/testpalette/testpalette.vcproj b/VisualC/tests/testpalette/testpalette.vcproj new file mode 100644 index 000000000..0e782717f --- /dev/null +++ b/VisualC/tests/testpalette/testpalette.vcproj @@ -0,0 +1,217 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/VisualC/tests/testplatform/testplatform.dsp b/VisualC/tests/testplatform/testplatform.dsp new file mode 100644 index 000000000..7cbf723d0 --- /dev/null +++ b/VisualC/tests/testplatform/testplatform.dsp @@ -0,0 +1,102 @@ +# Microsoft Developer Studio Project File - Name="testplatform" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 5.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Application" 0x0101 + +CFG=testplatform - Win32 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 "testplatform.mak". +!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 "testplatform.mak" CFG="testplatform - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "testplatform - Win32 Release" (based on "Win32 (x86) Application") +!MESSAGE "testplatform - Win32 Debug" (based on "Win32 (x86) Application") +!MESSAGE + +# Begin Project +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "testplatform - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "Release" +# PROP Intermediate_Dir "Release" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\..\include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /machine:I386 + +!ELSEIF "$(CFG)" == "testplatform - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Debug" +# PROP Intermediate_Dir "Debug" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /Gm /GX /Zi /Od /I "..\..\..\include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept + +!ENDIF + +# Begin Target + +# Name "testplatform - Win32 Release" +# Name "testplatform - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Sdl\Debug\SDL.lib +# End Source File +# Begin Source File + +SOURCE=..\..\SDLmain\Debug\SDLmain.lib +# End Source File +# Begin Source File + +SOURCE=..\..\..\Test\testplatform.c +# End Source File +# End Target +# End Project diff --git a/VisualC/tests/testplatform/testplatform.vcproj b/VisualC/tests/testplatform/testplatform.vcproj new file mode 100644 index 000000000..251703035 --- /dev/null +++ b/VisualC/tests/testplatform/testplatform.vcproj @@ -0,0 +1,239 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/VisualC/tests/tests.dsw b/VisualC/tests/tests.dsw new file mode 100644 index 000000000..61e3fcdf7 --- /dev/null +++ b/VisualC/tests/tests.dsw @@ -0,0 +1,161 @@ +Microsoft Developer Studio Workspace File, Format Version 5.00 +# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! + +############################################################################### + +Project: "graywin"=".\graywin\graywin.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "loopwave"=".\loopwave\loopwave.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "testalpha"=".\testalpha\testalpha.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "testfile"=".\testfile\testfile.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "testgamma"=".\testgamma\testgamma.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "testgl"=".\testgl\testgl.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "testjoystick"=".\testjoystick\testjoystick.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "testpalette"=".\testpalette\testpalette.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "testplatform"=".\testplatform\testplatform.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "testvidinfo"=".\testvidinfo\testvidinfo.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "testwin"=".\testwin\testwin.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "testwm"=".\testwm\testwm.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Global: + +Package=<5> +{{{ +}}} + +Package=<3> +{{{ +}}} + +############################################################################### + diff --git a/VisualC/tests/tests.sln b/VisualC/tests/tests.sln new file mode 100644 index 000000000..caa95445e --- /dev/null +++ b/VisualC/tests/tests.sln @@ -0,0 +1,85 @@ +Microsoft Visual Studio Solution File, Format Version 9.00 +# Visual C++ Express 2005 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "graywin", "graywin\graywin.vcproj", "{0BCCA0BF-073E-439E-BCE0-C9353C177487}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "loopwave", "loopwave\loopwave.vcproj", "{AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testalpha", "testalpha\testalpha.vcproj", "{7814D54B-65D3-4677-AD77-E0B980B4FA2D}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testgamma", "testgamma\testgamma.vcproj", "{D974A0DF-3E2E-445C-A2EB-E899E9B582CB}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testgl", "testgl\testgl.vcproj", "{272D976B-A1DF-4DEB-BD7F-5C0D330E0C7D}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testjoystick", "testjoystick\testjoystick.vcproj", "{55812185-D13C-4022-9C81-32E0F4A08304}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testpalette", "testpalette\testpalette.vcproj", "{493A8F38-5DA5-4E2D-B5E9-9E69EE4ED1DC}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testvidinfo", "testvidinfo\testvidinfo.vcproj", "{575FD095-EDAB-4BD4-B733-CD4A874F6FB0}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testwin", "testwin\testwin.vcproj", "{0FFD1A21-11DB-492C-A989-E4F195B0C441}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testwm", "testwm\testwm.vcproj", "{6AF0724B-BAC1-4C9D-AFBF-F63B4A2FB8FB}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testplatform", "testplatform\testplatform.vcproj", "{26932B24-EFC6-4E3A-B277-ED653DA37968}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testfile", "testfile\testfile.vcproj", "{CAE4F1D0-314F-4B10-805B-0EFD670133A0}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Release|Win32 = Release|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {0BCCA0BF-073E-439E-BCE0-C9353C177487}.Debug|Win32.ActiveCfg = Debug|Win32 + {0BCCA0BF-073E-439E-BCE0-C9353C177487}.Debug|Win32.Build.0 = Debug|Win32 + {0BCCA0BF-073E-439E-BCE0-C9353C177487}.Release|Win32.ActiveCfg = Release|Win32 + {0BCCA0BF-073E-439E-BCE0-C9353C177487}.Release|Win32.Build.0 = Release|Win32 + {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Debug|Win32.ActiveCfg = Debug|Win32 + {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Debug|Win32.Build.0 = Debug|Win32 + {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Release|Win32.ActiveCfg = Release|Win32 + {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Release|Win32.Build.0 = Release|Win32 + {7814D54B-65D3-4677-AD77-E0B980B4FA2D}.Debug|Win32.ActiveCfg = Debug|Win32 + {7814D54B-65D3-4677-AD77-E0B980B4FA2D}.Debug|Win32.Build.0 = Debug|Win32 + {7814D54B-65D3-4677-AD77-E0B980B4FA2D}.Release|Win32.ActiveCfg = Release|Win32 + {7814D54B-65D3-4677-AD77-E0B980B4FA2D}.Release|Win32.Build.0 = Release|Win32 + {D974A0DF-3E2E-445C-A2EB-E899E9B582CB}.Debug|Win32.ActiveCfg = Debug|Win32 + {D974A0DF-3E2E-445C-A2EB-E899E9B582CB}.Debug|Win32.Build.0 = Debug|Win32 + {D974A0DF-3E2E-445C-A2EB-E899E9B582CB}.Release|Win32.ActiveCfg = Release|Win32 + {D974A0DF-3E2E-445C-A2EB-E899E9B582CB}.Release|Win32.Build.0 = Release|Win32 + {272D976B-A1DF-4DEB-BD7F-5C0D330E0C7D}.Debug|Win32.ActiveCfg = Debug|Win32 + {272D976B-A1DF-4DEB-BD7F-5C0D330E0C7D}.Debug|Win32.Build.0 = Debug|Win32 + {272D976B-A1DF-4DEB-BD7F-5C0D330E0C7D}.Release|Win32.ActiveCfg = Release|Win32 + {272D976B-A1DF-4DEB-BD7F-5C0D330E0C7D}.Release|Win32.Build.0 = Release|Win32 + {55812185-D13C-4022-9C81-32E0F4A08304}.Debug|Win32.ActiveCfg = Debug|Win32 + {55812185-D13C-4022-9C81-32E0F4A08304}.Debug|Win32.Build.0 = Debug|Win32 + {55812185-D13C-4022-9C81-32E0F4A08304}.Release|Win32.ActiveCfg = Release|Win32 + {55812185-D13C-4022-9C81-32E0F4A08304}.Release|Win32.Build.0 = Release|Win32 + {493A8F38-5DA5-4E2D-B5E9-9E69EE4ED1DC}.Debug|Win32.ActiveCfg = Debug|Win32 + {493A8F38-5DA5-4E2D-B5E9-9E69EE4ED1DC}.Debug|Win32.Build.0 = Debug|Win32 + {493A8F38-5DA5-4E2D-B5E9-9E69EE4ED1DC}.Release|Win32.ActiveCfg = Release|Win32 + {493A8F38-5DA5-4E2D-B5E9-9E69EE4ED1DC}.Release|Win32.Build.0 = Release|Win32 + {575FD095-EDAB-4BD4-B733-CD4A874F6FB0}.Debug|Win32.ActiveCfg = Debug|Win32 + {575FD095-EDAB-4BD4-B733-CD4A874F6FB0}.Debug|Win32.Build.0 = Debug|Win32 + {575FD095-EDAB-4BD4-B733-CD4A874F6FB0}.Release|Win32.ActiveCfg = Release|Win32 + {575FD095-EDAB-4BD4-B733-CD4A874F6FB0}.Release|Win32.Build.0 = Release|Win32 + {0FFD1A21-11DB-492C-A989-E4F195B0C441}.Debug|Win32.ActiveCfg = Debug|Win32 + {0FFD1A21-11DB-492C-A989-E4F195B0C441}.Debug|Win32.Build.0 = Debug|Win32 + {0FFD1A21-11DB-492C-A989-E4F195B0C441}.Release|Win32.ActiveCfg = Release|Win32 + {0FFD1A21-11DB-492C-A989-E4F195B0C441}.Release|Win32.Build.0 = Release|Win32 + {6AF0724B-BAC1-4C9D-AFBF-F63B4A2FB8FB}.Debug|Win32.ActiveCfg = Debug|Win32 + {6AF0724B-BAC1-4C9D-AFBF-F63B4A2FB8FB}.Debug|Win32.Build.0 = Debug|Win32 + {6AF0724B-BAC1-4C9D-AFBF-F63B4A2FB8FB}.Release|Win32.ActiveCfg = Release|Win32 + {6AF0724B-BAC1-4C9D-AFBF-F63B4A2FB8FB}.Release|Win32.Build.0 = Release|Win32 + {26932B24-EFC6-4E3A-B277-ED653DA37968}.Debug|Win32.ActiveCfg = Debug|Win32 + {26932B24-EFC6-4E3A-B277-ED653DA37968}.Debug|Win32.Build.0 = Debug|Win32 + {26932B24-EFC6-4E3A-B277-ED653DA37968}.Release|Win32.ActiveCfg = Release|Win32 + {26932B24-EFC6-4E3A-B277-ED653DA37968}.Release|Win32.Build.0 = Release|Win32 + {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Debug|Win32.ActiveCfg = Debug|Win32 + {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Debug|Win32.Build.0 = Debug|Win32 + {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Release|Win32.ActiveCfg = Release|Win32 + {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Release|Win32.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/VisualC/tests/testvidinfo/testvidinfo.dsp b/VisualC/tests/testvidinfo/testvidinfo.dsp new file mode 100644 index 000000000..8e0fbcf8b --- /dev/null +++ b/VisualC/tests/testvidinfo/testvidinfo.dsp @@ -0,0 +1,102 @@ +# Microsoft Developer Studio Project File - Name="testvidinfo" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 5.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Application" 0x0101 + +CFG=testvidinfo - Win32 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 "testvidinfo.mak". +!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 "testvidinfo.mak" CFG="testvidinfo - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "testvidinfo - Win32 Release" (based on "Win32 (x86) Application") +!MESSAGE "testvidinfo - Win32 Debug" (based on "Win32 (x86) Application") +!MESSAGE + +# Begin Project +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "testvidinfo - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "Release" +# PROP Intermediate_Dir "Release" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\..\include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /machine:I386 + +!ELSEIF "$(CFG)" == "testvidinfo - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Debug" +# PROP Intermediate_Dir "Debug" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /Gm /GX /Zi /Od /I "..\..\..\include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept + +!ENDIF + +# Begin Target + +# Name "testvidinfo - Win32 Release" +# Name "testvidinfo - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Sdl\Debug\SDL.lib +# End Source File +# Begin Source File + +SOURCE=..\..\SDLmain\Debug\SDLmain.lib +# End Source File +# Begin Source File + +SOURCE=..\..\..\Test\testvidinfo.c +# End Source File +# End Target +# End Project diff --git a/VisualC/tests/testvidinfo/testvidinfo.vcproj b/VisualC/tests/testvidinfo/testvidinfo.vcproj new file mode 100644 index 000000000..a2033c8a0 --- /dev/null +++ b/VisualC/tests/testvidinfo/testvidinfo.vcproj @@ -0,0 +1,217 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/VisualC/tests/testwin/testwin.dsp b/VisualC/tests/testwin/testwin.dsp new file mode 100644 index 000000000..f55c914ec --- /dev/null +++ b/VisualC/tests/testwin/testwin.dsp @@ -0,0 +1,102 @@ +# Microsoft Developer Studio Project File - Name="testwin" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 5.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Application" 0x0101 + +CFG=testwin - Win32 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.mak". +!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.mak" CFG="testwin - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "testwin - Win32 Release" (based on "Win32 (x86) Application") +!MESSAGE "testwin - Win32 Debug" (based on "Win32 (x86) Application") +!MESSAGE + +# Begin Project +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "testwin - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "Release" +# PROP Intermediate_Dir "Release" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\..\include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /machine:I386 + +!ELSEIF "$(CFG)" == "testwin - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Debug" +# PROP Intermediate_Dir "Debug" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /Gm /GX /Zi /Od /I "..\..\..\include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept + +!ENDIF + +# Begin Target + +# Name "testwin - Win32 Release" +# Name "testwin - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Sdl\Debug\SDL.lib +# End Source File +# Begin Source File + +SOURCE=..\..\SDLmain\Debug\SDLmain.lib +# End Source File +# Begin Source File + +SOURCE=..\..\..\Test\Testwin.c +# End Source File +# End Target +# End Project diff --git a/VisualC/tests/testwin/testwin.vcproj b/VisualC/tests/testwin/testwin.vcproj new file mode 100644 index 000000000..330afb531 --- /dev/null +++ b/VisualC/tests/testwin/testwin.vcproj @@ -0,0 +1,217 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/VisualC/tests/testwm/testwm.dsp b/VisualC/tests/testwm/testwm.dsp new file mode 100644 index 000000000..141d814e1 --- /dev/null +++ b/VisualC/tests/testwm/testwm.dsp @@ -0,0 +1,102 @@ +# Microsoft Developer Studio Project File - Name="testwm" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 5.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Application" 0x0101 + +CFG=testwm - Win32 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 "testwm.mak". +!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 "testwm.mak" CFG="testwm - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "testwm - Win32 Release" (based on "Win32 (x86) Application") +!MESSAGE "testwm - Win32 Debug" (based on "Win32 (x86) Application") +!MESSAGE + +# Begin Project +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "testwm - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "Release" +# PROP BASE Intermediate_Dir "Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "Release" +# PROP Intermediate_Dir "Release" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\..\include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "NDEBUG" +# ADD RSC /l 0x409 /d "NDEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /machine:I386 +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /machine:I386 + +!ELSEIF "$(CFG)" == "testwm - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Debug" +# PROP Intermediate_Dir "Debug" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /Gm /GX /Zi /Od /I "..\..\..\include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32 +# ADD BASE RSC /l 0x409 /d "_DEBUG" +# ADD RSC /l 0x409 /d "_DEBUG" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept + +!ENDIF + +# Begin Target + +# Name "testwm - Win32 Release" +# Name "testwm - Win32 Debug" +# Begin Source File + +SOURCE=..\..\Sdl\Debug\SDL.lib +# End Source File +# Begin Source File + +SOURCE=..\..\SDLmain\Debug\SDLmain.lib +# End Source File +# Begin Source File + +SOURCE=..\..\..\test\testwm.c +# End Source File +# End Target +# End Project diff --git a/VisualC/tests/testwm/testwm.vcproj b/VisualC/tests/testwm/testwm.vcproj new file mode 100644 index 000000000..0a6178461 --- /dev/null +++ b/VisualC/tests/testwm/testwm.vcproj @@ -0,0 +1,217 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/VisualCE.zip b/VisualCE.zip deleted file mode 100644 index 0f712545d..000000000 Binary files a/VisualCE.zip and /dev/null differ diff --git a/VisualCE/SDL.sln b/VisualCE/SDL.sln new file mode 100644 index 000000000..aaf906f4e --- /dev/null +++ b/VisualCE/SDL.sln @@ -0,0 +1,149 @@ + +Microsoft Visual Studio Solution File, Format Version 9.00 +# Visual Studio 2005 +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 new file mode 100644 index 000000000..8393d2f9b --- /dev/null +++ b/VisualCE/SDL.vcw @@ -0,0 +1,116 @@ +Microsoft eMbedded Visual Tools Workspace File, Format Version 3.00 +# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! + +############################################################################### + +Project: "loopwave"=.\loopwave\loopwave.vcp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name SDL + End Project Dependency + Begin Project Dependency + Project_Dep_Name SDLmain + End Project Dependency +}}} + +############################################################################### + +Project: "SDL"=.\SDL\SDL.VCP - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "SDLmain"=.\SDLmain\SDLmain.vcp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name SDL + End Project Dependency +}}} + +############################################################################### + +Project: "testtimer"=.\testtimer\testtimer.vcp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name SDL + End Project Dependency + Begin Project Dependency + Project_Dep_Name SDLmain + End Project Dependency +}}} + +############################################################################### + +Project: "testalpha"=.\testalpha\testalpha.vcp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name SDL + End Project Dependency + Begin Project Dependency + Project_Dep_Name SDLmain + End Project Dependency +}}} + +############################################################################### + +Project: "testwin"=.\testwin\testwin.vcp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name SDL + End Project Dependency + Begin Project Dependency + Project_Dep_Name SDLmain + End Project Dependency +}}} + +############################################################################### + +Global: + +Package=<5> +{{{ +}}} + +Package=<3> +{{{ +}}} + +############################################################################### + diff --git a/VisualCE/SDL/SDL.vcp b/VisualCE/SDL/SDL.vcp new file mode 100644 index 000000000..7527b39f0 --- /dev/null +++ b/VisualCE/SDL/SDL.vcp @@ -0,0 +1,42066 @@ +# Microsoft eMbedded Visual Tools Project File - Name="SDL" - Package Owner=<4> +# Microsoft eMbedded Visual Tools Generated Build File, Format Version 6.02 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (WCE MIPSIV) Dynamic-Link Library" 0x9602 +# TARGTYPE "Win32 (WCE ARMV4T) Dynamic-Link Library" 0xa402 +# TARGTYPE "Win32 (WCE MIPSIV_FP) Dynamic-Link Library" 0x9202 +# TARGTYPE "Win32 (WCE SH3) Dynamic-Link Library" 0x8102 +# TARGTYPE "Win32 (WCE MIPSII_FP) Dynamic-Link Library" 0xa202 +# TARGTYPE "Win32 (WCE x86) Dynamic-Link Library" 0x8302 +# TARGTYPE "Win32 (WCE ARM) Dynamic-Link Library" 0x8502 +# TARGTYPE "Win32 (WCE emulator) Dynamic-Link Library" 0xa602 +# TARGTYPE "Win32 (WCE SH4) Dynamic-Link Library" 0x8602 +# TARGTYPE "Win32 (WCE ARMV4) Dynamic-Link Library" 0xa302 +# TARGTYPE "Win32 (WCE MIPS) Dynamic-Link Library" 0x8202 +# TARGTYPE "Win32 (WCE MIPS16) Dynamic-Link Library" 0x8902 +# TARGTYPE "Win32 (WCE ARMV4I) Dynamic-Link Library" 0xa502 +# TARGTYPE "Win32 (WCE MIPSII) Dynamic-Link Library" 0xa102 + +CFG=SDL - Win32 (WCE MIPSII_FP) Debug +!MESSAGE This is not a valid makefile. To build this project using NMAKE, +!MESSAGE use the Export Makefile command and run +!MESSAGE +!MESSAGE NMAKE /f "SDL.VCN". +!MESSAGE +!MESSAGE You can specify a configuration when running NMAKE +!MESSAGE by defining the macro CFG on the command line. For example: +!MESSAGE +!MESSAGE NMAKE /f "SDL.VCN" CFG="SDL - Win32 (WCE MIPSII_FP) Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "SDL - Win32 (WCE MIPSII_FP) Release" (based on "Win32 (WCE MIPSII_FP) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE MIPSII_FP) Debug" (based on "Win32 (WCE MIPSII_FP) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE MIPSII) Release" (based on "Win32 (WCE MIPSII) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE MIPSII) Debug" (based on "Win32 (WCE MIPSII) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE SH4) Release" (based on "Win32 (WCE SH4) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE SH4) Debug" (based on "Win32 (WCE SH4) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE SH3) Debug" (based on "Win32 (WCE SH3) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE MIPSIV) Release" (based on "Win32 (WCE MIPSIV) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE MIPSIV) Debug" (based on "Win32 (WCE MIPSIV) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE emulator) Release" (based on "Win32 (WCE emulator) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE emulator) Debug" (based on "Win32 (WCE emulator) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE ARMV4I) Release" (based on "Win32 (WCE ARMV4I) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE ARMV4I) Debug" (based on "Win32 (WCE ARMV4I) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE MIPSIV_FP) Release" (based on "Win32 (WCE MIPSIV_FP) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE MIPSIV_FP) Debug" (based on "Win32 (WCE MIPSIV_FP) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE ARMV4) Release" (based on "Win32 (WCE ARMV4) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE ARMV4) Debug" (based on "Win32 (WCE ARMV4) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE MIPS16) Release" (based on "Win32 (WCE MIPS16) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE MIPS16) Debug" (based on "Win32 (WCE MIPS16) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE ARMV4T) Release" (based on "Win32 (WCE ARMV4T) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE ARMV4T) Debug" (based on "Win32 (WCE ARMV4T) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE x86) Release" (based on "Win32 (WCE x86) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE x86) Debug" (based on "Win32 (WCE x86) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE ARM) Debug" (based on "Win32 (WCE ARM) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE ARM) Release" (based on "Win32 (WCE ARM) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE MIPS) Debug" (based on "Win32 (WCE MIPS) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE MIPS) Release" (based on "Win32 (WCE MIPS) Dynamic-Link Library") +!MESSAGE "SDL - Win32 (WCE SH3) Release" (based on "Win32 (WCE SH3) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +# PROP ATL_Project 2 + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "MIPSII_FPRel" +# PROP BASE Intermediate_Dir "MIPSII_FPRel" +# PROP BASE CPU_ID "{D8AC856C-B213-4895-9E83-9EC51A55201E}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "MIPSII_FPRel" +# PROP Intermediate_Dir "MIPSII_FPRel" +# PROP CPU_ID "{D8AC856C-B213-4895-9E83-9EC51A55201E}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPSII_FP" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "SDL_EXPORTS" /YX /QMmips2 /QMFPE- /O2 /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /Oxt /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPSII_FP" /D "NDEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /QMmips2 /QMFPE- /M$(CECrtMT) /c +# SUBTRACT CPP /YX +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /d "R4000" /d "MIPSII" /d "MIPSII_FP" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /d "R4000" /d "MIPSII" /d "MIPSII_FP" /r + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "MIPSII_FPDbg" +# PROP BASE Intermediate_Dir "MIPSII_FPDbg" +# PROP BASE CPU_ID "{D8AC856C-B213-4895-9E83-9EC51A55201E}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "MIPSII_FPDbg" +# PROP Intermediate_Dir "MIPSII_FPDbg" +# PROP CPU_ID "{D8AC856C-B213-4895-9E83-9EC51A55201E}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPSII_FP" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /YX /QMmips2 /QMFPE- /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "DEBUG" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPSII_FP" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /QMmips2 /QMFPE- /M$(CECrtMTDebug) /c +# SUBTRACT CPP /YX +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /d "R4000" /d "MIPSII" /d "MIPSII_FP" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /d "R4000" /d "MIPSII" /d "MIPSII_FP" /r + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "MIPSIIRel" +# PROP BASE Intermediate_Dir "MIPSIIRel" +# PROP BASE CPU_ID "{689DDC64-9D9D-11D5-96F8-00207802C01C}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "MIPSIIRel" +# PROP Intermediate_Dir "MIPSIIRel" +# PROP CPU_ID "{689DDC64-9D9D-11D5-96F8-00207802C01C}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "SDL_EXPORTS" /YX /QMmips2 /QMFPE /O2 /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /Oxt /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "NDEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /QMmips2 /QMFPE /M$(CECrtMT) /c +# SUBTRACT CPP /YX +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /d "R4000" /d "MIPSII" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /d "R4000" /d "MIPSII" /r + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "MIPSIIDbg" +# PROP BASE Intermediate_Dir "MIPSIIDbg" +# PROP BASE CPU_ID "{689DDC64-9D9D-11D5-96F8-00207802C01C}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "MIPSIIDbg" +# PROP Intermediate_Dir "MIPSIIDbg" +# PROP CPU_ID "{689DDC64-9D9D-11D5-96F8-00207802C01C}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /YX /QMmips2 /QMFPE /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "DEBUG" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /QMmips2 /QMFPE /M$(CECrtMTDebug) /c +# SUBTRACT CPP /YX +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /d "R4000" /d "MIPSII" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /d "R4000" /d "MIPSII" /r + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "SH4Rel" +# PROP BASE Intermediate_Dir "SH4Rel" +# PROP BASE CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "SH4Rel" +# PROP Intermediate_Dir "SH4Rel" +# PROP CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "SHx" /d "SH4" /d "_SH4_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "SHx" /d "SH4" /d "_SH4_" /r +CPP=shcl.exe +# ADD BASE CPP /nologo /W3 /O2 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "SDL_EXPORTS" /YX /Qsh4 /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /O2 /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "SHx" /D "SH4" /D "_SH4_" /D "NDEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /Oxt /Qsh4 /M$(CECrtMT) /c +# SUBTRACT CPP /YX +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH4 +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH4 + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "SH4Dbg" +# PROP BASE Intermediate_Dir "SH4Dbg" +# PROP BASE CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "SH4Dbg" +# PROP Intermediate_Dir "SH4Dbg" +# PROP CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "SHx" /d "SH4" /d "_SH4_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "SHx" /d "SH4" /d "_SH4_" /r +CPP=shcl.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /YX /Qsh4 /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "DEBUG" /D "SHx" /D "SH4" /D "_SH4_" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /Qsh4 /M$(CECrtMTDebug) /c +# SUBTRACT CPP /YX +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH4 +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH4 + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "SH3Dbg" +# PROP BASE Intermediate_Dir "SH3Dbg" +# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "SH3Dbg" +# PROP Intermediate_Dir "SH3Dbg" +# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r +CPP=shcl.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /YX /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /I "../../src/video/windib" /I "../../src/video/gapi" /D "DEBUG" /D "SHx" /D "SH3" /D "_SH3_" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /M$(CECrtMTDebug) /c +# SUBTRACT CPP /YX +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3 +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3 + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "MIPSIVRel" +# PROP BASE Intermediate_Dir "MIPSIVRel" +# PROP BASE CPU_ID "{0B2FE524-26C5-4194-8CEF-B1582DEB5A98}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "MIPSIVRel" +# PROP Intermediate_Dir "MIPSIVRel" +# PROP CPU_ID "{0B2FE524-26C5-4194-8CEF-B1582DEB5A98}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPSFPU +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPSFPU +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "SDL_EXPORTS" /YX /QMmips4 /QMn32 /QMFPE /O2 /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /Oxt /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D "NDEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /QMmips4 /QMn32 /QMFPE /M$(CECrtMT) /c +# SUBTRACT CPP /YX +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "MIPSIVDbg" +# PROP BASE Intermediate_Dir "MIPSIVDbg" +# PROP BASE CPU_ID "{0B2FE524-26C5-4194-8CEF-B1582DEB5A98}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "MIPSIVDbg" +# PROP Intermediate_Dir "MIPSIVDbg" +# PROP CPU_ID "{0B2FE524-26C5-4194-8CEF-B1582DEB5A98}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPSFPU +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPSFPU +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /YX /QMmips4 /QMn32 /QMFPE /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "DEBUG" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /QMmips4 /QMn32 /QMFPE /M$(CECrtMTDebug) /c +# SUBTRACT CPP /YX +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "emulatorRel" +# PROP BASE Intermediate_Dir "emulatorRel" +# PROP BASE CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "emulatorRel" +# PROP Intermediate_Dir "emulatorRel" +# PROP CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86 +# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +CPP=cl.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /D "SDL_EXPORTS" /YX /Gs8192 /GF /O2 /c +# ADD CPP /nologo /W3 /Oxt /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "_i386_" /D "_X86_" /D "x86" /D "NDEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /Gs8192 /GF /c +# SUBTRACT CPP /YX +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "emulatorDbg" +# PROP BASE Intermediate_Dir "emulatorDbg" +# PROP BASE CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "emulatorDbg" +# PROP Intermediate_Dir "emulatorDbg" +# PROP CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86 +# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +CPP=cl.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "SDL_EXPORTS" /YX /Gs8192 /GF /c +# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /I "../../src/video/windib" /I "../../src/video/gapi" /D "DEBUG" /D "_i386_" /D "_X86_" /D "x86" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /Gs8192 /GF /c +# SUBTRACT CPP /YX +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "ARMV4IRel" +# PROP BASE Intermediate_Dir "ARMV4IRel" +# PROP BASE CPU_ID "{DC70F430-E78B-494F-A9D5-62ADC56443B8}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "ARMV4IRel" +# PROP Intermediate_Dir "ARMV4IRel" +# PROP CPU_ID "{DC70F430-E78B-494F-A9D5-62ADC56443B8}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:THUMB +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:THUMB +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +CPP=clarm.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "ARM" /D "_ARM_" /D "$(CePlatform)" /D "ARMV4I" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "SDL_EXPORTS" /YX /QRarch4T /QRinterwork-return /O2 /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /Oxt /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "ARM" /D "_ARM_" /D "ARMV4I" /D "NDEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /QRarch4T /QRinterwork-return /M$(CECrtMT) /c +# SUBTRACT CPP /YX +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "THUMB" /d "_THUMB_" /d "ARM" /d "_ARM_" /d "ARMV4I" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "THUMB" /d "_THUMB_" /d "ARM" /d "_ARM_" /d "ARMV4I" /r + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "ARMV4IDbg" +# PROP BASE Intermediate_Dir "ARMV4IDbg" +# PROP BASE CPU_ID "{DC70F430-E78B-494F-A9D5-62ADC56443B8}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "ARMV4IDbg" +# PROP Intermediate_Dir "ARMV4IDbg" +# PROP CPU_ID "{DC70F430-E78B-494F-A9D5-62ADC56443B8}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:THUMB +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:THUMB +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +CPP=clarm.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "ARM" /D "_ARM_" /D "$(CePlatform)" /D "ARMV4I" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /YX /QRarch4T /QRinterwork-return /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "DEBUG" /D "ARM" /D "_ARM_" /D "ARMV4I" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /QRarch4T /QRinterwork-return /M$(CECrtMTDebug) /c +# SUBTRACT CPP /YX +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "THUMB" /d "_THUMB_" /d "ARM" /d "_ARM_" /d "ARMV4I" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "THUMB" /d "_THUMB_" /d "ARM" /d "_ARM_" /d "ARMV4I" /r + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "MIPSIV_FPRel" +# PROP BASE Intermediate_Dir "MIPSIV_FPRel" +# PROP BASE CPU_ID "{046A430D-7770-48AB-89B5-24C2D300B03F}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "MIPSIV_FPRel" +# PROP Intermediate_Dir "MIPSIV_FPRel" +# PROP CPU_ID "{046A430D-7770-48AB-89B5-24C2D300B03F}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPSFPU +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPSFPU +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D "MIPSIV_FP" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "SDL_EXPORTS" /YX /QMmips4 /QMn32 /QMFPE- /O2 /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /Oxt /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D "MIPSIV_FP" /D "NDEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /QMmips4 /QMn32 /QMFPE- /M$(CECrtMT) /c +# SUBTRACT CPP /YX +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "MIPSIV_FPDbg" +# PROP BASE Intermediate_Dir "MIPSIV_FPDbg" +# PROP BASE CPU_ID "{046A430D-7770-48AB-89B5-24C2D300B03F}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "MIPSIV_FPDbg" +# PROP Intermediate_Dir "MIPSIV_FPDbg" +# PROP CPU_ID "{046A430D-7770-48AB-89B5-24C2D300B03F}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPSFPU +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPSFPU +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D "MIPSIV_FP" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /YX /QMmips4 /QMn32 /QMFPE- /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "DEBUG" /D "MIPS" /D "_MIPS_" /D "_MIPS64" /D "R4000" /D "MIPSIV" /D "MIPSIV_FP" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /QMmips4 /QMn32 /QMFPE- /M$(CECrtMTDebug) /c +# SUBTRACT CPP /YX +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "ARMV4Rel" +# PROP BASE Intermediate_Dir "ARMV4Rel" +# PROP BASE CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "ARMV4Rel" +# PROP Intermediate_Dir "ARMV4Rel" +# PROP CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +CPP=clarm.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "SDL_EXPORTS" /YX /O2 /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /Oxt /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /I "../../src/video/windib" /I "../../src/video/gapi" /D "ARM" /D "_ARM_" /D "ARMV4" /D "NDEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /M$(CECrtMT) /c +# SUBTRACT CPP /YX +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "ARMV4Dbg" +# PROP BASE Intermediate_Dir "ARMV4Dbg" +# PROP BASE CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "ARMV4Dbg" +# PROP Intermediate_Dir "ARMV4Dbg" +# PROP CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +CPP=clarm.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /YX /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /I "../../src/video/windib" /I "../../src/video/gapi" /D "DEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /M$(CECrtMTDebug) /c +# SUBTRACT CPP /YX +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "MIPS16Rel" +# PROP BASE Intermediate_Dir "MIPS16Rel" +# PROP BASE CPU_ID "{D6519013-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "MIPS16Rel" +# PROP Intermediate_Dir "MIPS16Rel" +# PROP CPU_ID "{D6519013-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "MIPS16SUPPORT" /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /d "R4000" /d "MIPSII" /d "MIPS16" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "MIPS16SUPPORT" /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /d "R4000" /d "MIPSII" /d "MIPS16" /r +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /O2 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPS16" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_MIPS16_" /D "MIPS16SUPPORT" /D "SDL_EXPORTS" /YX /QMmips16 /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPS16" /D "NDEBUG" /D "_MIPS16_" /D "MIPS16SUPPORT" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /Oxt /QMmips16 /M$(CECrtMT) /c +# SUBTRACT CPP /YX +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS16 /ALIGN:4096 +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS16 /ALIGN:4096 + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "MIPS16Dbg" +# PROP BASE Intermediate_Dir "MIPS16Dbg" +# PROP BASE CPU_ID "{D6519013-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "MIPS16Dbg" +# PROP Intermediate_Dir "MIPS16Dbg" +# PROP CPU_ID "{D6519013-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "MIPS16SUPPORT" /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /d "R4000" /d "MIPSII" /d "MIPS16" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "MIPS16SUPPORT" /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /d "R4000" /d "MIPSII" /d "MIPS16" /r +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPS16" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_MIPS16_" /D "MIPS16SUPPORT" /D "SDL_EXPORTS" /YX /QMmips16 /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "DEBUG" /D "MIPS" /D "_MIPS_" /D "R4000" /D "MIPSII" /D "MIPS16" /D "_MIPS16_" /D "MIPS16SUPPORT" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /QMmips16 /M$(CECrtMTDebug) /c +# SUBTRACT CPP /YX +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS16 /ALIGN:4096 +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS16 /ALIGN:4096 + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "ARMV4TRel" +# PROP BASE Intermediate_Dir "ARMV4TRel" +# PROP BASE CPU_ID "{F52316A9-3B7C-4FE7-A67F-68350B41240D}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "ARMV4TRel" +# PROP Intermediate_Dir "ARMV4TRel" +# PROP CPU_ID "{F52316A9-3B7C-4FE7-A67F-68350B41240D}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:THUMB +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:THUMB +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +CPP=clthumb.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "ARM" /D "_ARM_" /D "$(CePlatform)" /D "THUMB" /D "_THUMB_" /D "ARMV4T" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "SDL_EXPORTS" /YX /QRarch4T /QRinterwork-return /O2 /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /Oxt /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "ARM" /D "_ARM_" /D "THUMB" /D "_THUMB_" /D "ARMV4T" /D "NDEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /QRarch4T /QRinterwork-return /M$(CECrtMT) /c +# SUBTRACT CPP /YX +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "THUMB" /d "_THUMB_" /d "ARM" /d "_ARM_" /d "ARMV4T" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "THUMB" /d "_THUMB_" /d "ARM" /d "_ARM_" /d "ARMV4T" /r + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "ARMV4TDbg" +# PROP BASE Intermediate_Dir "ARMV4TDbg" +# PROP BASE CPU_ID "{F52316A9-3B7C-4FE7-A67F-68350B41240D}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "ARMV4TDbg" +# PROP Intermediate_Dir "ARMV4TDbg" +# PROP CPU_ID "{F52316A9-3B7C-4FE7-A67F-68350B41240D}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:THUMB +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:THUMB +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +CPP=clthumb.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "ARM" /D "_ARM_" /D "$(CePlatform)" /D "THUMB" /D "_THUMB_" /D "ARMV4T" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /YX /QRarch4T /QRinterwork-return /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "DEBUG" /D "ARM" /D "_ARM_" /D "THUMB" /D "_THUMB_" /D "ARMV4T" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /QRarch4T /QRinterwork-return /M$(CECrtMTDebug) /c +# SUBTRACT CPP /YX +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "THUMB" /d "_THUMB_" /d "ARM" /d "_ARM_" /d "ARMV4T" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "THUMB" /d "_THUMB_" /d "ARM" /d "_ARM_" /d "ARMV4T" /r + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "X86Rel" +# PROP BASE Intermediate_Dir "X86Rel" +# PROP BASE CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "X86Rel" +# PROP Intermediate_Dir "X86Rel" +# PROP CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r +CPP=cl.exe +# ADD BASE CPP /nologo /W3 /O2 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /D "SDL_EXPORTS" /YX /Gs8192 /GF /c +# ADD CPP /nologo /W3 /O2 /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "_i386_" /D "_X86_" /D "x86" /D "NDEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /Gs8192 /Oxt /GF /c +# SUBTRACT CPP /YX +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86 +# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86 + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "X86Dbg" +# PROP BASE Intermediate_Dir "X86Dbg" +# PROP BASE CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "X86Dbg" +# PROP Intermediate_Dir "X86Dbg" +# PROP CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r +CPP=cl.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "SDL_EXPORTS" /YX /Gs8192 /GF /c +# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /D "DEBUG" /D "_i386_" /D "_X86_" /D "x86" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "SDL_EXPORTS" /Gs8192 /GF /c +# SUBTRACT CPP /YX +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86 +# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86 + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "ARMDbg" +# PROP BASE Intermediate_Dir "ARMDbg" +# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "ARMDbg" +# PROP Intermediate_Dir "ARMDbg" +# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r +CPP=clarm.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /I "../../src/video/windib" /I "../../src/video/gapi" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "ARMRel" +# PROP BASE Intermediate_Dir "ARMRel" +# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "ARMRel" +# PROP Intermediate_Dir "ARMRel" +# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r +CPP=clarm.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /O2 /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /I "../../src/video/windib" /I "../../src/video/gapi" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "MIPSDbg" +# PROP BASE Intermediate_Dir "MIPSDbg" +# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "MIPSDbg" +# PROP Intermediate_Dir "MIPSDbg" +# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c +# ADD CPP /nologo /W3 /Zi /Od /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /I "../../src/video/windib" /I "../../src/video/gapi" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c +MTL=midl.exe +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "MIPSRel" +# PROP BASE Intermediate_Dir "MIPSRel" +# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "MIPSRel" +# PROP Intermediate_Dir "MIPSRel" +# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r +CPP=clmips.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /O2 /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /I "../../src/video/windib" /I "../../src/video/gapi" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "SH3Rel" +# PROP BASE Intermediate_Dir "SH3Rel" +# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}" +# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "SH3Rel" +# PROP Intermediate_Dir "SH3Rel" +# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}" +# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}" +# PROP Target_Dir "" +RSC=rc.exe +# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r +# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r +CPP=shcl.exe +# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c +# ADD CPP /nologo /W3 /O2 /Ob2 /I "../../include" /I "../../src" /I "../../src/video" /I "../../src/thread" /I "../../src/thread/generic" /I "../../src/audio" /I "../../src/cdrom" /I "../../src/timer" /I "../../src/joystick" /I "../../src/events" /I "../../src/video/wincommon" /I "../../src/video/windib" /I "../../src/video/gapi" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c +MTL=midl.exe +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32 +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3 +# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3 + +!ENDIF + +# Begin Target + +# Name "SDL - Win32 (WCE MIPSII_FP) Release" +# Name "SDL - Win32 (WCE MIPSII_FP) Debug" +# Name "SDL - Win32 (WCE MIPSII) Release" +# Name "SDL - Win32 (WCE MIPSII) Debug" +# Name "SDL - Win32 (WCE SH4) Release" +# Name "SDL - Win32 (WCE SH4) Debug" +# Name "SDL - Win32 (WCE SH3) Debug" +# Name "SDL - Win32 (WCE MIPSIV) Release" +# Name "SDL - Win32 (WCE MIPSIV) Debug" +# Name "SDL - Win32 (WCE emulator) Release" +# Name "SDL - Win32 (WCE emulator) Debug" +# Name "SDL - Win32 (WCE ARMV4I) Release" +# Name "SDL - Win32 (WCE ARMV4I) Debug" +# Name "SDL - Win32 (WCE MIPSIV_FP) Release" +# Name "SDL - Win32 (WCE MIPSIV_FP) Debug" +# Name "SDL - Win32 (WCE ARMV4) Release" +# Name "SDL - Win32 (WCE ARMV4) Debug" +# Name "SDL - Win32 (WCE MIPS16) Release" +# Name "SDL - Win32 (WCE MIPS16) Debug" +# Name "SDL - Win32 (WCE ARMV4T) Release" +# Name "SDL - Win32 (WCE ARMV4T) Debug" +# Name "SDL - Win32 (WCE x86) Release" +# Name "SDL - Win32 (WCE x86) Debug" +# Name "SDL - Win32 (WCE ARM) Debug" +# Name "SDL - Win32 (WCE ARM) Release" +# Name "SDL - Win32 (WCE MIPS) Debug" +# Name "SDL - Win32 (WCE MIPS) Release" +# Name "SDL - Win32 (WCE SH3) Release" +# Begin Group "Source Files" + +# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" +# Begin Source File + +SOURCE=..\..\src\SDL.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_C=\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + +NODEP_CPP_SDL_C=\ + "..\include\SDL_endian.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_C=\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + +NODEP_CPP_SDL_C=\ + "..\include\SDL_endian.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_C=\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + +NODEP_CPP_SDL_C=\ + "..\include\SDL_endian.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_C=\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + +NODEP_CPP_SDL_C=\ + "..\include\SDL_endian.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_C=\ + "..\..\include\SDL_endian.h"\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + +NODEP_CPP_SDL_C=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_C=\ + "..\..\include\SDL_endian.h"\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + +NODEP_CPP_SDL_C=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_C=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_getenv.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_C=\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + +NODEP_CPP_SDL_C=\ + "..\include\SDL_endian.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_C=\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + +NODEP_CPP_SDL_C=\ + "..\include\SDL_endian.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_C=\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + +NODEP_CPP_SDL_C=\ + "..\include\SDL_endian.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_C=\ + "..\..\include\SDL.h"\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + +NODEP_CPP_SDL_C=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_C=\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + +NODEP_CPP_SDL_C=\ + "..\include\SDL_endian.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_C=\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + +NODEP_CPP_SDL_C=\ + "..\include\SDL_endian.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_C=\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + +NODEP_CPP_SDL_C=\ + "..\include\SDL_endian.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_C=\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + +NODEP_CPP_SDL_C=\ + "..\include\SDL_endian.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_C=\ + "..\..\include\SDL.h"\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + +NODEP_CPP_SDL_C=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_C=\ + "..\..\include\SDL.h"\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + +NODEP_CPP_SDL_C=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_C=\ + "..\..\include\SDL_endian.h"\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + +NODEP_CPP_SDL_C=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_C=\ + "..\..\include\SDL_endian.h"\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + +NODEP_CPP_SDL_C=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_C=\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + +NODEP_CPP_SDL_C=\ + "..\include\SDL_endian.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_C=\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + +NODEP_CPP_SDL_C=\ + "..\include\SDL_endian.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_C=\ + "..\..\include\SDL_endian.h"\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + +NODEP_CPP_SDL_C=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_C=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_C=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_C=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + +NODEP_CPP_SDL_C=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_C=\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + +NODEP_CPP_SDL_C=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_getenv.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_C=\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + +NODEP_CPP_SDL_C=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_getenv.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_C=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_getenv.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\SDL_fatal.h"\ + "..\..\src\video\SDL_leaks.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\events\SDL_active.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_A=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_A=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_A=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_A=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_A=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_A=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_A=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_A=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_A=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_A=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_A=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_A=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_A=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_A=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_A=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_A=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_A=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_A=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_A=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_A=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_A=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_A=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_A=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_A=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_A=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_A=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_A=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_A=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_A=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_A=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_A=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_A=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_A=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_A=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_A=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_A=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_A=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_A=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_A=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_A=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_A=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_A=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_A=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_A=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_A=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_A=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_A=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_A=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_A=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_A=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_A=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_A=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\SDL_audio.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_AU=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_AU=\ + "..\include\SDL_thread.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_AU=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_AU=\ + "..\include\SDL_thread.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_AU=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_AU=\ + "..\include\SDL_thread.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_AU=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_AU=\ + "..\include\SDL_thread.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_AU=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_AU=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_AU=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_AU=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_AU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_getenv.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_AU=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_AU=\ + "..\include\SDL_thread.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_AU=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_AU=\ + "..\include\SDL_thread.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_AU=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_AU=\ + "..\include\SDL_thread.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_AU=\ + "..\..\include\SDL.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_AU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_AU=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_AU=\ + "..\include\SDL_thread.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_AU=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_AU=\ + "..\include\SDL_thread.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_AU=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_AU=\ + "..\include\SDL_thread.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_AU=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_AU=\ + "..\include\SDL_thread.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_AU=\ + "..\..\include\SDL.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_AU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_AU=\ + "..\..\include\SDL.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_AU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_AU=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_AU=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_AU=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_AU=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_AU=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_AU=\ + "..\include\SDL_thread.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_AU=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_AU=\ + "..\include\SDL_thread.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_AU=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_AU=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_AU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_AU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_AU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_AU=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_AU=\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_AU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_getenv.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_AU=\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_AU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_getenv.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_AU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_getenv.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\SDL_audiocvt.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_AUD=\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_AUD=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_rwops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_AUD=\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_AUD=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_rwops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_AUD=\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_AUD=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_rwops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_AUD=\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_AUD=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_rwops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_AUD=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_AUD=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_AUD=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_AUD=\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_AUD=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_rwops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_AUD=\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_AUD=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_rwops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_AUD=\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_AUD=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_rwops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +NODEP_CPP_SDL_AUD=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_AUD=\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_AUD=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_rwops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_AUD=\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_AUD=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_rwops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_AUD=\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_AUD=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_rwops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_AUD=\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_AUD=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_rwops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +NODEP_CPP_SDL_AUD=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +NODEP_CPP_SDL_AUD=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_AUD=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_AUD=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_AUD=\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_AUD=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_rwops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_AUD=\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_AUD=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_rwops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_AUD=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_AUD=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_AUD=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_AUD=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + +NODEP_CPP_SDL_AUD=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_AUD=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + +NODEP_CPP_SDL_AUD=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_AUD=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + +NODEP_CPP_SDL_AUD=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_AUD=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\SDL_audiodev.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_AUDI=\ + "..\..\src\audio\SDL_audiodev_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_AUDI=\ + "..\..\src\audio\SDL_audiodev_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_AUDI=\ + "..\..\src\audio\SDL_audiodev_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_AUDI=\ + "..\..\src\audio\SDL_audiodev_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_AUDI=\ + "..\..\src\audio\SDL_audiodev_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_AUDI=\ + "..\..\src\audio\SDL_audiodev_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_AUDI=\ + "..\..\src\audio\SDL_audiodev_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_AUDI=\ + "..\..\src\audio\SDL_audiodev_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_AUDI=\ + "..\..\src\audio\SDL_audiodev_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_AUDI=\ + "..\..\src\audio\SDL_audiodev_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_AUDI=\ + "..\..\src\audio\SDL_audiodev_c.h"\ + +NODEP_CPP_SDL_AUDI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_AUDI=\ + "..\..\src\audio\SDL_audiodev_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_AUDI=\ + "..\..\src\audio\SDL_audiodev_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_AUDI=\ + "..\..\src\audio\SDL_audiodev_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_AUDI=\ + "..\..\src\audio\SDL_audiodev_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_AUDI=\ + "..\..\src\audio\SDL_audiodev_c.h"\ + +NODEP_CPP_SDL_AUDI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_AUDI=\ + "..\..\src\audio\SDL_audiodev_c.h"\ + +NODEP_CPP_SDL_AUDI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_AUDI=\ + "..\..\src\audio\SDL_audiodev_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_AUDI=\ + "..\..\src\audio\SDL_audiodev_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_AUDI=\ + "..\..\src\audio\SDL_audiodev_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_AUDI=\ + "..\..\src\audio\SDL_audiodev_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_AUDI=\ + "..\..\src\audio\SDL_audiodev_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_AUDI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_AUDI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_AUDI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + +NODEP_CPP_SDL_AUDI=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_AUDI=\ + "..\..\src\audio\SDL_audiodev_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_AUDI=\ + "..\..\src\audio\SDL_audiodev_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_AUDI=\ + "..\..\src\audio\SDL_audiodev_c.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_blit.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_B=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_B=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_B=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_B=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_B=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_B=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_B=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_B=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_B=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_B=\ + "..\..\src\video\SDL_memops.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_B=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_B=\ + "..\..\src\video\SDL_memops.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_B=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_B=\ + "..\..\src\video\SDL_memops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_B=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_B=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_B=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_B=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_B=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_B=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_B=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_B=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_B=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_B=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_B=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_B=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_B=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_B=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_B=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_B=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_B=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_B=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_B=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_B=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_B=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_B=\ + "..\..\src\video\SDL_memops.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_B=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_B=\ + "..\..\src\video\SDL_memops.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_B=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_B=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_B=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_B=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_B=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_B=\ + "..\..\src\video\SDL_memops.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_B=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_B=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_B=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_B=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_B=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_B=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_B=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_B=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_B=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_B=\ + "..\..\src\video\SDL_memops.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_blit_0.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +NODEP_CPP_SDL_BL=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +NODEP_CPP_SDL_BL=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +NODEP_CPP_SDL_BL=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +NODEP_CPP_SDL_BL=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_BL=\ + "..\..\include\SDL_endian.h"\ + "..\..\src\video\SDL_blit.h"\ + +NODEP_CPP_SDL_BL=\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_BL=\ + "..\..\include\SDL_endian.h"\ + "..\..\src\video\SDL_blit.h"\ + +NODEP_CPP_SDL_BL=\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_BL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +NODEP_CPP_SDL_BL=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +NODEP_CPP_SDL_BL=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +NODEP_CPP_SDL_BL=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +NODEP_CPP_SDL_BL=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +NODEP_CPP_SDL_BL=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +NODEP_CPP_SDL_BL=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +NODEP_CPP_SDL_BL=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +NODEP_CPP_SDL_BL=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +NODEP_CPP_SDL_BL=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +NODEP_CPP_SDL_BL=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_BL=\ + "..\..\include\SDL_endian.h"\ + "..\..\src\video\SDL_blit.h"\ + +NODEP_CPP_SDL_BL=\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_BL=\ + "..\..\include\SDL_endian.h"\ + "..\..\src\video\SDL_blit.h"\ + +NODEP_CPP_SDL_BL=\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +NODEP_CPP_SDL_BL=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +NODEP_CPP_SDL_BL=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_BL=\ + "..\..\include\SDL_endian.h"\ + "..\..\src\video\SDL_blit.h"\ + +NODEP_CPP_SDL_BL=\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_BL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_BL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_BL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + +NODEP_CPP_SDL_BL=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_BL=\ + "..\..\include\SDL_endian.h"\ + +NODEP_CPP_SDL_BL=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_BL=\ + "..\..\include\SDL_endian.h"\ + +NODEP_CPP_SDL_BL=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_BL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_blit_1.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_BLI=\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_BLI=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_BLI=\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_BLI=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_BLI=\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_BLI=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_BLI=\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_BLI=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_BLI=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_BLI=\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_BLI=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_BLI=\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_BLI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_BLI=\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_BLI=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_BLI=\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_BLI=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_BLI=\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_BLI=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_BLI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_BLI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_BLI=\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_BLI=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_BLI=\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_BLI=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_BLI=\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_BLI=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_BLI=\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_BLI=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_BLI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_BLI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_BLI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_BLI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_BLI=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_BLI=\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_BLI=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_BLI=\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_BLI=\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_BLI=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_BLI=\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_BLI=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_BLI=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_BLI=\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_BLI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_BLI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_BLI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_BLI=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_BLI=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_BLI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_BLI=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_BLI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_BLI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_blit_A.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_BLIT=\ + "..\..\src\video\mmx.h"\ + +NODEP_CPP_SDL_BLIT=\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_BLIT=\ + "..\..\src\video\mmx.h"\ + +NODEP_CPP_SDL_BLIT=\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_BLIT=\ + "..\..\src\video\mmx.h"\ + +NODEP_CPP_SDL_BLIT=\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_BLIT=\ + "..\..\src\video\mmx.h"\ + +NODEP_CPP_SDL_BLIT=\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_BLIT=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + +NODEP_CPP_SDL_BLIT=\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_BLIT=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + +NODEP_CPP_SDL_BLIT=\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_BLIT=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_BLIT=\ + "..\..\src\video\mmx.h"\ + +NODEP_CPP_SDL_BLIT=\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_BLIT=\ + "..\..\src\video\mmx.h"\ + +NODEP_CPP_SDL_BLIT=\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_BLIT=\ + "..\..\src\video\mmx.h"\ + +NODEP_CPP_SDL_BLIT=\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_BLIT=\ + "..\..\src\video\mmx.h"\ + +NODEP_CPP_SDL_BLIT=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_BLIT=\ + "..\..\src\video\mmx.h"\ + +NODEP_CPP_SDL_BLIT=\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_BLIT=\ + "..\..\src\video\mmx.h"\ + +NODEP_CPP_SDL_BLIT=\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_BLIT=\ + "..\..\src\video\mmx.h"\ + +NODEP_CPP_SDL_BLIT=\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_BLIT=\ + "..\..\src\video\mmx.h"\ + +NODEP_CPP_SDL_BLIT=\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_BLIT=\ + "..\..\src\video\mmx.h"\ + +NODEP_CPP_SDL_BLIT=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_BLIT=\ + "..\..\src\video\mmx.h"\ + +NODEP_CPP_SDL_BLIT=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_BLIT=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + +NODEP_CPP_SDL_BLIT=\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_BLIT=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + +NODEP_CPP_SDL_BLIT=\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_BLIT=\ + "..\..\src\video\mmx.h"\ + +NODEP_CPP_SDL_BLIT=\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_BLIT=\ + "..\..\src\video\mmx.h"\ + +NODEP_CPP_SDL_BLIT=\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_BLIT=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + +NODEP_CPP_SDL_BLIT=\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_BLIT=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_BLIT=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_BLIT=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + +NODEP_CPP_SDL_BLIT=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_BLIT=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\src\video\mmx.h"\ + +NODEP_CPP_SDL_BLIT=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_BLIT=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\src\video\mmx.h"\ + +NODEP_CPP_SDL_BLIT=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_BLIT=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_blit_N.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +NODEP_CPP_SDL_BLIT_=\ + "..\..\src\video\HeadMMX.h"\ + "..\..\src\video\HeadX86.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +NODEP_CPP_SDL_BLIT_=\ + "..\..\src\video\HeadMMX.h"\ + "..\..\src\video\HeadX86.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +NODEP_CPP_SDL_BLIT_=\ + "..\..\src\video\HeadMMX.h"\ + "..\..\src\video\HeadX86.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +NODEP_CPP_SDL_BLIT_=\ + "..\..\src\video\HeadMMX.h"\ + "..\..\src\video\HeadX86.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_BLIT_=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\src\video\SDL_blit.h"\ + +NODEP_CPP_SDL_BLIT_=\ + "..\..\src\video\HeadMMX.h"\ + "..\..\src\video\HeadX86.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_BLIT_=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\src\video\SDL_blit.h"\ + +NODEP_CPP_SDL_BLIT_=\ + "..\..\src\video\HeadMMX.h"\ + "..\..\src\video\HeadX86.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_BLIT_=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + +NODEP_CPP_SDL_BLIT_=\ + "..\..\src\video\HeadMMX.h"\ + "..\..\src\video\HeadX86.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +NODEP_CPP_SDL_BLIT_=\ + "..\..\src\video\HeadMMX.h"\ + "..\..\src\video\HeadX86.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +NODEP_CPP_SDL_BLIT_=\ + "..\..\src\video\HeadMMX.h"\ + "..\..\src\video\HeadX86.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +NODEP_CPP_SDL_BLIT_=\ + "..\..\src\video\HeadMMX.h"\ + "..\..\src\video\HeadX86.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_BLIT_=\ + "..\..\src\hermes\HeadMMX.h"\ + "..\..\src\hermes\HeadX86.h"\ + +NODEP_CPP_SDL_BLIT_=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +NODEP_CPP_SDL_BLIT_=\ + "..\..\src\video\HeadMMX.h"\ + "..\..\src\video\HeadX86.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +NODEP_CPP_SDL_BLIT_=\ + "..\..\src\video\HeadMMX.h"\ + "..\..\src\video\HeadX86.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +NODEP_CPP_SDL_BLIT_=\ + "..\..\src\video\HeadMMX.h"\ + "..\..\src\video\HeadX86.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +NODEP_CPP_SDL_BLIT_=\ + "..\..\src\video\HeadMMX.h"\ + "..\..\src\video\HeadX86.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_BLIT_=\ + "..\..\src\hermes\HeadMMX.h"\ + "..\..\src\hermes\HeadX86.h"\ + +NODEP_CPP_SDL_BLIT_=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_BLIT_=\ + "..\..\src\hermes\HeadMMX.h"\ + "..\..\src\hermes\HeadX86.h"\ + +NODEP_CPP_SDL_BLIT_=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_BLIT_=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\src\video\SDL_blit.h"\ + +NODEP_CPP_SDL_BLIT_=\ + "..\..\src\video\HeadMMX.h"\ + "..\..\src\video\HeadX86.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_BLIT_=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\src\video\SDL_blit.h"\ + +NODEP_CPP_SDL_BLIT_=\ + "..\..\src\video\HeadMMX.h"\ + "..\..\src\video\HeadX86.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +NODEP_CPP_SDL_BLIT_=\ + "..\..\src\video\HeadMMX.h"\ + "..\..\src\video\HeadX86.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +NODEP_CPP_SDL_BLIT_=\ + "..\..\src\video\HeadMMX.h"\ + "..\..\src\video\HeadX86.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_BLIT_=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\src\video\SDL_blit.h"\ + +NODEP_CPP_SDL_BLIT_=\ + "..\..\src\video\HeadMMX.h"\ + "..\..\src\video\HeadX86.h"\ + ".\DL_byteorder.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_BLIT_=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\hermes\HeadMMX.h"\ + "..\..\src\hermes\HeadX86.h"\ + "..\..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_BLIT_=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\hermes\HeadMMX.h"\ + "..\..\src\hermes\HeadX86.h"\ + "..\..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_BLIT_=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\hermes\HeadMMX.h"\ + "..\..\src\hermes\HeadX86.h"\ + "..\..\src\video\SDL_blit.h"\ + +NODEP_CPP_SDL_BLIT_=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_BLIT_=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + +NODEP_CPP_SDL_BLIT_=\ + "..\..\src\video\HeadMMX.h"\ + "..\..\src\video\HeadX86.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_BLIT_=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + +NODEP_CPP_SDL_BLIT_=\ + "..\..\src\video\HeadMMX.h"\ + "..\..\src\video\HeadX86.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_BLIT_=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + +NODEP_CPP_SDL_BLIT_=\ + "..\..\src\video\HeadMMX.h"\ + "..\..\src\video\HeadX86.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_bmp.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +NODEP_CPP_SDL_BM=\ + "..\include\SDL_endian.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +NODEP_CPP_SDL_BM=\ + "..\include\SDL_endian.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +NODEP_CPP_SDL_BM=\ + "..\include\SDL_endian.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +NODEP_CPP_SDL_BM=\ + "..\include\SDL_endian.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_BM=\ + "..\..\include\SDL_endian.h"\ + +NODEP_CPP_SDL_BM=\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_BM=\ + "..\..\include\SDL_endian.h"\ + +NODEP_CPP_SDL_BM=\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_BM=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +NODEP_CPP_SDL_BM=\ + "..\include\SDL_endian.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +NODEP_CPP_SDL_BM=\ + "..\include\SDL_endian.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +NODEP_CPP_SDL_BM=\ + "..\include\SDL_endian.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +NODEP_CPP_SDL_BM=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +NODEP_CPP_SDL_BM=\ + "..\include\SDL_endian.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +NODEP_CPP_SDL_BM=\ + "..\include\SDL_endian.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +NODEP_CPP_SDL_BM=\ + "..\include\SDL_endian.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +NODEP_CPP_SDL_BM=\ + "..\include\SDL_endian.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +NODEP_CPP_SDL_BM=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +NODEP_CPP_SDL_BM=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_BM=\ + "..\..\include\SDL_endian.h"\ + +NODEP_CPP_SDL_BM=\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_BM=\ + "..\..\include\SDL_endian.h"\ + +NODEP_CPP_SDL_BM=\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +NODEP_CPP_SDL_BM=\ + "..\include\SDL_endian.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +NODEP_CPP_SDL_BM=\ + "..\include\SDL_endian.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_BM=\ + "..\..\include\SDL_endian.h"\ + +NODEP_CPP_SDL_BM=\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_BM=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_BM=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_BM=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + +NODEP_CPP_SDL_BM=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_BM=\ + "..\..\include\SDL_endian.h"\ + +NODEP_CPP_SDL_BM=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_BM=\ + "..\..\include\SDL_endian.h"\ + +NODEP_CPP_SDL_BM=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_BM=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_video.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\cpuinfo\SDL_cpuinfo.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +NODEP_CPP_SDL_CP=\ + "..\include\SDL_cpuinfo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +NODEP_CPP_SDL_CP=\ + "..\include\SDL_cpuinfo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +NODEP_CPP_SDL_CP=\ + "..\include\SDL_cpuinfo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +NODEP_CPP_SDL_CP=\ + "..\include\SDL_cpuinfo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_CP=\ + "..\..\include\SDL_cpuinfo.h"\ + +NODEP_CPP_SDL_CP=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_CP=\ + "..\..\include\SDL_cpuinfo.h"\ + +NODEP_CPP_SDL_CP=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_CP=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_getenv.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +NODEP_CPP_SDL_CP=\ + "..\include\SDL_cpuinfo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +NODEP_CPP_SDL_CP=\ + "..\include\SDL_cpuinfo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +NODEP_CPP_SDL_CP=\ + "..\include\SDL_cpuinfo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_CP=\ + "..\..\include\SDL.h"\ + +NODEP_CPP_SDL_CP=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +NODEP_CPP_SDL_CP=\ + "..\include\SDL_cpuinfo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +NODEP_CPP_SDL_CP=\ + "..\include\SDL_cpuinfo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +NODEP_CPP_SDL_CP=\ + "..\include\SDL_cpuinfo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +NODEP_CPP_SDL_CP=\ + "..\include\SDL_cpuinfo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_CP=\ + "..\..\include\SDL.h"\ + +NODEP_CPP_SDL_CP=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_CP=\ + "..\..\include\SDL.h"\ + +NODEP_CPP_SDL_CP=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_CP=\ + "..\..\include\SDL_cpuinfo.h"\ + +NODEP_CPP_SDL_CP=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_CP=\ + "..\..\include\SDL_cpuinfo.h"\ + +NODEP_CPP_SDL_CP=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +NODEP_CPP_SDL_CP=\ + "..\include\SDL_cpuinfo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +NODEP_CPP_SDL_CP=\ + "..\include\SDL_cpuinfo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_CP=\ + "..\..\include\SDL_cpuinfo.h"\ + +NODEP_CPP_SDL_CP=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_CP=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_CP=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_CP=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + +NODEP_CPP_SDL_CP=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_CP=\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_cpuinfo.h"\ + +NODEP_CPP_SDL_CP=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_getenv.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_CP=\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_cpuinfo.h"\ + +NODEP_CPP_SDL_CP=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_getenv.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_CP=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_getenv.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_cursor.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_CU=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_CU=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_CU=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_CU=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_CU=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_CU=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_CU=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_CU=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_CU=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_CU=\ + ".\DL_active.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_CU=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_CU=\ + ".\DL_active.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_CU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_CU=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_CU=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_CU=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_CU=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_CU=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_CU=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_CU=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_CU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_CU=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_CU=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_CU=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_CU=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_CU=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_CU=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_CU=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_CU=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_CU=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_CU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_CU=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_CU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_CU=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_CU=\ + ".\DL_active.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_CU=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_CU=\ + ".\DL_active.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_CU=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_CU=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_CU=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_CU=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_CU=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_CU=\ + ".\DL_active.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_CU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_CU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_CU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_CU=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_CU=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_CU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_CU=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_CU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_CU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\default_cursor.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\windib\SDL_dibaudio.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_D=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + "..\include\SDL_thread.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_D=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + "..\include\SDL_thread.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_D=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + "..\include\SDL_thread.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_D=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + "..\include\SDL_thread.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_D=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_D=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_D=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_D=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + "..\include\SDL_thread.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_D=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + "..\include\SDL_thread.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_D=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + "..\include\SDL_thread.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_D=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\include\SDL_timer.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_D=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + "..\include\SDL_thread.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_D=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + "..\include\SDL_thread.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_D=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + "..\include\SDL_thread.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_D=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + "..\include\SDL_thread.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_D=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\include\SDL_timer.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_D=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\include\SDL_timer.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_D=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_D=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_D=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + "..\include\SDL_thread.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_D=\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + "..\include\SDL_thread.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_D=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_D=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_D=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_D=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_D=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_D=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_D=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + "..\..\src\audio\windib\SDL_dibaudio.h"\ + +NODEP_CPP_SDL_D=\ + "..\..\src\audio\windib\win_ce_semaphore.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\windib\SDL_dibevents.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_DI=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + +NODEP_CPP_SDL_DI=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_DI=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + +NODEP_CPP_SDL_DI=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_DI=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + +NODEP_CPP_SDL_DI=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_DI=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + +NODEP_CPP_SDL_DI=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_DI=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + +NODEP_CPP_SDL_DI=\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_DI=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + +NODEP_CPP_SDL_DI=\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_DI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_DI=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + +NODEP_CPP_SDL_DI=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_DI=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + +NODEP_CPP_SDL_DI=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_DI=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + +NODEP_CPP_SDL_DI=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_DI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + +NODEP_CPP_SDL_DI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_DI=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + +NODEP_CPP_SDL_DI=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_DI=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + +NODEP_CPP_SDL_DI=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_DI=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + +NODEP_CPP_SDL_DI=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_DI=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + +NODEP_CPP_SDL_DI=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_DI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + +NODEP_CPP_SDL_DI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_DI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + +NODEP_CPP_SDL_DI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_DI=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + +NODEP_CPP_SDL_DI=\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_DI=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + +NODEP_CPP_SDL_DI=\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_DI=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + +NODEP_CPP_SDL_DI=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_DI=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + +NODEP_CPP_SDL_DI=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_DI=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + +NODEP_CPP_SDL_DI=\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_DI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_DI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_DI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + +NODEP_CPP_SDL_DI=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_DI=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + +NODEP_CPP_SDL_DI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_DI=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + +NODEP_CPP_SDL_DI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_DI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + "..\..\src\video\windib\SDL_vkeys.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\windib\SDL_dibvideo.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_DIB=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + +NODEP_CPP_SDL_DIB=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_DIB=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + +NODEP_CPP_SDL_DIB=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_DIB=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + +NODEP_CPP_SDL_DIB=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_DIB=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + +NODEP_CPP_SDL_DIB=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_DIB=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + +NODEP_CPP_SDL_DIB=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_DIB=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + +NODEP_CPP_SDL_DIB=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_DIB=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_getenv.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_DIB=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + +NODEP_CPP_SDL_DIB=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_DIB=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + +NODEP_CPP_SDL_DIB=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_DIB=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + +NODEP_CPP_SDL_DIB=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_DIB=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + +NODEP_CPP_SDL_DIB=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_DIB=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + +NODEP_CPP_SDL_DIB=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_DIB=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + +NODEP_CPP_SDL_DIB=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_DIB=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + +NODEP_CPP_SDL_DIB=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_DIB=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + +NODEP_CPP_SDL_DIB=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_DIB=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + +NODEP_CPP_SDL_DIB=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_DIB=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + +NODEP_CPP_SDL_DIB=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_DIB=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + +NODEP_CPP_SDL_DIB=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_DIB=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + +NODEP_CPP_SDL_DIB=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_DIB=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + +NODEP_CPP_SDL_DIB=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_DIB=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + +NODEP_CPP_SDL_DIB=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_DIB=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + +NODEP_CPP_SDL_DIB=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_DIB=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_DIB=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_DIB=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + +NODEP_CPP_SDL_DIB=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_DIB=\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + +NODEP_CPP_SDL_DIB=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_getenv.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_DIB=\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + +NODEP_CPP_SDL_DIB=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_getenv.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_DIB=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_getenv.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + "..\..\src\video\windib\SDL_dibvideo.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\disk\SDL_diskaudio.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_DIS=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\disk\SDL_diskaudio.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_DIS=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\disk\SDL_diskaudio.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_DIS=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\disk\SDL_diskaudio.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_DIS=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\disk\SDL_diskaudio.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_DIS=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\disk\SDL_diskaudio.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_DIS=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\disk\SDL_diskaudio.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_DIS=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\disk\SDL_diskaudio.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_DIS=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\disk\SDL_diskaudio.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_DIS=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\disk\SDL_diskaudio.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_DIS=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\disk\SDL_diskaudio.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_DIS=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\disk\SDL_diskaudio.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_DIS=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\disk\SDL_diskaudio.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\dummy\SDL_dummyaudio.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_DU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\dummy\SDL_dummyaudio.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_DU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\dummy\SDL_dummyaudio.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_DU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\dummy\SDL_dummyaudio.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_DU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\dummy\SDL_dummyaudio.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_DU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\dummy\SDL_dummyaudio.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_DU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\dummy\SDL_dummyaudio.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_DU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\dummy\SDL_dummyaudio.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_DU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\dummy\SDL_dummyaudio.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_DU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\dummy\SDL_dummyaudio.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_DU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\dummy\SDL_dummyaudio.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_DU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\dummy\SDL_dummyaudio.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_DU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\dummy\SDL_dummyaudio.h"\ + "..\..\src\audio\SDL_audio_c.h"\ + "..\..\src\audio\SDL_audiodev_c.h"\ + "..\..\src\audio\SDL_audiomem.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\SDL_error.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +NODEP_CPP_SDL_E=\ + "..\src\SDL_error_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +NODEP_CPP_SDL_E=\ + "..\src\SDL_error_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +NODEP_CPP_SDL_E=\ + "..\src\SDL_error_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +NODEP_CPP_SDL_E=\ + "..\src\SDL_error_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_E=\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\generic\SDL_systhread_c.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + +NODEP_CPP_SDL_E=\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_E=\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\generic\SDL_systhread_c.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + +NODEP_CPP_SDL_E=\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_E=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_getenv.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\generic\SDL_systhread_c.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +NODEP_CPP_SDL_E=\ + "..\src\SDL_error_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +NODEP_CPP_SDL_E=\ + "..\src\SDL_error_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +NODEP_CPP_SDL_E=\ + "..\src\SDL_error_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +NODEP_CPP_SDL_E=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + "..\src\SDL_error_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +NODEP_CPP_SDL_E=\ + "..\src\SDL_error_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +NODEP_CPP_SDL_E=\ + "..\src\SDL_error_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +NODEP_CPP_SDL_E=\ + "..\src\SDL_error_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +NODEP_CPP_SDL_E=\ + "..\src\SDL_error_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +NODEP_CPP_SDL_E=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + "..\src\SDL_error_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +NODEP_CPP_SDL_E=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + "..\src\SDL_error_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_E=\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\generic\SDL_systhread_c.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + +NODEP_CPP_SDL_E=\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_E=\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\generic\SDL_systhread_c.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + +NODEP_CPP_SDL_E=\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +NODEP_CPP_SDL_E=\ + "..\src\SDL_error_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +NODEP_CPP_SDL_E=\ + "..\src\SDL_error_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_E=\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\generic\SDL_systhread_c.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + +NODEP_CPP_SDL_E=\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_E=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\src\SDL_error_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_E=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\src\SDL_error_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_E=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\src\SDL_error_c.h"\ + +NODEP_CPP_SDL_E=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_E=\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\generic\SDL_systhread_c.h"\ + +NODEP_CPP_SDL_E=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_getenv.h"\ + "..\include\SDL_types.h"\ + "..\src\thread\SDL_thread_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_E=\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\generic\SDL_systhread_c.h"\ + +NODEP_CPP_SDL_E=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_getenv.h"\ + "..\include\SDL_types.h"\ + "..\src\thread\SDL_thread_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_E=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_getenv.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\generic\SDL_systhread_c.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\events\SDL_events.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_EV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_EV=\ + "..\include\SDL_thread.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_EV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_EV=\ + "..\include\SDL_thread.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_EV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_EV=\ + "..\include\SDL_thread.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_EV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_EV=\ + "..\include\SDL_thread.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_EV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_EV=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_EV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_EV=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_EV=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_getenv.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_EV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_EV=\ + "..\include\SDL_thread.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_EV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_EV=\ + "..\include\SDL_thread.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_EV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_EV=\ + "..\include\SDL_thread.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_EV=\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_EV=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_EV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_EV=\ + "..\include\SDL_thread.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_EV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_EV=\ + "..\include\SDL_thread.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_EV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_EV=\ + "..\include\SDL_thread.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_EV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_EV=\ + "..\include\SDL_thread.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_EV=\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_EV=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_EV=\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_EV=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_EV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_EV=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_EV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_EV=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_EV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_EV=\ + "..\include\SDL_thread.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_EV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_EV=\ + "..\include\SDL_thread.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_EV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_EV=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_EV=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_EV=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_EV=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_EV=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_EV=\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_EV=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_getenv.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_EV=\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_EV=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_getenv.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_EV=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_getenv.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\events\SDL_expose.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_EX=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_EX=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_EX=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_EX=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_EX=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_EX=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_EX=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_EX=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_EX=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_EX=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_EX=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_EX=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_EX=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_EX=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_EX=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_EX=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_EX=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_EX=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_EX=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_EX=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_EX=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_EX=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_EX=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_EX=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_EX=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_EX=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_EX=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_EX=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_EX=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_EX=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_EX=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_EX=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_EX=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_EX=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_EX=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_EX=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_EX=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_EX=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_EX=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_EX=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_EX=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_EX=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_EX=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_EX=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_EX=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_EX=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_EX=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_EX=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_EX=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_EX=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_EX=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_EX=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\SDL_fatal.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_F=\ + "..\..\src\SDL_fatal.h"\ + +NODEP_CPP_SDL_F=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_F=\ + "..\..\src\SDL_fatal.h"\ + +NODEP_CPP_SDL_F=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_F=\ + "..\..\src\SDL_fatal.h"\ + +NODEP_CPP_SDL_F=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_F=\ + "..\..\src\SDL_fatal.h"\ + +NODEP_CPP_SDL_F=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_F=\ + "..\..\src\SDL_fatal.h"\ + +NODEP_CPP_SDL_F=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_F=\ + "..\..\src\SDL_fatal.h"\ + +NODEP_CPP_SDL_F=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_F=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_getenv.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\SDL_fatal.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_F=\ + "..\..\src\SDL_fatal.h"\ + +NODEP_CPP_SDL_F=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_F=\ + "..\..\src\SDL_fatal.h"\ + +NODEP_CPP_SDL_F=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_F=\ + "..\..\src\SDL_fatal.h"\ + +NODEP_CPP_SDL_F=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_F=\ + "..\..\include\SDL.h"\ + "..\..\src\SDL_fatal.h"\ + +NODEP_CPP_SDL_F=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_F=\ + "..\..\src\SDL_fatal.h"\ + +NODEP_CPP_SDL_F=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_F=\ + "..\..\src\SDL_fatal.h"\ + +NODEP_CPP_SDL_F=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_F=\ + "..\..\src\SDL_fatal.h"\ + +NODEP_CPP_SDL_F=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_F=\ + "..\..\src\SDL_fatal.h"\ + +NODEP_CPP_SDL_F=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_F=\ + "..\..\include\SDL.h"\ + "..\..\src\SDL_fatal.h"\ + +NODEP_CPP_SDL_F=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_F=\ + "..\..\include\SDL.h"\ + "..\..\src\SDL_fatal.h"\ + +NODEP_CPP_SDL_F=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_F=\ + "..\..\src\SDL_fatal.h"\ + +NODEP_CPP_SDL_F=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_F=\ + "..\..\src\SDL_fatal.h"\ + +NODEP_CPP_SDL_F=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_F=\ + "..\..\src\SDL_fatal.h"\ + +NODEP_CPP_SDL_F=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_F=\ + "..\..\src\SDL_fatal.h"\ + +NODEP_CPP_SDL_F=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_F=\ + "..\..\src\SDL_fatal.h"\ + +NODEP_CPP_SDL_F=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_F=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\SDL_fatal.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_F=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\SDL_fatal.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_F=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\SDL_fatal.h"\ + +NODEP_CPP_SDL_F=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_F=\ + "..\..\include\SDL.h"\ + "..\..\src\SDL_fatal.h"\ + +NODEP_CPP_SDL_F=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_getenv.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_F=\ + "..\..\include\SDL.h"\ + "..\..\src\SDL_fatal.h"\ + +NODEP_CPP_SDL_F=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_getenv.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_F=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_getenv.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\SDL_fatal.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_gamma.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_G=\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_G=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_G=\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_G=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_G=\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_G=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_G=\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_G=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_G=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_G=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_G=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_G=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_G=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_G=\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_G=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_G=\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_G=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_G=\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_G=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_G=\ + "..\..\include\SDL_name.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\e_log.h"\ + "..\..\src\video\e_pow.h"\ + "..\..\src\video\e_sqrt.h"\ + "..\..\src\video\math_private.h"\ + +NODEP_CPP_SDL_G=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_G=\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_G=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_G=\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_G=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_G=\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_G=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_G=\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_G=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_G=\ + "..\..\include\SDL_name.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\e_log.h"\ + "..\..\src\video\e_pow.h"\ + "..\..\src\video\e_sqrt.h"\ + "..\..\src\video\math_private.h"\ + +NODEP_CPP_SDL_G=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_G=\ + "..\..\include\SDL_name.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\e_log.h"\ + "..\..\src\video\e_pow.h"\ + "..\..\src\video\e_sqrt.h"\ + "..\..\src\video\math_private.h"\ + +NODEP_CPP_SDL_G=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_G=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_G=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_G=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_G=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_G=\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_G=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_G=\ + "..\..\include\SDL_syswm.h"\ + +NODEP_CPP_SDL_G=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_G=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_G=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_G=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_name.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\e_log.h"\ + "..\..\src\video\e_pow.h"\ + "..\..\src\video\e_sqrt.h"\ + "..\..\src\video\math_private.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_G=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_name.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\e_log.h"\ + "..\..\src\video\e_pow.h"\ + "..\..\src\video\e_sqrt.h"\ + "..\..\src\video\math_private.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_G=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_name.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\e_log.h"\ + "..\..\src\video\e_pow.h"\ + "..\..\src\video\e_sqrt.h"\ + "..\..\src\video\math_private.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_G=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_G=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_G=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_G=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_G=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_G=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\gapi\SDL_gapivideo.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_GA=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\gapi\sdl_gapivideo.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_GA=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\gapi\sdl_gapivideo.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_GA=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\gapi\sdl_gapivideo.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_GA=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\gapi\sdl_gapivideo.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_GA=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\gapi\sdl_gapivideo.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_GA=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\gapi\sdl_gapivideo.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_GA=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\gapi\sdl_gapivideo.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_GA=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\gapi\sdl_gapivideo.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_GA=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\gapi\sdl_gapivideo.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_GA=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\gapi\sdl_gapivideo.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_GA=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\gapi\sdl_gapivideo.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_GA=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\gapi\sdl_gapivideo.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\windib\SDL_dibevents_c.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\stdlib\SDL_getenv.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +NODEP_CPP_SDL_GE=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +NODEP_CPP_SDL_GE=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +NODEP_CPP_SDL_GE=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +NODEP_CPP_SDL_GE=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_GE=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_GE=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_GE=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_GE=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_GE=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_GE=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +NODEP_CPP_SDL_GE=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +NODEP_CPP_SDL_GE=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +NODEP_CPP_SDL_GE=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +NODEP_CPP_SDL_GE=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +NODEP_CPP_SDL_GE=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +NODEP_CPP_SDL_GE=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +NODEP_CPP_SDL_GE=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +NODEP_CPP_SDL_GE=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +NODEP_CPP_SDL_GE=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +NODEP_CPP_SDL_GE=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_GE=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_GE=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_GE=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_GE=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +NODEP_CPP_SDL_GE=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +NODEP_CPP_SDL_GE=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_GE=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_GE=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_GE=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_GE=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_GE=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_GE=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_GE=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_GE=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_GE=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_GE=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_GE=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_GE=\ + "..\include\SDL_config_wince.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\stdlib\SDL_iconv.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_I=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_I=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_I=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_I=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_I=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_I=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_I=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_I=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_I=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_I=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_I=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_I=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\joystick\SDL_joystick.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_J=\ + "..\..\include\SDL_types.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_J=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_J=\ + "..\..\include\SDL_types.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_J=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_J=\ + "..\..\include\SDL_types.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_J=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_J=\ + "..\..\include\SDL_types.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_J=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_J=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_J=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_J=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_J=\ + "..\..\include\SDL_types.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_J=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_J=\ + "..\..\include\SDL_types.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_J=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_J=\ + "..\..\include\SDL_types.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_J=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_J=\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_J=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_J=\ + "..\..\include\SDL_types.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_J=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_J=\ + "..\..\include\SDL_types.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_J=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_J=\ + "..\..\include\SDL_types.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_J=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_J=\ + "..\..\include\SDL_types.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_J=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_J=\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_J=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_J=\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_J=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_J=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_J=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_J=\ + "..\..\include\SDL_types.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_J=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_J=\ + "..\..\include\SDL_types.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_J=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_J=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_J=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_J=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_J=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_J=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_J=\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_J=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_J=\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_J=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_J=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\events\SDL_keyboard.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_K=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + +NODEP_CPP_SDL_K=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_K=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + +NODEP_CPP_SDL_K=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_K=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + +NODEP_CPP_SDL_K=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_K=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + +NODEP_CPP_SDL_K=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_K=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_K=\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_K=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_K=\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_K=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_K=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + +NODEP_CPP_SDL_K=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_K=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + +NODEP_CPP_SDL_K=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_K=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + +NODEP_CPP_SDL_K=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_K=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + +NODEP_CPP_SDL_K=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_K=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + +NODEP_CPP_SDL_K=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_K=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + +NODEP_CPP_SDL_K=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_K=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + +NODEP_CPP_SDL_K=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_K=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + +NODEP_CPP_SDL_K=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_K=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + +NODEP_CPP_SDL_K=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_K=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + +NODEP_CPP_SDL_K=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_K=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_K=\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_K=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_K=\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_K=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + +NODEP_CPP_SDL_K=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_K=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + +NODEP_CPP_SDL_K=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_K=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_K=\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_K=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_K=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_K=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_K=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_K=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_K=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_K=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_K=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_K=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\stdlib\SDL_malloc.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_M=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_M=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_M=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_M=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_M=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_M=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_M=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_M=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_M=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + "..\..\..\..\usr\include\pthread.h"\ + "..\include\SDL_config_wince.h"\ + ".\onfig\_epilog.h"\ + ".\onfig\_msvc_warnings_off.h"\ + ".\onfig\_prolog.h"\ + ".\onfig\stl_apcc.h"\ + ".\onfig\stl_apple.h"\ + ".\onfig\stl_as400.h"\ + ".\onfig\stl_bc.h"\ + ".\onfig\stl_como.h"\ + ".\onfig\stl_confix.h"\ + ".\onfig\stl_dec.h"\ + ".\onfig\stl_dec_vms.h"\ + ".\onfig\stl_fujitsu.h"\ + ".\onfig\stl_gcc.h"\ + ".\onfig\stl_hpacc.h"\ + ".\onfig\stl_ibm.h"\ + ".\onfig\stl_intel.h"\ + ".\onfig\stl_kai.h"\ + ".\onfig\stl_msvc.h"\ + ".\onfig\stl_mwerks.h"\ + ".\onfig\stl_mycomp.h"\ + ".\onfig\stl_sco.h"\ + ".\onfig\stl_select_lib.h"\ + ".\onfig\stl_sgi.h"\ + ".\onfig\stl_solaris.h"\ + ".\onfig\stl_sunpro.h"\ + ".\onfig\stl_symantec.h"\ + ".\onfig\stl_watcom.h"\ + ".\onfig\stl_wince.h"\ + ".\onfig\stlcomp.h"\ + ".\onfig\vc_select_lib.h"\ + ".\thread.h"\ + ".\tl\_abbrevs.h"\ + ".\tl\_config.h"\ + ".\tl\_config_compat.h"\ + ".\tl\_config_compat_post.h"\ + ".\tl\_epilog.h"\ + ".\tl\_prolog.h"\ + ".\tl\_site_config.h"\ + ".\tl_user_config.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_M=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + "..\..\..\..\usr\include\pthread.h"\ + "..\include\SDL_config_wince.h"\ + ".\onfig\_epilog.h"\ + ".\onfig\_msvc_warnings_off.h"\ + ".\onfig\_prolog.h"\ + ".\onfig\stl_apcc.h"\ + ".\onfig\stl_apple.h"\ + ".\onfig\stl_as400.h"\ + ".\onfig\stl_bc.h"\ + ".\onfig\stl_como.h"\ + ".\onfig\stl_confix.h"\ + ".\onfig\stl_dec.h"\ + ".\onfig\stl_dec_vms.h"\ + ".\onfig\stl_fujitsu.h"\ + ".\onfig\stl_gcc.h"\ + ".\onfig\stl_hpacc.h"\ + ".\onfig\stl_ibm.h"\ + ".\onfig\stl_intel.h"\ + ".\onfig\stl_kai.h"\ + ".\onfig\stl_msvc.h"\ + ".\onfig\stl_mwerks.h"\ + ".\onfig\stl_mycomp.h"\ + ".\onfig\stl_sco.h"\ + ".\onfig\stl_select_lib.h"\ + ".\onfig\stl_sgi.h"\ + ".\onfig\stl_solaris.h"\ + ".\onfig\stl_sunpro.h"\ + ".\onfig\stl_symantec.h"\ + ".\onfig\stl_watcom.h"\ + ".\onfig\stl_wince.h"\ + ".\onfig\stlcomp.h"\ + ".\onfig\vc_select_lib.h"\ + ".\thread.h"\ + ".\tl\_abbrevs.h"\ + ".\tl\_config.h"\ + ".\tl\_config_compat.h"\ + ".\tl\_config_compat_post.h"\ + ".\tl\_epilog.h"\ + ".\tl\_prolog.h"\ + ".\tl\_site_config.h"\ + ".\tl_user_config.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_M=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + "..\..\..\..\usr\include\pthread.h"\ + "..\include\SDL_config_wince.h"\ + ".\onfig\_epilog.h"\ + ".\onfig\_msvc_warnings_off.h"\ + ".\onfig\_prolog.h"\ + ".\onfig\stl_apcc.h"\ + ".\onfig\stl_apple.h"\ + ".\onfig\stl_as400.h"\ + ".\onfig\stl_bc.h"\ + ".\onfig\stl_como.h"\ + ".\onfig\stl_confix.h"\ + ".\onfig\stl_dec.h"\ + ".\onfig\stl_dec_vms.h"\ + ".\onfig\stl_fujitsu.h"\ + ".\onfig\stl_gcc.h"\ + ".\onfig\stl_hpacc.h"\ + ".\onfig\stl_ibm.h"\ + ".\onfig\stl_intel.h"\ + ".\onfig\stl_kai.h"\ + ".\onfig\stl_msvc.h"\ + ".\onfig\stl_mwerks.h"\ + ".\onfig\stl_mycomp.h"\ + ".\onfig\stl_sco.h"\ + ".\onfig\stl_select_lib.h"\ + ".\onfig\stl_sgi.h"\ + ".\onfig\stl_solaris.h"\ + ".\onfig\stl_sunpro.h"\ + ".\onfig\stl_symantec.h"\ + ".\onfig\stl_watcom.h"\ + ".\onfig\stl_wince.h"\ + ".\onfig\stlcomp.h"\ + ".\onfig\vc_select_lib.h"\ + ".\thread.h"\ + ".\tl\_abbrevs.h"\ + ".\tl\_config.h"\ + ".\tl\_config_compat.h"\ + ".\tl\_config_compat_post.h"\ + ".\tl\_epilog.h"\ + ".\tl\_prolog.h"\ + ".\tl\_site_config.h"\ + ".\tl_user_config.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_M=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_M=\ + "..\..\..\..\usr\include\malloc.h"\ + "..\include\SDL_config_wince.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\SDL_mixer.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_MI=\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_MI=\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_thread.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_MI=\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_MI=\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_thread.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_MI=\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_MI=\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_thread.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_MI=\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_MI=\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_thread.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_MI=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_MI=\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_MI=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_MI=\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_MI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_MI=\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_MI=\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_thread.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_MI=\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_MI=\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_thread.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_MI=\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_MI=\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_thread.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_MI=\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_MI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\include\SDL_timer.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_MI=\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_MI=\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_thread.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_MI=\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_MI=\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_thread.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_MI=\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_MI=\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_thread.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_MI=\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_MI=\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_thread.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_MI=\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_MI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\include\SDL_timer.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_MI=\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_MI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\include\SDL_timer.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_MI=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_MI=\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_MI=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_MI=\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_MI=\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_MI=\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_thread.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_MI=\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_MI=\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_thread.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_MI=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_MI=\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_MI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_MI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_MI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_MI=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_MI=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_MI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_MI=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + +NODEP_CPP_SDL_MI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_MI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\audio\SDL_mixer_m68k.h"\ + "..\..\src\audio\SDL_mixer_MMX.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + "..\..\src\audio\SDL_sysaudio.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\SDL_mixer_MMX_VC.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_MIX=\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + +NODEP_CPP_SDL_MIX=\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_MIX=\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + +NODEP_CPP_SDL_MIX=\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_MIX=\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + +NODEP_CPP_SDL_MIX=\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_MIX=\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + +NODEP_CPP_SDL_MIX=\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_MIX=\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + +NODEP_CPP_SDL_MIX=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_MIX=\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + +NODEP_CPP_SDL_MIX=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_MIX=\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + +NODEP_CPP_SDL_MIX=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_MIX=\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + +NODEP_CPP_SDL_MIX=\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_MIX=\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + +NODEP_CPP_SDL_MIX=\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_MIX=\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + +NODEP_CPP_SDL_MIX=\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_MIX=\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + +NODEP_CPP_SDL_MIX=\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_MIX=\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + +NODEP_CPP_SDL_MIX=\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_MIX=\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + +NODEP_CPP_SDL_MIX=\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_MIX=\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + +NODEP_CPP_SDL_MIX=\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_MIX=\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + +NODEP_CPP_SDL_MIX=\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_MIX=\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + +NODEP_CPP_SDL_MIX=\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_MIX=\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + +NODEP_CPP_SDL_MIX=\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_MIX=\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + +NODEP_CPP_SDL_MIX=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_MIX=\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + +NODEP_CPP_SDL_MIX=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_MIX=\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + +NODEP_CPP_SDL_MIX=\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_MIX=\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + +NODEP_CPP_SDL_MIX=\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_MIX=\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + +NODEP_CPP_SDL_MIX=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_MIX=\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_MIX=\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_MIX=\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + +NODEP_CPP_SDL_MIX=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_MIX=\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + +NODEP_CPP_SDL_MIX=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_MIX=\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + +NODEP_CPP_SDL_MIX=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_MIX=\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\src\audio\SDL_mixer_MMX_VC.h"\ + +NODEP_CPP_SDL_MIX=\ + "..\include\SDL_config_wince.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\events\SDL_mouse.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_MO=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + +NODEP_CPP_SDL_MO=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_MO=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + +NODEP_CPP_SDL_MO=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_MO=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + +NODEP_CPP_SDL_MO=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_MO=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + +NODEP_CPP_SDL_MO=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_MO=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_MO=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_MO=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_MO=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_MO=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_MO=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + +NODEP_CPP_SDL_MO=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_MO=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + +NODEP_CPP_SDL_MO=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_MO=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + +NODEP_CPP_SDL_MO=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_MO=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + +NODEP_CPP_SDL_MO=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_MO=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + +NODEP_CPP_SDL_MO=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_MO=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + +NODEP_CPP_SDL_MO=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_MO=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + +NODEP_CPP_SDL_MO=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_MO=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + +NODEP_CPP_SDL_MO=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_MO=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + +NODEP_CPP_SDL_MO=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_MO=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + +NODEP_CPP_SDL_MO=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_MO=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_MO=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_MO=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_MO=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_MO=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + +NODEP_CPP_SDL_MO=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_MO=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + +NODEP_CPP_SDL_MO=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_MO=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_MO=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_MO=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_MO=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_MO=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_MO=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_MO=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_MO=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_MO=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_MO=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_MO=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\dummy\SDL_nullevents.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_N=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\dummy\SDL_nullevents_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_N=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\dummy\SDL_nullevents_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_N=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\dummy\SDL_nullevents_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_N=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\dummy\SDL_nullevents_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_N=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\dummy\SDL_nullevents_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_N=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\dummy\SDL_nullevents_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_N=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\dummy\SDL_nullevents_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_N=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\dummy\SDL_nullevents_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_N=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\dummy\SDL_nullevents_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_N=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\dummy\SDL_nullevents_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_N=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\dummy\SDL_nullevents_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_N=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\dummy\SDL_nullevents_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\dummy\SDL_nullmouse.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_NU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\dummy\SDL_nullmouse_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_NU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\dummy\SDL_nullmouse_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_NU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\dummy\SDL_nullmouse_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_NU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\dummy\SDL_nullmouse_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_NU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\dummy\SDL_nullmouse_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_NU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\dummy\SDL_nullmouse_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_NU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\dummy\SDL_nullmouse_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_NU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\dummy\SDL_nullmouse_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_NU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\dummy\SDL_nullmouse_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_NU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\dummy\SDL_nullmouse_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_NU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\dummy\SDL_nullmouse_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_NU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\dummy\SDL_nullmouse_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\dummy\SDL_nullvideo.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_NUL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\dummy\SDL_nullevents_c.h"\ + "..\..\src\video\dummy\SDL_nullmouse_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_NUL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\dummy\SDL_nullevents_c.h"\ + "..\..\src\video\dummy\SDL_nullmouse_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_NUL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\dummy\SDL_nullevents_c.h"\ + "..\..\src\video\dummy\SDL_nullmouse_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_NUL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\dummy\SDL_nullevents_c.h"\ + "..\..\src\video\dummy\SDL_nullmouse_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_NUL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\dummy\SDL_nullevents_c.h"\ + "..\..\src\video\dummy\SDL_nullmouse_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_NUL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\dummy\SDL_nullevents_c.h"\ + "..\..\src\video\dummy\SDL_nullmouse_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_NUL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\dummy\SDL_nullevents_c.h"\ + "..\..\src\video\dummy\SDL_nullmouse_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_NUL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\dummy\SDL_nullevents_c.h"\ + "..\..\src\video\dummy\SDL_nullmouse_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_NUL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\dummy\SDL_nullevents_c.h"\ + "..\..\src\video\dummy\SDL_nullmouse_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_NUL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\dummy\SDL_nullevents_c.h"\ + "..\..\src\video\dummy\SDL_nullmouse_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_NUL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\dummy\SDL_nullevents_c.h"\ + "..\..\src\video\dummy\SDL_nullmouse_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_NUL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\dummy\SDL_nullevents_c.h"\ + "..\..\src\video\dummy\SDL_nullmouse_c.h"\ + "..\..\src\video\dummy\SDL_nullvideo.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_pixels.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_P=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_P=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_P=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_P=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_P=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_P=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_P=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_P=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_P=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_P=\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_P=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_P=\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_P=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_P=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_P=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_P=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_P=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_P=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_P=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_P=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_P=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_P=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_P=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_P=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_P=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_P=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_P=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_P=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_P=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_P=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_P=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_P=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_P=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_P=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_P=\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_P=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_P=\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_P=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_P=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_P=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_P=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_P=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_P=\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_P=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_P=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_P=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_P=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_P=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_P=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_P=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_P=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_P=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\stdlib\SDL_qsort.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +NODEP_CPP_SDL_Q=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +NODEP_CPP_SDL_Q=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +NODEP_CPP_SDL_Q=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +NODEP_CPP_SDL_Q=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_Q=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_Q=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_Q=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_Q=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_Q=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_Q=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +NODEP_CPP_SDL_Q=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +NODEP_CPP_SDL_Q=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +NODEP_CPP_SDL_Q=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +NODEP_CPP_SDL_Q=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +NODEP_CPP_SDL_Q=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +NODEP_CPP_SDL_Q=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +NODEP_CPP_SDL_Q=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +NODEP_CPP_SDL_Q=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +NODEP_CPP_SDL_Q=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +NODEP_CPP_SDL_Q=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_Q=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_Q=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_Q=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_Q=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +NODEP_CPP_SDL_Q=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +NODEP_CPP_SDL_Q=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_Q=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_Q=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_Q=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_Q=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_Q=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_Q=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_Q=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_Q=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_Q=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_Q=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_Q=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_Q=\ + "..\include\SDL_config_wince.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\events\SDL_quit.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_QU=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_QU=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_QU=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_QU=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_QU=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_QU=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_QU=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_QU=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_QU=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_QU=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_QU=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_QU=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_QU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_QU=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_QU=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_QU=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_QU=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_QU=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_QU=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_QU=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_QU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_QU=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_QU=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_QU=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_QU=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_QU=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_QU=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_QU=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_QU=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_QU=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_QU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_QU=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_QU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_QU=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_QU=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_QU=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_QU=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_QU=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_QU=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_QU=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_QU=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_QU=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_QU=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_QU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_QU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_QU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_QU=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_QU=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_QU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_QU=\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_QU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_video.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_QU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\events\SDL_resize.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_R=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_R=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_R=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_R=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_R=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_R=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_R=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_R=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_R=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_R=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_R=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_R=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_R=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_R=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_R=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_R=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_R=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_R=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_R=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_R=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_R=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_R=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_R=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_R=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_R=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_R=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_R=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_R=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_R=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_R=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_R=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_R=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_R=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_R=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_R=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_R=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_R=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_R=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_R=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_R=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + +NODEP_CPP_SDL_R=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_R=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_R=\ + ".\DL_active.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_R=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_R=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_R=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_R=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_R=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_R=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_R=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_R=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_R=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_RLEaccel.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_RL=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_RL=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_RL=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_RL=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_RL=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_RL=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_RL=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_RL=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_RL=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_RL=\ + "..\..\src\video\SDL_memops.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_RL=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_RL=\ + "..\..\src\video\SDL_memops.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_RL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_RL=\ + "..\..\src\video\SDL_memops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_RL=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_RL=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_RL=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_RL=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_RL=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_RL=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_RL=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_RL=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_RL=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_RL=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_RL=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_RL=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_RL=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_RL=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_RL=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_RL=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_RL=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_RL=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_RL=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_RL=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_RL=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_RL=\ + "..\..\src\video\SDL_memops.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_RL=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_RL=\ + "..\..\src\video\SDL_memops.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_RL=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_RL=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_RL=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_RL=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_RL=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_RL=\ + "..\..\src\video\SDL_memops.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_RL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_RL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_RL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_RL=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_RL=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_RL=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_RL=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_RL=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_RL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\mmx.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_RL=\ + "..\..\src\video\SDL_memops.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\file\SDL_rwops.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_RW=\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_RW=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_rwops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_RW=\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_RW=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_rwops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_RW=\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_RW=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_rwops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_RW=\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_RW=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_rwops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_RW=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_RW=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_RW=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_RW=\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_RW=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_rwops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_RW=\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_RW=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_rwops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_RW=\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_RW=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_rwops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +NODEP_CPP_SDL_RW=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_RW=\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_RW=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_rwops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_RW=\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_RW=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_rwops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_RW=\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_RW=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_rwops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_RW=\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_RW=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_rwops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +NODEP_CPP_SDL_RW=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +NODEP_CPP_SDL_RW=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_RW=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_RW=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_RW=\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_RW=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_rwops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_RW=\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_RW=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_rwops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_RW=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_RW=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_RW=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_RW=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_RW=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_RW=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_RW=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_RW=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_RW=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_RW=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_stretch.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +NODEP_CPP_SDL_S=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +NODEP_CPP_SDL_S=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +NODEP_CPP_SDL_S=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +NODEP_CPP_SDL_S=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_S=\ + "..\..\include\SDL_endian.h"\ + "..\..\src\video\SDL_blit.h"\ + +NODEP_CPP_SDL_S=\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_S=\ + "..\..\include\SDL_endian.h"\ + "..\..\src\video\SDL_blit.h"\ + +NODEP_CPP_SDL_S=\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_S=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +NODEP_CPP_SDL_S=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +NODEP_CPP_SDL_S=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +NODEP_CPP_SDL_S=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +NODEP_CPP_SDL_S=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +NODEP_CPP_SDL_S=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +NODEP_CPP_SDL_S=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +NODEP_CPP_SDL_S=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +NODEP_CPP_SDL_S=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +NODEP_CPP_SDL_S=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +NODEP_CPP_SDL_S=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_S=\ + "..\..\include\SDL_endian.h"\ + "..\..\src\video\SDL_blit.h"\ + +NODEP_CPP_SDL_S=\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_S=\ + "..\..\include\SDL_endian.h"\ + "..\..\src\video\SDL_blit.h"\ + +NODEP_CPP_SDL_S=\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +NODEP_CPP_SDL_S=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +NODEP_CPP_SDL_S=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_S=\ + "..\..\include\SDL_endian.h"\ + "..\..\src\video\SDL_blit.h"\ + +NODEP_CPP_SDL_S=\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_S=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_S=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_S=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + +NODEP_CPP_SDL_S=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_S=\ + "..\..\include\SDL_endian.h"\ + +NODEP_CPP_SDL_S=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_S=\ + "..\..\include\SDL_endian.h"\ + +NODEP_CPP_SDL_S=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_S=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\stdlib\SDL_string.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +NODEP_CPP_SDL_ST=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +NODEP_CPP_SDL_ST=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +NODEP_CPP_SDL_ST=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +NODEP_CPP_SDL_ST=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_ST=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_ST=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_ST=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_ST=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_ST=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_ST=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +NODEP_CPP_SDL_ST=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +NODEP_CPP_SDL_ST=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +NODEP_CPP_SDL_ST=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +NODEP_CPP_SDL_ST=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +NODEP_CPP_SDL_ST=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +NODEP_CPP_SDL_ST=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +NODEP_CPP_SDL_ST=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +NODEP_CPP_SDL_ST=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +NODEP_CPP_SDL_ST=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +NODEP_CPP_SDL_ST=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_ST=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_ST=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_ST=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_ST=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +NODEP_CPP_SDL_ST=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +NODEP_CPP_SDL_ST=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_ST=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_ST=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_ST=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_ST=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_ST=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_ST=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_ST=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_ST=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_ST=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_ST=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_ST=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_ST=\ + "..\include\SDL_config_wince.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_surface.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_SU=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_SU=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_SU=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_SU=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_SU=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_SU=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_SU=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_SU=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_SU=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_SU=\ + "..\..\src\video\SDL_memops.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_SU=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_SU=\ + "..\..\src\video\SDL_memops.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_SU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_SU=\ + "..\..\src\video\SDL_memops.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_SU=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_SU=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_SU=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_SU=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_SU=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_SU=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_SU=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_SU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_SU=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_SU=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_SU=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_SU=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_SU=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_SU=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_SU=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_SU=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_SU=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_SU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_SU=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_SU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_SU=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_SU=\ + "..\..\src\video\SDL_memops.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_SU=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_SU=\ + "..\..\src\video\SDL_memops.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_SU=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_SU=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_SU=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + +NODEP_CPP_SDL_SU=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_SU=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_SU=\ + "..\..\src\video\SDL_memops.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_SU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_SU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_SU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_SU=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_SU=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_SU=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_SU=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_SU=\ + "..\..\src\video\SDL_memops.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_SU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_leaks.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_RLEaccel_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_SU=\ + "..\..\src\video\SDL_memops.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\cdrom\dummy\SDL_syscdrom.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_SY=\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + +NODEP_CPP_SDL_SY=\ + ".\DL_cdrom.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_SY=\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + +NODEP_CPP_SDL_SY=\ + ".\DL_cdrom.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_SY=\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + +NODEP_CPP_SDL_SY=\ + ".\DL_cdrom.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_SY=\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + +NODEP_CPP_SDL_SY=\ + ".\DL_cdrom.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_SY=\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + +NODEP_CPP_SDL_SY=\ + ".\DL_cdrom.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_SY=\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + +NODEP_CPP_SDL_SY=\ + ".\DL_cdrom.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_SY=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_SY=\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + +NODEP_CPP_SDL_SY=\ + ".\DL_cdrom.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_SY=\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + +NODEP_CPP_SDL_SY=\ + ".\DL_cdrom.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_SY=\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + +NODEP_CPP_SDL_SY=\ + ".\DL_cdrom.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_SY=\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + +NODEP_CPP_SDL_SY=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_SY=\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + +NODEP_CPP_SDL_SY=\ + ".\DL_cdrom.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_SY=\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + +NODEP_CPP_SDL_SY=\ + ".\DL_cdrom.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_SY=\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + +NODEP_CPP_SDL_SY=\ + ".\DL_cdrom.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_SY=\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + +NODEP_CPP_SDL_SY=\ + ".\DL_cdrom.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_SY=\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + +NODEP_CPP_SDL_SY=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_SY=\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + +NODEP_CPP_SDL_SY=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_SY=\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + +NODEP_CPP_SDL_SY=\ + ".\DL_cdrom.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_SY=\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + +NODEP_CPP_SDL_SY=\ + ".\DL_cdrom.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_SY=\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + +NODEP_CPP_SDL_SY=\ + ".\DL_cdrom.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_SY=\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + +NODEP_CPP_SDL_SY=\ + ".\DL_cdrom.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_SY=\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + +NODEP_CPP_SDL_SY=\ + ".\DL_cdrom.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_SY=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_SY=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_SY=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + +NODEP_CPP_SDL_SY=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_SY=\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + +NODEP_CPP_SDL_SY=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_SY=\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + +NODEP_CPP_SDL_SY=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_SY=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\cdrom\SDL_syscdrom.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\thread\generic\SDL_syscond.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +NODEP_CPP_SDL_SYS=\ + "..\include\SDL_thread.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +NODEP_CPP_SDL_SYS=\ + "..\include\SDL_thread.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +NODEP_CPP_SDL_SYS=\ + "..\include\SDL_thread.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +NODEP_CPP_SDL_SYS=\ + "..\include\SDL_thread.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_SYS=\ + "..\..\include\SDL_thread.h"\ + +NODEP_CPP_SDL_SYS=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_SYS=\ + "..\..\include\SDL_thread.h"\ + +NODEP_CPP_SDL_SYS=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_SYS=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +NODEP_CPP_SDL_SYS=\ + "..\include\SDL_thread.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +NODEP_CPP_SDL_SYS=\ + "..\include\SDL_thread.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +NODEP_CPP_SDL_SYS=\ + "..\include\SDL_thread.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +NODEP_CPP_SDL_SYS=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +NODEP_CPP_SDL_SYS=\ + "..\include\SDL_thread.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +NODEP_CPP_SDL_SYS=\ + "..\include\SDL_thread.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +NODEP_CPP_SDL_SYS=\ + "..\include\SDL_thread.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +NODEP_CPP_SDL_SYS=\ + "..\include\SDL_thread.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +NODEP_CPP_SDL_SYS=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +NODEP_CPP_SDL_SYS=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_SYS=\ + "..\..\include\SDL_thread.h"\ + +NODEP_CPP_SDL_SYS=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_SYS=\ + "..\..\include\SDL_thread.h"\ + +NODEP_CPP_SDL_SYS=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +NODEP_CPP_SDL_SYS=\ + "..\include\SDL_thread.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +NODEP_CPP_SDL_SYS=\ + "..\include\SDL_thread.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_SYS=\ + "..\..\include\SDL_thread.h"\ + +NODEP_CPP_SDL_SYS=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_SYS=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_SYS=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_SYS=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + +NODEP_CPP_SDL_SYS=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_SYS=\ + "..\..\include\SDL_thread.h"\ + +NODEP_CPP_SDL_SYS=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_SYS=\ + "..\..\include\SDL_thread.h"\ + +NODEP_CPP_SDL_SYS=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_SYS=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_types.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\wincommon\SDL_sysevents.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + +NODEP_CPP_SDL_SYSE=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + +NODEP_CPP_SDL_SYSE=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + +NODEP_CPP_SDL_SYSE=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + +NODEP_CPP_SDL_SYSE=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + +NODEP_CPP_SDL_SYSE=\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + +NODEP_CPP_SDL_SYSE=\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_getenv.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + +NODEP_CPP_SDL_SYSE=\ + "..\..\src\video\wincommon\SDL_gapivideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + +NODEP_CPP_SDL_SYSE=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + +NODEP_CPP_SDL_SYSE=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + +NODEP_CPP_SDL_SYSE=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\gapi\sdl_gapivideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + +NODEP_CPP_SDL_SYSE=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + +NODEP_CPP_SDL_SYSE=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + +NODEP_CPP_SDL_SYSE=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + +NODEP_CPP_SDL_SYSE=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + +NODEP_CPP_SDL_SYSE=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\gapi\sdl_gapivideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + +NODEP_CPP_SDL_SYSE=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\gapi\sdl_gapivideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + +NODEP_CPP_SDL_SYSE=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + +NODEP_CPP_SDL_SYSE=\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + +NODEP_CPP_SDL_SYSE=\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + +NODEP_CPP_SDL_SYSE=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + +NODEP_CPP_SDL_SYSE=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + +NODEP_CPP_SDL_SYSE=\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\gapi\sdl_gapivideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\gapi\sdl_gapivideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\gapi\sdl_gapivideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + +NODEP_CPP_SDL_SYSE=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + +NODEP_CPP_SDL_SYSE=\ + "..\..\src\video\wincommon\SDL_gapivideo.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_getenv.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\gapi\sdl_gapivideo.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + +NODEP_CPP_SDL_SYSE=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_getenv.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_SYSE=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_getenv.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\gapi\sdl_gapivideo.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\wmmsg.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\joystick\dummy\SDL_sysjoystick.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_SYSJ=\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_SYSJ=\ + ".\DL_error.h"\ + ".\DL_joystick.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_SYSJ=\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_SYSJ=\ + ".\DL_error.h"\ + ".\DL_joystick.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_SYSJ=\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_SYSJ=\ + ".\DL_error.h"\ + ".\DL_joystick.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_SYSJ=\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_SYSJ=\ + ".\DL_error.h"\ + ".\DL_joystick.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_SYSJ=\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_SYSJ=\ + ".\DL_error.h"\ + ".\DL_joystick.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_SYSJ=\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_SYSJ=\ + ".\DL_error.h"\ + ".\DL_joystick.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_SYSJ=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_SYSJ=\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_SYSJ=\ + ".\DL_error.h"\ + ".\DL_joystick.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_SYSJ=\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_SYSJ=\ + ".\DL_error.h"\ + ".\DL_joystick.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_SYSJ=\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_SYSJ=\ + ".\DL_error.h"\ + ".\DL_joystick.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_SYSJ=\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_SYSJ=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_SYSJ=\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_SYSJ=\ + ".\DL_error.h"\ + ".\DL_joystick.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_SYSJ=\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_SYSJ=\ + ".\DL_error.h"\ + ".\DL_joystick.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_SYSJ=\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_SYSJ=\ + ".\DL_error.h"\ + ".\DL_joystick.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_SYSJ=\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_SYSJ=\ + ".\DL_error.h"\ + ".\DL_joystick.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_SYSJ=\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_SYSJ=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_SYSJ=\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_SYSJ=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_SYSJ=\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_SYSJ=\ + ".\DL_error.h"\ + ".\DL_joystick.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_SYSJ=\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_SYSJ=\ + ".\DL_error.h"\ + ".\DL_joystick.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_SYSJ=\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_SYSJ=\ + ".\DL_error.h"\ + ".\DL_joystick.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_SYSJ=\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_SYSJ=\ + ".\DL_error.h"\ + ".\DL_joystick.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_SYSJ=\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_SYSJ=\ + ".\DL_error.h"\ + ".\DL_joystick.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_SYSJ=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_SYSJ=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_SYSJ=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_SYSJ=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_SYSJ=\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_SYSJ=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_SYSJ=\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + +NODEP_CPP_SDL_SYSJ=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_SYSJ=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\joystick\SDL_joystick_c.h"\ + "..\..\src\joystick\SDL_sysjoystick.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\loadso\win32\SDL_sysloadso.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +NODEP_CPP_SDL_SYSL=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +NODEP_CPP_SDL_SYSL=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +NODEP_CPP_SDL_SYSL=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +NODEP_CPP_SDL_SYSL=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_SYSL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_SYSL=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_SYSL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_SYSL=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_SYSL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_SYSL=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +NODEP_CPP_SDL_SYSL=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +NODEP_CPP_SDL_SYSL=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +NODEP_CPP_SDL_SYSL=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +NODEP_CPP_SDL_SYSL=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +NODEP_CPP_SDL_SYSL=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +NODEP_CPP_SDL_SYSL=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +NODEP_CPP_SDL_SYSL=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +NODEP_CPP_SDL_SYSL=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +NODEP_CPP_SDL_SYSL=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +NODEP_CPP_SDL_SYSL=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_SYSL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_SYSL=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_SYSL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_SYSL=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +NODEP_CPP_SDL_SYSL=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +NODEP_CPP_SDL_SYSL=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_SYSL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_SYSL=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_SYSL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_SYSL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_SYSL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_SYSL=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_SYSL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_SYSL=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_SYSL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_SYSL=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_SYSL=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_SYSL=\ + "..\include\SDL_config_wince.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\wincommon\SDL_sysmouse.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + +NODEP_CPP_SDL_SYSM=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + +NODEP_CPP_SDL_SYSM=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + +NODEP_CPP_SDL_SYSM=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + +NODEP_CPP_SDL_SYSM=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + +NODEP_CPP_SDL_SYSM=\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + +NODEP_CPP_SDL_SYSM=\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + +NODEP_CPP_SDL_SYSM=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + +NODEP_CPP_SDL_SYSM=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + +NODEP_CPP_SDL_SYSM=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + +NODEP_CPP_SDL_SYSM=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + +NODEP_CPP_SDL_SYSM=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + +NODEP_CPP_SDL_SYSM=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + +NODEP_CPP_SDL_SYSM=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + +NODEP_CPP_SDL_SYSM=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + +NODEP_CPP_SDL_SYSM=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + +NODEP_CPP_SDL_SYSM=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + +NODEP_CPP_SDL_SYSM=\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + +NODEP_CPP_SDL_SYSM=\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + +NODEP_CPP_SDL_SYSM=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + +NODEP_CPP_SDL_SYSM=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + +NODEP_CPP_SDL_SYSM=\ + ".\DL_active.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + +NODEP_CPP_SDL_SYSM=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + +NODEP_CPP_SDL_SYSM=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + +NODEP_CPP_SDL_SYSM=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_SYSM=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_sysmouse_c.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\thread\win32\SDL_sysmutex.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_SYSMU=\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_SYSMU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_SYSMU=\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_SYSMU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_SYSMU=\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_SYSMU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_SYSMU=\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_SYSMU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_SYSMU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_SYSMU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_SYSMU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_SYSMU=\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_SYSMU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_SYSMU=\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_SYSMU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_SYSMU=\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_SYSMU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +NODEP_CPP_SDL_SYSMU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_SYSMU=\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_SYSMU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_SYSMU=\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_SYSMU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_SYSMU=\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_SYSMU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_SYSMU=\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_SYSMU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +NODEP_CPP_SDL_SYSMU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +NODEP_CPP_SDL_SYSMU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_SYSMU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_SYSMU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_SYSMU=\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_SYSMU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_SYSMU=\ + "..\..\include\SDL_types.h"\ + +NODEP_CPP_SDL_SYSMU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_SYSMU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_SYSMU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_SYSMU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_SYSMU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_SYSMU=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_SYSMU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_SYSMU=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_SYSMU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_SYSMU=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_SYSMU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_types.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\thread\win32\SDL_syssem.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_SYSS=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + +NODEP_CPP_SDL_SYSS=\ + "..\include\SDL_thread.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_SYSS=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + +NODEP_CPP_SDL_SYSS=\ + "..\include\SDL_thread.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_SYSS=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + +NODEP_CPP_SDL_SYSS=\ + "..\include\SDL_thread.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_SYSS=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + +NODEP_CPP_SDL_SYSS=\ + "..\include\SDL_thread.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_SYSS=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + +NODEP_CPP_SDL_SYSS=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_SYSS=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + +NODEP_CPP_SDL_SYSS=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_SYSS=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_SYSS=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + +NODEP_CPP_SDL_SYSS=\ + "..\include\SDL_thread.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_SYSS=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + +NODEP_CPP_SDL_SYSS=\ + "..\include\SDL_thread.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_SYSS=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + +NODEP_CPP_SDL_SYSS=\ + "..\include\SDL_thread.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_SYSS=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + +NODEP_CPP_SDL_SYSS=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_SYSS=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + +NODEP_CPP_SDL_SYSS=\ + "..\include\SDL_thread.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_SYSS=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + +NODEP_CPP_SDL_SYSS=\ + "..\include\SDL_thread.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_SYSS=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + +NODEP_CPP_SDL_SYSS=\ + "..\include\SDL_thread.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_SYSS=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + +NODEP_CPP_SDL_SYSS=\ + "..\include\SDL_thread.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_SYSS=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + +NODEP_CPP_SDL_SYSS=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_SYSS=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + +NODEP_CPP_SDL_SYSS=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_SYSS=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + +NODEP_CPP_SDL_SYSS=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_SYSS=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + +NODEP_CPP_SDL_SYSS=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_SYSS=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + +NODEP_CPP_SDL_SYSS=\ + "..\include\SDL_thread.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_SYSS=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + +NODEP_CPP_SDL_SYSS=\ + "..\include\SDL_thread.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_SYSS=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + +NODEP_CPP_SDL_SYSS=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_SYSS=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_SYSS=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_SYSS=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + +NODEP_CPP_SDL_SYSS=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_SYSS=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + +NODEP_CPP_SDL_SYSS=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_SYSS=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + +NODEP_CPP_SDL_SYSS=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_SYSS=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\thread\win32\SDL_systhread.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_SYST=\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_SYST=\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + "..\src\thread\win32\SDL_systhread_c.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_SYST=\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_SYST=\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + "..\src\thread\win32\SDL_systhread_c.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_SYST=\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_SYST=\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + "..\src\thread\win32\SDL_systhread_c.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_SYST=\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_SYST=\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + "..\src\thread\win32\SDL_systhread_c.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_SYST=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + "..\..\src\thread\win32\SDL_systhread_c.h"\ + +NODEP_CPP_SDL_SYST=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_SYST=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + "..\..\src\thread\win32\SDL_systhread_c.h"\ + +NODEP_CPP_SDL_SYST=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_SYST=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + "..\..\src\thread\win32\SDL_systhread_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_SYST=\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_SYST=\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + "..\src\thread\win32\SDL_systhread_c.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_SYST=\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_SYST=\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + "..\src\thread\win32\SDL_systhread_c.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_SYST=\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_SYST=\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + "..\src\thread\win32\SDL_systhread_c.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_SYST=\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + +NODEP_CPP_SDL_SYST=\ + "..\..\src\thread\amigaos\mydebug.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\amigaos\SDL_systhread_c.h"\ + "..\src\thread\beos\SDL_systhread_c.h"\ + "..\src\thread\dc\SDL_systhread_c.h"\ + "..\src\thread\epoc\SDL_systhread_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\irix\SDL_systhread_c.h"\ + "..\src\thread\os2\SDL_systhread_c.h"\ + "..\src\thread\pth\SDL_systhread_c.h"\ + "..\src\thread\pthread\SDL_systhread_c.h"\ + "..\src\thread\win32\SDL_systhread_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_SYST=\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_SYST=\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + "..\src\thread\win32\SDL_systhread_c.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_SYST=\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_SYST=\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + "..\src\thread\win32\SDL_systhread_c.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_SYST=\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_SYST=\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + "..\src\thread\win32\SDL_systhread_c.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_SYST=\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_SYST=\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + "..\src\thread\win32\SDL_systhread_c.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_SYST=\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + +NODEP_CPP_SDL_SYST=\ + "..\..\src\thread\amigaos\mydebug.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\amigaos\SDL_systhread_c.h"\ + "..\src\thread\beos\SDL_systhread_c.h"\ + "..\src\thread\dc\SDL_systhread_c.h"\ + "..\src\thread\epoc\SDL_systhread_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\irix\SDL_systhread_c.h"\ + "..\src\thread\os2\SDL_systhread_c.h"\ + "..\src\thread\pth\SDL_systhread_c.h"\ + "..\src\thread\pthread\SDL_systhread_c.h"\ + "..\src\thread\win32\SDL_systhread_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_SYST=\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + +NODEP_CPP_SDL_SYST=\ + "..\..\src\thread\amigaos\mydebug.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\amigaos\SDL_systhread_c.h"\ + "..\src\thread\beos\SDL_systhread_c.h"\ + "..\src\thread\dc\SDL_systhread_c.h"\ + "..\src\thread\epoc\SDL_systhread_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\irix\SDL_systhread_c.h"\ + "..\src\thread\os2\SDL_systhread_c.h"\ + "..\src\thread\pth\SDL_systhread_c.h"\ + "..\src\thread\pthread\SDL_systhread_c.h"\ + "..\src\thread\win32\SDL_systhread_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_SYST=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + "..\..\src\thread\win32\SDL_systhread_c.h"\ + +NODEP_CPP_SDL_SYST=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_SYST=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + "..\..\src\thread\win32\SDL_systhread_c.h"\ + +NODEP_CPP_SDL_SYST=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_SYST=\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_SYST=\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + "..\src\thread\win32\SDL_systhread_c.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_SYST=\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_SYST=\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + "..\src\thread\win32\SDL_systhread_c.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_SYST=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + "..\..\src\thread\win32\SDL_systhread_c.h"\ + +NODEP_CPP_SDL_SYST=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_SYST=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\amigaos\SDL_systhread_c.h"\ + "..\..\src\thread\beos\SDL_systhread_c.h"\ + "..\..\src\thread\dc\SDL_systhread_c.h"\ + "..\..\src\thread\epoc\SDL_systhread_c.h"\ + "..\..\src\thread\generic\SDL_systhread_c.h"\ + "..\..\src\thread\irix\SDL_systhread_c.h"\ + "..\..\src\thread\os2\SDL_systhread_c.h"\ + "..\..\src\thread\pth\SDL_systhread_c.h"\ + "..\..\src\thread\pthread\SDL_systhread_c.h"\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + "..\..\src\thread\win32\SDL_systhread_c.h"\ + +NODEP_CPP_SDL_SYST=\ + "..\..\src\thread\amigaos\mydebug.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_SYST=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\amigaos\SDL_systhread_c.h"\ + "..\..\src\thread\beos\SDL_systhread_c.h"\ + "..\..\src\thread\dc\SDL_systhread_c.h"\ + "..\..\src\thread\epoc\SDL_systhread_c.h"\ + "..\..\src\thread\generic\SDL_systhread_c.h"\ + "..\..\src\thread\irix\SDL_systhread_c.h"\ + "..\..\src\thread\os2\SDL_systhread_c.h"\ + "..\..\src\thread\pth\SDL_systhread_c.h"\ + "..\..\src\thread\pthread\SDL_systhread_c.h"\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + "..\..\src\thread\win32\SDL_systhread_c.h"\ + +NODEP_CPP_SDL_SYST=\ + "..\..\src\thread\amigaos\mydebug.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_SYST=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\amigaos\SDL_systhread_c.h"\ + "..\..\src\thread\beos\SDL_systhread_c.h"\ + "..\..\src\thread\dc\SDL_systhread_c.h"\ + "..\..\src\thread\epoc\SDL_systhread_c.h"\ + "..\..\src\thread\generic\SDL_systhread_c.h"\ + "..\..\src\thread\irix\SDL_systhread_c.h"\ + "..\..\src\thread\os2\SDL_systhread_c.h"\ + "..\..\src\thread\pth\SDL_systhread_c.h"\ + "..\..\src\thread\pthread\SDL_systhread_c.h"\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + "..\..\src\thread\win32\SDL_systhread_c.h"\ + +NODEP_CPP_SDL_SYST=\ + "..\..\..\..\usr\include\pthread.h"\ + "..\..\src\thread\amigaos\mydebug.h"\ + "..\include\SDL_config_wince.h"\ + ".\onfig\_epilog.h"\ + ".\onfig\_msvc_warnings_off.h"\ + ".\onfig\_prolog.h"\ + ".\onfig\stl_apcc.h"\ + ".\onfig\stl_apple.h"\ + ".\onfig\stl_as400.h"\ + ".\onfig\stl_bc.h"\ + ".\onfig\stl_como.h"\ + ".\onfig\stl_confix.h"\ + ".\onfig\stl_dec.h"\ + ".\onfig\stl_dec_vms.h"\ + ".\onfig\stl_fujitsu.h"\ + ".\onfig\stl_gcc.h"\ + ".\onfig\stl_hpacc.h"\ + ".\onfig\stl_ibm.h"\ + ".\onfig\stl_intel.h"\ + ".\onfig\stl_kai.h"\ + ".\onfig\stl_msvc.h"\ + ".\onfig\stl_mwerks.h"\ + ".\onfig\stl_mycomp.h"\ + ".\onfig\stl_sco.h"\ + ".\onfig\stl_select_lib.h"\ + ".\onfig\stl_sgi.h"\ + ".\onfig\stl_solaris.h"\ + ".\onfig\stl_sunpro.h"\ + ".\onfig\stl_symantec.h"\ + ".\onfig\stl_watcom.h"\ + ".\onfig\stl_wince.h"\ + ".\onfig\stlcomp.h"\ + ".\onfig\vc_select_lib.h"\ + ".\thread.h"\ + ".\tl\_abbrevs.h"\ + ".\tl\_config.h"\ + ".\tl\_config_compat.h"\ + ".\tl\_config_compat_post.h"\ + ".\tl\_epilog.h"\ + ".\tl\_prolog.h"\ + ".\tl\_site_config.h"\ + ".\tl_user_config.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_SYST=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\win32\SDL_systhread_c.h"\ + +NODEP_CPP_SDL_SYST=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_types.h"\ + "..\src\thread\SDL_thread_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_SYST=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\win32\SDL_systhread_c.h"\ + +NODEP_CPP_SDL_SYST=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_types.h"\ + "..\src\thread\SDL_thread_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_SYST=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + "..\..\src\thread\win32\SDL_systhread_c.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\timer\wince\SDL_systimer.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_SYSTI=\ + "..\..\include\SDL_types.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_SYSTI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_timer.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_SYSTI=\ + "..\..\include\SDL_types.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_SYSTI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_timer.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_SYSTI=\ + "..\..\include\SDL_types.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_SYSTI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_timer.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_SYSTI=\ + "..\..\include\SDL_types.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_SYSTI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_timer.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_SYSTI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_SYSTI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_SYSTI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_SYSTI=\ + "..\..\include\SDL_types.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_SYSTI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_timer.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_SYSTI=\ + "..\..\include\SDL_types.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_SYSTI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_timer.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_SYSTI=\ + "..\..\include\SDL_types.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_SYSTI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_timer.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_SYSTI=\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_SYSTI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_timer.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_SYSTI=\ + "..\..\include\SDL_types.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_SYSTI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_timer.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_SYSTI=\ + "..\..\include\SDL_types.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_SYSTI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_timer.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_SYSTI=\ + "..\..\include\SDL_types.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_SYSTI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_timer.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_SYSTI=\ + "..\..\include\SDL_types.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_SYSTI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_timer.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_SYSTI=\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_SYSTI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_timer.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_SYSTI=\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_SYSTI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_timer.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_SYSTI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_SYSTI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_SYSTI=\ + "..\..\include\SDL_types.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_SYSTI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_timer.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_SYSTI=\ + "..\..\include\SDL_types.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_SYSTI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_timer.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_SYSTI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_SYSTI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_SYSTI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_SYSTI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_SYSTI=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_SYSTI=\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_SYSTI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_SYSTI=\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_SYSTI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_SYSTI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\wincommon\SDL_syswm.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_SYSW=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_SYSW=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_SYSW=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_SYSW=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_SYSW=\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_SYSW=\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_SYSW=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_SYSW=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_SYSW=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_SYSW=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_SYSW=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_SYSW=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_SYSW=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_SYSW=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_SYSW=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_SYSW=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_SYSW=\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_SYSW=\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_SYSW=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_SYSW=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_SYSW=\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_SYSW=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_SYSW=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_SYSW=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_SYSW=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_syswm_c.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\thread\SDL_thread.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_T=\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_T=\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_T=\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_T=\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_T=\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_T=\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_T=\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_T=\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_T=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\generic\SDL_systhread_c.h"\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + +NODEP_CPP_SDL_T=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_T=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\generic\SDL_systhread_c.h"\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + +NODEP_CPP_SDL_T=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_T=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\generic\SDL_systhread_c.h"\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_T=\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_T=\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_T=\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_T=\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_T=\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_T=\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_T=\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + +NODEP_CPP_SDL_T=\ + "..\..\src\thread\amigaos\mydebug.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\amigaos\SDL_systhread_c.h"\ + "..\src\thread\beos\SDL_systhread_c.h"\ + "..\src\thread\dc\SDL_systhread_c.h"\ + "..\src\thread\epoc\SDL_systhread_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\irix\SDL_systhread_c.h"\ + "..\src\thread\os2\SDL_systhread_c.h"\ + "..\src\thread\pth\SDL_systhread_c.h"\ + "..\src\thread\pthread\SDL_systhread_c.h"\ + "..\src\thread\win32\SDL_systhread_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_T=\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_T=\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_T=\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_T=\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_T=\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_T=\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_T=\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_T=\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_T=\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + +NODEP_CPP_SDL_T=\ + "..\..\src\thread\amigaos\mydebug.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\amigaos\SDL_systhread_c.h"\ + "..\src\thread\beos\SDL_systhread_c.h"\ + "..\src\thread\dc\SDL_systhread_c.h"\ + "..\src\thread\epoc\SDL_systhread_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\irix\SDL_systhread_c.h"\ + "..\src\thread\os2\SDL_systhread_c.h"\ + "..\src\thread\pth\SDL_systhread_c.h"\ + "..\src\thread\pthread\SDL_systhread_c.h"\ + "..\src\thread\win32\SDL_systhread_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_T=\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + +NODEP_CPP_SDL_T=\ + "..\..\src\thread\amigaos\mydebug.h"\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\amigaos\SDL_systhread_c.h"\ + "..\src\thread\beos\SDL_systhread_c.h"\ + "..\src\thread\dc\SDL_systhread_c.h"\ + "..\src\thread\epoc\SDL_systhread_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\irix\SDL_systhread_c.h"\ + "..\src\thread\os2\SDL_systhread_c.h"\ + "..\src\thread\pth\SDL_systhread_c.h"\ + "..\src\thread\pthread\SDL_systhread_c.h"\ + "..\src\thread\win32\SDL_systhread_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_T=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\generic\SDL_systhread_c.h"\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + +NODEP_CPP_SDL_T=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_T=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\generic\SDL_systhread_c.h"\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + +NODEP_CPP_SDL_T=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_T=\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_T=\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_T=\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_T=\ + "..\include\SDL_thread.h"\ + "..\src\SDL_error_c.h"\ + "..\src\thread\generic\SDL_systhread_c.h"\ + "..\src\thread\SDL_thread_c.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_T=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\generic\SDL_systhread_c.h"\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + +NODEP_CPP_SDL_T=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_T=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\amigaos\SDL_systhread_c.h"\ + "..\..\src\thread\beos\SDL_systhread_c.h"\ + "..\..\src\thread\dc\SDL_systhread_c.h"\ + "..\..\src\thread\epoc\SDL_systhread_c.h"\ + "..\..\src\thread\generic\SDL_systhread_c.h"\ + "..\..\src\thread\irix\SDL_systhread_c.h"\ + "..\..\src\thread\os2\SDL_systhread_c.h"\ + "..\..\src\thread\pth\SDL_systhread_c.h"\ + "..\..\src\thread\pthread\SDL_systhread_c.h"\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + "..\..\src\thread\win32\SDL_systhread_c.h"\ + +NODEP_CPP_SDL_T=\ + "..\..\src\thread\amigaos\mydebug.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_T=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\amigaos\SDL_systhread_c.h"\ + "..\..\src\thread\beos\SDL_systhread_c.h"\ + "..\..\src\thread\dc\SDL_systhread_c.h"\ + "..\..\src\thread\epoc\SDL_systhread_c.h"\ + "..\..\src\thread\generic\SDL_systhread_c.h"\ + "..\..\src\thread\irix\SDL_systhread_c.h"\ + "..\..\src\thread\os2\SDL_systhread_c.h"\ + "..\..\src\thread\pth\SDL_systhread_c.h"\ + "..\..\src\thread\pthread\SDL_systhread_c.h"\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + "..\..\src\thread\win32\SDL_systhread_c.h"\ + +NODEP_CPP_SDL_T=\ + "..\..\src\thread\amigaos\mydebug.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_T=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\amigaos\SDL_systhread_c.h"\ + "..\..\src\thread\beos\SDL_systhread_c.h"\ + "..\..\src\thread\dc\SDL_systhread_c.h"\ + "..\..\src\thread\epoc\SDL_systhread_c.h"\ + "..\..\src\thread\generic\SDL_systhread_c.h"\ + "..\..\src\thread\irix\SDL_systhread_c.h"\ + "..\..\src\thread\os2\SDL_systhread_c.h"\ + "..\..\src\thread\pth\SDL_systhread_c.h"\ + "..\..\src\thread\pthread\SDL_systhread_c.h"\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + "..\..\src\thread\win32\SDL_systhread_c.h"\ + +NODEP_CPP_SDL_T=\ + "..\..\..\..\usr\include\pthread.h"\ + "..\..\src\thread\amigaos\mydebug.h"\ + "..\include\SDL_config_wince.h"\ + ".\onfig\_epilog.h"\ + ".\onfig\_msvc_warnings_off.h"\ + ".\onfig\_prolog.h"\ + ".\onfig\stl_apcc.h"\ + ".\onfig\stl_apple.h"\ + ".\onfig\stl_as400.h"\ + ".\onfig\stl_bc.h"\ + ".\onfig\stl_como.h"\ + ".\onfig\stl_confix.h"\ + ".\onfig\stl_dec.h"\ + ".\onfig\stl_dec_vms.h"\ + ".\onfig\stl_fujitsu.h"\ + ".\onfig\stl_gcc.h"\ + ".\onfig\stl_hpacc.h"\ + ".\onfig\stl_ibm.h"\ + ".\onfig\stl_intel.h"\ + ".\onfig\stl_kai.h"\ + ".\onfig\stl_msvc.h"\ + ".\onfig\stl_mwerks.h"\ + ".\onfig\stl_mycomp.h"\ + ".\onfig\stl_sco.h"\ + ".\onfig\stl_select_lib.h"\ + ".\onfig\stl_sgi.h"\ + ".\onfig\stl_solaris.h"\ + ".\onfig\stl_sunpro.h"\ + ".\onfig\stl_symantec.h"\ + ".\onfig\stl_watcom.h"\ + ".\onfig\stl_wince.h"\ + ".\onfig\stlcomp.h"\ + ".\onfig\vc_select_lib.h"\ + ".\thread.h"\ + ".\tl\_abbrevs.h"\ + ".\tl\_config.h"\ + ".\tl\_config_compat.h"\ + ".\tl\_config_compat_post.h"\ + ".\tl\_epilog.h"\ + ".\tl\_prolog.h"\ + ".\tl\_site_config.h"\ + ".\tl_user_config.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_T=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\generic\SDL_systhread_c.h"\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_T=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_types.h"\ + "..\src\thread\SDL_thread_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_T=\ + "..\..\include\SDL_thread.h"\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\generic\SDL_systhread_c.h"\ + "..\..\src\thread\SDL_systhread.h"\ + +NODEP_CPP_SDL_T=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_types.h"\ + "..\src\thread\SDL_thread_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_T=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\SDL_error_c.h"\ + "..\..\src\thread\generic\SDL_systhread_c.h"\ + "..\..\src\thread\SDL_systhread.h"\ + "..\..\src\thread\SDL_thread_c.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\timer\SDL_timer.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_TI=\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_TI=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_TI=\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_TI=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_TI=\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_TI=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_TI=\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_TI=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_TI=\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_TI=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_TI=\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_TI=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_TI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_TI=\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_TI=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_TI=\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_TI=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_TI=\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_TI=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_TI=\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_TI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_timer.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_TI=\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_TI=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_TI=\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_TI=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_TI=\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_TI=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_TI=\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_TI=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_TI=\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_TI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_timer.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_TI=\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_TI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_timer.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_TI=\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_TI=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_TI=\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_TI=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_TI=\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_TI=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_TI=\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_TI=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_TI=\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_TI=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mutex.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_TI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_TI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_TI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_TI=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_TI=\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_TI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_TI=\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + +NODEP_CPP_SDL_TI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_TI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\timer\SDL_systimer.h"\ + "..\..\src\timer\SDL_timer_c.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_video.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_V=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_V=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_V=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_V=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_V=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_V=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_V=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_V=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_V=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_V=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_V=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_V=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_V=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_getenv.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_V=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_V=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_V=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_V=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_V=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_V=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_V=\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_V=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_V=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_V=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_V=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_V=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_V=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_V=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_V=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_V=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_V=\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_V=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_V=\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_V=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_V=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_V=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_V=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_V=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_V=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_V=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_V=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + +NODEP_CPP_SDL_V=\ + "..\include\SDL_endian.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_V=\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_V=\ + ".\DL.h"\ + ".\DL_active.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_cdrom.h"\ + ".\DL_error.h"\ + ".\DL_events.h"\ + ".\DL_getenv.h"\ + ".\DL_joystick.h"\ + ".\DL_keyboard.h"\ + ".\DL_keysym.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_quit.h"\ + ".\DL_rwops.h"\ + ".\DL_timer.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_V=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_V=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_V=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_V=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_V=\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_V=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_getenv.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_V=\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + +NODEP_CPP_SDL_V=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_active.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_cdrom.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_events.h"\ + "..\include\SDL_getenv.h"\ + "..\include\SDL_joystick.h"\ + "..\include\SDL_keyboard.h"\ + "..\include\SDL_keysym.h"\ + "..\include\SDL_loadso.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_quit.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_timer.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_blit.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_V=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL.h"\ + "..\..\include\SDL_active.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_cdrom.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_events.h"\ + "..\..\include\SDL_getenv.h"\ + "..\..\include\SDL_joystick.h"\ + "..\..\include\SDL_keyboard.h"\ + "..\..\include\SDL_keysym.h"\ + "..\..\include\SDL_loadso.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_quit.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_timer.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\events\SDL_events_c.h"\ + "..\..\src\events\SDL_sysevents.h"\ + "..\..\src\video\SDL_blit.h"\ + "..\..\src\video\SDL_cursor_c.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_pixels_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\SDL_wave.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_W=\ + "..\..\src\audio\SDL_wave.h"\ + +NODEP_CPP_SDL_W=\ + "..\include\SDL_endian.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_W=\ + "..\..\src\audio\SDL_wave.h"\ + +NODEP_CPP_SDL_W=\ + "..\include\SDL_endian.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_W=\ + "..\..\src\audio\SDL_wave.h"\ + +NODEP_CPP_SDL_W=\ + "..\include\SDL_endian.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_W=\ + "..\..\src\audio\SDL_wave.h"\ + +NODEP_CPP_SDL_W=\ + "..\include\SDL_endian.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_W=\ + "..\..\include\SDL_endian.h"\ + "..\..\src\audio\SDL_wave.h"\ + +NODEP_CPP_SDL_W=\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_W=\ + "..\..\include\SDL_endian.h"\ + "..\..\src\audio\SDL_wave.h"\ + +NODEP_CPP_SDL_W=\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_W=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\audio\SDL_wave.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_W=\ + "..\..\src\audio\SDL_wave.h"\ + +NODEP_CPP_SDL_W=\ + "..\include\SDL_endian.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_W=\ + "..\..\src\audio\SDL_wave.h"\ + +NODEP_CPP_SDL_W=\ + "..\include\SDL_endian.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_W=\ + "..\..\src\audio\SDL_wave.h"\ + +NODEP_CPP_SDL_W=\ + "..\include\SDL_endian.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_W=\ + "..\..\src\audio\SDL_wave.h"\ + +NODEP_CPP_SDL_W=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_W=\ + "..\..\src\audio\SDL_wave.h"\ + +NODEP_CPP_SDL_W=\ + "..\include\SDL_endian.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_W=\ + "..\..\src\audio\SDL_wave.h"\ + +NODEP_CPP_SDL_W=\ + "..\include\SDL_endian.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_W=\ + "..\..\src\audio\SDL_wave.h"\ + +NODEP_CPP_SDL_W=\ + "..\include\SDL_endian.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_W=\ + "..\..\src\audio\SDL_wave.h"\ + +NODEP_CPP_SDL_W=\ + "..\include\SDL_endian.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_W=\ + "..\..\src\audio\SDL_wave.h"\ + +NODEP_CPP_SDL_W=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_W=\ + "..\..\src\audio\SDL_wave.h"\ + +NODEP_CPP_SDL_W=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_endian.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_thread.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_W=\ + "..\..\include\SDL_endian.h"\ + "..\..\src\audio\SDL_wave.h"\ + +NODEP_CPP_SDL_W=\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_W=\ + "..\..\include\SDL_endian.h"\ + "..\..\src\audio\SDL_wave.h"\ + +NODEP_CPP_SDL_W=\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_W=\ + "..\..\src\audio\SDL_wave.h"\ + +NODEP_CPP_SDL_W=\ + "..\include\SDL_endian.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_W=\ + "..\..\src\audio\SDL_wave.h"\ + +NODEP_CPP_SDL_W=\ + "..\include\SDL_endian.h"\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_W=\ + "..\..\include\SDL_endian.h"\ + "..\..\src\audio\SDL_wave.h"\ + +NODEP_CPP_SDL_W=\ + ".\DL_audio.h"\ + ".\DL_byteorder.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_W=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\audio\SDL_wave.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_W=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\audio\SDL_wave.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_W=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_thread.h"\ + "..\..\src\audio\SDL_wave.h"\ + +NODEP_CPP_SDL_W=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_W=\ + "..\..\include\SDL_endian.h"\ + "..\..\src\audio\SDL_wave.h"\ + +NODEP_CPP_SDL_W=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_W=\ + "..\..\include\SDL_endian.h"\ + "..\..\src\audio\SDL_wave.h"\ + +NODEP_CPP_SDL_W=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_audio.h"\ + "..\include\SDL_byteorder.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_W=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_audio.h"\ + "..\..\include\SDL_byteorder.h"\ + "..\..\include\SDL_endian.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_types.h"\ + "..\..\src\audio\SDL_wave.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\wincommon\SDL_wingl.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_WI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_WI=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_WI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_WI=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_WI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_WI=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_WI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_WI=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_WI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_WI=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_WI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_WI=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_WI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_WI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_WI=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_WI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_WI=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_WI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_WI=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_WI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_WI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_WI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_WI=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_WI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_WI=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_WI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_WI=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_WI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_WI=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_WI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_WI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_WI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_WI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_WI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_WI=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_WI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_WI=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_WI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_WI=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_WI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_WI=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_WI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_WI=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_WI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_WI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_WI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_WI=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_WI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_WI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_WI=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + +NODEP_CPP_SDL_WI=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\wincommon\SDL_lowvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_WI=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\wincommon\SDL_lowvideo.h"\ + "..\..\src\video\wincommon\SDL_wingl_c.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_yuv.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_Y=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_Y=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_Y=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_Y=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_Y=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_Y=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_Y=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_Y=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_Y=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_Y=\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_Y=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_Y=\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_Y=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_getenv.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_Y=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_Y=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_Y=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_Y=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_Y=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_Y=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_Y=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_Y=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_Y=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_Y=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_Y=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_Y=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_Y=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_Y=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_Y=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_Y=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_Y=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_Y=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_Y=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_Y=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_Y=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_Y=\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_Y=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_Y=\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_Y=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_Y=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_Y=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_Y=\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_Y=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_Y=\ + ".\DL_error.h"\ + ".\DL_getenv.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_Y=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_Y=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_Y=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_Y=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_Y=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_Y=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_getenv.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_Y=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_Y=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_getenv.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_Y=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_getenv.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_yuv_mmx.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_YU=\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_YU=\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_YU=\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_YU=\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_YU=\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_YU=\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_YU=\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_YU=\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_YU=\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_YU=\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +NODEP_CPP_SDL_YU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_YU=\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_YU=\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_YU=\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_YU=\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +NODEP_CPP_SDL_YU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +NODEP_CPP_SDL_YU=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_YU=\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_YU=\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_YU=\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_YU=\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_YU=\ + "..\..\include\SDL_types.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_YU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_YU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_YU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_YU=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_YU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_YU=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_YU=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_stdinc.h"\ + +NODEP_CPP_SDL_YU=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_YU=\ + "..\..\include\SDL_types.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_yuv_sw.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_SDL_YUV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_YUV=\ + "..\include\SDL_cpuinfo.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_SDL_YUV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_YUV=\ + "..\include\SDL_cpuinfo.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_SDL_YUV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_YUV=\ + "..\include\SDL_cpuinfo.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_SDL_YUV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_YUV=\ + "..\include\SDL_cpuinfo.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_SDL_YUV=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_YUV=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_SDL_YUV=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_YUV=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_SDL_YUV=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_SDL_YUV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_YUV=\ + "..\include\SDL_cpuinfo.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_SDL_YUV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_YUV=\ + "..\include\SDL_cpuinfo.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_SDL_YUV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_YUV=\ + "..\include\SDL_cpuinfo.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_SDL_YUV=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_YUV=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_SDL_YUV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_YUV=\ + "..\include\SDL_cpuinfo.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_SDL_YUV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_YUV=\ + "..\include\SDL_cpuinfo.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_SDL_YUV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_YUV=\ + "..\include\SDL_cpuinfo.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_SDL_YUV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_YUV=\ + "..\include\SDL_cpuinfo.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_SDL_YUV=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_YUV=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_SDL_YUV=\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_YUV=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_config.h"\ + "..\include\SDL_config_amiga.h"\ + "..\include\SDL_config_dreamcast.h"\ + "..\include\SDL_config_macos.h"\ + "..\include\SDL_config_macosx.h"\ + "..\include\SDL_config_os2.h"\ + "..\include\SDL_config_win32.h"\ + "..\include\SDL_config_wince.h"\ + "..\include\SDL_cpuinfo.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_platform.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_stdinc.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_SDL_YUV=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_YUV=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_SDL_YUV=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_YUV=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_SDL_YUV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_YUV=\ + "..\include\SDL_cpuinfo.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_SDL_YUV=\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_YUV=\ + "..\include\SDL_cpuinfo.h"\ + "..\src\video\SDL_glfuncs.h"\ + "..\src\video\SDL_sysvideo.h"\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_SDL_YUV=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_YUV=\ + ".\DL_error.h"\ + ".\DL_main.h"\ + ".\DL_mouse.h"\ + ".\DL_mutex.h"\ + ".\DL_rwops.h"\ + ".\DL_types.h"\ + ".\DL_version.h"\ + ".\DL_video.h"\ + ".\egin_code.h"\ + ".\lose_code.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_SDL_YUV=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_SDL_YUV=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_SDL_YUV=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_config.h"\ + "..\..\include\SDL_config_amiga.h"\ + "..\..\include\SDL_config_dreamcast.h"\ + "..\..\include\SDL_config_macos.h"\ + "..\..\include\SDL_config_macosx.h"\ + "..\..\include\SDL_config_os2.h"\ + "..\..\include\SDL_config_win32.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_opengl.h"\ + "..\..\include\SDL_platform.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_stdinc.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_YUV=\ + "..\include\SDL_config_wince.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_SDL_YUV=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_YUV=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_SDL_YUV=\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + +NODEP_CPP_SDL_YUV=\ + "..\include\begin_code.h"\ + "..\include\close_code.h"\ + "..\include\SDL_error.h"\ + "..\include\SDL_main.h"\ + "..\include\SDL_mouse.h"\ + "..\include\SDL_mutex.h"\ + "..\include\SDL_rwops.h"\ + "..\include\SDL_types.h"\ + "..\include\SDL_version.h"\ + "..\include\SDL_video.h"\ + "..\src\video\SDL_glfuncs.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_SDL_YUV=\ + "..\..\include\begin_code.h"\ + "..\..\include\close_code.h"\ + "..\..\include\SDL_cpuinfo.h"\ + "..\..\include\SDL_error.h"\ + "..\..\include\SDL_main.h"\ + "..\..\include\SDL_mouse.h"\ + "..\..\include\SDL_mutex.h"\ + "..\..\include\SDL_rwops.h"\ + "..\..\include\SDL_syswm.h"\ + "..\..\include\SDL_types.h"\ + "..\..\include\SDL_version.h"\ + "..\..\include\SDL_video.h"\ + "..\..\src\video\SDL_glfuncs.h"\ + "..\..\src\video\SDL_stretch_c.h"\ + "..\..\src\video\SDL_sysvideo.h"\ + "..\..\src\video\SDL_yuv_sw_c.h"\ + "..\..\src\video\SDL_yuvfuncs.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\..\src\thread\win32\win_ce_semaphore.c + +!IF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Release" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII_FP) Debug" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Release" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSII) Debug" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Release" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH4) Debug" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Debug" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Release" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV) Debug" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Release" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE emulator) Debug" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Release" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4I) Debug" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Release" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPSIV_FP) Debug" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Release" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4) Debug" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Release" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS16) Debug" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Release" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARMV4T) Debug" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Release" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE x86) Debug" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Debug" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE ARM) Release" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Debug" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE MIPS) Release" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ELSEIF "$(CFG)" == "SDL - Win32 (WCE SH3) Release" + +DEP_CPP_WIN_C=\ + "..\..\src\thread\win32\win_ce_semaphore.h"\ + + +!ENDIF + +# End Source File +# End Group +# Begin Group "Header Files" + +# PROP Default_Filter "h;hpp;hxx;hm;inl" +# Begin Source File + +SOURCE=..\..\include\begin_code.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\blank_cursor.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\close_code.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\default_cursor.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\hermes\HeadMMX.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\hermes\HeadX86.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\mmx.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_active.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_audio.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\SDL_audio_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\SDL_audiodev_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\SDL_audiomem.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_blit.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_byteorder.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_cdrom.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_copying.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_cpuinfo.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_cursor_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\windib\SDL_dibaudio.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\windib\SDL_dibevents_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\windib\SDL_dibvideo.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\disk\SDL_diskaudio.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\dummy\SDL_dummyaudio.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_endian.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_error.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\SDL_error_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_events.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\events\SDL_events_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\SDL_fatal.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\gapi\sdl_gapivideo.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_getenv.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_glfuncs.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_joystick.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\joystick\SDL_joystick_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_keyboard.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_keysym.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_leaks.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_loadso.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\wincommon\SDL_lowvideo.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_main.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_memops.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\SDL_mixer_m68k.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\SDL_mixer_MMX.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\SDL_mixer_MMX_VC.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_mouse.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_mutex.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_name.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\dummy\SDL_nullevents_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\dummy\SDL_nullmouse_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\dummy\SDL_nullvideo.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_opengl.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_pixels_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_quit.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_RLEaccel_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_rwops.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_stretch_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\SDL_sysaudio.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\cdrom\SDL_syscdrom.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\thread\generic\SDL_syscond_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\events\SDL_sysevents.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\joystick\SDL_sysjoystick.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\wincommon\SDL_sysmouse_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\thread\generic\SDL_sysmutex_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\thread\generic\SDL_syssem_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\thread\SDL_systhread.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\thread\generic\SDL_systhread_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\thread\win32\SDL_systhread_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\timer\SDL_systimer.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_sysvideo.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_syswm.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\wincommon\SDL_syswm_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_thread.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\thread\SDL_thread_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_timer.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\timer\SDL_timer_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_types.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_version.h +# End Source File +# Begin Source File + +SOURCE=..\..\include\SDL_video.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\windib\SDL_vkeys.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\audio\SDL_wave.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\wincommon\SDL_wingl_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_yuv_sw_c.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\SDL_yuvfuncs.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\thread\win32\win_ce_semaphore.h +# End Source File +# Begin Source File + +SOURCE=..\..\src\video\wincommon\wmmsg.h +# End Source File +# End Group +# Begin Group "Resource Files" + +# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" +# End Group +# End Target +# End Project diff --git a/VisualCE/SDL/SDL.vcproj b/VisualCE/SDL/SDL.vcproj new file mode 100644 index 000000000..c8654bf8a --- /dev/null +++ b/VisualCE/SDL/SDL.vcproj @@ -0,0 +1,3967 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/VisualCE/SDLMain/SDLmain.vcp b/VisualCE/SDLMain/SDLmain.vcp new file mode 100644 index 000000000..80d861064 --- /dev/null +++ b/VisualCE/SDLMain/SDLmain.vcp @@ -0,0 +1,1653 @@ +# 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_dreamcast.h"\ + {$(INCLUDE)}"..\..\include\SDL_config_macos.h"\ + {$(INCLUDE)}"..\..\include\SDL_config_macosx.h"\ + {$(INCLUDE)}"..\..\include\SDL_config_os2.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_dreamcast.h"\ + {$(INCLUDE)}"..\..\include\SDL_config_macos.h"\ + {$(INCLUDE)}"..\..\include\SDL_config_macosx.h"\ + {$(INCLUDE)}"..\..\include\SDL_config_os2.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 new file mode 100644 index 000000000..95526d296 --- /dev/null +++ b/VisualCE/SDLMain/SDLmain.vcproj @@ -0,0 +1,603 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/VisualCE/loopwave/loopwave.vcp b/VisualCE/loopwave/loopwave.vcp new file mode 100644 index 000000000..a49f2faad --- /dev/null +++ b/VisualCE/loopwave/loopwave.vcp @@ -0,0 +1,562 @@ +# 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_dreamcast.h"\ + "..\include\SDL_config_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)" == "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_dreamcast.h"\ + "..\include\SDL_config_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)" == "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_dreamcast.h"\ + "..\include\SDL_config_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)" == "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_dreamcast.h"\ + "..\include\SDL_config_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)" == "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 new file mode 100644 index 000000000..e4e515dbb --- /dev/null +++ b/VisualCE/loopwave/loopwave.vcproj @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/VisualCE/testalpha/testalpha.vcp b/VisualCE/testalpha/testalpha.vcp new file mode 100644 index 000000000..7dbc61542 --- /dev/null +++ b/VisualCE/testalpha/testalpha.vcp @@ -0,0 +1,698 @@ +# 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_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_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_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_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_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_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_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_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_dreamcast.h"\ + "..\include\SDL_config_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)" == "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_dreamcast.h"\ + "..\include\SDL_config_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)" == "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 new file mode 100644 index 000000000..5e4d62349 --- /dev/null +++ b/VisualCE/testalpha/testalpha.vcproj @@ -0,0 +1,710 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/VisualCE/testtimer/testtimer.vcp b/VisualCE/testtimer/testtimer.vcp new file mode 100644 index 000000000..eba7e4764 --- /dev/null +++ b/VisualCE/testtimer/testtimer.vcp @@ -0,0 +1,874 @@ +# 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_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)" == "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_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)" == "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_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)" == "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_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)" == "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_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)" == "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_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)" == "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_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)" == "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_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)" == "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 new file mode 100644 index 000000000..6c84ea6ee --- /dev/null +++ b/VisualCE/testtimer/testtimer.vcproj @@ -0,0 +1,372 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/VisualCE/testwin/testwin.vcp b/VisualCE/testwin/testwin.vcp new file mode 100644 index 000000000..ec32a29a9 --- /dev/null +++ b/VisualCE/testwin/testwin.vcp @@ -0,0 +1,672 @@ +# 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_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)" == "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_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)" == "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_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)" == "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_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)" == "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_dreamcast.h"\ + "..\include\SDL_config_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)" == "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_dreamcast.h"\ + "..\include\SDL_config_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)" == "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 new file mode 100644 index 000000000..e95b02e60 --- /dev/null +++ b/VisualCE/testwin/testwin.vcproj @@ -0,0 +1,702 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/WhatsNew b/WhatsNew index 5f6cea345..927fdd264 100644 --- a/WhatsNew +++ b/WhatsNew @@ -3,6 +3,24 @@ This is a list of API changes in SDL's version history. Version 1.0: +1.2.14: + Added cast macros for correct usage with C++: + SDL_reinterpret_cast(type, expression) + SDL_static_cast(type, expression) + + Added SDL_VIDEO_FULLSCREEN_DISPLAY as a preferred synonym for + SDL_VIDEO_FULLSCREEN_HEAD on X11. + + Added SDL_DISABLE_LOCK_KEYS environment variable to enable normal + up/down events for Caps-Lock and Num-Lock keys. + +1.2.13: + Added SDL_BUTTON_X1 and SDL_BUTTON_X2 constants. + +1.2.12: + Added SDL_VIDEO_ALLOW_SCREENSAVER to override SDL's disabling + of the screensaver on Mac OS X and X11. + 1.2.10: If SDL_OpenAudio() is passed zero for the desired format fields, the following environment variables will be used diff --git a/Xcode/SDL/Info-Framework.plist b/Xcode/SDL/Info-Framework.plist new file mode 100644 index 000000000..bdcbf6e71 --- /dev/null +++ b/Xcode/SDL/Info-Framework.plist @@ -0,0 +1,28 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + SDL + CFBundleGetInfoString + http://www.libsdl.org + CFBundleIconFile + + CFBundleIdentifier + SDL + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + Simple DirectMedia Layer + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.2.14 + CFBundleSignature + SDLX + CFBundleVersion + 1.2.14 + + diff --git a/Xcode/SDL/SDL.xcodeproj/project.pbxproj b/Xcode/SDL/SDL.xcodeproj/project.pbxproj new file mode 100755 index 000000000..1dbe88869 --- /dev/null +++ b/Xcode/SDL/SDL.xcodeproj/project.pbxproj @@ -0,0 +1,1961 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXAggregateTarget section */ + 0032354F1070931700C76517 /* Generate Doxygen DocSet */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 003235571070933500C76517 /* Build configuration list for PBXAggregateTarget "Generate Doxygen DocSet" */; + buildPhases = ( + 0032354E1070931700C76517 /* ShellScript */, + ); + dependencies = ( + ); + name = "Generate Doxygen DocSet"; + productName = "Generate Doxygen DocSet"; + }; +/* End PBXAggregateTarget section */ + +/* Begin PBXBuildFile section */ + 0014B7EF09C0D8D2003A99D5 /* SDL_dgaevents.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B7E909C0D8D2003A99D5 /* SDL_dgaevents.c */; }; + 0014B7F109C0D8D2003A99D5 /* SDL_dgamouse.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B7EB09C0D8D2003A99D5 /* SDL_dgamouse.c */; }; + 0014B7F209C0D8D2003A99D5 /* SDL_dgavideo.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B7EC09C0D8D2003A99D5 /* SDL_dgavideo.c */; }; + 0014B7F409C0D8D2003A99D5 /* SDL_dgaevents_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 0014B7E809C0D8D2003A99D5 /* SDL_dgaevents_c.h */; }; + 0014B7F509C0D8D2003A99D5 /* SDL_dgaevents.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B7E909C0D8D2003A99D5 /* SDL_dgaevents.c */; }; + 0014B7F609C0D8D2003A99D5 /* SDL_dgamouse_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 0014B7EA09C0D8D2003A99D5 /* SDL_dgamouse_c.h */; }; + 0014B7F709C0D8D2003A99D5 /* SDL_dgamouse.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B7EB09C0D8D2003A99D5 /* SDL_dgamouse.c */; }; + 0014B7F809C0D8D2003A99D5 /* SDL_dgavideo.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B7EC09C0D8D2003A99D5 /* SDL_dgavideo.c */; }; + 0014B7F909C0D8D2003A99D5 /* SDL_dgavideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 0014B7ED09C0D8D2003A99D5 /* SDL_dgavideo.h */; }; + 0014B84F09C0D977003A99D5 /* SDL_x11dga.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B83809C0D977003A99D5 /* SDL_x11dga.c */; }; + 0014B85009C0D977003A99D5 /* SDL_x11dyn.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B83909C0D977003A99D5 /* SDL_x11dyn.c */; }; + 0014B85309C0D977003A99D5 /* SDL_x11events.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B83C09C0D977003A99D5 /* SDL_x11events.c */; }; + 0014B85509C0D977003A99D5 /* SDL_x11gamma.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B83E09C0D977003A99D5 /* SDL_x11gamma.c */; }; + 0014B85709C0D977003A99D5 /* SDL_x11gl.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B84009C0D977003A99D5 /* SDL_x11gl.c */; }; + 0014B85909C0D977003A99D5 /* SDL_x11image.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B84209C0D977003A99D5 /* SDL_x11image.c */; }; + 0014B85B09C0D977003A99D5 /* SDL_x11modes.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B84409C0D977003A99D5 /* SDL_x11modes.c */; }; + 0014B85D09C0D977003A99D5 /* SDL_x11mouse.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B84609C0D977003A99D5 /* SDL_x11mouse.c */; }; + 0014B85F09C0D977003A99D5 /* SDL_x11video.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B84809C0D977003A99D5 /* SDL_x11video.c */; }; + 0014B86209C0D977003A99D5 /* SDL_x11wm.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B84B09C0D977003A99D5 /* SDL_x11wm.c */; }; + 0014B86409C0D977003A99D5 /* SDL_x11yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B84D09C0D977003A99D5 /* SDL_x11yuv.c */; }; + 0014B86509C0D977003A99D5 /* SDL_x11dga_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 0014B83709C0D977003A99D5 /* SDL_x11dga_c.h */; }; + 0014B86609C0D977003A99D5 /* SDL_x11dga.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B83809C0D977003A99D5 /* SDL_x11dga.c */; }; + 0014B86709C0D977003A99D5 /* SDL_x11dyn.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B83909C0D977003A99D5 /* SDL_x11dyn.c */; }; + 0014B86809C0D977003A99D5 /* SDL_x11dyn.h in Headers */ = {isa = PBXBuildFile; fileRef = 0014B83A09C0D977003A99D5 /* SDL_x11dyn.h */; }; + 0014B86909C0D977003A99D5 /* SDL_x11events_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 0014B83B09C0D977003A99D5 /* SDL_x11events_c.h */; }; + 0014B86A09C0D977003A99D5 /* SDL_x11events.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B83C09C0D977003A99D5 /* SDL_x11events.c */; }; + 0014B86B09C0D977003A99D5 /* SDL_x11gamma_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 0014B83D09C0D977003A99D5 /* SDL_x11gamma_c.h */; }; + 0014B86C09C0D977003A99D5 /* SDL_x11gamma.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B83E09C0D977003A99D5 /* SDL_x11gamma.c */; }; + 0014B86D09C0D977003A99D5 /* SDL_x11gl_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 0014B83F09C0D977003A99D5 /* SDL_x11gl_c.h */; }; + 0014B86E09C0D977003A99D5 /* SDL_x11gl.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B84009C0D977003A99D5 /* SDL_x11gl.c */; }; + 0014B86F09C0D977003A99D5 /* SDL_x11image_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 0014B84109C0D977003A99D5 /* SDL_x11image_c.h */; }; + 0014B87009C0D977003A99D5 /* SDL_x11image.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B84209C0D977003A99D5 /* SDL_x11image.c */; }; + 0014B87109C0D977003A99D5 /* SDL_x11modes_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 0014B84309C0D977003A99D5 /* SDL_x11modes_c.h */; }; + 0014B87209C0D977003A99D5 /* SDL_x11modes.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B84409C0D977003A99D5 /* SDL_x11modes.c */; }; + 0014B87309C0D977003A99D5 /* SDL_x11mouse_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 0014B84509C0D977003A99D5 /* SDL_x11mouse_c.h */; }; + 0014B87409C0D977003A99D5 /* SDL_x11mouse.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B84609C0D977003A99D5 /* SDL_x11mouse.c */; }; + 0014B87509C0D977003A99D5 /* SDL_x11sym.h in Headers */ = {isa = PBXBuildFile; fileRef = 0014B84709C0D977003A99D5 /* SDL_x11sym.h */; }; + 0014B87609C0D977003A99D5 /* SDL_x11video.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B84809C0D977003A99D5 /* SDL_x11video.c */; }; + 0014B87709C0D977003A99D5 /* SDL_x11video.h in Headers */ = {isa = PBXBuildFile; fileRef = 0014B84909C0D977003A99D5 /* SDL_x11video.h */; }; + 0014B87809C0D977003A99D5 /* SDL_x11wm_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 0014B84A09C0D977003A99D5 /* SDL_x11wm_c.h */; }; + 0014B87909C0D977003A99D5 /* SDL_x11wm.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B84B09C0D977003A99D5 /* SDL_x11wm.c */; }; + 0014B87A09C0D977003A99D5 /* SDL_x11yuv_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 0014B84C09C0D977003A99D5 /* SDL_x11yuv_c.h */; }; + 0014B87B09C0D977003A99D5 /* SDL_x11yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B84D09C0D977003A99D5 /* SDL_x11yuv.c */; }; + 0014B89209C0DA94003A99D5 /* XF86DGA.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B89009C0DA94003A99D5 /* XF86DGA.c */; }; + 0014B89309C0DA94003A99D5 /* XF86DGA2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B89109C0DA94003A99D5 /* XF86DGA2.c */; }; + 0014B89409C0DA94003A99D5 /* XF86DGA.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B89009C0DA94003A99D5 /* XF86DGA.c */; }; + 0014B89509C0DA94003A99D5 /* XF86DGA2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B89109C0DA94003A99D5 /* XF86DGA2.c */; }; + 0014B89709C0DAA1003A99D5 /* XF86VMode.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B89609C0DAA1003A99D5 /* XF86VMode.c */; }; + 0014B89809C0DAA1003A99D5 /* XF86VMode.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B89609C0DAA1003A99D5 /* XF86VMode.c */; }; + 0014B89B09C0DAAE003A99D5 /* Xv.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B89909C0DAAE003A99D5 /* Xv.c */; }; + 0014B89D09C0DAAE003A99D5 /* Xv.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B89909C0DAAE003A99D5 /* Xv.c */; }; + 0014B89E09C0DAAE003A99D5 /* Xvlibint.h in Headers */ = {isa = PBXBuildFile; fileRef = 0014B89A09C0DAAE003A99D5 /* Xvlibint.h */; }; + 0014B8A009C0DAB9003A99D5 /* Xinerama.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B89F09C0DAB9003A99D5 /* Xinerama.c */; }; + 0014B8A109C0DAB9003A99D5 /* Xinerama.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B89F09C0DAB9003A99D5 /* Xinerama.c */; }; + 0014B8A309C0DAC4003A99D5 /* xme.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B8A209C0DAC4003A99D5 /* xme.c */; }; + 0014B8A409C0DAC4003A99D5 /* xme.c in Sources */ = {isa = PBXBuildFile; fileRef = 0014B8A209C0DAC4003A99D5 /* xme.c */; }; + 00162D4409BD1FA90037C8D0 /* SDL_config_dreamcast.h in Headers */ = {isa = PBXBuildFile; fileRef = 00162D3209BD1FA90037C8D0 /* SDL_config_dreamcast.h */; }; + 00162D4509BD1FA90037C8D0 /* SDL_config_macos.h in Headers */ = {isa = PBXBuildFile; fileRef = 00162D3309BD1FA90037C8D0 /* SDL_config_macos.h */; }; + 00162D4609BD1FA90037C8D0 /* SDL_config_macosx.h in Headers */ = {isa = PBXBuildFile; fileRef = 00162D3409BD1FA90037C8D0 /* SDL_config_macosx.h */; }; + 00162D4709BD1FA90037C8D0 /* SDL_config_os2.h in Headers */ = {isa = PBXBuildFile; fileRef = 00162D3509BD1FA90037C8D0 /* SDL_config_os2.h */; }; + 00162D4809BD1FA90037C8D0 /* SDL_config_win32.h in Headers */ = {isa = PBXBuildFile; fileRef = 00162D3609BD1FA90037C8D0 /* SDL_config_win32.h */; }; + 00162D4909BD1FA90037C8D0 /* SDL_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 00162D3709BD1FA90037C8D0 /* SDL_config.h */; }; + 00162D4A09BD1FA90037C8D0 /* SDL_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = 00162D3809BD1FA90037C8D0 /* SDL_platform.h */; }; + 00162D4B09BD1FA90037C8D0 /* SDL_stdinc.h in Headers */ = {isa = PBXBuildFile; fileRef = 00162D3909BD1FA90037C8D0 /* SDL_stdinc.h */; }; + 00162D5309BD20DA0037C8D0 /* SDL_syscond.c in Sources */ = {isa = PBXBuildFile; fileRef = 00162D4D09BD20DA0037C8D0 /* SDL_syscond.c */; }; + 00162D5409BD20DA0037C8D0 /* SDL_sysmutex.c in Sources */ = {isa = PBXBuildFile; fileRef = 00162D4E09BD20DA0037C8D0 /* SDL_sysmutex.c */; }; + 00162D5609BD20DA0037C8D0 /* SDL_syssem.c in Sources */ = {isa = PBXBuildFile; fileRef = 00162D5009BD20DA0037C8D0 /* SDL_syssem.c */; }; + 00162D5709BD20DA0037C8D0 /* SDL_systhread.c in Sources */ = {isa = PBXBuildFile; fileRef = 00162D5109BD20DA0037C8D0 /* SDL_systhread.c */; }; + 00162D5909BD20DA0037C8D0 /* SDL_syscond.c in Sources */ = {isa = PBXBuildFile; fileRef = 00162D4D09BD20DA0037C8D0 /* SDL_syscond.c */; }; + 00162D5A09BD20DA0037C8D0 /* SDL_sysmutex.c in Sources */ = {isa = PBXBuildFile; fileRef = 00162D4E09BD20DA0037C8D0 /* SDL_sysmutex.c */; }; + 00162D5B09BD20DA0037C8D0 /* SDL_sysmutex_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 00162D4F09BD20DA0037C8D0 /* SDL_sysmutex_c.h */; }; + 00162D5C09BD20DA0037C8D0 /* SDL_syssem.c in Sources */ = {isa = PBXBuildFile; fileRef = 00162D5009BD20DA0037C8D0 /* SDL_syssem.c */; }; + 00162D5D09BD20DA0037C8D0 /* SDL_systhread.c in Sources */ = {isa = PBXBuildFile; fileRef = 00162D5109BD20DA0037C8D0 /* SDL_systhread.c */; }; + 00162D5E09BD20DA0037C8D0 /* SDL_systhread_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 00162D5209BD20DA0037C8D0 /* SDL_systhread_c.h */; }; + 00162D6109BD21010037C8D0 /* SDL_systimer.c in Sources */ = {isa = PBXBuildFile; fileRef = 00162D6009BD21010037C8D0 /* SDL_systimer.c */; }; + 00162D6209BD21010037C8D0 /* SDL_systimer.c in Sources */ = {isa = PBXBuildFile; fileRef = 00162D6009BD21010037C8D0 /* SDL_systimer.c */; }; + 00162D6B09BD214F0037C8D0 /* SDL_getenv.c in Sources */ = {isa = PBXBuildFile; fileRef = 00162D6509BD214F0037C8D0 /* SDL_getenv.c */; }; + 00162D6C09BD214F0037C8D0 /* SDL_malloc.c in Sources */ = {isa = PBXBuildFile; fileRef = 00162D6609BD214F0037C8D0 /* SDL_malloc.c */; }; + 00162D6D09BD214F0037C8D0 /* SDL_qsort.c in Sources */ = {isa = PBXBuildFile; fileRef = 00162D6709BD214F0037C8D0 /* SDL_qsort.c */; }; + 00162D6E09BD214F0037C8D0 /* SDL_stdlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 00162D6809BD214F0037C8D0 /* SDL_stdlib.c */; }; + 00162D6F09BD214F0037C8D0 /* SDL_string.c in Sources */ = {isa = PBXBuildFile; fileRef = 00162D6909BD214F0037C8D0 /* SDL_string.c */; }; + 00162D7009BD214F0037C8D0 /* SDL_getenv.c in Sources */ = {isa = PBXBuildFile; fileRef = 00162D6509BD214F0037C8D0 /* SDL_getenv.c */; }; + 00162D7109BD214F0037C8D0 /* SDL_malloc.c in Sources */ = {isa = PBXBuildFile; fileRef = 00162D6609BD214F0037C8D0 /* SDL_malloc.c */; }; + 00162D7209BD214F0037C8D0 /* SDL_qsort.c in Sources */ = {isa = PBXBuildFile; fileRef = 00162D6709BD214F0037C8D0 /* SDL_qsort.c */; }; + 00162D7309BD214F0037C8D0 /* SDL_stdlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 00162D6809BD214F0037C8D0 /* SDL_stdlib.c */; }; + 00162D7409BD214F0037C8D0 /* SDL_string.c in Sources */ = {isa = PBXBuildFile; fileRef = 00162D6909BD214F0037C8D0 /* SDL_string.c */; }; + 00162DA409BD222F0037C8D0 /* SDL_config_dreamcast.h in Headers */ = {isa = PBXBuildFile; fileRef = 00162D3209BD1FA90037C8D0 /* SDL_config_dreamcast.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DA509BD222F0037C8D0 /* SDL_config_macos.h in Headers */ = {isa = PBXBuildFile; fileRef = 00162D3309BD1FA90037C8D0 /* SDL_config_macos.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DA609BD222F0037C8D0 /* SDL_config_macosx.h in Headers */ = {isa = PBXBuildFile; fileRef = 00162D3409BD1FA90037C8D0 /* SDL_config_macosx.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DA709BD222F0037C8D0 /* SDL_config_os2.h in Headers */ = {isa = PBXBuildFile; fileRef = 00162D3509BD1FA90037C8D0 /* SDL_config_os2.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DA809BD222F0037C8D0 /* SDL_config_win32.h in Headers */ = {isa = PBXBuildFile; fileRef = 00162D3609BD1FA90037C8D0 /* SDL_config_win32.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DA909BD222F0037C8D0 /* SDL_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 00162D3709BD1FA90037C8D0 /* SDL_config.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DAA09BD222F0037C8D0 /* SDL_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = 00162D3809BD1FA90037C8D0 /* SDL_platform.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DAB09BD222F0037C8D0 /* SDL_stdinc.h in Headers */ = {isa = PBXBuildFile; fileRef = 00162D3909BD1FA90037C8D0 /* SDL_stdinc.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DAC09BD222F0037C8D0 /* begin_code.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5E501191D2B7F000001 /* begin_code.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DAD09BD222F0037C8D0 /* close_code.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5E601191D2B7F000001 /* close_code.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DAE09BD222F0037C8D0 /* SDL_active.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5E701191D2B7F000001 /* SDL_active.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DAF09BD222F0037C8D0 /* SDL_audio.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5E801191D2B7F000001 /* SDL_audio.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DB009BD222F0037C8D0 /* SDL_byteorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5E901191D2B7F000001 /* SDL_byteorder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DB109BD222F0037C8D0 /* SDL_cdrom.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5EA01191D2B7F000001 /* SDL_cdrom.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DB209BD222F0037C8D0 /* SDL_copying.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5EB01191D2B7F000001 /* SDL_copying.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DB309BD222F0037C8D0 /* SDL_cpuinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = B2CF8DC405C444E400E5DC7F /* SDL_cpuinfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DB409BD222F0037C8D0 /* SDL_endian.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5EC01191D2B7F000001 /* SDL_endian.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DB509BD222F0037C8D0 /* SDL_error.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5ED01191D2B7F000001 /* SDL_error.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DB609BD222F0037C8D0 /* SDL_events.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5EE01191D2B7F000001 /* SDL_events.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DB709BD222F0037C8D0 /* SDL_getenv.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5EF01191D2B7F000001 /* SDL_getenv.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DB809BD222F0037C8D0 /* SDL_joystick.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5F001191D2B7F000001 /* SDL_joystick.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DB909BD222F0037C8D0 /* SDL_keyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5F101191D2B7F000001 /* SDL_keyboard.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DBA09BD222F0037C8D0 /* SDL_keysym.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5F201191D2B7F000001 /* SDL_keysym.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DBB09BD222F0037C8D0 /* SDL_loadso.h in Headers */ = {isa = PBXBuildFile; fileRef = B29A290D04E5B28700A80002 /* SDL_loadso.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DBC09BD222F0037C8D0 /* SDL_main.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5F301191D2B7F000001 /* SDL_main.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DBD09BD222F0037C8D0 /* SDL_mouse.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5F401191D2B7F000001 /* SDL_mouse.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DBE09BD222F0037C8D0 /* SDL_mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5F501191D2B7F000001 /* SDL_mutex.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DBF09BD222F0037C8D0 /* SDL_name.h in Headers */ = {isa = PBXBuildFile; fileRef = B2CF8DC705C4450500E5DC7F /* SDL_name.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DC009BD222F0037C8D0 /* SDL_opengl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5F601191D2B7F000001 /* SDL_opengl.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DC109BD222F0037C8D0 /* SDL_quit.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5F701191D2B7F000001 /* SDL_quit.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DC209BD222F0037C8D0 /* SDL_rwops.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5F801191D2B7F000001 /* SDL_rwops.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DC309BD222F0037C8D0 /* SDL_syswm.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5F901191D2B7F000001 /* SDL_syswm.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DC409BD222F0037C8D0 /* SDL_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5FA01191D2B7F000001 /* SDL_thread.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DC509BD222F0037C8D0 /* SDL_timer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5FB01191D2B7F000001 /* SDL_timer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DC609BD222F0037C8D0 /* SDL_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5FC01191D2B7F000001 /* SDL_types.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DC709BD222F0037C8D0 /* SDL_version.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5FD01191D2B7F000001 /* SDL_version.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DC809BD222F0037C8D0 /* SDL_video.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5FE01191D2B7F000001 /* SDL_video.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162DC909BD222F0037C8D0 /* SDL.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5AF5FF01191D2B7F000001 /* SDL.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00162E6809BD27300037C8D0 /* SDL_mixer_MMX.c in Sources */ = {isa = PBXBuildFile; fileRef = 00B7E61F097F2D9E00826121 /* SDL_mixer_MMX.c */; }; + 00162E6A09BD27360037C8D0 /* SDL_mixer_MMX.c in Sources */ = {isa = PBXBuildFile; fileRef = 00B7E61F097F2D9E00826121 /* SDL_mixer_MMX.c */; }; + 00162E6B09BD27370037C8D0 /* SDL_mixer_MMX.h in Headers */ = {isa = PBXBuildFile; fileRef = 00B7E620097F2D9E00826121 /* SDL_mixer_MMX.h */; }; + 00162F3B09BE27FB0037C8D0 /* SDL_nullevents.c in Sources */ = {isa = PBXBuildFile; fileRef = 00162F3409BE27FB0037C8D0 /* SDL_nullevents.c */; }; + 00162F3D09BE27FB0037C8D0 /* SDL_nullmouse.c in Sources */ = {isa = PBXBuildFile; fileRef = 00162F3609BE27FB0037C8D0 /* SDL_nullmouse.c */; }; + 00162F3F09BE27FB0037C8D0 /* SDL_nullvideo.c in Sources */ = {isa = PBXBuildFile; fileRef = 00162F3809BE27FB0037C8D0 /* SDL_nullvideo.c */; }; + 00162F4109BE27FB0037C8D0 /* SDL_nullevents.c in Sources */ = {isa = PBXBuildFile; fileRef = 00162F3409BE27FB0037C8D0 /* SDL_nullevents.c */; }; + 00162F4209BE27FB0037C8D0 /* SDL_nullevents_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 00162F3509BE27FB0037C8D0 /* SDL_nullevents_c.h */; }; + 00162F4309BE27FB0037C8D0 /* SDL_nullmouse.c in Sources */ = {isa = PBXBuildFile; fileRef = 00162F3609BE27FB0037C8D0 /* SDL_nullmouse.c */; }; + 00162F4409BE27FB0037C8D0 /* SDL_nullmouse_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 00162F3709BE27FB0037C8D0 /* SDL_nullmouse_c.h */; }; + 00162F4509BE27FB0037C8D0 /* SDL_nullvideo.c in Sources */ = {isa = PBXBuildFile; fileRef = 00162F3809BE27FB0037C8D0 /* SDL_nullvideo.c */; }; + 00162F4609BE27FB0037C8D0 /* SDL_nullvideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 00162F3909BE27FB0037C8D0 /* SDL_nullvideo.h */; }; + 002F328609CA049100EBEB88 /* SDL_iconv.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F328509CA049100EBEB88 /* SDL_iconv.c */; }; + 002F328709CA049100EBEB88 /* SDL_iconv.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F328509CA049100EBEB88 /* SDL_iconv.c */; }; + 002F32D709CA0BE700EBEB88 /* SDL_diskaudio.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F32D409CA0BE700EBEB88 /* SDL_diskaudio.c */; }; + 002F32D909CA0BE700EBEB88 /* SDL_diskaudio.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F32D409CA0BE700EBEB88 /* SDL_diskaudio.c */; }; + 002F32DA09CA0BE700EBEB88 /* SDL_diskaudio.h in Headers */ = {isa = PBXBuildFile; fileRef = 002F32D509CA0BE700EBEB88 /* SDL_diskaudio.h */; }; + 002F32E509CA0BF600EBEB88 /* SDL_dummyaudio.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F32E209CA0BF600EBEB88 /* SDL_dummyaudio.c */; }; + 002F32E709CA0BF600EBEB88 /* SDL_dummyaudio.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F32E209CA0BF600EBEB88 /* SDL_dummyaudio.c */; }; + 002F32E809CA0BF600EBEB88 /* SDL_dummyaudio.h in Headers */ = {isa = PBXBuildFile; fileRef = 002F32E309CA0BF600EBEB88 /* SDL_dummyaudio.h */; }; + 004C2C8B0975E13300E9D430 /* AudioFilePlayer.c in Sources */ = {isa = PBXBuildFile; fileRef = 004C2C860975E13300E9D430 /* AudioFilePlayer.c */; }; + 004C2C8C0975E13300E9D430 /* AudioFileReaderThread.c in Sources */ = {isa = PBXBuildFile; fileRef = 004C2C870975E13300E9D430 /* AudioFileReaderThread.c */; }; + 004C2C8D0975E13300E9D430 /* CDPlayer.c in Sources */ = {isa = PBXBuildFile; fileRef = 004C2C880975E13300E9D430 /* CDPlayer.c */; }; + 004C2C8E0975E13300E9D430 /* SDLOSXCAGuard.c in Sources */ = {isa = PBXBuildFile; fileRef = 004C2C890975E13300E9D430 /* SDLOSXCAGuard.c */; }; + 004C2C900975E13300E9D430 /* AudioFilePlayer.c in Sources */ = {isa = PBXBuildFile; fileRef = 004C2C860975E13300E9D430 /* AudioFilePlayer.c */; }; + 004C2C910975E13300E9D430 /* AudioFileReaderThread.c in Sources */ = {isa = PBXBuildFile; fileRef = 004C2C870975E13300E9D430 /* AudioFileReaderThread.c */; }; + 004C2C920975E13300E9D430 /* CDPlayer.c in Sources */ = {isa = PBXBuildFile; fileRef = 004C2C880975E13300E9D430 /* CDPlayer.c */; }; + 004C2C930975E13300E9D430 /* SDLOSXCAGuard.c in Sources */ = {isa = PBXBuildFile; fileRef = 004C2C890975E13300E9D430 /* SDLOSXCAGuard.c */; }; + 004C2C940975E13300E9D430 /* SDLOSXCAGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = 004C2C8A0975E13300E9D430 /* SDLOSXCAGuard.h */; }; + 007317A20858DECD00B2BC32 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179B0858DECD00B2BC32 /* AudioToolbox.framework */; }; + 007317A30858DECD00B2BC32 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179C0858DECD00B2BC32 /* AudioUnit.framework */; }; + 007317A40858DECD00B2BC32 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179D0858DECD00B2BC32 /* Cocoa.framework */; }; + 007317A50858DECD00B2BC32 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179E0858DECD00B2BC32 /* CoreAudio.framework */; }; + 007317A60858DECD00B2BC32 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179F0858DECD00B2BC32 /* IOKit.framework */; }; + 007317A70858DECD00B2BC32 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 007317A00858DECD00B2BC32 /* OpenGL.framework */; }; + 007317A90858DECD00B2BC32 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179B0858DECD00B2BC32 /* AudioToolbox.framework */; }; + 007317AA0858DECD00B2BC32 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179C0858DECD00B2BC32 /* AudioUnit.framework */; }; + 007317AB0858DECD00B2BC32 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179D0858DECD00B2BC32 /* Cocoa.framework */; }; + 007317AC0858DECD00B2BC32 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179E0858DECD00B2BC32 /* CoreAudio.framework */; }; + 007317AD0858DECD00B2BC32 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179F0858DECD00B2BC32 /* IOKit.framework */; }; + 007317AE0858DECD00B2BC32 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 007317A00858DECD00B2BC32 /* OpenGL.framework */; }; + 007317AF0858DECD00B2BC32 /* QuickTime.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 007317A10858DECD00B2BC32 /* QuickTime.framework */; }; + 007317B00858DECD00B2BC32 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179B0858DECD00B2BC32 /* AudioToolbox.framework */; }; + 007317B10858DECD00B2BC32 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179C0858DECD00B2BC32 /* AudioUnit.framework */; }; + 007317B20858DECD00B2BC32 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179D0858DECD00B2BC32 /* Cocoa.framework */; }; + 007317B30858DECD00B2BC32 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179E0858DECD00B2BC32 /* CoreAudio.framework */; }; + 007317B40858DECD00B2BC32 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179F0858DECD00B2BC32 /* IOKit.framework */; }; + 007317B50858DECD00B2BC32 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 007317A00858DECD00B2BC32 /* OpenGL.framework */; }; + 007317B60858DECD00B2BC32 /* QuickTime.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 007317A10858DECD00B2BC32 /* QuickTime.framework */; }; + 007317C30858E15000B2BC32 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 007317C10858E15000B2BC32 /* Carbon.framework */; }; + 007317C40858E15000B2BC32 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 007317C10858E15000B2BC32 /* Carbon.framework */; }; + 00D0D02310675823004B05EF /* SDL_QuartzWM.h in Headers */ = {isa = PBXBuildFile; fileRef = 00D0D02210675823004B05EF /* SDL_QuartzWM.h */; }; + 00D0D08410675DD9004B05EF /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 00D0D08310675DD9004B05EF /* CoreFoundation.framework */; }; + 00D0D0D810675E46004B05EF /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 007317C10858E15000B2BC32 /* Carbon.framework */; }; + 00EAE6FC0C4D3F84009A420A /* SDL_yuv_mmx.c in Sources */ = {isa = PBXBuildFile; fileRef = 00B7E625097F2DD100826121 /* SDL_yuv_mmx.c */; }; + 00EAE6FD0C4D3F88009A420A /* SDL_yuv_mmx.c in Sources */ = {isa = PBXBuildFile; fileRef = 00B7E625097F2DD100826121 /* SDL_yuv_mmx.c */; }; + 046B91EC0A11B53500FB151C /* SDL_sysloadso.c in Sources */ = {isa = PBXBuildFile; fileRef = 046B91E90A11B53500FB151C /* SDL_sysloadso.c */; }; + 046B91ED0A11B53500FB151C /* SDL_sysloadso.c in Sources */ = {isa = PBXBuildFile; fileRef = 046B91E90A11B53500FB151C /* SDL_sysloadso.c */; }; + 046B92130A11B8AD00FB151C /* SDL_dlcompat.c in Sources */ = {isa = PBXBuildFile; fileRef = 046B92100A11B8AD00FB151C /* SDL_dlcompat.c */; }; + 046B92140A11B8AD00FB151C /* SDL_dlcompat.c in Sources */ = {isa = PBXBuildFile; fileRef = 046B92100A11B8AD00FB151C /* SDL_dlcompat.c */; }; + BECDF62B0761BA81005FE872 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF2F0086C3A07F000001 /* SDLMain.nib */; }; + BECDF62E0761BA81005FE872 /* SDL_audio.c in Sources */ = {isa = PBXBuildFile; fileRef = 01538330006D78D67F000001 /* SDL_audio.c */; }; + BECDF62F0761BA81005FE872 /* SDL_audiocvt.c in Sources */ = {isa = PBXBuildFile; fileRef = 01538331006D78D67F000001 /* SDL_audiocvt.c */; }; + BECDF6300761BA81005FE872 /* SDL_audiodev.c in Sources */ = {isa = PBXBuildFile; fileRef = 01538332006D78D67F000001 /* SDL_audiodev.c */; }; + BECDF6320761BA81005FE872 /* SDL_mixer.c in Sources */ = {isa = PBXBuildFile; fileRef = 01538334006D78D67F000001 /* SDL_mixer.c */; }; + BECDF6330761BA81005FE872 /* SDL_wave.c in Sources */ = {isa = PBXBuildFile; fileRef = 01538335006D78D67F000001 /* SDL_wave.c */; }; + BECDF6350761BA81005FE872 /* SDL_active.c in Sources */ = {isa = PBXBuildFile; fileRef = 01538368006D79147F000001 /* SDL_active.c */; }; + BECDF6360761BA81005FE872 /* SDL_events.c in Sources */ = {isa = PBXBuildFile; fileRef = 01538369006D79147F000001 /* SDL_events.c */; }; + BECDF6370761BA81005FE872 /* SDL_expose.c in Sources */ = {isa = PBXBuildFile; fileRef = 0153836A006D79147F000001 /* SDL_expose.c */; }; + BECDF6380761BA81005FE872 /* SDL_keyboard.c in Sources */ = {isa = PBXBuildFile; fileRef = 0153836B006D79147F000001 /* SDL_keyboard.c */; }; + BECDF6390761BA81005FE872 /* SDL_mouse.c in Sources */ = {isa = PBXBuildFile; fileRef = 0153836C006D79147F000001 /* SDL_mouse.c */; }; + BECDF63A0761BA81005FE872 /* SDL_quit.c in Sources */ = {isa = PBXBuildFile; fileRef = 0153836D006D79147F000001 /* SDL_quit.c */; }; + BECDF63B0761BA81005FE872 /* SDL_resize.c in Sources */ = {isa = PBXBuildFile; fileRef = 0153836E006D79147F000001 /* SDL_resize.c */; }; + BECDF63C0761BA81005FE872 /* SDL_rwops.c in Sources */ = {isa = PBXBuildFile; fileRef = 01538377006D79307F000001 /* SDL_rwops.c */; }; + BECDF63E0761BA81005FE872 /* SDL_timer.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383A0006D79BC7F000001 /* SDL_timer.c */; }; + BECDF63F0761BA81005FE872 /* SDL_blit.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383D8006D7A567F000001 /* SDL_blit.c */; }; + BECDF6400761BA81005FE872 /* SDL_blit_0.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383DA006D7A567F000001 /* SDL_blit_0.c */; }; + BECDF6410761BA81005FE872 /* SDL_blit_1.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383DB006D7A567F000001 /* SDL_blit_1.c */; }; + BECDF6420761BA81005FE872 /* SDL_blit_A.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383DC006D7A567F000001 /* SDL_blit_A.c */; }; + BECDF6430761BA81005FE872 /* SDL_blit_N.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383DE006D7A567F000001 /* SDL_blit_N.c */; }; + BECDF6440761BA81005FE872 /* SDL_bmp.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383DF006D7A567F000001 /* SDL_bmp.c */; }; + BECDF6450761BA81005FE872 /* SDL_cursor.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383E0006D7A567F000001 /* SDL_cursor.c */; }; + BECDF6460761BA81005FE872 /* SDL_gamma.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383E2006D7A567F000001 /* SDL_gamma.c */; }; + BECDF6470761BA81005FE872 /* SDL_pixels.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383E6006D7A567F000001 /* SDL_pixels.c */; }; + BECDF6480761BA81005FE872 /* SDL_RLEaccel.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383E8006D7A567F000001 /* SDL_RLEaccel.c */; }; + BECDF6490761BA81005FE872 /* SDL_surface.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383EC006D7A567F000001 /* SDL_surface.c */; }; + BECDF64A0761BA81005FE872 /* SDL_video.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383EE006D7A567F000001 /* SDL_video.c */; }; + BECDF64B0761BA81005FE872 /* SDL_yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383EF006D7A567F000001 /* SDL_yuv.c */; }; + BECDF64C0761BA81005FE872 /* SDL_yuv_sw.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383F1006D7A567F000001 /* SDL_yuv_sw.c */; }; + BECDF64D0761BA81005FE872 /* SDL_error.c in Sources */ = {isa = PBXBuildFile; fileRef = 01538438006D7D947F000001 /* SDL_error.c */; }; + BECDF64E0761BA81005FE872 /* SDL_fatal.c in Sources */ = {isa = PBXBuildFile; fileRef = 01538439006D7D947F000001 /* SDL_fatal.c */; }; + BECDF6500761BA81005FE872 /* SDL.c in Sources */ = {isa = PBXBuildFile; fileRef = 0153843C006D7D947F000001 /* SDL.c */; }; + BECDF6510761BA81005FE872 /* SDL_thread.c in Sources */ = {isa = PBXBuildFile; fileRef = 01538445006D7EC67F000001 /* SDL_thread.c */; }; + BECDF6520761BA81005FE872 /* SDL_cdrom.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4895006D86FF7F000001 /* SDL_cdrom.c */; }; + BECDF6530761BA81005FE872 /* SDL_joystick.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E489D006D88D97F000001 /* SDL_joystick.c */; }; + BECDF6580761BA81005FE872 /* SDL_stretch.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383EA006D7A567F000001 /* SDL_stretch.c */; }; + BECDF6590761BA81005FE872 /* SDL_sysjoystick.c in Sources */ = {isa = PBXBuildFile; fileRef = F51789D101769A2401D3D55B /* SDL_sysjoystick.c */; }; + BECDF65B0761BA81005FE872 /* SDL_QuartzEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = B24DA4D705A88AD0006B9F1C /* SDL_QuartzEvents.m */; }; + BECDF65C0761BA81005FE872 /* SDL_QuartzGL.m in Sources */ = {isa = PBXBuildFile; fileRef = B24DA4D805A88AD0006B9F1C /* SDL_QuartzGL.m */; }; + BECDF65D0761BA81005FE872 /* SDL_QuartzVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = B24DA4DB05A88AD0006B9F1C /* SDL_QuartzVideo.m */; }; + BECDF65E0761BA81005FE872 /* SDL_QuartzWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = B24DA4DD05A88AD0006B9F1C /* SDL_QuartzWindow.m */; }; + BECDF65F0761BA81005FE872 /* SDL_QuartzWM.m in Sources */ = {isa = PBXBuildFile; fileRef = B24DA4DE05A88AD0006B9F1C /* SDL_QuartzWM.m */; }; + BECDF6610761BA81005FE872 /* SDL_cpuinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = B24DA50405A88D52006B9F1C /* SDL_cpuinfo.c */; }; + BECDF6620761BA81005FE872 /* SDL_syscdrom.c in Sources */ = {isa = PBXBuildFile; fileRef = B2A23A7B04157C5700A80002 /* SDL_syscdrom.c */; }; + BECDF6670761BA81005FE872 /* SDL_coreaudio.c in Sources */ = {isa = PBXBuildFile; fileRef = BECDF5D50761B759005FE872 /* SDL_coreaudio.c */; }; + BECDF6720761BA81005FE872 /* CGS.h in Headers */ = {isa = PBXBuildFile; fileRef = B24DA4D605A88AD0006B9F1C /* CGS.h */; }; + BECDF6730761BA81005FE872 /* SDL_QuartzKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = B24DA4D905A88AD0006B9F1C /* SDL_QuartzKeys.h */; }; + BECDF6740761BA81005FE872 /* SDL_QuartzVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = B24DA4DA05A88AD0006B9F1C /* SDL_QuartzVideo.h */; }; + BECDF6750761BA81005FE872 /* SDL_QuartzWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = B24DA4DC05A88AD0006B9F1C /* SDL_QuartzWindow.h */; }; + BECDF6760761BA81005FE872 /* SDL_cpuinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = B2CF8DC405C444E400E5DC7F /* SDL_cpuinfo.h */; }; + BECDF6770761BA81005FE872 /* SDL_name.h in Headers */ = {isa = PBXBuildFile; fileRef = B2CF8DC705C4450500E5DC7F /* SDL_name.h */; }; + BECDF6780761BA81005FE872 /* SDL_coreaudio.h in Headers */ = {isa = PBXBuildFile; fileRef = BECDF5D60761B759005FE872 /* SDL_coreaudio.h */; }; + BECDF67A0761BA81005FE872 /* SDL_audio.c in Sources */ = {isa = PBXBuildFile; fileRef = 01538330006D78D67F000001 /* SDL_audio.c */; }; + BECDF67B0761BA81005FE872 /* SDL_audiocvt.c in Sources */ = {isa = PBXBuildFile; fileRef = 01538331006D78D67F000001 /* SDL_audiocvt.c */; }; + BECDF67D0761BA81005FE872 /* SDL_audiodev.c in Sources */ = {isa = PBXBuildFile; fileRef = 01538332006D78D67F000001 /* SDL_audiodev.c */; }; + BECDF67E0761BA81005FE872 /* SDL_mixer.c in Sources */ = {isa = PBXBuildFile; fileRef = 01538334006D78D67F000001 /* SDL_mixer.c */; }; + BECDF67F0761BA81005FE872 /* SDL_wave.c in Sources */ = {isa = PBXBuildFile; fileRef = 01538335006D78D67F000001 /* SDL_wave.c */; }; + BECDF6810761BA81005FE872 /* SDL_cdrom.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4895006D86FF7F000001 /* SDL_cdrom.c */; }; + BECDF6830761BA81005FE872 /* SDL_active.c in Sources */ = {isa = PBXBuildFile; fileRef = 01538368006D79147F000001 /* SDL_active.c */; }; + BECDF6840761BA81005FE872 /* SDL_events.c in Sources */ = {isa = PBXBuildFile; fileRef = 01538369006D79147F000001 /* SDL_events.c */; }; + BECDF6850761BA81005FE872 /* SDL_expose.c in Sources */ = {isa = PBXBuildFile; fileRef = 0153836A006D79147F000001 /* SDL_expose.c */; }; + BECDF6860761BA81005FE872 /* SDL_keyboard.c in Sources */ = {isa = PBXBuildFile; fileRef = 0153836B006D79147F000001 /* SDL_keyboard.c */; }; + BECDF6870761BA81005FE872 /* SDL_mouse.c in Sources */ = {isa = PBXBuildFile; fileRef = 0153836C006D79147F000001 /* SDL_mouse.c */; }; + BECDF6880761BA81005FE872 /* SDL_quit.c in Sources */ = {isa = PBXBuildFile; fileRef = 0153836D006D79147F000001 /* SDL_quit.c */; }; + BECDF6890761BA81005FE872 /* SDL_resize.c in Sources */ = {isa = PBXBuildFile; fileRef = 0153836E006D79147F000001 /* SDL_resize.c */; }; + BECDF68A0761BA81005FE872 /* SDL_rwops.c in Sources */ = {isa = PBXBuildFile; fileRef = 01538377006D79307F000001 /* SDL_rwops.c */; }; + BECDF68B0761BA81005FE872 /* SDL_joystick.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E489D006D88D97F000001 /* SDL_joystick.c */; }; + BECDF68C0761BA81005FE872 /* SDL_thread.c in Sources */ = {isa = PBXBuildFile; fileRef = 01538445006D7EC67F000001 /* SDL_thread.c */; }; + BECDF6920761BA81005FE872 /* SDL_timer.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383A0006D79BC7F000001 /* SDL_timer.c */; }; + BECDF6930761BA81005FE872 /* SDL_blit.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383D8006D7A567F000001 /* SDL_blit.c */; }; + BECDF6940761BA81005FE872 /* SDL_blit_0.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383DA006D7A567F000001 /* SDL_blit_0.c */; }; + BECDF6950761BA81005FE872 /* SDL_blit_1.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383DB006D7A567F000001 /* SDL_blit_1.c */; }; + BECDF6960761BA81005FE872 /* SDL_blit_A.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383DC006D7A567F000001 /* SDL_blit_A.c */; }; + BECDF6970761BA81005FE872 /* SDL_blit_N.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383DE006D7A567F000001 /* SDL_blit_N.c */; }; + BECDF6980761BA81005FE872 /* SDL_bmp.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383DF006D7A567F000001 /* SDL_bmp.c */; }; + BECDF6990761BA81005FE872 /* SDL_cursor.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383E0006D7A567F000001 /* SDL_cursor.c */; }; + BECDF69A0761BA81005FE872 /* SDL_gamma.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383E2006D7A567F000001 /* SDL_gamma.c */; }; + BECDF69B0761BA81005FE872 /* SDL_pixels.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383E6006D7A567F000001 /* SDL_pixels.c */; }; + BECDF69C0761BA81005FE872 /* SDL_RLEaccel.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383E8006D7A567F000001 /* SDL_RLEaccel.c */; }; + BECDF69D0761BA81005FE872 /* SDL_stretch.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383EA006D7A567F000001 /* SDL_stretch.c */; }; + BECDF69E0761BA81005FE872 /* SDL_surface.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383EC006D7A567F000001 /* SDL_surface.c */; }; + BECDF69F0761BA81005FE872 /* SDL_video.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383EE006D7A567F000001 /* SDL_video.c */; }; + BECDF6A00761BA81005FE872 /* SDL_yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383EF006D7A567F000001 /* SDL_yuv.c */; }; + BECDF6A10761BA81005FE872 /* SDL_yuv_sw.c in Sources */ = {isa = PBXBuildFile; fileRef = 015383F1006D7A567F000001 /* SDL_yuv_sw.c */; }; + BECDF6A20761BA81005FE872 /* SDL_error.c in Sources */ = {isa = PBXBuildFile; fileRef = 01538438006D7D947F000001 /* SDL_error.c */; }; + BECDF6A30761BA81005FE872 /* SDL_fatal.c in Sources */ = {isa = PBXBuildFile; fileRef = 01538439006D7D947F000001 /* SDL_fatal.c */; }; + BECDF6A50761BA81005FE872 /* SDL.c in Sources */ = {isa = PBXBuildFile; fileRef = 0153843C006D7D947F000001 /* SDL.c */; }; + BECDF6A60761BA81005FE872 /* SDL_sysjoystick.c in Sources */ = {isa = PBXBuildFile; fileRef = F51789D101769A2401D3D55B /* SDL_sysjoystick.c */; }; + BECDF6A80761BA81005FE872 /* SDL_syscdrom.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4894006D86FF7F000001 /* SDL_syscdrom.c */; }; + BECDF6A90761BA81005FE872 /* SDL_QuartzEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = B24DA4D705A88AD0006B9F1C /* SDL_QuartzEvents.m */; }; + BECDF6AA0761BA81005FE872 /* SDL_QuartzGL.m in Sources */ = {isa = PBXBuildFile; fileRef = B24DA4D805A88AD0006B9F1C /* SDL_QuartzGL.m */; }; + BECDF6AB0761BA81005FE872 /* SDL_QuartzVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = B24DA4DB05A88AD0006B9F1C /* SDL_QuartzVideo.m */; }; + BECDF6AC0761BA81005FE872 /* SDL_QuartzWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = B24DA4DD05A88AD0006B9F1C /* SDL_QuartzWindow.m */; }; + BECDF6AD0761BA81005FE872 /* SDL_QuartzWM.m in Sources */ = {isa = PBXBuildFile; fileRef = B24DA4DE05A88AD0006B9F1C /* SDL_QuartzWM.m */; }; + BECDF6AF0761BA81005FE872 /* SDL_cpuinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = B24DA50405A88D52006B9F1C /* SDL_cpuinfo.c */; }; + BECDF6B00761BA81005FE872 /* SDL_coreaudio.c in Sources */ = {isa = PBXBuildFile; fileRef = BECDF5D50761B759005FE872 /* SDL_coreaudio.c */; }; + BECDF6B70761BA81005FE872 /* SDLMain.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EECDF2E0086C3A07F000001 /* SDLMain.m */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 00830FFF1072D94A00A531F1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0032354F1070931700C76517; + remoteInfo = "Generate Doxygen DocSet"; + }; + BECDF6C50761BA81005FE872 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BECDF5FE0761BA81005FE872; + remoteInfo = "Framework (Upgraded)"; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 0014B7E809C0D8D2003A99D5 /* SDL_dgaevents_c.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_dgaevents_c.h; sourceTree = ""; }; + 0014B7E909C0D8D2003A99D5 /* SDL_dgaevents.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_dgaevents.c; sourceTree = ""; }; + 0014B7EA09C0D8D2003A99D5 /* SDL_dgamouse_c.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_dgamouse_c.h; sourceTree = ""; }; + 0014B7EB09C0D8D2003A99D5 /* SDL_dgamouse.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_dgamouse.c; sourceTree = ""; }; + 0014B7EC09C0D8D2003A99D5 /* SDL_dgavideo.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_dgavideo.c; sourceTree = ""; }; + 0014B7ED09C0D8D2003A99D5 /* SDL_dgavideo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_dgavideo.h; sourceTree = ""; }; + 0014B83709C0D977003A99D5 /* SDL_x11dga_c.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_x11dga_c.h; sourceTree = ""; }; + 0014B83809C0D977003A99D5 /* SDL_x11dga.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_x11dga.c; sourceTree = ""; }; + 0014B83909C0D977003A99D5 /* SDL_x11dyn.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_x11dyn.c; sourceTree = ""; }; + 0014B83A09C0D977003A99D5 /* SDL_x11dyn.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_x11dyn.h; sourceTree = ""; }; + 0014B83B09C0D977003A99D5 /* SDL_x11events_c.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_x11events_c.h; sourceTree = ""; }; + 0014B83C09C0D977003A99D5 /* SDL_x11events.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_x11events.c; sourceTree = ""; }; + 0014B83D09C0D977003A99D5 /* SDL_x11gamma_c.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_x11gamma_c.h; sourceTree = ""; }; + 0014B83E09C0D977003A99D5 /* SDL_x11gamma.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_x11gamma.c; sourceTree = ""; }; + 0014B83F09C0D977003A99D5 /* SDL_x11gl_c.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_x11gl_c.h; sourceTree = ""; }; + 0014B84009C0D977003A99D5 /* SDL_x11gl.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_x11gl.c; sourceTree = ""; }; + 0014B84109C0D977003A99D5 /* SDL_x11image_c.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_x11image_c.h; sourceTree = ""; }; + 0014B84209C0D977003A99D5 /* SDL_x11image.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_x11image.c; sourceTree = ""; }; + 0014B84309C0D977003A99D5 /* SDL_x11modes_c.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_x11modes_c.h; sourceTree = ""; }; + 0014B84409C0D977003A99D5 /* SDL_x11modes.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_x11modes.c; sourceTree = ""; }; + 0014B84509C0D977003A99D5 /* SDL_x11mouse_c.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_x11mouse_c.h; sourceTree = ""; }; + 0014B84609C0D977003A99D5 /* SDL_x11mouse.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_x11mouse.c; sourceTree = ""; }; + 0014B84709C0D977003A99D5 /* SDL_x11sym.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_x11sym.h; sourceTree = ""; }; + 0014B84809C0D977003A99D5 /* SDL_x11video.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_x11video.c; sourceTree = ""; }; + 0014B84909C0D977003A99D5 /* SDL_x11video.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_x11video.h; sourceTree = ""; }; + 0014B84A09C0D977003A99D5 /* SDL_x11wm_c.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_x11wm_c.h; sourceTree = ""; }; + 0014B84B09C0D977003A99D5 /* SDL_x11wm.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_x11wm.c; sourceTree = ""; }; + 0014B84C09C0D977003A99D5 /* SDL_x11yuv_c.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_x11yuv_c.h; sourceTree = ""; }; + 0014B84D09C0D977003A99D5 /* SDL_x11yuv.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_x11yuv.c; sourceTree = ""; }; + 0014B89009C0DA94003A99D5 /* XF86DGA.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = XF86DGA.c; sourceTree = ""; }; + 0014B89109C0DA94003A99D5 /* XF86DGA2.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = XF86DGA2.c; sourceTree = ""; }; + 0014B89609C0DAA1003A99D5 /* XF86VMode.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = XF86VMode.c; sourceTree = ""; }; + 0014B89909C0DAAE003A99D5 /* Xv.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = Xv.c; sourceTree = ""; }; + 0014B89A09C0DAAE003A99D5 /* Xvlibint.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Xvlibint.h; sourceTree = ""; }; + 0014B89F09C0DAB9003A99D5 /* Xinerama.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = Xinerama.c; sourceTree = ""; }; + 0014B8A209C0DAC4003A99D5 /* xme.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = xme.c; sourceTree = ""; }; + 00162D3209BD1FA90037C8D0 /* SDL_config_dreamcast.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_config_dreamcast.h; path = ../../include/SDL_config_dreamcast.h; sourceTree = SOURCE_ROOT; }; + 00162D3309BD1FA90037C8D0 /* SDL_config_macos.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_config_macos.h; path = ../../include/SDL_config_macos.h; sourceTree = SOURCE_ROOT; }; + 00162D3409BD1FA90037C8D0 /* SDL_config_macosx.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_config_macosx.h; path = ../../include/SDL_config_macosx.h; sourceTree = SOURCE_ROOT; }; + 00162D3509BD1FA90037C8D0 /* SDL_config_os2.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_config_os2.h; path = ../../include/SDL_config_os2.h; sourceTree = SOURCE_ROOT; }; + 00162D3609BD1FA90037C8D0 /* SDL_config_win32.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_config_win32.h; path = ../../include/SDL_config_win32.h; sourceTree = SOURCE_ROOT; }; + 00162D3709BD1FA90037C8D0 /* SDL_config.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_config.h; path = ../../include/SDL_config.h; sourceTree = SOURCE_ROOT; }; + 00162D3809BD1FA90037C8D0 /* SDL_platform.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_platform.h; path = ../../include/SDL_platform.h; sourceTree = SOURCE_ROOT; }; + 00162D3909BD1FA90037C8D0 /* SDL_stdinc.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_stdinc.h; path = ../../include/SDL_stdinc.h; sourceTree = SOURCE_ROOT; }; + 00162D4D09BD20DA0037C8D0 /* SDL_syscond.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_syscond.c; sourceTree = ""; }; + 00162D4E09BD20DA0037C8D0 /* SDL_sysmutex.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_sysmutex.c; sourceTree = ""; }; + 00162D4F09BD20DA0037C8D0 /* SDL_sysmutex_c.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_sysmutex_c.h; sourceTree = ""; }; + 00162D5009BD20DA0037C8D0 /* SDL_syssem.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_syssem.c; sourceTree = ""; }; + 00162D5109BD20DA0037C8D0 /* SDL_systhread.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_systhread.c; sourceTree = ""; }; + 00162D5209BD20DA0037C8D0 /* SDL_systhread_c.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_systhread_c.h; sourceTree = ""; }; + 00162D6009BD21010037C8D0 /* SDL_systimer.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_systimer.c; sourceTree = ""; }; + 00162D6509BD214F0037C8D0 /* SDL_getenv.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_getenv.c; sourceTree = ""; }; + 00162D6609BD214F0037C8D0 /* SDL_malloc.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_malloc.c; sourceTree = ""; }; + 00162D6709BD214F0037C8D0 /* SDL_qsort.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_qsort.c; sourceTree = ""; }; + 00162D6809BD214F0037C8D0 /* SDL_stdlib.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_stdlib.c; sourceTree = ""; }; + 00162D6909BD214F0037C8D0 /* SDL_string.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_string.c; sourceTree = ""; }; + 00162F3409BE27FB0037C8D0 /* SDL_nullevents.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_nullevents.c; sourceTree = ""; }; + 00162F3509BE27FB0037C8D0 /* SDL_nullevents_c.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_nullevents_c.h; sourceTree = ""; }; + 00162F3609BE27FB0037C8D0 /* SDL_nullmouse.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_nullmouse.c; sourceTree = ""; }; + 00162F3709BE27FB0037C8D0 /* SDL_nullmouse_c.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_nullmouse_c.h; sourceTree = ""; }; + 00162F3809BE27FB0037C8D0 /* SDL_nullvideo.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_nullvideo.c; sourceTree = ""; }; + 00162F3909BE27FB0037C8D0 /* SDL_nullvideo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_nullvideo.h; sourceTree = ""; }; + 002F328509CA049100EBEB88 /* SDL_iconv.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_iconv.c; sourceTree = ""; }; + 002F32D409CA0BE700EBEB88 /* SDL_diskaudio.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_diskaudio.c; sourceTree = ""; }; + 002F32D509CA0BE700EBEB88 /* SDL_diskaudio.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_diskaudio.h; sourceTree = ""; }; + 002F32E209CA0BF600EBEB88 /* SDL_dummyaudio.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_dummyaudio.c; sourceTree = ""; }; + 002F32E309CA0BF600EBEB88 /* SDL_dummyaudio.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_dummyaudio.h; sourceTree = ""; }; + 004C2C860975E13300E9D430 /* AudioFilePlayer.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = AudioFilePlayer.c; sourceTree = ""; }; + 004C2C870975E13300E9D430 /* AudioFileReaderThread.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = AudioFileReaderThread.c; sourceTree = ""; }; + 004C2C880975E13300E9D430 /* CDPlayer.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = CDPlayer.c; sourceTree = ""; }; + 004C2C890975E13300E9D430 /* SDLOSXCAGuard.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDLOSXCAGuard.c; sourceTree = ""; }; + 004C2C8A0975E13300E9D430 /* SDLOSXCAGuard.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDLOSXCAGuard.h; sourceTree = ""; }; + 0073179B0858DECD00B2BC32 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = /System/Library/Frameworks/AudioToolbox.framework; sourceTree = ""; }; + 0073179C0858DECD00B2BC32 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioUnit.framework; path = /System/Library/Frameworks/AudioUnit.framework; sourceTree = ""; }; + 0073179D0858DECD00B2BC32 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = ""; }; + 0073179E0858DECD00B2BC32 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = /System/Library/Frameworks/CoreAudio.framework; sourceTree = ""; }; + 0073179F0858DECD00B2BC32 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = /System/Library/Frameworks/IOKit.framework; sourceTree = ""; }; + 007317A00858DECD00B2BC32 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = /System/Library/Frameworks/OpenGL.framework; sourceTree = ""; }; + 007317A10858DECD00B2BC32 /* QuickTime.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickTime.framework; path = /System/Library/Frameworks/QuickTime.framework; sourceTree = ""; }; + 007317C10858E15000B2BC32 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = ""; }; + 00794D3F09D0C461003FC8A1 /* License.rtf */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; path = License.rtf; sourceTree = ""; }; + 00AE6E1E08B958CC00255E2F /* ReadMeDevLite.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = ReadMeDevLite.txt; sourceTree = ""; }; + 00B7E61F097F2D9E00826121 /* SDL_mixer_MMX.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_mixer_MMX.c; sourceTree = ""; }; + 00B7E620097F2D9E00826121 /* SDL_mixer_MMX.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_mixer_MMX.h; sourceTree = ""; }; + 00B7E625097F2DD100826121 /* SDL_yuv_mmx.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_yuv_mmx.c; sourceTree = ""; }; + 00D0D02210675823004B05EF /* SDL_QuartzWM.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_QuartzWM.h; sourceTree = ""; }; + 00D0D08310675DD9004B05EF /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = /System/Library/Frameworks/CoreFoundation.framework; sourceTree = ""; }; + 00F5D79E0990CA0D0051C449 /* UniversalBinaryNotes.rtf */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; path = UniversalBinaryNotes.rtf; sourceTree = ""; }; + 01538330006D78D67F000001 /* SDL_audio.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_audio.c; sourceTree = ""; }; + 01538331006D78D67F000001 /* SDL_audiocvt.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_audiocvt.c; sourceTree = ""; }; + 01538332006D78D67F000001 /* SDL_audiodev.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_audiodev.c; sourceTree = ""; }; + 01538334006D78D67F000001 /* SDL_mixer.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_mixer.c; sourceTree = ""; }; + 01538335006D78D67F000001 /* SDL_wave.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_wave.c; sourceTree = ""; }; + 01538368006D79147F000001 /* SDL_active.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_active.c; sourceTree = ""; }; + 01538369006D79147F000001 /* SDL_events.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_events.c; sourceTree = ""; }; + 0153836A006D79147F000001 /* SDL_expose.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_expose.c; sourceTree = ""; }; + 0153836B006D79147F000001 /* SDL_keyboard.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_keyboard.c; sourceTree = ""; }; + 0153836C006D79147F000001 /* SDL_mouse.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_mouse.c; sourceTree = ""; }; + 0153836D006D79147F000001 /* SDL_quit.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_quit.c; sourceTree = ""; }; + 0153836E006D79147F000001 /* SDL_resize.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_resize.c; sourceTree = ""; }; + 01538377006D79307F000001 /* SDL_rwops.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_rwops.c; sourceTree = ""; }; + 015383A0006D79BC7F000001 /* SDL_timer.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_timer.c; sourceTree = ""; }; + 015383C5006D7A567F000001 /* SDL_macevents.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_macevents.c; sourceTree = ""; }; + 015383C7006D7A567F000001 /* SDL_macgl.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_macgl.c; sourceTree = ""; }; + 015383CA006D7A567F000001 /* SDL_macmouse.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_macmouse.c; sourceTree = ""; }; + 015383CC006D7A567F000001 /* SDL_macwm.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_macwm.c; sourceTree = ""; }; + 015383D1006D7A567F000001 /* SDL_dspvideo.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_dspvideo.c; sourceTree = ""; }; + 015383D2006D7A567F000001 /* SDL_dspvideo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_dspvideo.h; sourceTree = ""; }; + 015383D6006D7A567F000001 /* SDL_romvideo.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_romvideo.c; sourceTree = ""; }; + 015383D8006D7A567F000001 /* SDL_blit.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_blit.c; sourceTree = ""; }; + 015383DA006D7A567F000001 /* SDL_blit_0.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_blit_0.c; sourceTree = ""; }; + 015383DB006D7A567F000001 /* SDL_blit_1.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_blit_1.c; sourceTree = ""; }; + 015383DC006D7A567F000001 /* SDL_blit_A.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_blit_A.c; sourceTree = ""; }; + 015383DE006D7A567F000001 /* SDL_blit_N.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_blit_N.c; sourceTree = ""; }; + 015383DF006D7A567F000001 /* SDL_bmp.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_bmp.c; sourceTree = ""; }; + 015383E0006D7A567F000001 /* SDL_cursor.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_cursor.c; sourceTree = ""; }; + 015383E2006D7A567F000001 /* SDL_gamma.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_gamma.c; sourceTree = ""; }; + 015383E6006D7A567F000001 /* SDL_pixels.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_pixels.c; sourceTree = ""; }; + 015383E8006D7A567F000001 /* SDL_RLEaccel.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_RLEaccel.c; sourceTree = ""; }; + 015383EA006D7A567F000001 /* SDL_stretch.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_stretch.c; sourceTree = ""; }; + 015383EC006D7A567F000001 /* SDL_surface.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_surface.c; sourceTree = ""; }; + 015383EE006D7A567F000001 /* SDL_video.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_video.c; sourceTree = ""; }; + 015383EF006D7A567F000001 /* SDL_yuv.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_yuv.c; sourceTree = ""; }; + 015383F1006D7A567F000001 /* SDL_yuv_sw.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_yuv_sw.c; sourceTree = ""; }; + 01538438006D7D947F000001 /* SDL_error.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = SDL_error.c; path = ../../src/SDL_error.c; sourceTree = SOURCE_ROOT; }; + 01538439006D7D947F000001 /* SDL_fatal.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = SDL_fatal.c; path = ../../src/SDL_fatal.c; sourceTree = SOURCE_ROOT; }; + 0153843C006D7D947F000001 /* SDL.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = SDL.c; path = ../../src/SDL.c; sourceTree = SOURCE_ROOT; }; + 01538445006D7EC67F000001 /* SDL_thread.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = SDL_thread.c; path = ../../src/thread/SDL_thread.c; sourceTree = SOURCE_ROOT; }; + 046B91E90A11B53500FB151C /* SDL_sysloadso.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_sysloadso.c; sourceTree = ""; }; + 046B92100A11B8AD00FB151C /* SDL_dlcompat.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_dlcompat.c; sourceTree = ""; }; + 083E4894006D86FF7F000001 /* SDL_syscdrom.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_syscdrom.c; sourceTree = ""; }; + 083E4895006D86FF7F000001 /* SDL_cdrom.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_cdrom.c; sourceTree = ""; }; + 083E489D006D88D97F000001 /* SDL_joystick.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_joystick.c; sourceTree = ""; }; + 0C5AF5E501191D2B7F000001 /* begin_code.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = begin_code.h; path = ../../include/begin_code.h; sourceTree = SOURCE_ROOT; }; + 0C5AF5E601191D2B7F000001 /* close_code.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = close_code.h; path = ../../include/close_code.h; sourceTree = SOURCE_ROOT; }; + 0C5AF5E701191D2B7F000001 /* SDL_active.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_active.h; path = ../../include/SDL_active.h; sourceTree = SOURCE_ROOT; }; + 0C5AF5E801191D2B7F000001 /* SDL_audio.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_audio.h; path = ../../include/SDL_audio.h; sourceTree = SOURCE_ROOT; }; + 0C5AF5E901191D2B7F000001 /* SDL_byteorder.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_byteorder.h; path = ../../include/SDL_byteorder.h; sourceTree = SOURCE_ROOT; }; + 0C5AF5EA01191D2B7F000001 /* SDL_cdrom.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_cdrom.h; path = ../../include/SDL_cdrom.h; sourceTree = SOURCE_ROOT; }; + 0C5AF5EB01191D2B7F000001 /* SDL_copying.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_copying.h; path = ../../include/SDL_copying.h; sourceTree = SOURCE_ROOT; }; + 0C5AF5EC01191D2B7F000001 /* SDL_endian.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_endian.h; path = ../../include/SDL_endian.h; sourceTree = SOURCE_ROOT; }; + 0C5AF5ED01191D2B7F000001 /* SDL_error.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_error.h; path = ../../include/SDL_error.h; sourceTree = SOURCE_ROOT; }; + 0C5AF5EE01191D2B7F000001 /* SDL_events.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_events.h; path = ../../include/SDL_events.h; sourceTree = SOURCE_ROOT; }; + 0C5AF5EF01191D2B7F000001 /* SDL_getenv.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_getenv.h; path = ../../include/SDL_getenv.h; sourceTree = SOURCE_ROOT; }; + 0C5AF5F001191D2B7F000001 /* SDL_joystick.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_joystick.h; path = ../../include/SDL_joystick.h; sourceTree = SOURCE_ROOT; }; + 0C5AF5F101191D2B7F000001 /* SDL_keyboard.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_keyboard.h; path = ../../include/SDL_keyboard.h; sourceTree = SOURCE_ROOT; }; + 0C5AF5F201191D2B7F000001 /* SDL_keysym.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_keysym.h; path = ../../include/SDL_keysym.h; sourceTree = SOURCE_ROOT; }; + 0C5AF5F301191D2B7F000001 /* SDL_main.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_main.h; path = ../../include/SDL_main.h; sourceTree = SOURCE_ROOT; }; + 0C5AF5F401191D2B7F000001 /* SDL_mouse.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_mouse.h; path = ../../include/SDL_mouse.h; sourceTree = SOURCE_ROOT; }; + 0C5AF5F501191D2B7F000001 /* SDL_mutex.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_mutex.h; path = ../../include/SDL_mutex.h; sourceTree = SOURCE_ROOT; }; + 0C5AF5F601191D2B7F000001 /* SDL_opengl.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_opengl.h; path = ../../include/SDL_opengl.h; sourceTree = SOURCE_ROOT; }; + 0C5AF5F701191D2B7F000001 /* SDL_quit.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_quit.h; path = ../../include/SDL_quit.h; sourceTree = SOURCE_ROOT; }; + 0C5AF5F801191D2B7F000001 /* SDL_rwops.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_rwops.h; path = ../../include/SDL_rwops.h; sourceTree = SOURCE_ROOT; }; + 0C5AF5F901191D2B7F000001 /* SDL_syswm.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_syswm.h; path = ../../include/SDL_syswm.h; sourceTree = SOURCE_ROOT; }; + 0C5AF5FA01191D2B7F000001 /* SDL_thread.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_thread.h; path = ../../include/SDL_thread.h; sourceTree = SOURCE_ROOT; }; + 0C5AF5FB01191D2B7F000001 /* SDL_timer.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_timer.h; path = ../../include/SDL_timer.h; sourceTree = SOURCE_ROOT; }; + 0C5AF5FC01191D2B7F000001 /* SDL_types.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_types.h; path = ../../include/SDL_types.h; sourceTree = SOURCE_ROOT; }; + 0C5AF5FD01191D2B7F000001 /* SDL_version.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_version.h; path = ../../include/SDL_version.h; sourceTree = SOURCE_ROOT; }; + 0C5AF5FE01191D2B7F000001 /* SDL_video.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_video.h; path = ../../include/SDL_video.h; sourceTree = SOURCE_ROOT; }; + 0C5AF5FF01191D2B7F000001 /* SDL.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL.h; path = ../../include/SDL.h; sourceTree = SOURCE_ROOT; }; + 2EECDF2D0086C3A07F000001 /* SDLMain.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDLMain.h; path = ../../src/main/macosx/SDLMain.h; sourceTree = SOURCE_ROOT; }; + 2EECDF2E0086C3A07F000001 /* SDLMain.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = SDLMain.m; path = ../../src/main/macosx/SDLMain.m; sourceTree = SOURCE_ROOT; }; + 2EECDF2F0086C3A07F000001 /* SDLMain.nib */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = SDLMain.nib; path = ../../src/main/macosx/SDLMain.nib; sourceTree = SOURCE_ROOT; }; + B24DA4D605A88AD0006B9F1C /* CGS.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = CGS.h; sourceTree = ""; }; + B24DA4D705A88AD0006B9F1C /* SDL_QuartzEvents.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = SDL_QuartzEvents.m; sourceTree = ""; }; + B24DA4D805A88AD0006B9F1C /* SDL_QuartzGL.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = SDL_QuartzGL.m; sourceTree = ""; }; + B24DA4D905A88AD0006B9F1C /* SDL_QuartzKeys.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_QuartzKeys.h; sourceTree = ""; }; + B24DA4DA05A88AD0006B9F1C /* SDL_QuartzVideo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_QuartzVideo.h; sourceTree = ""; }; + B24DA4DB05A88AD0006B9F1C /* SDL_QuartzVideo.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = SDL_QuartzVideo.m; sourceTree = ""; }; + B24DA4DC05A88AD0006B9F1C /* SDL_QuartzWindow.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_QuartzWindow.h; sourceTree = ""; }; + B24DA4DD05A88AD0006B9F1C /* SDL_QuartzWindow.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = SDL_QuartzWindow.m; sourceTree = ""; }; + B24DA4DE05A88AD0006B9F1C /* SDL_QuartzWM.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = SDL_QuartzWM.m; sourceTree = ""; }; + B24DA50405A88D52006B9F1C /* SDL_cpuinfo.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_cpuinfo.c; sourceTree = ""; }; + B29A290D04E5B28700A80002 /* SDL_loadso.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_loadso.h; path = ../../include/SDL_loadso.h; sourceTree = ""; }; + B2A23A450415799100A80002 /* AudioFilePlayer.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = AudioFilePlayer.h; sourceTree = ""; }; + B2A23A7A04157C5700A80002 /* SDL_syscdrom_c.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_syscdrom_c.h; sourceTree = ""; }; + B2A23A7B04157C5700A80002 /* SDL_syscdrom.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_syscdrom.c; sourceTree = ""; }; + B2A23A8104157D5D00A80002 /* CDPlayer.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = CDPlayer.h; sourceTree = ""; }; + B2CF8DC405C444E400E5DC7F /* SDL_cpuinfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_cpuinfo.h; path = ../../include/SDL_cpuinfo.h; sourceTree = SOURCE_ROOT; }; + B2CF8DC705C4450500E5DC7F /* SDL_name.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDL_name.h; path = ../../include/SDL_name.h; sourceTree = SOURCE_ROOT; }; + BECDF5D50761B759005FE872 /* SDL_coreaudio.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_coreaudio.c; sourceTree = ""; }; + BECDF5D60761B759005FE872 /* SDL_coreaudio.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDL_coreaudio.h; sourceTree = ""; }; + BECDF66B0761BA81005FE872 /* Info-Framework.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Info-Framework.plist"; sourceTree = ""; }; + BECDF66C0761BA81005FE872 /* SDL.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SDL.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + BECDF6B30761BA81005FE872 /* libSDL.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libSDL.a; sourceTree = BUILT_PRODUCTS_DIR; }; + BECDF6BA0761BA81005FE872 /* libSDLmain.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libSDLmain.a; sourceTree = BUILT_PRODUCTS_DIR; }; + BECDF6BE0761BA81005FE872 /* Standard DMG */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "Standard DMG"; sourceTree = BUILT_PRODUCTS_DIR; }; + BECDF6C30761BA81005FE872 /* Developer Extras Package */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "Developer Extras Package"; sourceTree = BUILT_PRODUCTS_DIR; }; + F51789D101769A2401D3D55B /* SDL_sysjoystick.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = SDL_sysjoystick.c; sourceTree = ""; }; + F59C70FF00D5CB5801000001 /* ReadMe.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = ReadMe.txt; sourceTree = ""; }; + F59C710000D5CB5801000001 /* Welcome.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = Welcome.txt; sourceTree = ""; }; + F59C710300D5CB5801000001 /* ReadMe.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = ReadMe.txt; sourceTree = ""; }; + F59C710500D5CB5801000001 /* SDL-devel.info */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = "SDL-devel.info"; sourceTree = ""; }; + F59C710600D5CB5801000001 /* SDL.info */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = SDL.info; sourceTree = ""; }; + F59C710C00D5D15801000001 /* install.sh */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.script.sh; path = install.sh; sourceTree = ""; }; + F5A2EF3900C6A39A01000001 /* BUGS */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; name = BUGS; path = ../../BUGS; sourceTree = SOURCE_ROOT; }; + F5A2EF3A00C6A3C201000001 /* README.MacOSX */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; name = README.MacOSX; path = ../../README.MacOSX; sourceTree = SOURCE_ROOT; }; + F5F81AD400D706B101000001 /* Readme SDL Developer.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; name = "Readme SDL Developer.txt"; path = "pkg-support/Readme SDL Developer.txt"; sourceTree = SOURCE_ROOT; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + BECDF6680761BA81005FE872 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 007317A20858DECD00B2BC32 /* AudioToolbox.framework in Frameworks */, + 007317A30858DECD00B2BC32 /* AudioUnit.framework in Frameworks */, + 007317A40858DECD00B2BC32 /* Cocoa.framework in Frameworks */, + 007317A50858DECD00B2BC32 /* CoreAudio.framework in Frameworks */, + 007317A60858DECD00B2BC32 /* IOKit.framework in Frameworks */, + 007317A70858DECD00B2BC32 /* OpenGL.framework in Frameworks */, + 00D0D08410675DD9004B05EF /* CoreFoundation.framework in Frameworks */, + 00D0D0D810675E46004B05EF /* Carbon.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BECDF6B10761BA81005FE872 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 007317A90858DECD00B2BC32 /* AudioToolbox.framework in Frameworks */, + 007317AA0858DECD00B2BC32 /* AudioUnit.framework in Frameworks */, + 007317AB0858DECD00B2BC32 /* Cocoa.framework in Frameworks */, + 007317AC0858DECD00B2BC32 /* CoreAudio.framework in Frameworks */, + 007317AD0858DECD00B2BC32 /* IOKit.framework in Frameworks */, + 007317AE0858DECD00B2BC32 /* OpenGL.framework in Frameworks */, + 007317AF0858DECD00B2BC32 /* QuickTime.framework in Frameworks */, + 007317C30858E15000B2BC32 /* Carbon.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BECDF6B80761BA81005FE872 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 007317B00858DECD00B2BC32 /* AudioToolbox.framework in Frameworks */, + 007317B10858DECD00B2BC32 /* AudioUnit.framework in Frameworks */, + 007317B20858DECD00B2BC32 /* Cocoa.framework in Frameworks */, + 007317B30858DECD00B2BC32 /* CoreAudio.framework in Frameworks */, + 007317B40858DECD00B2BC32 /* IOKit.framework in Frameworks */, + 007317B50858DECD00B2BC32 /* OpenGL.framework in Frameworks */, + 007317B60858DECD00B2BC32 /* QuickTime.framework in Frameworks */, + 007317C40858E15000B2BC32 /* Carbon.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 0014B7D809C0D808003A99D5 /* dga */ = { + isa = PBXGroup; + children = ( + 0014B7E809C0D8D2003A99D5 /* SDL_dgaevents_c.h */, + 0014B7E909C0D8D2003A99D5 /* SDL_dgaevents.c */, + 0014B7EA09C0D8D2003A99D5 /* SDL_dgamouse_c.h */, + 0014B7EB09C0D8D2003A99D5 /* SDL_dgamouse.c */, + 0014B7EC09C0D8D2003A99D5 /* SDL_dgavideo.c */, + 0014B7ED09C0D8D2003A99D5 /* SDL_dgavideo.h */, + ); + path = dga; + sourceTree = ""; + }; + 0014B83109C0D91E003A99D5 /* x11 */ = { + isa = PBXGroup; + children = ( + 0014B83709C0D977003A99D5 /* SDL_x11dga_c.h */, + 0014B83809C0D977003A99D5 /* SDL_x11dga.c */, + 0014B83909C0D977003A99D5 /* SDL_x11dyn.c */, + 0014B83A09C0D977003A99D5 /* SDL_x11dyn.h */, + 0014B83B09C0D977003A99D5 /* SDL_x11events_c.h */, + 0014B83C09C0D977003A99D5 /* SDL_x11events.c */, + 0014B83D09C0D977003A99D5 /* SDL_x11gamma_c.h */, + 0014B83E09C0D977003A99D5 /* SDL_x11gamma.c */, + 0014B83F09C0D977003A99D5 /* SDL_x11gl_c.h */, + 0014B84009C0D977003A99D5 /* SDL_x11gl.c */, + 0014B84109C0D977003A99D5 /* SDL_x11image_c.h */, + 0014B84209C0D977003A99D5 /* SDL_x11image.c */, + 0014B84309C0D977003A99D5 /* SDL_x11modes_c.h */, + 0014B84409C0D977003A99D5 /* SDL_x11modes.c */, + 0014B84509C0D977003A99D5 /* SDL_x11mouse_c.h */, + 0014B84609C0D977003A99D5 /* SDL_x11mouse.c */, + 0014B84709C0D977003A99D5 /* SDL_x11sym.h */, + 0014B84809C0D977003A99D5 /* SDL_x11video.c */, + 0014B84909C0D977003A99D5 /* SDL_x11video.h */, + 0014B84A09C0D977003A99D5 /* SDL_x11wm_c.h */, + 0014B84B09C0D977003A99D5 /* SDL_x11wm.c */, + 0014B84C09C0D977003A99D5 /* SDL_x11yuv_c.h */, + 0014B84D09C0D977003A99D5 /* SDL_x11yuv.c */, + ); + path = x11; + sourceTree = ""; + }; + 0014B87D09C0D98A003A99D5 /* Xext */ = { + isa = PBXGroup; + children = ( + 0014B87E09C0D9BD003A99D5 /* Xxf86dga */, + 0014B87F09C0D9D1003A99D5 /* Xxf86vm */, + 0014B88309C0DA1A003A99D5 /* Xv */, + 0014B88209C0DA0F003A99D5 /* Xinerama */, + 0014B88109C0DA04003A99D5 /* XME */, + ); + path = Xext; + sourceTree = ""; + }; + 0014B87E09C0D9BD003A99D5 /* Xxf86dga */ = { + isa = PBXGroup; + children = ( + 0014B89009C0DA94003A99D5 /* XF86DGA.c */, + 0014B89109C0DA94003A99D5 /* XF86DGA2.c */, + ); + path = Xxf86dga; + sourceTree = ""; + }; + 0014B87F09C0D9D1003A99D5 /* Xxf86vm */ = { + isa = PBXGroup; + children = ( + 0014B89609C0DAA1003A99D5 /* XF86VMode.c */, + ); + path = Xxf86vm; + sourceTree = ""; + }; + 0014B88109C0DA04003A99D5 /* XME */ = { + isa = PBXGroup; + children = ( + 0014B8A209C0DAC4003A99D5 /* xme.c */, + ); + path = XME; + sourceTree = ""; + }; + 0014B88209C0DA0F003A99D5 /* Xinerama */ = { + isa = PBXGroup; + children = ( + 0014B89F09C0DAB9003A99D5 /* Xinerama.c */, + ); + path = Xinerama; + sourceTree = ""; + }; + 0014B88309C0DA1A003A99D5 /* Xv */ = { + isa = PBXGroup; + children = ( + 0014B89909C0DAAE003A99D5 /* Xv.c */, + 0014B89A09C0DAAE003A99D5 /* Xvlibint.h */, + ); + path = Xv; + sourceTree = ""; + }; + 00162D4C09BD20DA0037C8D0 /* pthread */ = { + isa = PBXGroup; + children = ( + 00162D4D09BD20DA0037C8D0 /* SDL_syscond.c */, + 00162D4E09BD20DA0037C8D0 /* SDL_sysmutex.c */, + 00162D4F09BD20DA0037C8D0 /* SDL_sysmutex_c.h */, + 00162D5009BD20DA0037C8D0 /* SDL_syssem.c */, + 00162D5109BD20DA0037C8D0 /* SDL_systhread.c */, + 00162D5209BD20DA0037C8D0 /* SDL_systhread_c.h */, + ); + path = pthread; + sourceTree = ""; + }; + 00162D5F09BD21010037C8D0 /* unix */ = { + isa = PBXGroup; + children = ( + 00162D6009BD21010037C8D0 /* SDL_systimer.c */, + ); + path = unix; + sourceTree = ""; + }; + 00162D6309BD214E0037C8D0 /* stdlib */ = { + isa = PBXGroup; + children = ( + 00162D6509BD214F0037C8D0 /* SDL_getenv.c */, + 002F328509CA049100EBEB88 /* SDL_iconv.c */, + 00162D6609BD214F0037C8D0 /* SDL_malloc.c */, + 00162D6709BD214F0037C8D0 /* SDL_qsort.c */, + 00162D6809BD214F0037C8D0 /* SDL_stdlib.c */, + 00162D6909BD214F0037C8D0 /* SDL_string.c */, + ); + name = stdlib; + path = ../../src/stdlib; + sourceTree = SOURCE_ROOT; + }; + 00162D7509BD217B0037C8D0 /* loadso */ = { + isa = PBXGroup; + children = ( + 046B91E80A11B53500FB151C /* dlopen */, + 00D55F250A11163D0030ED2A /* macosx */, + ); + name = loadso; + path = ../../src/loadso; + sourceTree = SOURCE_ROOT; + }; + 00162F3209BE27FB0037C8D0 /* dummy */ = { + isa = PBXGroup; + children = ( + 00162F3409BE27FB0037C8D0 /* SDL_nullevents.c */, + 00162F3509BE27FB0037C8D0 /* SDL_nullevents_c.h */, + 00162F3609BE27FB0037C8D0 /* SDL_nullmouse.c */, + 00162F3709BE27FB0037C8D0 /* SDL_nullmouse_c.h */, + 00162F3809BE27FB0037C8D0 /* SDL_nullvideo.c */, + 00162F3909BE27FB0037C8D0 /* SDL_nullvideo.h */, + ); + path = dummy; + sourceTree = ""; + }; + 002F32D209CA0BE700EBEB88 /* disk */ = { + isa = PBXGroup; + children = ( + 002F32D409CA0BE700EBEB88 /* SDL_diskaudio.c */, + 002F32D509CA0BE700EBEB88 /* SDL_diskaudio.h */, + ); + path = disk; + sourceTree = ""; + }; + 002F32E009CA0BF600EBEB88 /* dummy */ = { + isa = PBXGroup; + children = ( + 002F32E209CA0BF600EBEB88 /* SDL_dummyaudio.c */, + 002F32E309CA0BF600EBEB88 /* SDL_dummyaudio.h */, + ); + path = dummy; + sourceTree = ""; + }; + 00D55F250A11163D0030ED2A /* macosx */ = { + isa = PBXGroup; + children = ( + 046B92100A11B8AD00FB151C /* SDL_dlcompat.c */, + ); + path = macosx; + sourceTree = ""; + }; + 0153832C006D78D67F000001 /* audio */ = { + isa = PBXGroup; + children = ( + BECDF5D20761B759005FE872 /* macosx */, + 002F32D209CA0BE700EBEB88 /* disk */, + 002F32E009CA0BF600EBEB88 /* dummy */, + 01538330006D78D67F000001 /* SDL_audio.c */, + 01538331006D78D67F000001 /* SDL_audiocvt.c */, + 01538332006D78D67F000001 /* SDL_audiodev.c */, + 01538334006D78D67F000001 /* SDL_mixer.c */, + 00B7E61F097F2D9E00826121 /* SDL_mixer_MMX.c */, + 00B7E620097F2D9E00826121 /* SDL_mixer_MMX.h */, + 01538335006D78D67F000001 /* SDL_wave.c */, + ); + name = audio; + path = ../../src/audio; + sourceTree = SOURCE_ROOT; + }; + 01538367006D79147F000001 /* events */ = { + isa = PBXGroup; + children = ( + 01538368006D79147F000001 /* SDL_active.c */, + 01538369006D79147F000001 /* SDL_events.c */, + 0153836A006D79147F000001 /* SDL_expose.c */, + 0153836B006D79147F000001 /* SDL_keyboard.c */, + 0153836C006D79147F000001 /* SDL_mouse.c */, + 0153836D006D79147F000001 /* SDL_quit.c */, + 0153836E006D79147F000001 /* SDL_resize.c */, + ); + name = events; + path = ../../src/events; + sourceTree = SOURCE_ROOT; + }; + 01538376006D79307F000001 /* file */ = { + isa = PBXGroup; + children = ( + 01538377006D79307F000001 /* SDL_rwops.c */, + ); + name = file; + path = ../../src/file; + sourceTree = SOURCE_ROOT; + }; + 01538379006D79737F000001 /* thread */ = { + isa = PBXGroup; + children = ( + 00162D4C09BD20DA0037C8D0 /* pthread */, + 01538445006D7EC67F000001 /* SDL_thread.c */, + ); + name = thread; + path = ../../src/thread; + sourceTree = SOURCE_ROOT; + }; + 01538391006D79BC7F000001 /* timer */ = { + isa = PBXGroup; + children = ( + 00162D5F09BD21010037C8D0 /* unix */, + 015383A0006D79BC7F000001 /* SDL_timer.c */, + ); + name = timer; + path = ../../src/timer; + sourceTree = SOURCE_ROOT; + }; + 015383BE006D7A567F000001 /* video */ = { + isa = PBXGroup; + children = ( + 0FCDF5B50083FCE77F000001 /* quartz */, + 015383C1006D7A567F000001 /* maccommon */, + 015383CE006D7A567F000001 /* macdsp */, + 015383D3006D7A567F000001 /* macrom */, + 00162F3209BE27FB0037C8D0 /* dummy */, + 0014B83109C0D91E003A99D5 /* x11 */, + 0014B7D809C0D808003A99D5 /* dga */, + 0014B87D09C0D98A003A99D5 /* Xext */, + 015383D8006D7A567F000001 /* SDL_blit.c */, + 015383DA006D7A567F000001 /* SDL_blit_0.c */, + 015383DB006D7A567F000001 /* SDL_blit_1.c */, + 015383DC006D7A567F000001 /* SDL_blit_A.c */, + 015383DE006D7A567F000001 /* SDL_blit_N.c */, + 015383DF006D7A567F000001 /* SDL_bmp.c */, + 015383E0006D7A567F000001 /* SDL_cursor.c */, + 015383E2006D7A567F000001 /* SDL_gamma.c */, + 015383E6006D7A567F000001 /* SDL_pixels.c */, + 015383E8006D7A567F000001 /* SDL_RLEaccel.c */, + 015383EA006D7A567F000001 /* SDL_stretch.c */, + 015383EC006D7A567F000001 /* SDL_surface.c */, + 015383EE006D7A567F000001 /* SDL_video.c */, + 015383EF006D7A567F000001 /* SDL_yuv.c */, + 00B7E625097F2DD100826121 /* SDL_yuv_mmx.c */, + 015383F1006D7A567F000001 /* SDL_yuv_sw.c */, + ); + name = video; + path = ../../src/video; + sourceTree = SOURCE_ROOT; + }; + 015383C1006D7A567F000001 /* maccommon */ = { + isa = PBXGroup; + children = ( + 015383C5006D7A567F000001 /* SDL_macevents.c */, + 015383C7006D7A567F000001 /* SDL_macgl.c */, + 015383CA006D7A567F000001 /* SDL_macmouse.c */, + 015383CC006D7A567F000001 /* SDL_macwm.c */, + ); + path = maccommon; + sourceTree = ""; + }; + 015383CE006D7A567F000001 /* macdsp */ = { + isa = PBXGroup; + children = ( + 015383D1006D7A567F000001 /* SDL_dspvideo.c */, + 015383D2006D7A567F000001 /* SDL_dspvideo.h */, + ); + path = macdsp; + sourceTree = ""; + }; + 015383D3006D7A567F000001 /* macrom */ = { + isa = PBXGroup; + children = ( + 015383D6006D7A567F000001 /* SDL_romvideo.c */, + ); + path = macrom; + sourceTree = ""; + }; + 0153844A006D81B07F000001 /* Public Headers */ = { + isa = PBXGroup; + children = ( + 00162D3209BD1FA90037C8D0 /* SDL_config_dreamcast.h */, + 00162D3309BD1FA90037C8D0 /* SDL_config_macos.h */, + 00162D3409BD1FA90037C8D0 /* SDL_config_macosx.h */, + 00162D3509BD1FA90037C8D0 /* SDL_config_os2.h */, + 00162D3609BD1FA90037C8D0 /* SDL_config_win32.h */, + 00162D3709BD1FA90037C8D0 /* SDL_config.h */, + 00162D3809BD1FA90037C8D0 /* SDL_platform.h */, + 00162D3909BD1FA90037C8D0 /* SDL_stdinc.h */, + 0C5AF5E501191D2B7F000001 /* begin_code.h */, + 0C5AF5E601191D2B7F000001 /* close_code.h */, + 0C5AF5E701191D2B7F000001 /* SDL_active.h */, + 0C5AF5E801191D2B7F000001 /* SDL_audio.h */, + 0C5AF5E901191D2B7F000001 /* SDL_byteorder.h */, + 0C5AF5EA01191D2B7F000001 /* SDL_cdrom.h */, + 0C5AF5EB01191D2B7F000001 /* SDL_copying.h */, + B2CF8DC405C444E400E5DC7F /* SDL_cpuinfo.h */, + 0C5AF5EC01191D2B7F000001 /* SDL_endian.h */, + 0C5AF5ED01191D2B7F000001 /* SDL_error.h */, + 0C5AF5EE01191D2B7F000001 /* SDL_events.h */, + 0C5AF5EF01191D2B7F000001 /* SDL_getenv.h */, + 0C5AF5F001191D2B7F000001 /* SDL_joystick.h */, + 0C5AF5F101191D2B7F000001 /* SDL_keyboard.h */, + 0C5AF5F201191D2B7F000001 /* SDL_keysym.h */, + B29A290D04E5B28700A80002 /* SDL_loadso.h */, + 0C5AF5F301191D2B7F000001 /* SDL_main.h */, + 0C5AF5F401191D2B7F000001 /* SDL_mouse.h */, + 0C5AF5F501191D2B7F000001 /* SDL_mutex.h */, + B2CF8DC705C4450500E5DC7F /* SDL_name.h */, + 0C5AF5F601191D2B7F000001 /* SDL_opengl.h */, + 0C5AF5F701191D2B7F000001 /* SDL_quit.h */, + 0C5AF5F801191D2B7F000001 /* SDL_rwops.h */, + 0C5AF5F901191D2B7F000001 /* SDL_syswm.h */, + 0C5AF5FA01191D2B7F000001 /* SDL_thread.h */, + 0C5AF5FB01191D2B7F000001 /* SDL_timer.h */, + 0C5AF5FC01191D2B7F000001 /* SDL_types.h */, + 0C5AF5FD01191D2B7F000001 /* SDL_version.h */, + 0C5AF5FE01191D2B7F000001 /* SDL_video.h */, + 0C5AF5FF01191D2B7F000001 /* SDL.h */, + ); + name = "Public Headers"; + sourceTree = ""; + }; + 034768DDFF38A45A11DB9C8B /* Products */ = { + isa = PBXGroup; + children = ( + 089C1665FE841158C02AAC07 /* Resources */, + BECDF66C0761BA81005FE872 /* SDL.framework */, + BECDF6B30761BA81005FE872 /* libSDL.a */, + BECDF6BA0761BA81005FE872 /* libSDLmain.a */, + BECDF6BE0761BA81005FE872 /* Standard DMG */, + BECDF6C30761BA81005FE872 /* Developer Extras Package */, + ); + name = Products; + sourceTree = ""; + }; + 046B91E80A11B53500FB151C /* dlopen */ = { + isa = PBXGroup; + children = ( + 046B91E90A11B53500FB151C /* SDL_sysloadso.c */, + ); + path = dlopen; + sourceTree = ""; + }; + 083E4892006D86FF7F000001 /* cdrom */ = { + isa = PBXGroup; + children = ( + B2A23A420415799100A80002 /* macosx */, + 083E4893006D86FF7F000001 /* dummy */, + 083E4895006D86FF7F000001 /* SDL_cdrom.c */, + ); + name = cdrom; + path = ../../src/cdrom; + sourceTree = SOURCE_ROOT; + }; + 083E4893006D86FF7F000001 /* dummy */ = { + isa = PBXGroup; + children = ( + 083E4894006D86FF7F000001 /* SDL_syscdrom.c */, + ); + path = dummy; + sourceTree = ""; + }; + 083E489A006D88D97F000001 /* joystick */ = { + isa = PBXGroup; + children = ( + F51789D001769A2401D3D55B /* darwin */, + 083E489D006D88D97F000001 /* SDL_joystick.c */, + ); + name = joystick; + path = ../../src/joystick; + sourceTree = SOURCE_ROOT; + }; + 0867D691FE84028FC02AAC07 /* SDLFramework */ = { + isa = PBXGroup; + children = ( + F5A2EF3900C6A39A01000001 /* BUGS */, + F5A2EF3A00C6A3C201000001 /* README.MacOSX */, + F59C70FC00D5CB5801000001 /* pkg-support */, + F5B2A58400C5D39001000001 /* Main */, + 0153844A006D81B07F000001 /* Public Headers */, + 08FB77ACFE841707C02AAC07 /* Library Source */, + 034768DDFF38A45A11DB9C8B /* Products */, + BECDF66B0761BA81005FE872 /* Info-Framework.plist */, + BEC562FE0761C0E800A33029 /* Linked Frameworks */, + ); + comments = "To build Universal Binaries, we have experimented with a variety of different options.\nThe complication is that we must retain compatibility with at least 10.2. \nThe Universal Binary defaults only work for > 10.3.9\n\nSo far, we have found:\ngcc 4.0.0 with Xcode 2.1 always links against libgcc_s. gcc 4.0.1 from Xcode 2.2 fixes this problem.\n\nBut gcc 4.0 will not work with < 10.3.9 because we continue to get an undefined symbol to _fprintf$LDBL128.\nSo we must use gcc 3.3 on PPC to accomplish 10.2 support. (But 4.0 is required for i386.)\n\nSetting the deployment target to 10.4 will disable prebinding, so for PPC, we set it less than 10.4 to preserve prebinding for legacy support.\n\nSetting the PPC SDKROOT to /Developers/SDKs/MacOSX10.2.8.sdk will link to 63.0.0 libSystem.B.dylib. Leaving it at current or 10.4u links to 88.1.2. However, as long as we are using gcc 3.3, it doesn't seem to matter as testing has demonstrated both will run. We have decided not to invoke the 10.2.8 SDK because it is not a default installed component with Xcode which will probably cause most people problems. However, rather than deleting the SDKROOT_ppc entry entirely, we have mapped it to 10.4u in case we decide we need to change this setting.\n\nTo use Altivec or SSE, we needed architecture specific flags:\nOTHER_CFLAGS_ppc\nOTHER_CFLAGS_i386\nOTHER_CFLAGS=$(OTHER_CFLAGS_($CURRENT_ARCH))\n\nThe general OTHER_CFLAGS needed to be manually mapped to architecture specific options because Xcode didn't do this automatically for us.\n\n\n"; + name = SDLFramework; + sourceTree = ""; + }; + 089C1665FE841158C02AAC07 /* Resources */ = { + isa = PBXGroup; + children = ( + ); + name = Resources; + sourceTree = ""; + }; + 08FB77ACFE841707C02AAC07 /* Library Source */ = { + isa = PBXGroup; + children = ( + 0153832C006D78D67F000001 /* audio */, + 083E4892006D86FF7F000001 /* cdrom */, + B24DA50105A88D52006B9F1C /* cpuinfo */, + 01538367006D79147F000001 /* events */, + 01538376006D79307F000001 /* file */, + 083E489A006D88D97F000001 /* joystick */, + 00162D7509BD217B0037C8D0 /* loadso */, + 00162D6309BD214E0037C8D0 /* stdlib */, + 01538379006D79737F000001 /* thread */, + 01538391006D79BC7F000001 /* timer */, + 015383BE006D7A567F000001 /* video */, + 01538438006D7D947F000001 /* SDL_error.c */, + 01538439006D7D947F000001 /* SDL_fatal.c */, + 0153843C006D7D947F000001 /* SDL.c */, + ); + name = "Library Source"; + sourceTree = ""; + }; + 0FCDF5B50083FCE77F000001 /* quartz */ = { + isa = PBXGroup; + children = ( + 00D0D02210675823004B05EF /* SDL_QuartzWM.h */, + B24DA4D605A88AD0006B9F1C /* CGS.h */, + B24DA4D705A88AD0006B9F1C /* SDL_QuartzEvents.m */, + B24DA4D805A88AD0006B9F1C /* SDL_QuartzGL.m */, + B24DA4D905A88AD0006B9F1C /* SDL_QuartzKeys.h */, + B24DA4DA05A88AD0006B9F1C /* SDL_QuartzVideo.h */, + B24DA4DB05A88AD0006B9F1C /* SDL_QuartzVideo.m */, + B24DA4DC05A88AD0006B9F1C /* SDL_QuartzWindow.h */, + B24DA4DD05A88AD0006B9F1C /* SDL_QuartzWindow.m */, + B24DA4DE05A88AD0006B9F1C /* SDL_QuartzWM.m */, + ); + name = quartz; + path = ../../src/video/quartz; + sourceTree = SOURCE_ROOT; + }; + B24DA50105A88D52006B9F1C /* cpuinfo */ = { + isa = PBXGroup; + children = ( + B24DA50405A88D52006B9F1C /* SDL_cpuinfo.c */, + ); + name = cpuinfo; + path = ../../src/cpuinfo; + sourceTree = ""; + }; + B2A23A420415799100A80002 /* macosx */ = { + isa = PBXGroup; + children = ( + 004C2C860975E13300E9D430 /* AudioFilePlayer.c */, + B2A23A450415799100A80002 /* AudioFilePlayer.h */, + 004C2C870975E13300E9D430 /* AudioFileReaderThread.c */, + 004C2C880975E13300E9D430 /* CDPlayer.c */, + B2A23A8104157D5D00A80002 /* CDPlayer.h */, + 004C2C890975E13300E9D430 /* SDLOSXCAGuard.c */, + 004C2C8A0975E13300E9D430 /* SDLOSXCAGuard.h */, + B2A23A7B04157C5700A80002 /* SDL_syscdrom.c */, + B2A23A7A04157C5700A80002 /* SDL_syscdrom_c.h */, + ); + path = macosx; + sourceTree = ""; + }; + BEC562FE0761C0E800A33029 /* Linked Frameworks */ = { + isa = PBXGroup; + children = ( + 00D0D08310675DD9004B05EF /* CoreFoundation.framework */, + 007317C10858E15000B2BC32 /* Carbon.framework */, + 0073179B0858DECD00B2BC32 /* AudioToolbox.framework */, + 0073179C0858DECD00B2BC32 /* AudioUnit.framework */, + 0073179D0858DECD00B2BC32 /* Cocoa.framework */, + 0073179E0858DECD00B2BC32 /* CoreAudio.framework */, + 0073179F0858DECD00B2BC32 /* IOKit.framework */, + 007317A00858DECD00B2BC32 /* OpenGL.framework */, + 007317A10858DECD00B2BC32 /* QuickTime.framework */, + ); + name = "Linked Frameworks"; + sourceTree = ""; + }; + BECDF5D20761B759005FE872 /* macosx */ = { + isa = PBXGroup; + children = ( + BECDF5D50761B759005FE872 /* SDL_coreaudio.c */, + BECDF5D60761B759005FE872 /* SDL_coreaudio.h */, + ); + name = macosx; + path = ../../src/audio/macosx; + sourceTree = SOURCE_ROOT; + }; + F51789D001769A2401D3D55B /* darwin */ = { + isa = PBXGroup; + children = ( + F51789D101769A2401D3D55B /* SDL_sysjoystick.c */, + ); + name = darwin; + path = ../../src/joystick/darwin; + sourceTree = SOURCE_ROOT; + }; + F59C70FC00D5CB5801000001 /* pkg-support */ = { + isa = PBXGroup; + children = ( + F59C70FE00D5CB5801000001 /* devel-resources */, + F59C710100D5CB5801000001 /* resources */, + F5F81AD400D706B101000001 /* Readme SDL Developer.txt */, + F59C710500D5CB5801000001 /* SDL-devel.info */, + F59C710600D5CB5801000001 /* SDL.info */, + ); + path = "pkg-support"; + sourceTree = SOURCE_ROOT; + }; + F59C70FE00D5CB5801000001 /* devel-resources */ = { + isa = PBXGroup; + children = ( + F59C710C00D5D15801000001 /* install.sh */, + F59C70FF00D5CB5801000001 /* ReadMe.txt */, + F59C710000D5CB5801000001 /* Welcome.txt */, + ); + path = "devel-resources"; + sourceTree = ""; + }; + F59C710100D5CB5801000001 /* resources */ = { + isa = PBXGroup; + children = ( + 00794D3F09D0C461003FC8A1 /* License.rtf */, + 00F5D79E0990CA0D0051C449 /* UniversalBinaryNotes.rtf */, + 00AE6E1E08B958CC00255E2F /* ReadMeDevLite.txt */, + F59C710300D5CB5801000001 /* ReadMe.txt */, + ); + path = resources; + sourceTree = ""; + }; + F5B2A58400C5D39001000001 /* Main */ = { + isa = PBXGroup; + children = ( + 2EECDF2D0086C3A07F000001 /* SDLMain.h */, + 2EECDF2E0086C3A07F000001 /* SDLMain.m */, + 2EECDF2F0086C3A07F000001 /* SDLMain.nib */, + ); + name = Main; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + BECDF5FF0761BA81005FE872 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 00162DA409BD222F0037C8D0 /* SDL_config_dreamcast.h in Headers */, + 00162DA509BD222F0037C8D0 /* SDL_config_macos.h in Headers */, + 00162DA609BD222F0037C8D0 /* SDL_config_macosx.h in Headers */, + 00162DA709BD222F0037C8D0 /* SDL_config_os2.h in Headers */, + 00162DA809BD222F0037C8D0 /* SDL_config_win32.h in Headers */, + 00162DA909BD222F0037C8D0 /* SDL_config.h in Headers */, + 00162DAA09BD222F0037C8D0 /* SDL_platform.h in Headers */, + 00162DAB09BD222F0037C8D0 /* SDL_stdinc.h in Headers */, + 00162DAC09BD222F0037C8D0 /* begin_code.h in Headers */, + 00162DAD09BD222F0037C8D0 /* close_code.h in Headers */, + 00162DAE09BD222F0037C8D0 /* SDL_active.h in Headers */, + 00162DAF09BD222F0037C8D0 /* SDL_audio.h in Headers */, + 00162DB009BD222F0037C8D0 /* SDL_byteorder.h in Headers */, + 00162DB109BD222F0037C8D0 /* SDL_cdrom.h in Headers */, + 00162DB209BD222F0037C8D0 /* SDL_copying.h in Headers */, + 00162DB309BD222F0037C8D0 /* SDL_cpuinfo.h in Headers */, + 00162DB409BD222F0037C8D0 /* SDL_endian.h in Headers */, + 00162DB509BD222F0037C8D0 /* SDL_error.h in Headers */, + 00162DB609BD222F0037C8D0 /* SDL_events.h in Headers */, + 00162DB709BD222F0037C8D0 /* SDL_getenv.h in Headers */, + 00162DB809BD222F0037C8D0 /* SDL_joystick.h in Headers */, + 00162DB909BD222F0037C8D0 /* SDL_keyboard.h in Headers */, + 00162DBA09BD222F0037C8D0 /* SDL_keysym.h in Headers */, + 00162DBB09BD222F0037C8D0 /* SDL_loadso.h in Headers */, + 00162DBC09BD222F0037C8D0 /* SDL_main.h in Headers */, + 00162DBD09BD222F0037C8D0 /* SDL_mouse.h in Headers */, + 00162DBE09BD222F0037C8D0 /* SDL_mutex.h in Headers */, + 00162DBF09BD222F0037C8D0 /* SDL_name.h in Headers */, + 00162DC009BD222F0037C8D0 /* SDL_opengl.h in Headers */, + 00162DC109BD222F0037C8D0 /* SDL_quit.h in Headers */, + 00162DC209BD222F0037C8D0 /* SDL_rwops.h in Headers */, + 00162DC309BD222F0037C8D0 /* SDL_syswm.h in Headers */, + 00162DC409BD222F0037C8D0 /* SDL_thread.h in Headers */, + 00162DC509BD222F0037C8D0 /* SDL_timer.h in Headers */, + 00162DC609BD222F0037C8D0 /* SDL_types.h in Headers */, + 00162DC709BD222F0037C8D0 /* SDL_version.h in Headers */, + 00162DC809BD222F0037C8D0 /* SDL_video.h in Headers */, + 00162DC909BD222F0037C8D0 /* SDL.h in Headers */, + 00D0D02310675823004B05EF /* SDL_QuartzWM.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BECDF66E0761BA81005FE872 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + BECDF6720761BA81005FE872 /* CGS.h in Headers */, + BECDF6730761BA81005FE872 /* SDL_QuartzKeys.h in Headers */, + BECDF6740761BA81005FE872 /* SDL_QuartzVideo.h in Headers */, + BECDF6750761BA81005FE872 /* SDL_QuartzWindow.h in Headers */, + BECDF6760761BA81005FE872 /* SDL_cpuinfo.h in Headers */, + BECDF6770761BA81005FE872 /* SDL_name.h in Headers */, + BECDF6780761BA81005FE872 /* SDL_coreaudio.h in Headers */, + 004C2C940975E13300E9D430 /* SDLOSXCAGuard.h in Headers */, + 00162D4409BD1FA90037C8D0 /* SDL_config_dreamcast.h in Headers */, + 00162D4509BD1FA90037C8D0 /* SDL_config_macos.h in Headers */, + 00162D4609BD1FA90037C8D0 /* SDL_config_macosx.h in Headers */, + 00162D4709BD1FA90037C8D0 /* SDL_config_os2.h in Headers */, + 00162D4809BD1FA90037C8D0 /* SDL_config_win32.h in Headers */, + 00162D4909BD1FA90037C8D0 /* SDL_config.h in Headers */, + 00162D4A09BD1FA90037C8D0 /* SDL_platform.h in Headers */, + 00162D4B09BD1FA90037C8D0 /* SDL_stdinc.h in Headers */, + 00162D5B09BD20DA0037C8D0 /* SDL_sysmutex_c.h in Headers */, + 00162D5E09BD20DA0037C8D0 /* SDL_systhread_c.h in Headers */, + 00162E6B09BD27370037C8D0 /* SDL_mixer_MMX.h in Headers */, + 00162F4209BE27FB0037C8D0 /* SDL_nullevents_c.h in Headers */, + 00162F4409BE27FB0037C8D0 /* SDL_nullmouse_c.h in Headers */, + 00162F4609BE27FB0037C8D0 /* SDL_nullvideo.h in Headers */, + 0014B7F409C0D8D2003A99D5 /* SDL_dgaevents_c.h in Headers */, + 0014B7F609C0D8D2003A99D5 /* SDL_dgamouse_c.h in Headers */, + 0014B7F909C0D8D2003A99D5 /* SDL_dgavideo.h in Headers */, + 0014B86509C0D977003A99D5 /* SDL_x11dga_c.h in Headers */, + 0014B86809C0D977003A99D5 /* SDL_x11dyn.h in Headers */, + 0014B86909C0D977003A99D5 /* SDL_x11events_c.h in Headers */, + 0014B86B09C0D977003A99D5 /* SDL_x11gamma_c.h in Headers */, + 0014B86D09C0D977003A99D5 /* SDL_x11gl_c.h in Headers */, + 0014B86F09C0D977003A99D5 /* SDL_x11image_c.h in Headers */, + 0014B87109C0D977003A99D5 /* SDL_x11modes_c.h in Headers */, + 0014B87309C0D977003A99D5 /* SDL_x11mouse_c.h in Headers */, + 0014B87509C0D977003A99D5 /* SDL_x11sym.h in Headers */, + 0014B87709C0D977003A99D5 /* SDL_x11video.h in Headers */, + 0014B87809C0D977003A99D5 /* SDL_x11wm_c.h in Headers */, + 0014B87A09C0D977003A99D5 /* SDL_x11yuv_c.h in Headers */, + 0014B89E09C0DAAE003A99D5 /* Xvlibint.h in Headers */, + 002F32DA09CA0BE700EBEB88 /* SDL_diskaudio.h in Headers */, + 002F32E809CA0BF600EBEB88 /* SDL_dummyaudio.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BECDF6B50761BA81005FE872 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + BECDF5FE0761BA81005FE872 /* Framework */ = { + isa = PBXNativeTarget; + buildConfigurationList = 0073177A0858DB0500B2BC32 /* Build configuration list for PBXNativeTarget "Framework" */; + buildPhases = ( + 00D55F050A11143E0030ED2A /* Run Script to Create SDL_config.h */, + BECDF5FF0761BA81005FE872 /* Headers */, + BECDF62A0761BA81005FE872 /* Resources */, + BECDF62C0761BA81005FE872 /* Sources */, + BECDF6680761BA81005FE872 /* Frameworks */, + BECDF6690761BA81005FE872 /* Rez */, + ); + buildRules = ( + ); + comments = "We recommend installing to /Library/Frameworks\nAn alternative is $(HOME)/Library/Frameworks for per-user if permissions are an issue.\n\nAdd the framework to the Groups & Files panel (under Linked Frameworks is a good place) and enable the check box for the targets that need to link to it. You can also manually add \"-framework SDL\" to your linker flags if you don't like the check box system.\n\nAdd /Library/Frameworks/SDL.framework/Headers to your header search path\nAdd /Library/Frameworks to your library search path\n(Adjust the two above if installed in $(HOME)/Library/Frameworks. You can also list both paths if you want robustness.)\n\nWe used to use an exports file. It was becoming a maintenance issue we kept neglecting, so we have removed it. If you need it back, set the \"Exported Symbols File\" option to:\n../../src/main/macosx/exports/SDL.x\n(You may need to regenerate the exports list. There is a Makefile in that directory that you can run from the command line to rebuild it.)\nLong term, we want to utilize gcc 4.0's new visibility feature (analogous to declspec on Windows). Other platforms would benefit from this change too. The downside is that we still use gcc 3.3 for the PowerPC build here so only our x86 builds will cull the symbols if we go down this route (and don't use the exports file).\n\n"; + dependencies = ( + ); + name = Framework; + productInstallPath = "@executable_path/../Frameworks"; + productName = SDL; + productReference = BECDF66C0761BA81005FE872 /* SDL.framework */; + productType = "com.apple.product-type.framework"; + }; + BECDF66D0761BA81005FE872 /* Static Library */ = { + isa = PBXNativeTarget; + buildConfigurationList = 0073177E0858DB0500B2BC32 /* Build configuration list for PBXNativeTarget "Static Library" */; + buildPhases = ( + 00D55F080A11147F0030ED2A /* Run Script to Create SDL_config.h */, + BECDF66E0761BA81005FE872 /* Headers */, + BECDF6790761BA81005FE872 /* Sources */, + BECDF6B10761BA81005FE872 /* Frameworks */, + BECDF6B20761BA81005FE872 /* Rez */, + ); + buildRules = ( + ); + comments = "This produces libsdl.a, which is the static build of SDL. You will have to link to the Cocoa and OpenGL frameworks in your application."; + dependencies = ( + ); + name = "Static Library"; + productInstallPath = /usr/local/lib; + productName = "Static Library"; + productReference = BECDF6B30761BA81005FE872 /* libSDL.a */; + productType = "com.apple.product-type.library.static"; + }; + BECDF6B40761BA81005FE872 /* Main Library */ = { + isa = PBXNativeTarget; + buildConfigurationList = 007317820858DB0500B2BC32 /* Build configuration list for PBXNativeTarget "Main Library" */; + buildPhases = ( + BECDF6B50761BA81005FE872 /* Headers */, + BECDF6B60761BA81005FE872 /* Sources */, + BECDF6B80761BA81005FE872 /* Frameworks */, + BECDF6B90761BA81005FE872 /* Rez */, + ); + buildRules = ( + ); + comments = "This produces libSDLmain.a, which contains only SDL_main.m, the hook to get the app running correctly before your SDL code executes."; + dependencies = ( + ); + name = "Main Library"; + productInstallPath = /usr/local/lib; + productName = libSDLmain.a; + productReference = BECDF6BA0761BA81005FE872 /* libSDLmain.a */; + productType = "com.apple.product-type.library.static"; + }; + BECDF6BB0761BA81005FE872 /* Standard DMG */ = { + isa = PBXNativeTarget; + buildConfigurationList = 007317860858DB0500B2BC32 /* Build configuration list for PBXNativeTarget "Standard DMG" */; + buildPhases = ( + BECDF6BD0761BA81005FE872 /* ShellScript */, + ); + buildRules = ( + ); + dependencies = ( + BECDF6C60761BA81005FE872 /* PBXTargetDependency */, + ); + name = "Standard DMG"; + productInstallPath = /usr/local/bin; + productName = "Standard Package"; + productReference = BECDF6BE0761BA81005FE872 /* Standard DMG */; + productType = "com.apple.product-type.tool"; + }; + BECDF6C00761BA81005FE872 /* Developer Extras Package */ = { + isa = PBXNativeTarget; + buildConfigurationList = 0073178A0858DB0500B2BC32 /* Build configuration list for PBXNativeTarget "Developer Extras Package" */; + buildPhases = ( + BECDF6C20761BA81005FE872 /* ShellScript */, + ); + buildRules = ( + ); + dependencies = ( + 008310001072D94A00A531F1 /* PBXTargetDependency */, + ); + name = "Developer Extras Package"; + productInstallPath = /usr/local/bin; + productName = "Devel Package"; + productReference = BECDF6C30761BA81005FE872 /* Developer Extras Package */; + productType = "com.apple.product-type.tool"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 0867D690FE84028FC02AAC07 /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 0420; + }; + buildConfigurationList = 0073178E0858DB0500B2BC32 /* Build configuration list for PBXProject "SDL" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 1; + knownRegions = ( + English, + Japanese, + French, + German, + ); + mainGroup = 0867D691FE84028FC02AAC07 /* SDLFramework */; + productRefGroup = 034768DDFF38A45A11DB9C8B /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + BECDF5FE0761BA81005FE872 /* Framework */, + BECDF66D0761BA81005FE872 /* Static Library */, + BECDF6B40761BA81005FE872 /* Main Library */, + BECDF6BB0761BA81005FE872 /* Standard DMG */, + BECDF6C00761BA81005FE872 /* Developer Extras Package */, + 0032354F1070931700C76517 /* Generate Doxygen DocSet */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + BECDF62A0761BA81005FE872 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BECDF62B0761BA81005FE872 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXRezBuildPhase section */ + BECDF6690761BA81005FE872 /* Rez */ = { + isa = PBXRezBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BECDF6B20761BA81005FE872 /* Rez */ = { + isa = PBXRezBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BECDF6B90761BA81005FE872 /* Rez */ = { + isa = PBXRezBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXRezBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 0032354E1070931700C76517 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 12; + files = ( + ); + inputPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "# DOXYGEN_EXE is defined in the Enclosing Target's Build Tab\n# DOXYGEN_EXE=/Applications/Doxygen.app/Contents/Resources/doxygen\n#echo DOXYGEN_EXE dir is $DOXYGEN_EXE\n\nDOC_DIR=$SRCROOT/../XcodeDocSet\n#echo Doc dir is $DOC_DIR\ncd $DOC_DIR\n$DOXYGEN_EXE $DOC_DIR/Doxyfile\ncd html\nmake\nif [ -d $SRCROOT/../XcodeDocSet/org.libsdl.sdl.docset ] ; then\n\t# remove previous docset\n\trm -rf $SRCROOT/../XcodeDocSet/org.libsdl.sdl.docset\nfi\nmv org.libsdl.sdl.docset ..\ncd ..\nrm -rf html\nexit 0"; + }; + 00D55F050A11143E0030ED2A /* Run Script to Create SDL_config.h */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Run Script to Create SDL_config.h"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "# Make sure that include/SDL_config.h is a symlink to SDL_config.h.default.\n# If it exists and is not a symlink, it was probably generated by configure and\n# we move it aside.\nif [ ! -L ../../include/SDL_config.h ]; then\n if [ -e ../../include/SDL_config.h ]; then\n mv ../../include/SDL_config.h ../../include/SDL_config.h.generated\n fi\n ln -s SDL_config.h.default ../../include/SDL_config.h\nfi\n"; + }; + 00D55F080A11147F0030ED2A /* Run Script to Create SDL_config.h */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Run Script to Create SDL_config.h"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "# Make sure that include/SDL_config.h is a symlink to SDL_config.h.default.\n# If it exists and is not a symlink, it was probably generated by configure and\n# we move it aside.\nif [ ! -L ../../include/SDL_config.h ]; then\n if [ -e ../../include/SDL_config.h ]; then\n mv ../../include/SDL_config.h ../../include/SDL_config.h.generated\n fi\n ln -s SDL_config.h.default ../../include/SDL_config.h\nfi\n"; + }; + BECDF6BD0761BA81005FE872 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 12; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "# clean up the framework, remove headers, extra files\nmkdir -p build/dmg-tmp\nmkdir -p build/dmg-tmp/devel-lite\n/Developer/Tools/CpMac -r $TARGET_BUILD_DIR/SDL.framework build/dmg-tmp/\n\n# strip moved to Xcode native mechanism\n# strip -x build/dmg-tmp/SDL.framework/SDL\n\ncp pkg-support/resources/License.rtf build/dmg-tmp\ncp pkg-support/resources/ReadMe.txt build/dmg-tmp\ncp pkg-support/resources/ReadMeDevLite.txt build/dmg-tmp/devel-lite\ncp pkg-support/resources/UniversalBinaryNotes.rtf build/dmg-tmp\n\ncp ../../src/main/macosx/SDLMain.h build/dmg-tmp/devel-lite\ncp ../../src/main/macosx/SDLMain.m build/dmg-tmp/devel-lite\n\n# remove the .DS_Store files if any (we may want to provide one in the future for fancy .dmgs)\nfind build/dmg-tmp -name .DS_Store -exec rm -f \"{}\" \\;\nfind -d build/dmg-tmp -type d -name .svn -exec rm -rf \"{}\" \\;\n\n# for fancy .dmg\nmkdir -p build/dmg-tmp/.logo\ncp pkg-support/resources/SDL_DS_Store build/dmg-tmp/.DS_Store\ncp pkg-support/sdl_logo.pdf build/dmg-tmp/.logo\n\n# create the dmg\nhdiutil create -ov -fs HFS+ -volname SDL -srcfolder build/dmg-tmp build/SDL.dmg\n\n# clean up\nrm -rf build/dmg-tmp\n\n# compress it???\n#(cd build; gnutar -zcvf SDL.dmg.tar.gz SDL.dmg)"; + }; + BECDF6C20761BA81005FE872 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + comments = "The old .pkg generator script:\n\n# make a copy of the framework to work with\nmkdir -p build/pkg-tmp\n\n## We're changing this to follow OS X conventions, where the headers and\n## framework are bundled together. Thus this development package won't \n## actually contain any direct framework elements.\n#/Developer/Tools/CpMac -r build/SDL.framework build/pkg-tmp/\n\n# copy in some files they might want around...\ncp ../../docs.html build/pkg-tmp\ncp -r ../../docs build/pkg-tmp\n#cp -r ../../src/main/macosx build/pkg-tmp/\n#rm -rf build/pkg-tmp/main/exports\ncp -r \"../Project Stationary\" build/pkg-tmp/\ncp \"pkg-support/Readme SDL Developer.txt\" build/pkg-tmp/\n#cp \"../uninstall.csh\" build/pkg-tmp/\n\n## We shouldn't have any framework stuff to deal with now\n# clean up the framework, remove extra files\n# rm -rf build/pkg-tmp/SDL.framework/Resources/pbdevelopment.plist\n\n# remove the .DS_Store file to keep tool from crapping out\nfind pkg-support -name \".DS_Store\" -exec rm -rf \"{}\" \";\" \n\n# create the .pkg\n../package build/pkg-tmp pkg-support/SDL-devel.info -d build -r pkg-support/devel-resources \n#\"/Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker\" -build -p build/ -f build/pkg-tmp -r pkg-support/devel-resources -i Info.plist -d Description.plist\n\n# create install scripts\nDIR=build/SDL-devel.pkg/\ncp $DIR/install.sh $DIR/SDL-devel.post_install\nmv $DIR/install.sh $DIR/SDL-devel.post_upgrade\n\n# add execute flag to scripts\nchmod 755 $DIR/SDL-devel.post_install $DIR/SDL-devel.post_upgrade\n\n# remove temporary files\n#rm -rf build/pkg-tmp\n\n# compress\n(cd build; gnutar -zcvf SDL-devel.pkg.tar.gz SDL-devel.pkg)"; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "# make a directory to hold the stuff we're going to package up\nmkdir -p build/devel-extras-tmp\nmkdir -p build/devel-extras-tmp/Documentation\nmkdir -p build/devel-extras-tmp/Documentation/docs/XcodeDocSet\nmkdir -p build/devel-extras-tmp/XcodeTemplates\nmkdir -p build/devel-extras-tmp/SDLMain\nmkdir -p build/devel-extras-tmp/SDLMain/NIBless\nmkdir -p build/devel-extras-tmp/SDLMain/CocoaMenus\n\n# copy the docs\ncp ../../docs.html build/devel-extras-tmp/Documentation\ncp -r ../../docs build/devel-extras-tmp/Documentation\n\n# Copy Doxyfile for DocSet\ncp $SRCROOT/../XcodeDocSet/Doxyfile build/devel-extras-tmp/Documentation/docs/XcodeDocSet\n\n# Copy DocSet (if it exists)\nif [ -d $SRCROOT/../XcodeDocSet/org.libsdl.sdl.docset ] ; then\n#\techo Found docset directory\n\tmv $SRCROOT/../XcodeDocSet/org.libsdl.sdl.docset build/devel-extras-tmp/Documentation/docs/XcodeDocSet/\nelse\n\techo Warning: Could not find DocSet and will be omitted from package\nfi\n\n# copy the Xcode Project user templates\ncp -r \"../TemplatesForXcodeTiger\" build/devel-extras-tmp/XcodeTemplates\ncp -r \"../TemplatesForXcodeLeopard\" build/devel-extras-tmp/XcodeTemplates\ncp -r \"../TemplatesForXcodeSnowLeopard\" build/devel-extras-tmp/XcodeTemplates\n\ncp \"pkg-support/Readme SDL Developer.txt\" build/devel-extras-tmp\n\n# readme file\n#cp pkg-support/resources/ReadMe.txt build/devel-extras-tmp\n\n#cp pkg-support/resources/UniversalBinaryNotes.rtf build/devel-extras-tmp\n\n# Copy the devel-lite stuff just in case the user didn't notice it in the main package\n# I should copy all the different SDLMain versions (and nibs) instead.\n# I'm assuming the default is the same as the SDL App and SDL/OpenGL templates\n\ncp pkg-support/resources/ReadMeDevLite.txt build/devel-extras-tmp/SDLMain/NIBless\ncp ../../src/main/macosx/SDLMain.h build/devel-extras-tmp/SDLMain/NIBless\ncp ../../src/main/macosx/SDLMain.m build/devel-extras-tmp/SDLMain/NIBless\n\n# Nib stuff from SDL-Cocoa App\n/Developer/Tools/CpMac -r \"../TemplatesForXcodeSnowLeopard/SDL Cocoa Application/SDLMain.h\" build/devel-extras-tmp/SDLMain/CocoaMenus\n/Developer/Tools/CpMac -r \"../TemplatesForXcodeSnowLeopard/SDL Cocoa Application/SDLMain.m\" build/devel-extras-tmp/SDLMain/CocoaMenus\n/Developer/Tools/CpMac -r \"../TemplatesForXcodeSnowLeopard/SDL Cocoa Application/English.lproj/SDLMain.nib\" build/devel-extras-tmp/SDLMain/CocoaMenus\n\n# Copy precompiled libSDLmain.a's here??? We have potentially 3 different ones?\n# /Developer/Tools/CpMac -r $TARGET_BUILD_DIR/libSDLmain.a build/devel-extras-tmp/SDLMain/NIBless\n#\n#\n\n# Copy sdl-config's for those who've been wanting one? Will need to document that it may\n# require manual changes if you don't install the framework to /Library/Frameworks\n# <>\n\n# remove the .DS_Store files if any (we may want to provide one in the future for fancy .dmgs)\nfind build/devel-extras-tmp -name .DS_Store -exec rm -f \"{}\" \\;\n# remove CVS stuff\nfind build/devel-extras-tmp -name .cvsignore -exec rm -f \"{}\" \\;\n# depth first traversal, type=directory, remove recursively\nfind -d build/devel-extras-tmp -type d -name CVS -exec rm -rf \"{}\" \\;\nfind -d build/devel-extras-tmp -type d -name .svn -exec rm -rf \"{}\" \\;\n\n\n# create the dmg\nhdiutil create -ov -fs HFS+ -volname SDL-devel-extras -srcfolder build/devel-extras-tmp build/SDL-devel-extras.dmg\n\n# clean up\nrm -rf build/devel-extras-tmp\n\n# compress it???\n#(cd build; gnutar -zcvf SDL.dmg.tar.gz SDL.dmg)\n\n"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + BECDF62C0761BA81005FE872 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BECDF62E0761BA81005FE872 /* SDL_audio.c in Sources */, + BECDF62F0761BA81005FE872 /* SDL_audiocvt.c in Sources */, + BECDF6300761BA81005FE872 /* SDL_audiodev.c in Sources */, + BECDF6320761BA81005FE872 /* SDL_mixer.c in Sources */, + BECDF6330761BA81005FE872 /* SDL_wave.c in Sources */, + BECDF6350761BA81005FE872 /* SDL_active.c in Sources */, + BECDF6360761BA81005FE872 /* SDL_events.c in Sources */, + BECDF6370761BA81005FE872 /* SDL_expose.c in Sources */, + BECDF6380761BA81005FE872 /* SDL_keyboard.c in Sources */, + BECDF6390761BA81005FE872 /* SDL_mouse.c in Sources */, + BECDF63A0761BA81005FE872 /* SDL_quit.c in Sources */, + BECDF63B0761BA81005FE872 /* SDL_resize.c in Sources */, + BECDF63C0761BA81005FE872 /* SDL_rwops.c in Sources */, + BECDF63E0761BA81005FE872 /* SDL_timer.c in Sources */, + BECDF63F0761BA81005FE872 /* SDL_blit.c in Sources */, + BECDF6400761BA81005FE872 /* SDL_blit_0.c in Sources */, + BECDF6410761BA81005FE872 /* SDL_blit_1.c in Sources */, + BECDF6420761BA81005FE872 /* SDL_blit_A.c in Sources */, + BECDF6430761BA81005FE872 /* SDL_blit_N.c in Sources */, + BECDF6440761BA81005FE872 /* SDL_bmp.c in Sources */, + BECDF6450761BA81005FE872 /* SDL_cursor.c in Sources */, + BECDF6460761BA81005FE872 /* SDL_gamma.c in Sources */, + BECDF6470761BA81005FE872 /* SDL_pixels.c in Sources */, + BECDF6480761BA81005FE872 /* SDL_RLEaccel.c in Sources */, + BECDF6490761BA81005FE872 /* SDL_surface.c in Sources */, + BECDF64A0761BA81005FE872 /* SDL_video.c in Sources */, + BECDF64B0761BA81005FE872 /* SDL_yuv.c in Sources */, + BECDF64C0761BA81005FE872 /* SDL_yuv_sw.c in Sources */, + BECDF64D0761BA81005FE872 /* SDL_error.c in Sources */, + BECDF64E0761BA81005FE872 /* SDL_fatal.c in Sources */, + BECDF6500761BA81005FE872 /* SDL.c in Sources */, + BECDF6510761BA81005FE872 /* SDL_thread.c in Sources */, + BECDF6520761BA81005FE872 /* SDL_cdrom.c in Sources */, + BECDF6530761BA81005FE872 /* SDL_joystick.c in Sources */, + BECDF6580761BA81005FE872 /* SDL_stretch.c in Sources */, + BECDF6590761BA81005FE872 /* SDL_sysjoystick.c in Sources */, + BECDF65B0761BA81005FE872 /* SDL_QuartzEvents.m in Sources */, + BECDF65C0761BA81005FE872 /* SDL_QuartzGL.m in Sources */, + BECDF65D0761BA81005FE872 /* SDL_QuartzVideo.m in Sources */, + BECDF65E0761BA81005FE872 /* SDL_QuartzWindow.m in Sources */, + BECDF65F0761BA81005FE872 /* SDL_QuartzWM.m in Sources */, + BECDF6610761BA81005FE872 /* SDL_cpuinfo.c in Sources */, + BECDF6620761BA81005FE872 /* SDL_syscdrom.c in Sources */, + BECDF6670761BA81005FE872 /* SDL_coreaudio.c in Sources */, + 004C2C8B0975E13300E9D430 /* AudioFilePlayer.c in Sources */, + 004C2C8C0975E13300E9D430 /* AudioFileReaderThread.c in Sources */, + 004C2C8D0975E13300E9D430 /* CDPlayer.c in Sources */, + 004C2C8E0975E13300E9D430 /* SDLOSXCAGuard.c in Sources */, + 00162D5309BD20DA0037C8D0 /* SDL_syscond.c in Sources */, + 00162D5409BD20DA0037C8D0 /* SDL_sysmutex.c in Sources */, + 00162D5609BD20DA0037C8D0 /* SDL_syssem.c in Sources */, + 00162D5709BD20DA0037C8D0 /* SDL_systhread.c in Sources */, + 00162D6109BD21010037C8D0 /* SDL_systimer.c in Sources */, + 00162D6B09BD214F0037C8D0 /* SDL_getenv.c in Sources */, + 00162D6C09BD214F0037C8D0 /* SDL_malloc.c in Sources */, + 00162D6D09BD214F0037C8D0 /* SDL_qsort.c in Sources */, + 00162D6E09BD214F0037C8D0 /* SDL_stdlib.c in Sources */, + 00162D6F09BD214F0037C8D0 /* SDL_string.c in Sources */, + 00162E6809BD27300037C8D0 /* SDL_mixer_MMX.c in Sources */, + 00162F3B09BE27FB0037C8D0 /* SDL_nullevents.c in Sources */, + 00162F3D09BE27FB0037C8D0 /* SDL_nullmouse.c in Sources */, + 00162F3F09BE27FB0037C8D0 /* SDL_nullvideo.c in Sources */, + 0014B7EF09C0D8D2003A99D5 /* SDL_dgaevents.c in Sources */, + 0014B7F109C0D8D2003A99D5 /* SDL_dgamouse.c in Sources */, + 0014B7F209C0D8D2003A99D5 /* SDL_dgavideo.c in Sources */, + 0014B84F09C0D977003A99D5 /* SDL_x11dga.c in Sources */, + 0014B85009C0D977003A99D5 /* SDL_x11dyn.c in Sources */, + 0014B85309C0D977003A99D5 /* SDL_x11events.c in Sources */, + 0014B85509C0D977003A99D5 /* SDL_x11gamma.c in Sources */, + 0014B85709C0D977003A99D5 /* SDL_x11gl.c in Sources */, + 0014B85909C0D977003A99D5 /* SDL_x11image.c in Sources */, + 0014B85B09C0D977003A99D5 /* SDL_x11modes.c in Sources */, + 0014B85D09C0D977003A99D5 /* SDL_x11mouse.c in Sources */, + 0014B85F09C0D977003A99D5 /* SDL_x11video.c in Sources */, + 0014B86209C0D977003A99D5 /* SDL_x11wm.c in Sources */, + 0014B86409C0D977003A99D5 /* SDL_x11yuv.c in Sources */, + 0014B89209C0DA94003A99D5 /* XF86DGA.c in Sources */, + 0014B89309C0DA94003A99D5 /* XF86DGA2.c in Sources */, + 0014B89709C0DAA1003A99D5 /* XF86VMode.c in Sources */, + 0014B89B09C0DAAE003A99D5 /* Xv.c in Sources */, + 0014B8A009C0DAB9003A99D5 /* Xinerama.c in Sources */, + 0014B8A309C0DAC4003A99D5 /* xme.c in Sources */, + 002F328609CA049100EBEB88 /* SDL_iconv.c in Sources */, + 002F32D709CA0BE700EBEB88 /* SDL_diskaudio.c in Sources */, + 002F32E509CA0BF600EBEB88 /* SDL_dummyaudio.c in Sources */, + 046B91EC0A11B53500FB151C /* SDL_sysloadso.c in Sources */, + 046B92130A11B8AD00FB151C /* SDL_dlcompat.c in Sources */, + 00EAE6FC0C4D3F84009A420A /* SDL_yuv_mmx.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BECDF6790761BA81005FE872 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BECDF67A0761BA81005FE872 /* SDL_audio.c in Sources */, + BECDF67B0761BA81005FE872 /* SDL_audiocvt.c in Sources */, + BECDF67D0761BA81005FE872 /* SDL_audiodev.c in Sources */, + BECDF67E0761BA81005FE872 /* SDL_mixer.c in Sources */, + BECDF67F0761BA81005FE872 /* SDL_wave.c in Sources */, + BECDF6810761BA81005FE872 /* SDL_cdrom.c in Sources */, + BECDF6830761BA81005FE872 /* SDL_active.c in Sources */, + BECDF6840761BA81005FE872 /* SDL_events.c in Sources */, + BECDF6850761BA81005FE872 /* SDL_expose.c in Sources */, + BECDF6860761BA81005FE872 /* SDL_keyboard.c in Sources */, + BECDF6870761BA81005FE872 /* SDL_mouse.c in Sources */, + BECDF6880761BA81005FE872 /* SDL_quit.c in Sources */, + BECDF6890761BA81005FE872 /* SDL_resize.c in Sources */, + BECDF68A0761BA81005FE872 /* SDL_rwops.c in Sources */, + BECDF68B0761BA81005FE872 /* SDL_joystick.c in Sources */, + BECDF68C0761BA81005FE872 /* SDL_thread.c in Sources */, + BECDF6920761BA81005FE872 /* SDL_timer.c in Sources */, + BECDF6930761BA81005FE872 /* SDL_blit.c in Sources */, + BECDF6940761BA81005FE872 /* SDL_blit_0.c in Sources */, + BECDF6950761BA81005FE872 /* SDL_blit_1.c in Sources */, + BECDF6960761BA81005FE872 /* SDL_blit_A.c in Sources */, + BECDF6970761BA81005FE872 /* SDL_blit_N.c in Sources */, + BECDF6980761BA81005FE872 /* SDL_bmp.c in Sources */, + BECDF6990761BA81005FE872 /* SDL_cursor.c in Sources */, + BECDF69A0761BA81005FE872 /* SDL_gamma.c in Sources */, + BECDF69B0761BA81005FE872 /* SDL_pixels.c in Sources */, + BECDF69C0761BA81005FE872 /* SDL_RLEaccel.c in Sources */, + BECDF69D0761BA81005FE872 /* SDL_stretch.c in Sources */, + BECDF69E0761BA81005FE872 /* SDL_surface.c in Sources */, + BECDF69F0761BA81005FE872 /* SDL_video.c in Sources */, + BECDF6A00761BA81005FE872 /* SDL_yuv.c in Sources */, + BECDF6A10761BA81005FE872 /* SDL_yuv_sw.c in Sources */, + BECDF6A20761BA81005FE872 /* SDL_error.c in Sources */, + BECDF6A30761BA81005FE872 /* SDL_fatal.c in Sources */, + BECDF6A50761BA81005FE872 /* SDL.c in Sources */, + BECDF6A60761BA81005FE872 /* SDL_sysjoystick.c in Sources */, + BECDF6A80761BA81005FE872 /* SDL_syscdrom.c in Sources */, + BECDF6A90761BA81005FE872 /* SDL_QuartzEvents.m in Sources */, + BECDF6AA0761BA81005FE872 /* SDL_QuartzGL.m in Sources */, + BECDF6AB0761BA81005FE872 /* SDL_QuartzVideo.m in Sources */, + BECDF6AC0761BA81005FE872 /* SDL_QuartzWindow.m in Sources */, + BECDF6AD0761BA81005FE872 /* SDL_QuartzWM.m in Sources */, + BECDF6AF0761BA81005FE872 /* SDL_cpuinfo.c in Sources */, + BECDF6B00761BA81005FE872 /* SDL_coreaudio.c in Sources */, + 004C2C900975E13300E9D430 /* AudioFilePlayer.c in Sources */, + 004C2C910975E13300E9D430 /* AudioFileReaderThread.c in Sources */, + 004C2C920975E13300E9D430 /* CDPlayer.c in Sources */, + 004C2C930975E13300E9D430 /* SDLOSXCAGuard.c in Sources */, + 00162D5909BD20DA0037C8D0 /* SDL_syscond.c in Sources */, + 00162D5A09BD20DA0037C8D0 /* SDL_sysmutex.c in Sources */, + 00162D5C09BD20DA0037C8D0 /* SDL_syssem.c in Sources */, + 00162D5D09BD20DA0037C8D0 /* SDL_systhread.c in Sources */, + 00162D6209BD21010037C8D0 /* SDL_systimer.c in Sources */, + 00162D7009BD214F0037C8D0 /* SDL_getenv.c in Sources */, + 00162D7109BD214F0037C8D0 /* SDL_malloc.c in Sources */, + 00162D7209BD214F0037C8D0 /* SDL_qsort.c in Sources */, + 00162D7309BD214F0037C8D0 /* SDL_stdlib.c in Sources */, + 00162D7409BD214F0037C8D0 /* SDL_string.c in Sources */, + 00162E6A09BD27360037C8D0 /* SDL_mixer_MMX.c in Sources */, + 00162F4109BE27FB0037C8D0 /* SDL_nullevents.c in Sources */, + 00162F4309BE27FB0037C8D0 /* SDL_nullmouse.c in Sources */, + 00162F4509BE27FB0037C8D0 /* SDL_nullvideo.c in Sources */, + 0014B7F509C0D8D2003A99D5 /* SDL_dgaevents.c in Sources */, + 0014B7F709C0D8D2003A99D5 /* SDL_dgamouse.c in Sources */, + 0014B7F809C0D8D2003A99D5 /* SDL_dgavideo.c in Sources */, + 0014B86609C0D977003A99D5 /* SDL_x11dga.c in Sources */, + 0014B86709C0D977003A99D5 /* SDL_x11dyn.c in Sources */, + 0014B86A09C0D977003A99D5 /* SDL_x11events.c in Sources */, + 0014B86C09C0D977003A99D5 /* SDL_x11gamma.c in Sources */, + 0014B86E09C0D977003A99D5 /* SDL_x11gl.c in Sources */, + 0014B87009C0D977003A99D5 /* SDL_x11image.c in Sources */, + 0014B87209C0D977003A99D5 /* SDL_x11modes.c in Sources */, + 0014B87409C0D977003A99D5 /* SDL_x11mouse.c in Sources */, + 0014B87609C0D977003A99D5 /* SDL_x11video.c in Sources */, + 0014B87909C0D977003A99D5 /* SDL_x11wm.c in Sources */, + 0014B87B09C0D977003A99D5 /* SDL_x11yuv.c in Sources */, + 0014B89409C0DA94003A99D5 /* XF86DGA.c in Sources */, + 0014B89509C0DA94003A99D5 /* XF86DGA2.c in Sources */, + 0014B89809C0DAA1003A99D5 /* XF86VMode.c in Sources */, + 0014B89D09C0DAAE003A99D5 /* Xv.c in Sources */, + 0014B8A109C0DAB9003A99D5 /* Xinerama.c in Sources */, + 0014B8A409C0DAC4003A99D5 /* xme.c in Sources */, + 002F328709CA049100EBEB88 /* SDL_iconv.c in Sources */, + 002F32D909CA0BE700EBEB88 /* SDL_diskaudio.c in Sources */, + 002F32E709CA0BF600EBEB88 /* SDL_dummyaudio.c in Sources */, + 046B91ED0A11B53500FB151C /* SDL_sysloadso.c in Sources */, + 046B92140A11B8AD00FB151C /* SDL_dlcompat.c in Sources */, + 00EAE6FD0C4D3F88009A420A /* SDL_yuv_mmx.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BECDF6B60761BA81005FE872 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BECDF6B70761BA81005FE872 /* SDLMain.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 008310001072D94A00A531F1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 0032354F1070931700C76517 /* Generate Doxygen DocSet */; + targetProxy = 00830FFF1072D94A00A531F1 /* PBXContainerItemProxy */; + }; + BECDF6C60761BA81005FE872 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BECDF5FE0761BA81005FE872 /* Framework */; + targetProxy = BECDF6C50761BA81005FE872 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 003235521070931700C76517 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + DOXYGEN_EXE = /Applications/Doxygen.app/Contents/Resources/doxygen; + PRODUCT_NAME = "Generate Doxygen DocSet"; + }; + name = Debug; + }; + 003235531070931700C76517 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + DOXYGEN_EXE = /Applications/Doxygen.app/Contents/Resources/doxygen; + PRODUCT_NAME = "Generate Doxygen DocSet"; + }; + name = Release; + }; + 00CFA621106A567900758660 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + DEPLOYMENT_POSTPROCESSING = YES; + GCC_ALTIVEC_EXTENSIONS = YES; + GCC_AUTO_VECTORIZATION = YES; + GCC_ENABLE_CPP_EXCEPTIONS = NO; + GCC_ENABLE_CPP_RTTI = NO; + GCC_ENABLE_SSE3_EXTENSIONS = YES; + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + GCC_OPTIMIZATION_LEVEL = s; + MACOSX_DEPLOYMENT_TARGET = 10.5; + SDKROOT = macosx; + SEPARATE_STRIP = YES; + STRIP_STYLE = "non-global"; + WARNING_CFLAGS = ""; + }; + name = Release; + }; + 00CFA622106A567900758660 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 12.4; + FRAMEWORK_VERSION = A; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(GCC_PREPROCESSOR_DEFINITIONS)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_1)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_2)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_3)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_4)", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = YES; + HEADER_SEARCH_PATHS = /usr/X11R6/include; + INFOPLIST_FILE = "Info-Framework.plist"; + INSTALL_PATH = "@rpath"; + OTHER_CFLAGS = "$(OTHER_CFLAGS_$(CURRENT_ARCH))"; + OTHER_CFLAGS_i386 = ""; + OTHER_CFLAGS_ppc = ""; + OTHER_LDFLAGS_ppc = "-prebind -seg1addr 0x30000000"; + PRODUCT_NAME = SDL; + WRAPPER_EXTENSION = framework; + }; + name = Release; + }; + 00CFA623106A567900758660 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(GCC_PREPROCESSOR_DEFINITIONS)", + "SDL_VIDEO_DRIVER_DGA=1", + "SDL_VIDEO_DRIVER_X11=1", + "SDL_VIDEO_DRIVER_X11_DGAMOUSE=1", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_1)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_2)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_3)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_4)", + "SDL_VIDEO_DRIVER_X11_VIDMODE=1", + "SDL_VIDEO_DRIVER_X11_XINERAMA=1", + "SDL_VIDEO_DRIVER_X11_XME=1", + "SDL_VIDEO_DRIVER_X11_XRANDR=1", + "SDL_VIDEO_DRIVER_X11_XV=1", + ); + GCC_PREPROCESSOR_DEFINITIONS_QUOTED_1 = "SDL_VIDEO_DRIVER_X11_DYNAMIC=\\\"/usr/X11R6/lib/libX11.6.dylib\\\""; + GCC_PREPROCESSOR_DEFINITIONS_QUOTED_2 = "SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT=\\\"/usr/X11R6/lib/libXext.6.dylib\\\""; + GCC_PREPROCESSOR_DEFINITIONS_QUOTED_3 = "SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR=\\\"/usr/X11R6/lib/libXrandr.2.dylib\\\""; + GCC_PREPROCESSOR_DEFINITIONS_QUOTED_4 = "SDL_VIDEO_DRIVER_X11_DYNAMIC_XRENDER=\\\"/usr/X11R6/lib/libXrender.1.dylib\\\""; + HEADER_SEARCH_PATHS = /usr/X11R6/include; + OTHER_CFLAGS = "$(OTHER_CFLAGS_$(CURRENT_ARCH))"; + OTHER_CFLAGS_i386 = ""; + OTHER_CFLAGS_ppc = ""; + PRODUCT_NAME = SDL; + }; + name = Release; + }; + 00CFA624106A567900758660 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = SDLmain; + }; + name = Release; + }; + 00CFA625106A567900758660 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = "Standard DMG"; + }; + name = Release; + }; + 00CFA626106A567900758660 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = "Developer Extras Package"; + }; + name = Release; + }; + 00CFA627106A568900758660 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + GCC_ALTIVEC_EXTENSIONS = YES; + GCC_AUTO_VECTORIZATION = YES; + GCC_ENABLE_CPP_EXCEPTIONS = NO; + GCC_ENABLE_CPP_RTTI = NO; + GCC_ENABLE_SSE3_EXTENSIONS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + MACOSX_DEPLOYMENT_TARGET = 10.5; + SDKROOT = macosx; + WARNING_CFLAGS = ""; + }; + name = Debug; + }; + 00CFA628106A568900758660 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 12.4; + FRAMEWORK_VERSION = A; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(GCC_PREPROCESSOR_DEFINITIONS)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_1)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_2)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_3)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_4)", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = YES; + HEADER_SEARCH_PATHS = /usr/X11R6/include; + INFOPLIST_FILE = "Info-Framework.plist"; + INSTALL_PATH = "@rpath"; + OTHER_CFLAGS = "$(OTHER_CFLAGS_$(CURRENT_ARCH))"; + OTHER_CFLAGS_i386 = ""; + OTHER_CFLAGS_ppc = ""; + PRODUCT_NAME = SDL; + WRAPPER_EXTENSION = framework; + }; + name = Debug; + }; + 00CFA629106A568900758660 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(GCC_PREPROCESSOR_DEFINITIONS)", + "SDL_VIDEO_DRIVER_DGA=1", + "SDL_VIDEO_DRIVER_X11=1", + "SDL_VIDEO_DRIVER_X11_DGAMOUSE=1", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_1)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_2)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_3)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_4)", + "SDL_VIDEO_DRIVER_X11_VIDMODE=1", + "SDL_VIDEO_DRIVER_X11_XINERAMA=1", + "SDL_VIDEO_DRIVER_X11_XME=1", + "SDL_VIDEO_DRIVER_X11_XRANDR=1", + "SDL_VIDEO_DRIVER_X11_XV=1", + ); + GCC_PREPROCESSOR_DEFINITIONS_QUOTED_1 = "SDL_VIDEO_DRIVER_X11_DYNAMIC=\\\"/usr/X11R6/lib/libX11.6.dylib\\\""; + GCC_PREPROCESSOR_DEFINITIONS_QUOTED_2 = "SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT=\\\"/usr/X11R6/lib/libXext.6.dylib\\\""; + GCC_PREPROCESSOR_DEFINITIONS_QUOTED_3 = "SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR=\\\"/usr/X11R6/lib/libXrandr.2.dylib\\\""; + GCC_PREPROCESSOR_DEFINITIONS_QUOTED_4 = "SDL_VIDEO_DRIVER_X11_DYNAMIC_XRENDER=\\\"/usr/X11R6/lib/libXrender.1.dylib\\\""; + HEADER_SEARCH_PATHS = /usr/X11R6/include; + OTHER_CFLAGS = "$(OTHER_CFLAGS_$(CURRENT_ARCH))"; + OTHER_CFLAGS_i386 = ""; + OTHER_CFLAGS_ppc = ""; + PRODUCT_NAME = SDL; + }; + name = Debug; + }; + 00CFA62A106A568900758660 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = SDLmain; + }; + name = Debug; + }; + 00CFA62B106A568900758660 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = "Standard DMG"; + }; + name = Debug; + }; + 00CFA62C106A568900758660 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = "Developer Extras Package"; + }; + name = Debug; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 003235571070933500C76517 /* Build configuration list for PBXAggregateTarget "Generate Doxygen DocSet" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 003235521070931700C76517 /* Debug */, + 003235531070931700C76517 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 0073177A0858DB0500B2BC32 /* Build configuration list for PBXNativeTarget "Framework" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 00CFA628106A568900758660 /* Debug */, + 00CFA622106A567900758660 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 0073177E0858DB0500B2BC32 /* Build configuration list for PBXNativeTarget "Static Library" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 00CFA629106A568900758660 /* Debug */, + 00CFA623106A567900758660 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 007317820858DB0500B2BC32 /* Build configuration list for PBXNativeTarget "Main Library" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 00CFA62A106A568900758660 /* Debug */, + 00CFA624106A567900758660 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 007317860858DB0500B2BC32 /* Build configuration list for PBXNativeTarget "Standard DMG" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 00CFA62B106A568900758660 /* Debug */, + 00CFA625106A567900758660 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 0073178A0858DB0500B2BC32 /* Build configuration list for PBXNativeTarget "Developer Extras Package" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 00CFA62C106A568900758660 /* Debug */, + 00CFA626106A567900758660 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 0073178E0858DB0500B2BC32 /* Build configuration list for PBXProject "SDL" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 00CFA627106A568900758660 /* Debug */, + 00CFA621106A567900758660 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; +/* End XCConfigurationList section */ + }; + rootObject = 0867D690FE84028FC02AAC07 /* Project object */; +} diff --git a/Xcode/SDL/pkg-support/Readme SDL Developer.txt b/Xcode/SDL/pkg-support/Readme SDL Developer.txt new file mode 100755 index 000000000..aa32284d9 --- /dev/null +++ b/Xcode/SDL/pkg-support/Readme SDL Developer.txt @@ -0,0 +1,282 @@ +SDL Mac OS X Developer Notes: + This is an optional developer package to provide extras that an + SDL developer might benefit from. + + Make sure you have already installed the SDL.framework + from the SDL.dmg. + + For more complete documentation, please see READMEs included + with the SDL source code. Also, don't forget about the API + documentation (also included with this package). + + +This package contains: +- SDL API Documentation +- A variety of SDLMain and .Nib files to choose from +- Xcode project templates + + +SDL API Documentation: + We include both the HTML documentation and the man files. + And new to 1.2.14, we introduce an Xocde DocSet which + is generated via Doxygen. These require Xcode 3.0 or greater. + + You will need to drill down into the XcodeDocSet directory + from the Documentation folder and find the + org.libsdl.sdl.docset bundle. We recommend you copy this to: + + /Library/Developer/Shared/Documentation/DocSets + + Again, this follows all the standard Xcode patterns + described with the project templates (below). You may need + to create the directories if they don't already exist. + You may install it on a per-user basis. + And you may target specific versions of Xcode + in lieu of using the "Shared" directory. + + To use, it is quite simple. Just bring up the Xcode + Documentation Browser window (can be activated through + the Xcode Help Menu) and start searching for something. + + If nothing is found on a legitimate search, verify that + the SDL documentation is enabled by opening up the DocSet + popup box below the toolbar in Snow Leopard. + (In Leopard, the DocSets appear in the left-side panel.) + + Another handy trick is to use the mouse and Option-Double-Click + on a function or keyword to bring up documentation on the + selected item. Prior to Xcode 3.2 (Snow Leopard), this would + jump you to the entry in the Xcode Documentation Browser. + + However, in Xcode 3.2 (Snow Leopard), this behavior has been + altered and you are now given a hovering connected popup box + on the selected item (called Quick Help). Unfortunately, the + Doxygen generated DocSet doesn't currently provide Quick Help + information. You can either follow a link to the main + Documentation Browser from the Quick Help, or alternatively, + you can bypass Quick Help by using Command-Option-Double-Click + instead of Option-Double-Click. (Please file feedback with both + Doxygen and Apple to improve Quick Help integration.) + + + For those that want to tweak the documentation output, + you can find my Doxyfile in the XcodeDocSet directory in + the Xcode directory of the SDL source code base (and in this package). + + One of the most significant options is "Separate Member Pages" + which I disable. When disabled, the documentation is about 6MB. + When enabled, the documentation is closer to 1.6GB (yes gigabytes). + Obviously, distribution will be really hard with sizes that huge + so I disable the option. + + I also disabled Dot because there didn't seem to be + much benefit of generating graphs for public C functions. + + One thing I would like to see is a CSS file that makes the + Doxygen DocSet look more like the native Apple documentation + style. Style sheets are outside my expertise so I am asking for + contributions on this one. Meanwhile, I also request you send + feedback to Doxygen and Apple about this issue too. + + + Finally for convenience, I have added a new shell script target + to the Xcode project that builds SDL that refers to my Doxyfile + and generate the DocSet we distribute. + + +SDLMain: + We include several different variations of SDLMain and the + .Nibs. (Each of these are demonstrated by the different PB/Xcode + project templates.) You get to pick which one you want to use, + or you can write your own to meet your own specific needs. We do + not currently provide a libSDLMain.a. You can build it yourself + once you decide which one you want to use though it is easier and + recommended in the SDL FAQ that you just copy the SDLMain.h and + SDLMain.m directly into your project. If you are puzzled by this, + we strongly recommend you look at the different PB/Xcode project + templates to understand their uses and differences. (See Project + Template info below.) Note that the "Nibless" version is the same + version of SDLMain we include the the devel-lite section of the + main SDL.dmg. + + +Xocde Project Templates: + For convenience, we provide Project Templates for Xcode. + Using Xcode is *not* a requirement for using + the SDL.framework. However, for newbies, we do recommend trying + out the Xcode templates first (and work your way back to raw gcc + if you desire), as the Xcode templates try to setup everything + for you in a working state. This avoids the need to ask those + many reoccuring questions that appear on the mailing list + or the SDL FAQ. + + + We have provided 3 different kinds of SDL templates for Xcode and have + a different set of templates for each version of Xcode (which generally + correspond with a particular Mac OS X version). + The installion directory depends on which version of Xcode you have. + (Note: These directories may not already exist on your system so you must create them yourself.) + + For Leopard and Snow Leopard (Xcode 2.5, 3+), we recommend you install to: + /Library/Application Support/Developer/Shared/Xcode/Project Templates/Application + + For Xcode 1.0 to 2.4, + /Library/Application Support/Apple/Developer Tools/Project Templates/Appllcation + + + Also note you may place it in per-user locations, e.g. + ~/Library/Application Support/Developer/Shared/Xcode/Project Templates/Application + + + And for advanced users who have multiple versions of Xcode installed on a single system, + you may put each set in a directory with the Xcode version number instead of using "Shared", e.g. + /Library/Application Support/Developer/2.5/Xcode/Project Templates/Application + /Library/Application Support/Developer/3.1/Xcode/Project Templates/Application + /Library/Application Support/Developer/3.2/Xcode/Project Templates/Application + + + Copy each of the SDL/Xcode template directories into the correct location (e.g. "SDL OpenGL Application"). + Do not copy our enclosing folder into the location (e.g. TemplatesForXcodeSnowLeopard). + So for example, in: + /Library/Application Support/Developer/Shared/Xcode/Project Templates/Application + you should have the 3 folders: + SDL Application + SDL Cocoa Application + SDL OpenGL Application + + + After doing this, when doing a File->New Project, you will see the + projects under the Application category. + (Newer versions of Xcode have a separate section for User Templates and it will + appear in the Application category of the User Templates section.) + + + + How to create a new SDL project: + + 1. Open Xcode + 2. Select File->New Project + 3. Select SDL Application + 4. Name, Save, and Finish + 5. Add your sources. + *6. That's it! + + * If you installed the SDL.framework to $(HOME)/Library/Frameworks + instead of /Library/Frameworks, you will need to update the + location of the SDL.framework in the "Groups & Files" browser. + + + The project templates we provide are: + - SDL Application + This is the barebones, most basic version. There is no + customized .Nib file. While still utilizing Cocoa under + the hood, this version may be best suited for fullscreen + applications. + + - SDL Cocoa Application + This demonstrates the integration of using native + Cocoa Menus with an SDL Application. For applications + designed to run in Windowed mode, Mac users may appreciate + having access to standard menus for things + like Preferences and Quiting (among other things). + + - SDL OpenGL Application + This reuses the same SDLMain from the "SDL Application" + temmplate, but also demonstrates how to + bring OpenGL into the mix. + + +Special Notes: +Only the 10.6 Snow Leopard templates (and later) will include 64-bit in the Universal Binary as +prior versions of OS X lacked the API support SDL requires for 64-bit to work correctly. +To prevent 64-bit SDL executables from being launched on 10.5 Leopard, a special key has been set +in the Info.plist in our Snow Leopard SDL/Xcode templates. + + +Xcode Tips and Tricks: + +- Building from command line + Use the command line tool: xcodebuild (see man page) + +- Running your app + You can send command line args to your app by either + invoking it from the command line (in *.app/Contents/MacOS) + or by entering them in the "Executables" panel of the target + settings. + +- Working directory + As defined in the SDLMain.m file, the working directory of + your SDL app is by default set to its parent. You may wish to + change this to better suit your needs. + + + +Additional References: + + - Screencast tutorials for getting started with OpenSceneGraph/Mac OS X are + available at: + http://www.openscenegraph.org/projects/osg/wiki/Support/Tutorials/MacOSXTips + Though these are OpenSceneGraph centric, the same exact concepts apply to + SDL, thus the videos are recommended for everybody getting started with + developing on Mac OS X. (You can skim over the PlugIns stuff since SDL + doesn't have any PlugIns to worry about.) + + +Partial History: +2009-09-21 - CustomView template project was removed because it was broken by + the removal of legacy Quicktime support while moving to 64-bit. + ProjectBuilder templates were removed. + Tiger, Leopard, and Snow Leopard Xcode templates were introduced instead of + using a single common template due to the differences between the 3. + (Tiger used a chevron marker for substitution while Leopard/Snow Leopard use ___ + and we need the 10.6 SDK for 64-bit.) + +2007-12-30 - Updated documentation to reflect new template paths in Leopard + Xcode. Added reference to OSG screencasts. + +2006-03-17 - Changed the package format from a .pkg based + installer to a .dmg to avoid requiring administrator/root + to access contents, for better transparency, and to allow + users to more easily control which components + they actually want to install. + Introduced and updated documentation. + Created brand new Xcode project templates for Xcode 2.1 + based on the old Project Builder templates as they + required Xcode users to "Upgrade to Native Target". The new + templates try to leveage more default options and leverage + more Xcode conventions. The major change that may introduce + some breakage is that I now link to the SDL framework + via the "Group & Files" browser instead of using build + options. The downside to this is that if the user + installs the SDL.framework to a place other than + /Library/Frameworks (e.g. $(HOME)/Library/Frameworks), + the framework will not be found to link to and the user + has to manually fix this. But the upshot is (in addition to + being visually displayed in the forefront) is that it is + really easy to copy (embed) the framework automatically + into the .app bundle on build. So I have added this + feature, which makes the application potentially + drag-and-droppable ready. The Project Builder templates + are mostly unchanged due to the fact that I don't have + Project Builder. I did rename a file extension to .pbxproj + for the SDL Custom Cocoa Application template because + the .pbx extension would not load in my version of Xcode. + For both Project Builder and Xcode templates, I resync'd + the SDLMain.* files for the SDL App and OpenGL App + templates. I think people forget that we have 2 other + SDLMain's (and .Nib's) and somebody needs to go + through them and merge the new changes into those. + I also wrote a fix for the SDL Custom Cocoa App + template in MyController.m. The sprite loading code + needed to be able to find the icon.bmp in the .app + bundle's Resources folder. This change was needed to get + the app to run out of the box. This might change is untested + with Project Builder though and might break it. + There also seemed to be some corruption in the .nib itself. + Merely opening it and saving (allowing IB to correct the + .nib) seemed to correct things. + (Eric Wing) + + + + diff --git a/Xcode/SDL/pkg-support/SDL-devel.info b/Xcode/SDL/pkg-support/SDL-devel.info new file mode 100755 index 000000000..698f1d603 --- /dev/null +++ b/Xcode/SDL/pkg-support/SDL-devel.info @@ -0,0 +1,15 @@ +Title SDL 1.2.9 +Version 1 +Description SDL Library for Mac OS X (http://www.libsdl.org) +DefaultLocation /Developer/Documentation/SDL +Diskname (null) +DeleteWarning +NeedsAuthorization YES +DisableStop NO +UseUserMask YES +Application NO +Relocatable NO +Required NO +InstallOnly NO +RequiresReboot NO +InstallFat NO diff --git a/Xcode/SDL/pkg-support/SDL.info b/Xcode/SDL/pkg-support/SDL.info new file mode 100755 index 000000000..ca37a7f16 --- /dev/null +++ b/Xcode/SDL/pkg-support/SDL.info @@ -0,0 +1,15 @@ +Title SDL 1.2.8 +Version 1 +Description SDL Library for Mac OS X (http://www.libsdl.org) +DefaultLocation /Library/Frameworks +Diskname (null) +DeleteWarning +NeedsAuthorization NO +DisableStop NO +UseUserMask NO +Application NO +Relocatable YES +Required NO +InstallOnly NO +RequiresReboot NO +InstallFat NO diff --git a/Xcode/SDL/pkg-support/devel-resources/ReadMe.txt b/Xcode/SDL/pkg-support/devel-resources/ReadMe.txt new file mode 100755 index 000000000..f4fe36164 --- /dev/null +++ b/Xcode/SDL/pkg-support/devel-resources/ReadMe.txt @@ -0,0 +1,5 @@ +The Simple DirectMedia Layer (SDL for short) is a cross-platform library designed to make it easy to write multi-media software, such as games and emulators. + +The Simple DirectMedia Layer library source code is available from: http://www.libsdl.org/ + +This library is distributed under the terms of the GNU LGPL license: http://www.gnu.org/copyleft/lesser.html \ No newline at end of file diff --git a/Xcode/SDL/pkg-support/devel-resources/Welcome.txt b/Xcode/SDL/pkg-support/devel-resources/Welcome.txt new file mode 100755 index 000000000..9b0d2862f --- /dev/null +++ b/Xcode/SDL/pkg-support/devel-resources/Welcome.txt @@ -0,0 +1,5 @@ +This package installs documentation and Project Builder stationary for the SDL framework. + +The SDL documentation is installed into /Developer/Documentation/SDL. + +The SDL Mac OS X Readme is installed into your home directory. diff --git a/Xcode/SDL/pkg-support/devel-resources/install.sh b/Xcode/SDL/pkg-support/devel-resources/install.sh new file mode 100755 index 000000000..e7a4dedff --- /dev/null +++ b/Xcode/SDL/pkg-support/devel-resources/install.sh @@ -0,0 +1,76 @@ +#!/bin/sh +# finish up the installation +# this script should be executed using the sudo command +# this file is copied to SDL-devel.post_install and SDL-devel.post_upgrade +# inside the .pkg bundle +echo "Running post-install script" +umask 022 + +USER=`basename ~` +echo "User is \"$USER\"" + +ROOT=/Developer/Documentation/SDL +echo "Fixing framework permissions" +find $ROOT -type d -exec chmod a+rx {} \; +find $ROOT -type f -exec chmod a+r {} \; + +## We're not installing frameworks here anymore. The single +## framework should be installed to /Library/Frameworks which +## is handled by the standard package (not developer package). +## Using the home directory here is problematic for multi-user systems too. +# echo "Moving SDL.framework to ~/Library/Frameworks" +# move SDL to its proper home, so the target stationary works +#sudo -u $USER mkdir -p ~/Library/Frameworks +#sudo -u $USER /Developer/Tools/CpMac -r $ROOT/SDL.framework ~/Library/Frameworks + +## I'm not sure where this gets created and what's put in there. +rm -rf $ROOT/SDL.framework + +## I think precompiled headers have changed through the revisions of Apple's gcc. +## I don't know how useful this is anymore w.r.t. Apple's newest system for precompiled headers. +## I'm removing this for now. +# echo "Precompiling Header" +# precompile header for speedier compiles +#sudo -u $USER /usr/bin/cc -precomp ~/Library/Frameworks/SDL.framework/Headers/SDL.h -o ~/Library/Frameworks/SDL.framework/Headers/SDL.p + +# find the directory to store stationary in +if [ -e "/Library/Application Support/Apple/Developer Tools" ] ; then + echo "Installing project stationary for XCode" + PBXDIR="/Library/Application Support/Apple/Developer Tools" +else + echo "Installing project stationary for Project Builder" + PBXDIR="/Developer/ProjectBuilder Extras" +fi + +# move stationary to its proper home +mkdir -p "$PBXDIR/Project Templates/Application" +mkdir -p "$PBXDIR/Target Templates/SDL" + +cp -r "$ROOT/Project Stationary/SDL Application" "$PBXDIR/Project Templates/Application/" +cp -r "$ROOT/Project Stationary/SDL Cocoa Application" "$PBXDIR/Project Templates/Application/" +cp -r "$ROOT/Project Stationary/SDL Custom Cocoa Application" "$PBXDIR/Project Templates/Application/" +cp -r "$ROOT/Project Stationary/SDL OpenGL Application" "$PBXDIR/Project Templates/Application/" +cp "$ROOT/Project Stationary/Application.trgttmpl" "$PBXDIR/Target Templates/SDL/" + +rm -rf "$ROOT/Project Stationary" + +# Actually, man doesn't check this directory by default, so this isn't +# very helpful anymore. +#echo "Installing Man Pages" +## remove old man pages +#rm -rf "/Developer/Documentation/ManPages/man3/SDL"* +# +## install man pages +#mkdir -p "/Developer/Documentation/ManPages/man3" +#cp "$ROOT/docs/man3/SDL"* "/Developer/Documentation/ManPages/man3/" +#rm -rf "$ROOT/docs/man3" +# +#echo "Rebuilding Apropos Database" +## rebuild apropos database +#/usr/libexec/makewhatis + +# copy README file to your home directory +sudo -u $USER cp "$ROOT/Readme SDL Developer.txt" ~/ + +# open up the README file +sudo -u $USER open ~/"Readme SDL Developer.txt" diff --git a/Xcode/SDL/pkg-support/resources/License.rtf b/Xcode/SDL/pkg-support/resources/License.rtf new file mode 100755 index 000000000..706980dbb --- /dev/null +++ b/Xcode/SDL/pkg-support/resources/License.rtf @@ -0,0 +1,283 @@ +{\rtf1\mac\ansicpg10000\cocoartf102 +{\fonttbl\f0\fswiss\fcharset77 Helvetica-Bold;\f1\fswiss\fcharset77 Helvetica;\f2\fswiss\fcharset77 Helvetica-Oblique; +} +{\colortbl;\red255\green255\blue255;\red64\green64\blue64;} +\paperw11900\paperh16840\margl1440\margr1440\vieww9080\viewh13160\viewkind0 +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\qc + +\f0\b\fs36 \cf0 GNU LESSER GENERAL PUBLIC LICENSE +\fs24 \ +Version 2.1, February 1999 +\f1\b0 \ +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\ql\qnatural +\cf0 \ +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\qc + +\f2\i \cf0 Copyright (C) 1991, 1999 Free Software Foundation, Inc.\ + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\ + Everyone is permitted to copy and distribute verbatim copies\ + of this license document, but changing it is not allowed.\ +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\ql\qnatural + +\f1\i0 \cf0 \ +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\ql\qnatural +\cf2 [This is the first released version of the Lesser GPL. It also counts as the successor of the GNU Library Public License, version 2, hence the version number 2.1.]\cf0 \ +\ +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\qc + +\f0\b \cf0 Preamble +\f1\b0 \ +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\ql\qnatural +\cf0 \ +The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users.\ +\ +This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below.\ +\ +When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things.\ +\ +To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it.\ +\ +For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights.\ +\ +We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library.\ +\ +To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others.\ +\ +Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license.\ +\ +Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We this license for certain libraries in order to permit linking those libraries into non-free programs.\ +\ +When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library.\ +\ +We call this license the "Lesser" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances.\ +\ +For example, on rare occasions, there may be a special need to encourage widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License.\ +\ +Another cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system.\ +\ +Although the Lesser General Public License is Less protective of the users' freedom, it does insure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library.\ +\ +The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run.\ +\ +\ +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\qc + +\f0\b \cf0 GNU LESSER GENERAL PUBLIC LICENSE\ +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\ +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\ql\qnatural + +\f1\b0 \cf0 \ +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\ql\qnatural + +\f0\b \cf0 0. +\f1\b0 This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you".\ +\ +A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables.\ +\ +The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".)\ +\ +"Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library.\ +\ +Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does.\ + \ + +\f0\b 1. +\f1\b0 You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library.\ +\ +You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee.\ +\ + +\f0\b 2. +\f1\b0 You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions:\ +\ +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\li240\ql\qnatural + +\f0\b \cf0 a) +\f1\b0 The modified work must itself be a software library.\ +\ + +\f0\b b) +\f1\b0 You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change.\ +\ + +\f0\b c) +\f1\b0 You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License.\ +\ + +\f0\b d) +\f1\b0 If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful.\ +\ +(For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.)\ +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\ql\qnatural +\cf0 \ +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it.\ +\ +Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library.\ +\ +In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License.\ +\ +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\ql\qnatural + +\f0\b \cf0 3. +\f1\b0 You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices.\ +\ +Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy.\ +\ +This option is useful when you wish to copy part of the code of the Library into a program that is not a library.\ +\ + +\f0\b 4. +\f1\b0 You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange.\ +\ +If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code.\ +\ + +\f0\b 5. +\f1\b0 A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License.\ +\ +However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables.\ +\ +When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law.\ +\ +If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.)\ +\ +Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself.\ +\ + +\f0\b 6. +\f1\b0 As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications.\ +\ +You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things:\ +\ +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\li240\ql\qnatural + +\f0\b \cf0 a) +\f1\b0 Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.)\ +\ + +\f0\b b) +\f1\b0 Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with.\ +\ + +\f0\b c) +\f1\b0 Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution.\ +\ + +\f0\b d) +\f1\b0 If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place.\ +\ + +\f0\b e) +\f1\b0 Verify that the user has already received a copy of these materials or that you have already sent this user a copy.\ +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\ql\qnatural +\cf0 \ +For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable.\ +\ +It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute.\ +\ +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\ql\qnatural + +\f0\b \cf0 7. +\f1\b0 You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things:\ +\ +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\li240\ql\qnatural + +\f0\b \cf0 a) +\f1\b0 Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above.\ +\ + +\f0\b b) +\f1\b0 Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work.\ +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\ql\qnatural +\cf0 \ +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\ql\qnatural + +\f0\b \cf0 8. +\f1\b0 You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance.\ +\ + +\f0\b 9. +\f1\b0 You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it.\ +\ + +\f0\b 10. +\f1\b0 Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License.\ +\ + +\f0\b 11. +\f1\b0 If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library.\ +\ +If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances.\ +\ +It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice.\ +\ +This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License.\ +\ + +\f0\b 12. +\f1\b0 If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License.\ +\ + +\f0\b 13. +\f1\b0 The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\ +\ +Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation.\ +\ + +\f0\b 14. +\f1\b0 If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally.\ +\ +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\qc + +\f0\b \cf0 NO WARRANTY +\f1\b0 \ +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\ql\qnatural +\cf0 \ +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\ql\qnatural + +\f0\b \cf0 15. +\f1\b0 BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\ +\ + +\f0\b 16. +\f1\b0 IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\ +\ +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\qc + +\f0\b \cf0 END OF TERMS AND CONDITIONS +\f1\b0 \ +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\ql\qnatural +\cf0 \ +\ +How to Apply These Terms to Your New Libraries\ +\ +If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License).\ +\ +To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found.\ +\ +\pard\tx220\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\li240\ql\qnatural +\cf0 \ +Copyright (C) \ +\ +This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.\ +\ +This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.\ +\ +You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\ +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\ql\qnatural +\cf0 \ +Also add information on how to contact you by electronic and paper mail.\ +\ +You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names:\ +\ +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\li240\ql\qnatural +\cf0 Yoyodyne, Inc., hereby disclaims all copyright interest in the library\ +`Frob' (a library for tweaking knobs) written by James Random Hacker.\ +\ +, 1 April 1990\ +Ty Coon, President of Vice\ +\pard\tx565\tx1133\tx1700\tx2266\tx2832\tx3401\tx3967\tx4535\tx5102\tx5669\tx6235\tx6802\ql\qnatural +\cf0 \ +That's all there is to it!\ +\ +} \ No newline at end of file diff --git a/Xcode/SDL/pkg-support/resources/ReadMe.txt b/Xcode/SDL/pkg-support/resources/ReadMe.txt new file mode 100755 index 000000000..073115031 --- /dev/null +++ b/Xcode/SDL/pkg-support/resources/ReadMe.txt @@ -0,0 +1,171 @@ +The Simple DirectMedia Layer (SDL for short) is a cross-platform +library designed to make it easy to write multi-media software, +such as games and emulators. + +The Simple DirectMedia Layer library source code is available from: +http://www.libsdl.org/ + +This library is distributed under the terms of the GNU LGPL license: +http://www.gnu.org/copyleft/lesser.html + + +This packages contains the SDL.framework for OS X. +Conforming with Apple guidelines, this framework +contains both the SDL runtime component and development header files. + + +To Install: +Copy the SDL.framework to /Library/Frameworks + +You may alternatively install it in /Library/Frameworks +if your access privileges are not high enough. +(Be aware that the Xcode templates we provide in the SDL Developer Extras +package may require some adjustment for your system if you do this.) + + +Known Issues: +??? + + +Additional References: + + - Screencast tutorials for getting started with OpenSceneGraph/Mac OS X are + available at: + http://www.openscenegraph.org/projects/osg/wiki/Support/Tutorials/MacOSXTips + Though these are OpenSceneGraph centric, the same exact concepts apply to + SDL, thus the videos are recommended for everybody getting started with + developing on Mac OS X. (You can skim over the PlugIns stuff since SDL + doesn't have any PlugIns to worry about.) + + + +(Partial) History of PB/Xcode projects: +2009-09-21 - Added 64-bit for Snow Leopard. 10.4 is the new minimum requirement. + Removed 'no X11' targets as + new codebase will assume you have them. Also removed specific #defines + for X11, but needed to add search path to /usr/X11R6/include + +2007-12-31 - Enabled strip -x in the Xcode settings and removed it + from the Build DMG script. + Added a per-arch setting for the Deployment targets for OTHER_LDFLAGS_ppc + to re-enable prebinding. + Need to remember to copy these changes to the SDL satellite projects. + +2007-12-30 - Updated documentation to reflect new installation paths for + Xcode project templates under Leopard (Xcode 2.5/3.0). + +????-??-?? - Added extra targets for building formal releases against the + 10.2 SDK so we don't have to keep modifying the settings. + +????-??-?? - Added fancy DMG (background logo) support with automation. + +2006-05-09 - Added shell script phase to deal with new SDL_config.h + behavior. Encountered what seems to be an Xcode bug with + multiple files of the same name, even when conditional compiling + is controlled by custom #defines (SDL_sysloadso.c). Multiple or + undefined symbols are the result of this. + Recommended that macosx/SDL_sysloadso.c be modified to directly + include the dlopen version of the file via #ifdef's so only + one version needs to exist. Filed a formal bug report with Apple + about this (4542369). + +2006-03-22 - gcc 4 visibility features have been added to the code base so I + enabled the switch in Xcode to take advantage of it. Be aware that only + our x86 builds will be exposed to this feature as we still build ppc + with gcc 3.3. + + Christian Walther has sent me some great feedback on things that are + broken, so I have made some of these fixes. Among the issues are + compatibility and current library versions are not set to 1 (breaks + backwards compatibility), documentation errors, resource copying + location problems for the SDLTest apps, missing HAVE_OPENGL and + OpenGL.framework linking in testgl. + (Eric Wing) + +2006-03-17 - Because the X11 headers are not installed by default with Xcode, + we decided to offer two variants of the same targets (one with X11 stuff + and one without). By default, since the X11 stuff does not necessarily + conflict with the native stuff, we build the libraries with the X11 stuff + so advanced developers can access it by default. However, in the case + that a developer did not install X11 (or just doesn't want the extra bloat), + the user may directly select those targets and build those instead. + + Once again, we are attempting to remove the exported symbols file. If + I recall correctly, the clashing symbol problems we got were related + to the CD-ROM code which was formerly in C++. Now that the C++ code + has been purged, we are speculating that we might be able to remove + the exports file safely. The long term solution is to utilize gcc 4's + visibility features. + + For the developer extras package, I changed the package format + from a .pkg based installer to a .dmg to avoid requiring + administrator/root to access contents, for better + transparency, and to allow users to more easily control which components + they actually want to install. + I also made changes and updates to the PB/Xcode project templates (see Developer ReadMe). + (Eric Wing) + +2006-03-07 - The entire code base has been reorganized and platform specific + defines have been pushed into header files (SDL_config_*.h). This means + that defines that previously had to be defined in the Xcode projects can + be removed (which I have started doing). Furthermore, it appears that the + MMX/SSE code has been rewritten and refactored so it now compiles without + nasm and without making us do strange things to support OS X. However, this + Xcode project still employs architecture specific build options in order to + achieve the mandated 10.2 compatibility. As a result of the code base changes, + there are new public headers. But also as a result of these changes, there are + also new headers that qualify as "PrivateHeaders". Private Headers are headers + that must be exported because a public header includes them, but users shouldn't + directly invoke these. SDL_config_macosx.h and SDL_config_dreamcast.h are + examples of this. We have considered marking these headers as Private, but it + requires that the public headers invoke them via framework conventions, i.e. + #include + e.g. + #include + and not + #include "SDL_config_macosx.h" + However this imposes the restriction that non-framework distributions must + place their headers in a directory called SDL/ (and not SDL11/ like FreeBSD). + Currently, I do not believe this would pose a problem for any of the current + distributions (Fink, DarwinPorts). Or alternatively, users could be + expected/forced to also include the header path: + -I/Library/Frameworks/SDL.framework/PrivateHeaders, + but most people would probably not read the documentation on this. + But currently, we have decided to be conservative and have opted not to + use the PrivateHeaders feature. + (Eric Wing) + +2006-01-31 - Updates to build Universal Binaries while retaining 10.2 compatibility. + We were unable to get MMX/SSE support enabled. It is believed that a rewrite of + the assembly code will be necessary to make it position independent and not + require nasm. Altivec has finally been enabled for PPC. (Eric Wing) + +2005-09-?? - Had to add back the exports file because it was causing build problems + for some cases. (Eric Wing) + +2005-08-21 - First entry in history. Updated for SDL 1.2.9 and Xcode 2.1. Getting + ready for Universal Binaries. Removed the .pkg system for .dmg for due to problems + with broken packages in the past several SDL point releases. Removed usage of SDL + exports file because it has become another point of failure. Introduced new documentation + about SDLMain and how to compile in an devel-lite section of the SDL.dmg. (Eric Wing) + +Before history: +SDL 1.2.6? to 1.2.8 +Started updating Project Builder projects to Xcode for Panther and Tiger. Also removed +the system that split the single framework into separate runtime and headers frameworks. +This is against Apple conventions and causes problems on multiuser systems. +We now distribute a single framework. +The .pkg system has repeatedly been broken with every new release of OS X. +With 1.2.8, started migrating stuff to .dmg based system to simplify distribution process. +Tried updating the exports file and Perl script generation system for changing syntax. (Eric Wing) + +Pre-SDL 1.2.6 +Created Project Builder projects for SDL and .pkg based distribution system. (Darrell Walisser) + + + + + + + + diff --git a/Xcode/SDL/pkg-support/resources/ReadMeDevLite.txt b/Xcode/SDL/pkg-support/resources/ReadMeDevLite.txt new file mode 100644 index 000000000..d2cd793c5 --- /dev/null +++ b/Xcode/SDL/pkg-support/resources/ReadMeDevLite.txt @@ -0,0 +1,12 @@ +This directory is for developers. This directory contains some basic essentials you will need for developing SDL based applications on OS X. The SDL-devel package contains all of this stuff plus more, so you can ignore this if you install the SDL-devel.pkg. The SDL-devel package contains Xcode templates, SDL documentation, and different variations of SDLmain and NIB files for SDL. + +To compile an SDL based application on OS X, SDLMain.m must be compiled into your program. (See the SDL FAQ). The SDL-devel.pkg includes Xcode templates which already do this for you. But for those who may not want to install the dev package, an SDLMain is provided here as a convenience. Be aware that there are different variations of SDLMain.m depending on what class of SDL application you make and they are intended to work with NIB files. Only one SDLMain variant is provided here and without any NIB files. You should look to the SDL-devel package for the others. We currently do not provide a SDLMain.a file, partly to call to attention that there are different variations of SDLmain. + +To build from the command line, your gcc line will look something like this: + +gcc -I/Library/Frameworks/SDL.framework/Headers MyProgram.c SDLmain.m -framework SDL -framework Cocoa + +An SDL/OpenGL based application might look like: + +gcc -I/Library/Frameworks/SDL.framework/Headers -I/System/Library/Frameworks/OpenGL.framework/Headers MyProgram.c SDLmain.m -framework SDL -framework Cocoa -framework OpenGL + diff --git a/Xcode/SDL/pkg-support/resources/SDL_DS_Store b/Xcode/SDL/pkg-support/resources/SDL_DS_Store new file mode 100644 index 000000000..f15a5e78c Binary files /dev/null and b/Xcode/SDL/pkg-support/resources/SDL_DS_Store differ diff --git a/Xcode/SDL/pkg-support/resources/UniversalBinaryNotes.rtf b/Xcode/SDL/pkg-support/resources/UniversalBinaryNotes.rtf new file mode 100644 index 000000000..5585ecb5a --- /dev/null +++ b/Xcode/SDL/pkg-support/resources/UniversalBinaryNotes.rtf @@ -0,0 +1,150 @@ +{\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf110 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 LucidaGrande;\f2\fmodern\fcharset0 Courier-Oblique; +} +{\colortbl;\red255\green255\blue255;} +{\*\listtable{\list\listtemplateid1\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\*\levelmarker \{disc\}}{\leveltext\leveltemplateid1\'01\uc0\u8226 ;}{\levelnumbers;}\fi-360\li720\lin720 }{\listname ;}\listid1}} +{\*\listoverridetable{\listoverride\listid1\listoverridecount0\ls1}} +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\ql\qnatural\pardirnatural + +\f0\b\fs24 \cf0 64-bit Universal Binary Notes:\ + +\b0 \ +SDL 1.2.14 is our first release with Snow Leopard on the market. In order to make SDL compile and run in 64-bit, we had to remove code that depended on deprecated Mac APIs and move over to more modern Mac APIs.\ +\ +In addition, Apple has stopped shipping gcc 3.3 and the 10.3 SDK.\ +\ +Because of all these combined factors, we have made the decision to make Mac OS X 10.4 the new minimum requirement for SDL.\ +\ +Our official SDL.framework is compiled as a 3-way Universal Binary (64-bit Intel, 32-bit Intel, 32-bit PowerPC.)\ +\ +Certain APIs that SDL relies on were not made 64-bit ready by Apple until 10.6. This means even though 10.5 had preliminary 64-bit support, SDL will not compile or run correctly in 64-bit mode on 10.5. So there are two fallout items from this.\ +\ +First, you can only compile 64-bit code on Snow Leopard or greater (which removes the possibility of 64-bit PowerPC). \ +\ +Second, this presents a corner-case where if you have a 64-bit Intel executable in your Universal binary and try to run on 10.5 on an 64-bit Intel Mac, it will launch and crash. To force 10.5 to use the 32-bit version instead of the 64-bit, you should set the LaunchServices key, LSMinimumSystemVersionByArchitecture, in your application's Info.plist. Our SDL/Xcode templates for Snow Leopard already set this up for you.\ +\ +\ +One additional fallout item is we had to remove the SDL Custom Cocoa Xcode template project. It depended on NSQuickTimeView which was deprecated and removed from the SDL codebase. It may still be possible to recreate the behavior that this template demonstrated, but we would need a volunteer to investigate this.\ +\ +\ +\ +In addition, the SDL satellite projects were affected by the 64-bit transition.\ +\ +- SDL_mixer depended on legacy Quicktime for midi playback support. We had to disable midi. (Recall that we also disabled MP3 support awhile back because we never got SMPEG working during the Tiger/Intel transition.) To fix this, we would need a native Core Audio backend for SDL_mixer.\ +\ +- Since we have changed the baseline to 10.4, we took this opportunity to switch SDL_image over to a new native ImageIO based backend. This makes the binary about 10x smaller, greatly simplifies our maintenance requirements and build process as we no longer have to maintain build systems for 3rd party dependencies, and gives us access to more image formats.\ +\ +- The static library target for SDL_ttf no longer works because we no longer have access to a libfreetype.a. We have been relying on Apple's supplied libfreetype.a, but they stopped shipping a static version starting in 10.5 which means we have no static 64-bit version. But since 10.4 is our new baseline, all these systems should have libfreetype.dylib installed, so it shouldn't be much of a problem to use SDL_ttf as a dynamic library which dynamically links to libfreetype.\ +\ +\ +-Eric Wing 2009-09-23\ + +\b \ +\ +\ +\ +Universal Binary Notes: (historical, somewhat obsolete)\ + +\b0 \ +Below is an overview of what we had to do to build Universal Binaries for SDL (and satellites). The document is provided to help others understand what the heck we had to do to get this to work so they know (and don't break) any settings we have set to accomplish this. It also describes areas of problems for those who might attempt to fix them after us.\ +\ +\ +It turns out that developing a Universal Binary for SDL was a painful process, but not for the typical reasons affecting most other developers. SDL is already platform clean and has an Xcode project which are usually the two biggest obstacles. (The only real code bug we had to fix was in SDL_mixer, but that was due to a Quicktime issue so we can blame the Quicktime authors.)\ +\ +But developing a Universal Binary was painful to us for several reasons:\ +\ +\pard\tx220\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\li720\fi-720\ql\qnatural\pardirnatural +\ls1\ilvl0\cf0 {\listtext \'95 }SDL must retain compatibility with 10.2 (Jaguar)\ +\ +{\listtext \'95 }SDL has processor specific optimizations (Altivec, MMX/SSE)\ +\ +{\listtext \'95 }The SDL satellites (SDL_mixer, SDL_image, SDL_ttf) have 3rd party dependencies which we currently statically link against. All of these dependencies needed to be updated/recompiled with the same above constraints.\ +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\ql\qnatural\pardirnatural +\cf0 \ +For retaining compatibility with 10.2, we have experimentally determined that there is no reliable way to use gcc 4.0.x to compile a binary that works under Jaguar. With the gcc 4.0 that shipped in Xcode 2.1, libgcc_s was automatically linked against. This library does not exist on systems prior to 10.3.9. After filing a bug report, Apple removed this automatic linking in gcc 4.0.1 which shipped with Xcode 2.2, but we discovered that we suffered from undefined symbols to things in the printf family library. (They seem to be new symbols related to printing long doubles, etc.)\ +\ +So to accomplish our compatibility goals, we had to find and exploit some lesser known features of Xcode that allow us to specify architecture specific build flags found here:\ +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\ql\qnatural\pardirnatural +{\field{\*\fldinst{HYPERLINK "http://developer.apple.com/documentation/DeveloperTools/Conceptual/XcodeUserGuide/Contents/Resources/en.lproj/05_07_bs_building_product/chapter_33_section_6.html#//apple_ref/doc/uid/TP40002693-SW3"}}{\fldrslt \cf0 http://developer.apple.com/documentation/DeveloperTools/Conceptual/XcodeUserGuide/Contents/Resources/en.lproj/05_07_bs_building_product/chapter_33_section_6.html#//apple_ref/doc/uid/TP40002693-SW3}}\ +\ +The first and most important of these is the +\f1 GCC_VERSION flag which lets us set gcc 3.3 for PowerPC and gcc 4.0 for Intel.\ +\ +But we also needed to verify other options such as the deployment target and SDK. Experimentally, we found that the Deployment target did very little for us except retain prebinding. Setting it to anything less than 10.4 allows for prebinding to remain active.\ +\ +For the SDK's, we found that Apple does link against different versions of system components. But experimentally, we discovered we could still link to the 10.4u SDK and things would still work on Jaguar. Ideally we should probably link to the 10.2.8 SDK for PowerPC. But in reality, most people don't install the 10.2.8 SDK on their system (it is not a default component) so we didn't want to confuse people as setting this would likely cause people's compile to fail the first time they try and they would have to understand the reason for this. We did leave the architecture specific SDKROOT option set explicitly to make it easy to change in case we need to.\ +\ +For the Altivec and MMX/SSE options, we had to use architecture specific build flags. Furthermore, to use SSE, we also had to include the assembly code. This caused us problems because there is no easy way to tell Xcode to use files only for a specific architecture. So the PowerPC side got confused on the .asm files and would fail to compile. \ +\ +Pushing forward, we ignored PPC for the moment to see if we could at least build an optimized x86 build and then use lipo manually to merge the results. We encountered additional problems. First the alignment needed to be changed for reasons outside my knowledge base. We changed all instances of .align 16 to .align 8. This seemed to fix the compile problems. But at the linking stage, we got errors such as:\ +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\li640\fi-640\ql\qnatural\pardirnatural + +\f2\i\fs22 \cf0 ld: /Users/ewing/DEVELOPMENT/CODETEST/UniversalBinarySDL/SDL12/Xcode/SDL/build/SDL.build/Deployment/Framework.build/Objects-normal/i386/SDL_yuv_mmx.o has local relocation entries in non-writable section (__TEXT,__text)\ +/usr/bin/libtool: internal link edit command failed\ +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural\pardirnatural + +\f1\i0\fs24 \cf0 \ +Our belief is that the assembly code is not position independent and thus will not work for us. We double checked for any OS X gcc flags that control position independence, but everything seemed to be in order. As such, we cannot compile MMX/SSE optimizations until they are rewritten, preferably without the nasm requirement to accommodate the dual PPC/x86 Xcode limitations.\ +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\ql\qnatural\pardirnatural +\cf0 \ +So for now, we have unchecked (checkbox) the assembly specific files in the Xcode project and have removed the -DUSE_ASMBLIT flag from OTHER_CFLAGS_i386. To reactivate this stuff, you will need to recheck the boxes and re-add the flag.\ +\ +The files are\ +SDL_mixer_MMX.c/h\ +The files under hermes\ +and SDL_yuv_mmx.c\ +\ +\ +\ +For the SDL satellites, it was more of the same. The painful part was that the 3rd library dependencies needed to be rebuilt. (Some of our libraries were out of date, so this was an opportunity to update them.) But this meant changing those build systems as well. \ +\ +These are the versions I used:\ +libpng-1.2.8\ +libjpeg-6b\ +libogg-1.1.3\ +libvorbis-1.1.2\ +smpeg cvs\ +\ +We found that Apple already had a libfreetype in the 10.4u SDK so we just used that one which seemed to work. (For the record, the question did come up of why we statically link against this when it seems to be a standard component on Panther and Tiger. We double checked, and it did not seem to be in Jaguar. So that's why.)\ +\ +The old libpng turned out to be from the 1.0.x branch so we needed to replace all the headers we had as well. Updating to the 1.2.x branch didn't seem to cause any problems we could detect.\ +\ +libpng and libjpeg lack an Xcode project so we mucked with their build system to produce Universal Binaries. But since we needed PPC to be compiled with 3.3 and Intel to be compiled with 4.0, it ended up that we built multiple times changing the compiler, and then using lipo to strip and combine the binaries.\ +\ +libogg/libvorbis did contain Xcode projects, but didn't build static libraries so we had to add that. We also discovered that not building with gcc 3.3 caused us addition missing symbol runtime problems with float versions of math functions (sinf, sqrtf, etc).\ +\ +It seems that once upon a time, the SDL_mixer framework supported MP3's via SMPEG, but this disappeared at some point. I don't know why or how this happened. But I also don't know how SMPEG was ever used with the framework as there was no preexisting infrastructure as with the other libraries. So I have attempted to correct this oversight, however, the SMPEG framework itself has MMX code which has also turned out to be problematic. I am getting compiler errors of " +\f2\i\fs22 Unknown pseudo-op:" +\f1\i0\fs24 for +\f2\i\fs22 .type +\f1\i0\fs24 and +\f2\i\fs22 .size. +\f1\i0\fs24 \ +So SMPEG is currently compiled without MMX optimizations.\ +\ +\ +\ +\ +Addendum: \ +2006-03-06:\ +The main SDL code base (not the satellites) have undergone an overhaul. The required platform specific defines have been moved out of the build system into platform specific header files (SDL_config_*.h). This allows us to simplify the Xcode projects somewhat, but we still must maintain the architecture specific build options to invoke gcc 3.3 to maintain our mandated 10.2 compatibilty requirement.\ +\ +Also it appears that the MMX/SSE code has been rewritten as well so that the obstacles we faced in compiling in these optimizations are no longer problems. The binaries we produce should now contain the processor specific optimizations. (Remember this note only applies to SDL and not the satellites, such as SMPEG.)\ +\ +\ +\ +Contributers:\ +Eric Wing (Xcode projects, 3rd party dependencies, documentation)\ +Christian Walther (10.2.8 and 10.3.9 testing/verification)\ +Ryan Gordon (converted C++ code in SDL/OSX code base to pure C)\ +Martin Storsj\'f6 (libgcc_s testing/verification)\ +Stephane Marchesin (MMX/SSE code expert)\ +\ +\ +\ +\ +\ +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\ql\qnatural\pardirnatural + +\f0 \cf0 \ +} \ No newline at end of file diff --git a/Xcode/SDL/pkg-support/sdl_logo.pdf b/Xcode/SDL/pkg-support/sdl_logo.pdf new file mode 100644 index 000000000..a172f971b Binary files /dev/null and b/Xcode/SDL/pkg-support/sdl_logo.pdf differ diff --git a/Xcode/SDLTest/Info-checkkeys__Upgraded_.plist b/Xcode/SDLTest/Info-checkkeys__Upgraded_.plist new file mode 100644 index 000000000..69321e374 --- /dev/null +++ b/Xcode/SDLTest/Info-checkkeys__Upgraded_.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + checkkeys + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-graywin__Upgraded_.plist b/Xcode/SDLTest/Info-graywin__Upgraded_.plist new file mode 100644 index 000000000..0a9c04b10 --- /dev/null +++ b/Xcode/SDLTest/Info-graywin__Upgraded_.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + graywin + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-loopwave__Upgraded_.plist b/Xcode/SDLTest/Info-loopwave__Upgraded_.plist new file mode 100644 index 000000000..5f66864f8 --- /dev/null +++ b/Xcode/SDLTest/Info-loopwave__Upgraded_.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + loopwave + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-test.plist b/Xcode/SDLTest/Info-test.plist new file mode 100644 index 000000000..60d5db5b3 --- /dev/null +++ b/Xcode/SDLTest/Info-test.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + testalpha + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-testalpha__Upgraded_.plist b/Xcode/SDLTest/Info-testalpha__Upgraded_.plist new file mode 100644 index 000000000..60d5db5b3 --- /dev/null +++ b/Xcode/SDLTest/Info-testalpha__Upgraded_.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + testalpha + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-testbitmap__Upgraded_.plist b/Xcode/SDLTest/Info-testbitmap__Upgraded_.plist new file mode 100644 index 000000000..87ec2719e --- /dev/null +++ b/Xcode/SDLTest/Info-testbitmap__Upgraded_.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + testbitmap + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-testblitspeed.plist b/Xcode/SDLTest/Info-testblitspeed.plist new file mode 100644 index 000000000..c7fbcfe56 --- /dev/null +++ b/Xcode/SDLTest/Info-testblitspeed.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + testblitspeed + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-testcdrom__Upgraded_.plist b/Xcode/SDLTest/Info-testcdrom__Upgraded_.plist new file mode 100644 index 000000000..dde6614d7 --- /dev/null +++ b/Xcode/SDLTest/Info-testcdrom__Upgraded_.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + testcdrom + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-testdyngl.plist b/Xcode/SDLTest/Info-testdyngl.plist new file mode 100644 index 000000000..1874119d2 --- /dev/null +++ b/Xcode/SDLTest/Info-testdyngl.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + testdyngl + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-testerror__Upgraded_.plist b/Xcode/SDLTest/Info-testerror__Upgraded_.plist new file mode 100644 index 000000000..11cc0fdc8 --- /dev/null +++ b/Xcode/SDLTest/Info-testerror__Upgraded_.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + testerror + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-testfile.plist b/Xcode/SDLTest/Info-testfile.plist new file mode 100644 index 000000000..6488b54e6 --- /dev/null +++ b/Xcode/SDLTest/Info-testfile.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + testfile + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-testgamma__Upgraded_.plist b/Xcode/SDLTest/Info-testgamma__Upgraded_.plist new file mode 100644 index 000000000..6a6b5af8d --- /dev/null +++ b/Xcode/SDLTest/Info-testgamma__Upgraded_.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + testgamma + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-testgl__Upgraded_.plist b/Xcode/SDLTest/Info-testgl__Upgraded_.plist new file mode 100644 index 000000000..eecc9cc34 --- /dev/null +++ b/Xcode/SDLTest/Info-testgl__Upgraded_.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + testgl + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-testiconv.plist b/Xcode/SDLTest/Info-testiconv.plist new file mode 100644 index 000000000..0ff003f8a --- /dev/null +++ b/Xcode/SDLTest/Info-testiconv.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + testiconv + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-testjoystick__Upgraded_.plist b/Xcode/SDLTest/Info-testjoystick__Upgraded_.plist new file mode 100644 index 000000000..ef2e274f1 --- /dev/null +++ b/Xcode/SDLTest/Info-testjoystick__Upgraded_.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + testjoystick + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-testkeys__Upgraded_.plist b/Xcode/SDLTest/Info-testkeys__Upgraded_.plist new file mode 100644 index 000000000..03eba705b --- /dev/null +++ b/Xcode/SDLTest/Info-testkeys__Upgraded_.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + testkeys + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-testlock__Upgraded_.plist b/Xcode/SDLTest/Info-testlock__Upgraded_.plist new file mode 100644 index 000000000..50b71f2d3 --- /dev/null +++ b/Xcode/SDLTest/Info-testlock__Upgraded_.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + testlock + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-testoverlay2.plist b/Xcode/SDLTest/Info-testoverlay2.plist new file mode 100644 index 000000000..664e0ce6d --- /dev/null +++ b/Xcode/SDLTest/Info-testoverlay2.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + testoverlay2 + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-testoverlay__Upgraded_.plist b/Xcode/SDLTest/Info-testoverlay__Upgraded_.plist new file mode 100644 index 000000000..a7a8a7726 --- /dev/null +++ b/Xcode/SDLTest/Info-testoverlay__Upgraded_.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-testpalette__Upgraded_.plist b/Xcode/SDLTest/Info-testpalette__Upgraded_.plist new file mode 100644 index 000000000..a08947ecb --- /dev/null +++ b/Xcode/SDLTest/Info-testpalette__Upgraded_.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + testpalette + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-testplatform.plist b/Xcode/SDLTest/Info-testplatform.plist new file mode 100644 index 000000000..9b60de243 --- /dev/null +++ b/Xcode/SDLTest/Info-testplatform.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + testplatform + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-testsem__Upgraded_.plist b/Xcode/SDLTest/Info-testsem__Upgraded_.plist new file mode 100644 index 000000000..69235feac --- /dev/null +++ b/Xcode/SDLTest/Info-testsem__Upgraded_.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + testsem + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-testsprite__Upgraded_.plist b/Xcode/SDLTest/Info-testsprite__Upgraded_.plist new file mode 100644 index 000000000..91739c16f --- /dev/null +++ b/Xcode/SDLTest/Info-testsprite__Upgraded_.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + testsprite + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-testthread__Upgraded_.plist b/Xcode/SDLTest/Info-testthread__Upgraded_.plist new file mode 100644 index 000000000..30147f056 --- /dev/null +++ b/Xcode/SDLTest/Info-testthread__Upgraded_.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + testthread + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-testtimer__Upgraded_.plist b/Xcode/SDLTest/Info-testtimer__Upgraded_.plist new file mode 100644 index 000000000..a143244ca --- /dev/null +++ b/Xcode/SDLTest/Info-testtimer__Upgraded_.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + testtimer + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-testtypes__Upgraded_.plist b/Xcode/SDLTest/Info-testtypes__Upgraded_.plist new file mode 100644 index 000000000..f16490c02 --- /dev/null +++ b/Xcode/SDLTest/Info-testtypes__Upgraded_.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + testtypes + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-testversion__Upgraded_.plist b/Xcode/SDLTest/Info-testversion__Upgraded_.plist new file mode 100644 index 000000000..ba635f703 --- /dev/null +++ b/Xcode/SDLTest/Info-testversion__Upgraded_.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + testversion + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-testvidinfo__Upgraded_.plist b/Xcode/SDLTest/Info-testvidinfo__Upgraded_.plist new file mode 100644 index 000000000..35f13b473 --- /dev/null +++ b/Xcode/SDLTest/Info-testvidinfo__Upgraded_.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + testvidinfo + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-testwin__Upgraded_.plist b/Xcode/SDLTest/Info-testwin__Upgraded_.plist new file mode 100644 index 000000000..f0e91c6cd --- /dev/null +++ b/Xcode/SDLTest/Info-testwin__Upgraded_.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + testwin + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-testwm__Upgraded_.plist b/Xcode/SDLTest/Info-testwm__Upgraded_.plist new file mode 100644 index 000000000..9979ee4bf --- /dev/null +++ b/Xcode/SDLTest/Info-testwm__Upgraded_.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + testwm + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-threadwin__Upgraded_.plist b/Xcode/SDLTest/Info-threadwin__Upgraded_.plist new file mode 100644 index 000000000..721763d25 --- /dev/null +++ b/Xcode/SDLTest/Info-threadwin__Upgraded_.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + threadwin + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/Info-torturethread__Upgraded_.plist b/Xcode/SDLTest/Info-torturethread__Upgraded_.plist new file mode 100644 index 000000000..3433469d1 --- /dev/null +++ b/Xcode/SDLTest/Info-torturethread__Upgraded_.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + torturethread + CFBundleGetInfoString + + CFBundleIconFile + + CFBundleIdentifier + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + + CFBundlePackageType + APPL + CFBundleShortVersionString + + CFBundleSignature + ???? + CFBundleVersion + 0.0.1d1 + NSMainNibFile + SDLMain.nib + NSPrincipalClass + NSApplication + + diff --git a/Xcode/SDLTest/SDLTest.xcodeproj/project.pbxproj b/Xcode/SDLTest/SDLTest.xcodeproj/project.pbxproj new file mode 100755 index 000000000..938d60f9d --- /dev/null +++ b/Xcode/SDLTest/SDLTest.xcodeproj/project.pbxproj @@ -0,0 +1,4514 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 42; + objects = { + +/* Begin PBXAggregateTarget section */ + BEC566920761D90300A33029 /* All */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 001B599808BDB826006539E9 /* Build configuration list for PBXAggregateTarget "All" */; + buildPhases = ( + ); + dependencies = ( + 003FA6A809400236000C53B3 /* PBXTargetDependency */, + BEC568010761D90600A33029 /* PBXTargetDependency */, + BEC568030761D90600A33029 /* PBXTargetDependency */, + BEC568050761D90600A33029 /* PBXTargetDependency */, + BEC568070761D90600A33029 /* PBXTargetDependency */, + BEC568090761D90600A33029 /* PBXTargetDependency */, + 002F347909CA215600EBEB88 /* PBXTargetDependency */, + BEC5680B0761D90600A33029 /* PBXTargetDependency */, + 002F347B09CA215600EBEB88 /* PBXTargetDependency */, + BEC5680D0761D90600A33029 /* PBXTargetDependency */, + 002F347D09CA215600EBEB88 /* PBXTargetDependency */, + BEC5680F0761D90600A33029 /* PBXTargetDependency */, + BEC568110761D90600A33029 /* PBXTargetDependency */, + 002F347F09CA215600EBEB88 /* PBXTargetDependency */, + BEC568150761D90600A33029 /* PBXTargetDependency */, + BEC568170761D90600A33029 /* PBXTargetDependency */, + BEC568190761D90600A33029 /* PBXTargetDependency */, + 002F348109CA215600EBEB88 /* PBXTargetDependency */, + 002F348309CA215600EBEB88 /* PBXTargetDependency */, + BEC5681B0761D90600A33029 /* PBXTargetDependency */, + 002F348509CA215600EBEB88 /* PBXTargetDependency */, + BEC5681D0761D90600A33029 /* PBXTargetDependency */, + BEC5681F0761D90600A33029 /* PBXTargetDependency */, + BEC568130761D90600A33029 /* PBXTargetDependency */, + BEC568210761D90600A33029 /* PBXTargetDependency */, + BEC568250761D90600A33029 /* PBXTargetDependency */, + BEC568270761D90600A33029 /* PBXTargetDependency */, + BEC568290761D90600A33029 /* PBXTargetDependency */, + BEC5682B0761D90600A33029 /* PBXTargetDependency */, + BEC5682D0761D90600A33029 /* PBXTargetDependency */, + BEC5682F0761D90600A33029 /* PBXTargetDependency */, + ); + name = All; + productName = "Build All"; + }; +/* End PBXAggregateTarget section */ + +/* Begin PBXBuildFile section */ + 002F337509CA14F900EBEB88 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + 002F337909CA14F900EBEB88 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + 002F337A09CA14F900EBEB88 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 002F338B09CA16BF00EBEB88 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + 002F338F09CA16BF00EBEB88 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + 002F339009CA16BF00EBEB88 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 002F339B09CA17BC00EBEB88 /* testblitspeed.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F339A09CA17BC00EBEB88 /* testblitspeed.c */; }; + 002F33A809CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33A909CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33AA09CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33AB09CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33AC09CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33AD09CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33AE09CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33AF09CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33B009CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33B109CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33B209CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33B309CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33B409CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33B509CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33B609CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33B709CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33B809CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33B909CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33BA09CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33BB09CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33BC09CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33BD09CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33BE09CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33BF09CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33C009CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33C109CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33CF09CA19A600EBEB88 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + 002F33D209CA19A600EBEB88 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + 002F33D309CA19A600EBEB88 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 002F33D409CA19A600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33E309CA1A0B00EBEB88 /* testdyngl.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F33E209CA1A0B00EBEB88 /* testdyngl.c */; }; + 002F340609CA1BFF00EBEB88 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + 002F340909CA1BFF00EBEB88 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + 002F340A09CA1BFF00EBEB88 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 002F340B09CA1BFF00EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F341809CA1C5B00EBEB88 /* testfile.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F341709CA1C5B00EBEB88 /* testfile.c */; }; + 002F342509CA1F0300EBEB88 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + 002F342809CA1F0300EBEB88 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + 002F342909CA1F0300EBEB88 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 002F342A09CA1F0300EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F343709CA1F6F00EBEB88 /* testiconv.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F343609CA1F6F00EBEB88 /* testiconv.c */; }; + 002F344109CA1FB300EBEB88 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + 002F344409CA1FB300EBEB88 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + 002F344509CA1FB300EBEB88 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 002F344609CA1FB300EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F345409CA202000EBEB88 /* testoverlay2.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F345209CA201C00EBEB88 /* testoverlay2.c */; }; + 002F345E09CA204F00EBEB88 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + 002F346109CA204F00EBEB88 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + 002F346209CA204F00EBEB88 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 002F346309CA204F00EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F347009CA20A600EBEB88 /* testplatform.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F346F09CA20A600EBEB88 /* testplatform.c */; }; + 003FA64D093FFDB3000C53B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 003FA64E093FFDB5000C53B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 003FA64F093FFDB7000C53B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 003FA650093FFDBA000C53B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 003FA651093FFDBC000C53B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 003FA652093FFDBE000C53B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 003FA653093FFDC1000C53B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 003FA654093FFDC3000C53B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 003FA655093FFDC6000C53B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 003FA656093FFDC8000C53B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 003FA657093FFDCA000C53B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 003FA658093FFDCC000C53B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 003FA659093FFDCF000C53B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 003FA65A093FFDD1000C53B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 003FA65B093FFDD3000C53B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 003FA65C093FFDD5000C53B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 003FA65D093FFDD7000C53B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 003FA65E093FFDDA000C53B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 003FA660093FFDDF000C53B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 003FA661093FFDE1000C53B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 003FA662093FFDE3000C53B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 003FA663093FFDE6000C53B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 003FA664093FFDE8000C53B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 003FA665093FFDEA000C53B3 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA643093FFD41000C53B3 /* SDL.framework */; }; + 00794DD909D1F894003FC8A1 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 00794DD809D1F894003FC8A1 /* OpenGL.framework */; }; + 00794E6609D20865003FC8A1 /* sample.wav in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E6209D20839003FC8A1 /* sample.wav */; }; + 00794EA209D2344B003FC8A1 /* icon.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E5D09D20839003FC8A1 /* icon.bmp */; }; + 00794EB709D235F5003FC8A1 /* sample.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E6109D20839003FC8A1 /* sample.bmp */; }; + 00794EE709D236ED003FC8A1 /* sample.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E6109D20839003FC8A1 /* sample.bmp */; }; + 00794EF009D23739003FC8A1 /* utf8.txt in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E6309D20839003FC8A1 /* utf8.txt */; }; + 00794EF709D237DE003FC8A1 /* moose.dat in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E5E09D20839003FC8A1 /* moose.dat */; }; + 00794EFE09D2382B003FC8A1 /* sail.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E6009D20839003FC8A1 /* sail.bmp */; }; + 00794F0409D23869003FC8A1 /* icon.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E5D09D20839003FC8A1 /* icon.bmp */; }; + 00794F0B09D238F4003FC8A1 /* sample.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E6109D20839003FC8A1 /* sample.bmp */; }; + 00794F1109D2392B003FC8A1 /* icon.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E5D09D20839003FC8A1 /* icon.bmp */; }; + 00794F8709D2413B003FC8A1 /* sample.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E6109D20839003FC8A1 /* sample.bmp */; }; + BEC566AF0761D90300A33029 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + BEC566B10761D90300A33029 /* checkkeys.c in Sources */ = {isa = PBXBuildFile; fileRef = 092D6D10FFB30A2C7F000001 /* checkkeys.c */; }; + BEC566BC0761D90300A33029 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + BEC566BE0761D90300A33029 /* graywin.c in Sources */ = {isa = PBXBuildFile; fileRef = 092D6D1BFFB30C237F000001 /* graywin.c */; }; + BEC566C90761D90300A33029 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + BEC566CB0761D90300A33029 /* loopwave.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4872006D84C97F000001 /* loopwave.c */; }; + BEC566D70761D90300A33029 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + BEC566D90761D90300A33029 /* testalpha.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4874006D84F77F000001 /* testalpha.c */; }; + BEC566E50761D90300A33029 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + BEC566E70761D90300A33029 /* testbitmap.c in Sources */ = {isa = PBXBuildFile; fileRef = 092D6D25FFB30D1A7F000001 /* testbitmap.c */; }; + BEC566F20761D90300A33029 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + BEC566F40761D90300A33029 /* testcdrom.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4876006D85297F000001 /* testcdrom.c */; }; + BEC566FF0761D90300A33029 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + BEC567010761D90300A33029 /* testerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4878006D85357F000001 /* testerror.c */; }; + BEC5670C0761D90400A33029 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + BEC5670E0761D90400A33029 /* testgamma.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E487A006D85477F000001 /* testgamma.c */; }; + BEC5671A0761D90400A33029 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + BEC5671C0761D90400A33029 /* testgl.c in Sources */ = {isa = PBXBuildFile; fileRef = 092D6D4EFFB311087F000001 /* testgl.c */; }; + BEC567270761D90400A33029 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + BEC567290761D90400A33029 /* testhread.c in Sources */ = {isa = PBXBuildFile; fileRef = 092D6D58FFB311A97F000001 /* testhread.c */; }; + BEC567340761D90400A33029 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + BEC567360761D90400A33029 /* testjoystick.c in Sources */ = {isa = PBXBuildFile; fileRef = 092D6D62FFB312AA7F000001 /* testjoystick.c */; }; + BEC567410761D90400A33029 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + BEC567430761D90400A33029 /* testkeys.c in Sources */ = {isa = PBXBuildFile; fileRef = 092D6D6CFFB313437F000001 /* testkeys.c */; }; + BEC5674E0761D90400A33029 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + BEC567500761D90400A33029 /* testlock.c in Sources */ = {isa = PBXBuildFile; fileRef = 092D6D75FFB313BB7F000001 /* testlock.c */; }; + BEC5675D0761D90400A33029 /* testoverlay.c in Sources */ = {isa = PBXBuildFile; fileRef = F57DC39802A6E6A201D28762 /* testoverlay.c */; }; + BEC567680761D90400A33029 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + BEC5676A0761D90400A33029 /* testpalette.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E487C006D856B7F000001 /* testpalette.c */; }; + BEC567760761D90500A33029 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + BEC567780761D90500A33029 /* testsem.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E487E006D86A17F000001 /* testsem.c */; }; + BEC567830761D90500A33029 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + BEC567850761D90500A33029 /* testsprite.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E487F006D86A17F000001 /* testsprite.c */; }; + BEC567910761D90500A33029 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + BEC567930761D90500A33029 /* testtimer.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4880006D86A17F000001 /* testtimer.c */; }; + BEC567AB0761D90500A33029 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + BEC567AD0761D90500A33029 /* testver.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4882006D86A17F000001 /* testver.c */; }; + BEC567B80761D90500A33029 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + BEC567BA0761D90500A33029 /* testvidinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4883006D86A17F000001 /* testvidinfo.c */; }; + BEC567C50761D90500A33029 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + BEC567C70761D90500A33029 /* testwin.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4884006D86A17F000001 /* testwin.c */; }; + BEC567D30761D90500A33029 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + BEC567D50761D90500A33029 /* testwm.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4885006D86A17F000001 /* testwm.c */; }; + BEC567E10761D90600A33029 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + BEC567E30761D90600A33029 /* threadwin.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4886006D86A17F000001 /* threadwin.c */; }; + BEC567EE0761D90600A33029 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */; }; + BEC567F00761D90600A33029 /* torturethread.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4887006D86A17F000001 /* torturethread.c */; }; + BEC567F90761D90600A33029 /* SDLMain.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EECDF3B0086C5EA7F000001 /* SDLMain.h */; }; + BEC567FA0761D90600A33029 /* libsdlmain_prefix.h in Headers */ = {isa = PBXBuildFile; fileRef = B207FF2404E1B19600A80002 /* libsdlmain_prefix.h */; }; + BEC567FC0761D90600A33029 /* SDLMain.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EECDF3C0086C5EA7F000001 /* SDLMain.m */; }; + BEC568620761D90600A33029 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + BEC568630761D90600A33029 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + BEC568640761D90600A33029 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + BEC568650761D90600A33029 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + BEC568660761D90600A33029 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + BEC568670761D90600A33029 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + BEC568680761D90600A33029 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + BEC568690761D90600A33029 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + BEC5686A0761D90600A33029 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + BEC5686B0761D90600A33029 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + BEC5686C0761D90600A33029 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + BEC5686D0761D90600A33029 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + BEC5686E0761D90600A33029 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + BEC5686F0761D90600A33029 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + BEC568700761D90600A33029 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + BEC568710761D90600A33029 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + BEC568720761D90600A33029 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + BEC568730761D90600A33029 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + BEC568750761D90600A33029 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + BEC568760761D90600A33029 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + BEC568770761D90600A33029 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + BEC568780761D90600A33029 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + BEC568790761D90600A33029 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; + BEC5687A0761D90600A33029 /* libsdlmain.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC567FF0761D90600A33029 /* libsdlmain.a */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 002F337209CA14F900EBEB88 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + 002F338809CA16BF00EBEB88 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + 002F33CC09CA19A600EBEB88 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + 002F340309CA1BFF00EBEB88 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + 002F342209CA1F0300EBEB88 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + 002F343E09CA1FB300EBEB88 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + 002F345B09CA204F00EBEB88 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + 002F347809CA215600EBEB88 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 002F338609CA16BF00EBEB88; + remoteInfo = testblitspeed; + }; + 002F347A09CA215600EBEB88 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 002F33CA09CA19A600EBEB88; + remoteInfo = testdyngl; + }; + 002F347C09CA215600EBEB88 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 002F340109CA1BFF00EBEB88; + remoteInfo = testfile; + }; + 002F347E09CA215600EBEB88 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 002F342009CA1F0300EBEB88; + remoteInfo = testiconv; + }; + 002F348009CA215600EBEB88 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567570761D90400A33029; + remoteInfo = "testoverlay (Upgraded)"; + }; + 002F348209CA215600EBEB88 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 002F343C09CA1FB300EBEB88; + remoteInfo = testoverlay2; + }; + 002F348409CA215600EBEB88 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 002F345909CA204F00EBEB88; + remoteInfo = testplatform; + }; + 003FA642093FFD41000C53B3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = BECDF66C0761BA81005FE872; + remoteInfo = Framework; + }; + 003FA644093FFD41000C53B3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = BECDF6B30761BA81005FE872; + remoteInfo = "Static Library"; + }; + 003FA646093FFD41000C53B3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = BECDF6BA0761BA81005FE872; + remoteInfo = "Main Library"; + }; + 003FA648093FFD41000C53B3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = BECDF6BE0761BA81005FE872; + remoteInfo = "Standard DMG"; + }; + 003FA64A093FFD41000C53B3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = BECDF6C30761BA81005FE872; + remoteInfo = "Devel Extras Package"; + }; + 003FA6A709400236000C53B3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */; + proxyType = 1; + remoteGlobalIDString = BECDF5FE0761BA81005FE872; + remoteInfo = Framework; + }; + BEC568000761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC566AB0761D90300A33029; + remoteInfo = "checkkeys (Upgraded)"; + }; + BEC568020761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC566B80761D90300A33029; + remoteInfo = "graywin (Upgraded)"; + }; + BEC568040761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC566C50761D90300A33029; + remoteInfo = "loopwave (Upgraded)"; + }; + BEC568060761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC566D30761D90300A33029; + remoteInfo = "testalpha (Upgraded)"; + }; + BEC568080761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC566E10761D90300A33029; + remoteInfo = "testbitmap (Upgraded)"; + }; + BEC5680A0761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC566EE0761D90300A33029; + remoteInfo = "testcdrom (Upgraded)"; + }; + BEC5680C0761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC566FB0761D90300A33029; + remoteInfo = "testerror (Upgraded)"; + }; + BEC5680E0761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567080761D90400A33029; + remoteInfo = "testgamma (Upgraded)"; + }; + BEC568100761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567160761D90400A33029; + remoteInfo = "testgl (Upgraded)"; + }; + BEC568120761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567230761D90400A33029; + remoteInfo = "testthread (Upgraded)"; + }; + BEC568140761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567300761D90400A33029; + remoteInfo = "testjoystick (Upgraded)"; + }; + BEC568160761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC5673D0761D90400A33029; + remoteInfo = "testkeys (Upgraded)"; + }; + BEC568180761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC5674A0761D90400A33029; + remoteInfo = "testlock (Upgraded)"; + }; + BEC5681A0761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567640761D90400A33029; + remoteInfo = "testpalette (Upgraded)"; + }; + BEC5681C0761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567720761D90500A33029; + remoteInfo = "testsem (Upgraded)"; + }; + BEC5681E0761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC5677F0761D90500A33029; + remoteInfo = "testsprite (Upgraded)"; + }; + BEC568200761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC5678D0761D90500A33029; + remoteInfo = "testtimer (Upgraded)"; + }; + BEC568240761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567A70761D90500A33029; + remoteInfo = "testversion (Upgraded)"; + }; + BEC568260761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567B40761D90500A33029; + remoteInfo = "testvidinfo (Upgraded)"; + }; + BEC568280761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567C10761D90500A33029; + remoteInfo = "testwin (Upgraded)"; + }; + BEC5682A0761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567CF0761D90500A33029; + remoteInfo = "testwm (Upgraded)"; + }; + BEC5682C0761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567DD0761D90600A33029; + remoteInfo = "threadwin (Upgraded)"; + }; + BEC5682E0761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567EA0761D90600A33029; + remoteInfo = "torturethread (Upgraded)"; + }; + BEC568300761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + BEC568320761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + BEC568340761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + BEC568360761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + BEC568380761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + BEC5683A0761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + BEC5683C0761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + BEC5683E0761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + BEC568400761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + BEC568420761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + BEC568440761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + BEC568460761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + BEC568480761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + BEC5684A0761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + BEC5684C0761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + BEC5684E0761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + BEC568500761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + BEC568520761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + BEC568560761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + BEC568580761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + BEC5685A0761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + BEC5685C0761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + BEC5685E0761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; + BEC568600761D90600A33029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567F70761D90600A33029; + remoteInfo = "libsdlmain.a (Upgraded)"; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 00794E6409D2084F003FC8A1 /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 16; + files = ( + 00794E6609D20865003FC8A1 /* sample.wav in CopyFiles */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 00794EA009D2343A003FC8A1 /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 16; + files = ( + 00794EA209D2344B003FC8A1 /* icon.bmp in CopyFiles */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 00794EA909D234E8003FC8A1 /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 16; + files = ( + 00794EB709D235F5003FC8A1 /* sample.bmp in CopyFiles */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 00794EE509D236E4003FC8A1 /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 16; + files = ( + 00794EE709D236ED003FC8A1 /* sample.bmp in CopyFiles */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 00794EEC09D2371F003FC8A1 /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 16; + files = ( + 00794EF009D23739003FC8A1 /* utf8.txt in CopyFiles */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 00794EF409D237C7003FC8A1 /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 16; + files = ( + 00794EF709D237DE003FC8A1 /* moose.dat in CopyFiles */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 00794EFC09D2381C003FC8A1 /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 16; + files = ( + 00794EFE09D2382B003FC8A1 /* sail.bmp in CopyFiles */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 00794F0209D2385F003FC8A1 /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 16; + files = ( + 00794F0409D23869003FC8A1 /* icon.bmp in CopyFiles */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 00794F0909D238E3003FC8A1 /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 16; + files = ( + 00794F0B09D238F4003FC8A1 /* sample.bmp in CopyFiles */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 00794F0F09D23923003FC8A1 /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 16; + files = ( + 00794F1109D2392B003FC8A1 /* icon.bmp in CopyFiles */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 00794F6109D24125003FC8A1 /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 16; + files = ( + 00794F8709D2413B003FC8A1 /* sample.bmp in CopyFiles */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 002F338109CA14F900EBEB88 /* test.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = test.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 002F339709CA16BF00EBEB88 /* testblitspeed.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testblitspeed.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 002F339A09CA17BC00EBEB88 /* testblitspeed.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testblitspeed.c; path = ../../test/testblitspeed.c; sourceTree = SOURCE_ROOT; }; + 002F33A709CA188600EBEB88 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = ""; }; + 002F33DB09CA19A600EBEB88 /* testdyngl.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testdyngl.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 002F33E209CA1A0B00EBEB88 /* testdyngl.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testdyngl.c; path = ../../test/testdyngl.c; sourceTree = SOURCE_ROOT; }; + 002F341209CA1BFF00EBEB88 /* testfile.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testfile.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 002F341709CA1C5B00EBEB88 /* testfile.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testfile.c; path = ../../test/testfile.c; sourceTree = SOURCE_ROOT; }; + 002F343109CA1F0300EBEB88 /* testiconv.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testiconv.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 002F343609CA1F6F00EBEB88 /* testiconv.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testiconv.c; path = ../../test/testiconv.c; sourceTree = SOURCE_ROOT; }; + 002F344D09CA1FB300EBEB88 /* testoverlay2.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testoverlay2.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 002F345209CA201C00EBEB88 /* testoverlay2.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testoverlay2.c; path = ../../test/testoverlay2.c; sourceTree = SOURCE_ROOT; }; + 002F346A09CA204F00EBEB88 /* testplatform.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testplatform.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 002F346F09CA20A600EBEB88 /* testplatform.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testplatform.c; path = ../../test/testplatform.c; sourceTree = SOURCE_ROOT; }; + 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = SDL.xcodeproj; path = ../SDL/SDL.xcodeproj; sourceTree = SOURCE_ROOT; }; + 00794DD809D1F894003FC8A1 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = /System/Library/Frameworks/OpenGL.framework; sourceTree = ""; }; + 00794E5D09D20839003FC8A1 /* icon.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; name = icon.bmp; path = ../../test/icon.bmp; sourceTree = SOURCE_ROOT; }; + 00794E5E09D20839003FC8A1 /* moose.dat */ = {isa = PBXFileReference; lastKnownFileType = file; name = moose.dat; path = ../../test/moose.dat; sourceTree = SOURCE_ROOT; }; + 00794E5F09D20839003FC8A1 /* picture.xbm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; name = picture.xbm; path = ../../test/picture.xbm; sourceTree = SOURCE_ROOT; }; + 00794E6009D20839003FC8A1 /* sail.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; name = sail.bmp; path = ../../test/sail.bmp; sourceTree = SOURCE_ROOT; }; + 00794E6109D20839003FC8A1 /* sample.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; name = sample.bmp; path = ../../test/sample.bmp; sourceTree = SOURCE_ROOT; }; + 00794E6209D20839003FC8A1 /* sample.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; name = sample.wav; path = ../../test/sample.wav; sourceTree = SOURCE_ROOT; }; + 00794E6309D20839003FC8A1 /* utf8.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; name = utf8.txt; path = ../../test/utf8.txt; sourceTree = SOURCE_ROOT; }; + 083E4872006D84C97F000001 /* loopwave.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = loopwave.c; path = ../../test/loopwave.c; sourceTree = SOURCE_ROOT; }; + 083E4874006D84F77F000001 /* testalpha.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testalpha.c; path = ../../test/testalpha.c; sourceTree = SOURCE_ROOT; }; + 083E4876006D85297F000001 /* testcdrom.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testcdrom.c; path = ../../test/testcdrom.c; sourceTree = SOURCE_ROOT; }; + 083E4878006D85357F000001 /* testerror.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testerror.c; path = ../../test/testerror.c; sourceTree = SOURCE_ROOT; }; + 083E487A006D85477F000001 /* testgamma.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testgamma.c; path = ../../test/testgamma.c; sourceTree = SOURCE_ROOT; }; + 083E487C006D856B7F000001 /* testpalette.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testpalette.c; path = ../../test/testpalette.c; sourceTree = SOURCE_ROOT; }; + 083E487E006D86A17F000001 /* testsem.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testsem.c; path = ../../test/testsem.c; sourceTree = SOURCE_ROOT; }; + 083E487F006D86A17F000001 /* testsprite.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testsprite.c; path = ../../test/testsprite.c; sourceTree = SOURCE_ROOT; }; + 083E4880006D86A17F000001 /* testtimer.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testtimer.c; path = ../../test/testtimer.c; sourceTree = SOURCE_ROOT; }; + 083E4882006D86A17F000001 /* testver.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testver.c; path = ../../test/testver.c; sourceTree = SOURCE_ROOT; }; + 083E4883006D86A17F000001 /* testvidinfo.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testvidinfo.c; path = ../../test/testvidinfo.c; sourceTree = SOURCE_ROOT; }; + 083E4884006D86A17F000001 /* testwin.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testwin.c; path = ../../test/testwin.c; sourceTree = SOURCE_ROOT; }; + 083E4885006D86A17F000001 /* testwm.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testwm.c; path = ../../test/testwm.c; sourceTree = SOURCE_ROOT; }; + 083E4886006D86A17F000001 /* threadwin.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = threadwin.c; path = ../../test/threadwin.c; sourceTree = SOURCE_ROOT; }; + 083E4887006D86A17F000001 /* torturethread.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = torturethread.c; path = ../../test/torturethread.c; sourceTree = SOURCE_ROOT; }; + 092D6D10FFB30A2C7F000001 /* checkkeys.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = checkkeys.c; path = ../../test/checkkeys.c; sourceTree = SOURCE_ROOT; }; + 092D6D1BFFB30C237F000001 /* graywin.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = graywin.c; path = ../../test/graywin.c; sourceTree = SOURCE_ROOT; }; + 092D6D25FFB30D1A7F000001 /* testbitmap.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testbitmap.c; path = ../../test/testbitmap.c; sourceTree = SOURCE_ROOT; }; + 092D6D4EFFB311087F000001 /* testgl.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testgl.c; path = ../../test/testgl.c; sourceTree = SOURCE_ROOT; }; + 092D6D58FFB311A97F000001 /* testhread.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testhread.c; path = ../../test/testhread.c; sourceTree = SOURCE_ROOT; }; + 092D6D62FFB312AA7F000001 /* testjoystick.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testjoystick.c; path = ../../test/testjoystick.c; sourceTree = SOURCE_ROOT; }; + 092D6D6CFFB313437F000001 /* testkeys.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testkeys.c; path = ../../test/testkeys.c; sourceTree = SOURCE_ROOT; }; + 092D6D75FFB313BB7F000001 /* testlock.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testlock.c; path = ../../test/testlock.c; sourceTree = SOURCE_ROOT; }; + 2EECDF3B0086C5EA7F000001 /* SDLMain.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SDLMain.h; path = ../../src/main/macosx/SDLMain.h; sourceTree = SOURCE_ROOT; }; + 2EECDF3C0086C5EA7F000001 /* SDLMain.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = SDLMain.m; path = ../../src/main/macosx/SDLMain.m; sourceTree = SOURCE_ROOT; }; + 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = SDLMain.nib; path = ../../src/main/macosx/SDLMain.nib; sourceTree = SOURCE_ROOT; }; + B207FF2404E1B19600A80002 /* libsdlmain_prefix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = libsdlmain_prefix.h; sourceTree = ""; }; + BEC566B60761D90300A33029 /* checkkeys.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = checkkeys.app; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC566C30761D90300A33029 /* graywin.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = graywin.app; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC566D10761D90300A33029 /* loopwave.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = loopwave.app; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC566DF0761D90300A33029 /* testalpha.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testalpha.app; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC566EC0761D90300A33029 /* testbitmap.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testbitmap.app; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC566F90761D90300A33029 /* testcdrom.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testcdrom.app; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC567060761D90400A33029 /* testerror.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testerror.app; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC567140761D90400A33029 /* testgamma.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testgamma.app; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC567210761D90400A33029 /* testgl.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testgl.app; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC5672E0761D90400A33029 /* testthread.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testthread.app; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC5673B0761D90400A33029 /* testjoystick.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testjoystick.app; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC567480761D90400A33029 /* testkeys.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testkeys.app; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC567550761D90400A33029 /* testlock.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testlock.app; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC567620761D90400A33029 /* testoverlay.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testoverlay.app; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC567700761D90500A33029 /* testpalette.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testpalette.app; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC5677D0761D90500A33029 /* testsem.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testsem.app; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC5678B0761D90500A33029 /* testsprite.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testsprite.app; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC567980761D90500A33029 /* testtimer.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testtimer.app; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC567B20761D90500A33029 /* testversion.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testversion.app; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC567BF0761D90500A33029 /* testvidinfo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testvidinfo.app; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC567CD0761D90500A33029 /* testwin.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testwin.app; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC567DB0761D90600A33029 /* testwm.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testwm.app; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC567E80761D90600A33029 /* threadwin.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = threadwin.app; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC567F50761D90600A33029 /* torturethread.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = torturethread.app; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC567FF0761D90600A33029 /* libsdlmain.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libsdlmain.a; sourceTree = BUILT_PRODUCTS_DIR; }; + F57DC39802A6E6A201D28762 /* testoverlay.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testoverlay.c; path = ../../test/testoverlay.c; sourceTree = SOURCE_ROOT; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 002F337809CA14F900EBEB88 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F337909CA14F900EBEB88 /* libsdlmain.a in Frameworks */, + 002F337A09CA14F900EBEB88 /* SDL.framework in Frameworks */, + 002F33A909CA188600EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F338E09CA16BF00EBEB88 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F338F09CA16BF00EBEB88 /* libsdlmain.a in Frameworks */, + 002F339009CA16BF00EBEB88 /* SDL.framework in Frameworks */, + 002F33A809CA188600EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F33D109CA19A600EBEB88 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F33D209CA19A600EBEB88 /* libsdlmain.a in Frameworks */, + 002F33D309CA19A600EBEB88 /* SDL.framework in Frameworks */, + 002F33D409CA19A600EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F340809CA1BFF00EBEB88 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F340909CA1BFF00EBEB88 /* libsdlmain.a in Frameworks */, + 002F340A09CA1BFF00EBEB88 /* SDL.framework in Frameworks */, + 002F340B09CA1BFF00EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F342709CA1F0300EBEB88 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F342809CA1F0300EBEB88 /* libsdlmain.a in Frameworks */, + 002F342909CA1F0300EBEB88 /* SDL.framework in Frameworks */, + 002F342A09CA1F0300EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F344309CA1FB300EBEB88 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F344409CA1FB300EBEB88 /* libsdlmain.a in Frameworks */, + 002F344509CA1FB300EBEB88 /* SDL.framework in Frameworks */, + 002F344609CA1FB300EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F346009CA204F00EBEB88 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F346109CA204F00EBEB88 /* libsdlmain.a in Frameworks */, + 002F346209CA204F00EBEB88 /* SDL.framework in Frameworks */, + 002F346309CA204F00EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566B20761D90300A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC568620761D90600A33029 /* libsdlmain.a in Frameworks */, + 003FA64D093FFDB3000C53B3 /* SDL.framework in Frameworks */, + 002F33C109CA188600EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566BF0761D90300A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC568630761D90600A33029 /* libsdlmain.a in Frameworks */, + 003FA64E093FFDB5000C53B3 /* SDL.framework in Frameworks */, + 002F33C009CA188600EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566CC0761D90300A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC568640761D90600A33029 /* libsdlmain.a in Frameworks */, + 003FA64F093FFDB7000C53B3 /* SDL.framework in Frameworks */, + 002F33BF09CA188600EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566DA0761D90300A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC568650761D90600A33029 /* libsdlmain.a in Frameworks */, + 003FA650093FFDBA000C53B3 /* SDL.framework in Frameworks */, + 002F33BE09CA188600EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566E80761D90300A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC568660761D90600A33029 /* libsdlmain.a in Frameworks */, + 003FA651093FFDBC000C53B3 /* SDL.framework in Frameworks */, + 002F33BD09CA188600EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566F50761D90300A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC568670761D90600A33029 /* libsdlmain.a in Frameworks */, + 003FA652093FFDBE000C53B3 /* SDL.framework in Frameworks */, + 002F33BB09CA188600EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567020761D90300A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC568680761D90600A33029 /* libsdlmain.a in Frameworks */, + 003FA653093FFDC1000C53B3 /* SDL.framework in Frameworks */, + 002F33BC09CA188600EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC5670F0761D90400A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC568690761D90600A33029 /* libsdlmain.a in Frameworks */, + 003FA654093FFDC3000C53B3 /* SDL.framework in Frameworks */, + 002F33BA09CA188600EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC5671D0761D90400A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC5686A0761D90600A33029 /* libsdlmain.a in Frameworks */, + 003FA655093FFDC6000C53B3 /* SDL.framework in Frameworks */, + 002F33B909CA188600EBEB88 /* Cocoa.framework in Frameworks */, + 00794DD909D1F894003FC8A1 /* OpenGL.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC5672A0761D90400A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC5686B0761D90600A33029 /* libsdlmain.a in Frameworks */, + 003FA656093FFDC8000C53B3 /* SDL.framework in Frameworks */, + 002F33B809CA188600EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567370761D90400A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC5686C0761D90600A33029 /* libsdlmain.a in Frameworks */, + 003FA657093FFDCA000C53B3 /* SDL.framework in Frameworks */, + 002F33B709CA188600EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567440761D90400A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC5686D0761D90600A33029 /* libsdlmain.a in Frameworks */, + 003FA658093FFDCC000C53B3 /* SDL.framework in Frameworks */, + 002F33B509CA188600EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567510761D90400A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC5686E0761D90600A33029 /* libsdlmain.a in Frameworks */, + 003FA659093FFDCF000C53B3 /* SDL.framework in Frameworks */, + 002F33B609CA188600EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC5675E0761D90400A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC5686F0761D90600A33029 /* libsdlmain.a in Frameworks */, + 003FA65A093FFDD1000C53B3 /* SDL.framework in Frameworks */, + 002F33B409CA188600EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC5676B0761D90400A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC568700761D90600A33029 /* libsdlmain.a in Frameworks */, + 003FA65B093FFDD3000C53B3 /* SDL.framework in Frameworks */, + 002F33B309CA188600EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567790761D90500A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC568710761D90600A33029 /* libsdlmain.a in Frameworks */, + 003FA65C093FFDD5000C53B3 /* SDL.framework in Frameworks */, + 002F33B209CA188600EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567860761D90500A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC568720761D90600A33029 /* libsdlmain.a in Frameworks */, + 003FA65D093FFDD7000C53B3 /* SDL.framework in Frameworks */, + 002F33B109CA188600EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567940761D90500A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC568730761D90600A33029 /* libsdlmain.a in Frameworks */, + 003FA65E093FFDDA000C53B3 /* SDL.framework in Frameworks */, + 002F33B009CA188600EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567AE0761D90500A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC568750761D90600A33029 /* libsdlmain.a in Frameworks */, + 003FA660093FFDDF000C53B3 /* SDL.framework in Frameworks */, + 002F33AF09CA188600EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567BB0761D90500A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC568760761D90600A33029 /* libsdlmain.a in Frameworks */, + 003FA661093FFDE1000C53B3 /* SDL.framework in Frameworks */, + 002F33AE09CA188600EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567C80761D90500A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC568770761D90600A33029 /* libsdlmain.a in Frameworks */, + 003FA662093FFDE3000C53B3 /* SDL.framework in Frameworks */, + 002F33AD09CA188600EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567D60761D90500A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC568780761D90600A33029 /* libsdlmain.a in Frameworks */, + 003FA663093FFDE6000C53B3 /* SDL.framework in Frameworks */, + 002F33AC09CA188600EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567E40761D90600A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC568790761D90600A33029 /* libsdlmain.a in Frameworks */, + 003FA665093FFDEA000C53B3 /* SDL.framework in Frameworks */, + 002F33AB09CA188600EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567F10761D90600A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC5687A0761D90600A33029 /* libsdlmain.a in Frameworks */, + 003FA664093FFDE8000C53B3 /* SDL.framework in Frameworks */, + 002F33AA09CA188600EBEB88 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567FD0761D90600A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 002F33A209CA183B00EBEB88 /* Linked Frameworks */ = { + isa = PBXGroup; + children = ( + 00794DD809D1F894003FC8A1 /* OpenGL.framework */, + 002F33A709CA188600EBEB88 /* Cocoa.framework */, + ); + name = "Linked Frameworks"; + sourceTree = ""; + }; + 003FA63B093FFD41000C53B3 /* Products */ = { + isa = PBXGroup; + children = ( + 003FA643093FFD41000C53B3 /* SDL.framework */, + 003FA645093FFD41000C53B3 /* libSDL.a */, + 003FA647093FFD41000C53B3 /* libSDLmain.a */, + 003FA649093FFD41000C53B3 /* Standard DMG */, + 003FA64B093FFD41000C53B3 /* Developer Extras Package */, + ); + name = Products; + sourceTree = ""; + }; + 00794E4609D207B4003FC8A1 /* Resources */ = { + isa = PBXGroup; + children = ( + 00794E5D09D20839003FC8A1 /* icon.bmp */, + 00794E5E09D20839003FC8A1 /* moose.dat */, + 00794E5F09D20839003FC8A1 /* picture.xbm */, + 00794E6009D20839003FC8A1 /* sail.bmp */, + 00794E6109D20839003FC8A1 /* sample.bmp */, + 00794E6209D20839003FC8A1 /* sample.wav */, + 00794E6309D20839003FC8A1 /* utf8.txt */, + ); + name = Resources; + sourceTree = ""; + }; + 08FB7794FE84155DC02AAC07 /* SDLTest */ = { + isa = PBXGroup; + children = ( + 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */, + 08FB7795FE84155DC02AAC07 /* Source */, + 2EECDF3B0086C5EA7F000001 /* SDLMain.h */, + 2EECDF3C0086C5EA7F000001 /* SDLMain.m */, + B207FF2404E1B19600A80002 /* libsdlmain_prefix.h */, + 2EECDF3D0086C5EA7F000001 /* SDLMain.nib */, + 002F33A209CA183B00EBEB88 /* Linked Frameworks */, + 00794E4609D207B4003FC8A1 /* Resources */, + 1AB674ADFE9D54B511CA2CBB /* Products */, + ); + comments = "I made these tests link against our \"default\" framework which includes X11 stuff. If you didn't install the X11 headers with Xcode, you might have problems building the SDL.framework (which is a dependency). You can swap the dependencies around to get around this, or you can modify the default SDL.framework target to not include X11 stuff. (Go into its target build options and remove all the Preprocessor macros.)\n\n\n\nWe are sort of in a half-way state at the moment. Going \"all-the-way\" means we copy the SDL.framework inside the app bundle so we can run the test without the step of the user \"installing\" the framework. But there is an oversight/bug in Xcode that doesn't correctly find the location of the framework when in an embedded/nested Xcode project. We could probably try to hack this with a shell script that checks multiple directories for existence, but this is messier and more work than I prefer, so I rather just wait for Apple to fix this. In the meantime...\n\nThe \"All\" target will build the SDL framework from the Xcode project. The other targets do not have this dependency set (for flexibility reasons in case we make changes). If you have not built the framework, you will probably be unable to link. You will either need to build the framework, or you need to add \"-framework SDL\" to the link options and make sure you have the SDL.framework installed somewhere where it can be seen (like /Library/Frameworks...I think we already set this one up.) \n\nTo run though, you should have a copy of the SDL.framework in /Library/Frameworks or ~/Library/Frameworks.\n\n\n\n\ntestgl and testdyngl need -DHAVE_OPENGL\ntestgl needs to link against OpenGL.framework\n\n"; + name = SDLTest; + sourceTree = ""; + }; + 08FB7795FE84155DC02AAC07 /* Source */ = { + isa = PBXGroup; + children = ( + 092D6D10FFB30A2C7F000001 /* checkkeys.c */, + 092D6D1BFFB30C237F000001 /* graywin.c */, + 083E4872006D84C97F000001 /* loopwave.c */, + 083E4874006D84F77F000001 /* testalpha.c */, + 092D6D25FFB30D1A7F000001 /* testbitmap.c */, + 002F339A09CA17BC00EBEB88 /* testblitspeed.c */, + 083E4876006D85297F000001 /* testcdrom.c */, + 002F33E209CA1A0B00EBEB88 /* testdyngl.c */, + 083E4878006D85357F000001 /* testerror.c */, + 002F343609CA1F6F00EBEB88 /* testiconv.c */, + 002F341709CA1C5B00EBEB88 /* testfile.c */, + 083E487A006D85477F000001 /* testgamma.c */, + 092D6D4EFFB311087F000001 /* testgl.c */, + 092D6D58FFB311A97F000001 /* testhread.c */, + 092D6D62FFB312AA7F000001 /* testjoystick.c */, + 092D6D6CFFB313437F000001 /* testkeys.c */, + 092D6D75FFB313BB7F000001 /* testlock.c */, + F57DC39802A6E6A201D28762 /* testoverlay.c */, + 002F345209CA201C00EBEB88 /* testoverlay2.c */, + 083E487C006D856B7F000001 /* testpalette.c */, + 002F346F09CA20A600EBEB88 /* testplatform.c */, + 083E487E006D86A17F000001 /* testsem.c */, + 083E487F006D86A17F000001 /* testsprite.c */, + 083E4880006D86A17F000001 /* testtimer.c */, + 083E4882006D86A17F000001 /* testver.c */, + 083E4883006D86A17F000001 /* testvidinfo.c */, + 083E4884006D86A17F000001 /* testwin.c */, + 083E4885006D86A17F000001 /* testwm.c */, + 083E4886006D86A17F000001 /* threadwin.c */, + 083E4887006D86A17F000001 /* torturethread.c */, + ); + name = Source; + sourceTree = ""; + }; + 1AB674ADFE9D54B511CA2CBB /* Products */ = { + isa = PBXGroup; + children = ( + BEC566B60761D90300A33029 /* checkkeys.app */, + BEC566C30761D90300A33029 /* graywin.app */, + BEC566D10761D90300A33029 /* loopwave.app */, + BEC566DF0761D90300A33029 /* testalpha.app */, + BEC566EC0761D90300A33029 /* testbitmap.app */, + BEC566F90761D90300A33029 /* testcdrom.app */, + BEC567060761D90400A33029 /* testerror.app */, + BEC567140761D90400A33029 /* testgamma.app */, + BEC567210761D90400A33029 /* testgl.app */, + BEC5672E0761D90400A33029 /* testthread.app */, + BEC5673B0761D90400A33029 /* testjoystick.app */, + BEC567480761D90400A33029 /* testkeys.app */, + BEC567550761D90400A33029 /* testlock.app */, + BEC567620761D90400A33029 /* testoverlay.app */, + BEC567700761D90500A33029 /* testpalette.app */, + BEC5677D0761D90500A33029 /* testsem.app */, + BEC5678B0761D90500A33029 /* testsprite.app */, + BEC567980761D90500A33029 /* testtimer.app */, + BEC567B20761D90500A33029 /* testversion.app */, + BEC567BF0761D90500A33029 /* testvidinfo.app */, + BEC567CD0761D90500A33029 /* testwin.app */, + BEC567DB0761D90600A33029 /* testwm.app */, + BEC567E80761D90600A33029 /* threadwin.app */, + BEC567F50761D90600A33029 /* torturethread.app */, + BEC567FF0761D90600A33029 /* libsdlmain.a */, + 002F338109CA14F900EBEB88 /* test.app */, + 002F339709CA16BF00EBEB88 /* testblitspeed.app */, + 002F33DB09CA19A600EBEB88 /* testdyngl.app */, + 002F341209CA1BFF00EBEB88 /* testfile.app */, + 002F343109CA1F0300EBEB88 /* testiconv.app */, + 002F344D09CA1FB300EBEB88 /* testoverlay2.app */, + 002F346A09CA204F00EBEB88 /* testplatform.app */, + ); + name = Products; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 002F337309CA14F900EBEB88 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F338909CA16BF00EBEB88 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F33CD09CA19A600EBEB88 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F340409CA1BFF00EBEB88 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F342309CA1F0300EBEB88 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F343F09CA1FB300EBEB88 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F345C09CA204F00EBEB88 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566AD0761D90300A33029 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566BA0761D90300A33029 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566C70761D90300A33029 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566D50761D90300A33029 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566E30761D90300A33029 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566F00761D90300A33029 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566FD0761D90300A33029 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC5670A0761D90400A33029 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567180761D90400A33029 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567250761D90400A33029 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567320761D90400A33029 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC5673F0761D90400A33029 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC5674C0761D90400A33029 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567590761D90400A33029 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567660761D90400A33029 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567740761D90500A33029 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567810761D90500A33029 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC5678F0761D90500A33029 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567A90761D90500A33029 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567B60761D90500A33029 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567C30761D90500A33029 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567D10761D90500A33029 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567DF0761D90600A33029 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567EC0761D90600A33029 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567F80761D90600A33029 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567F90761D90600A33029 /* SDLMain.h in Headers */, + BEC567FA0761D90600A33029 /* libsdlmain_prefix.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 002F337009CA14F900EBEB88 /* test */ = { + isa = PBXNativeTarget; + buildConfigurationList = 002F337D09CA14F900EBEB88 /* Build configuration list for PBXNativeTarget "test" */; + buildPhases = ( + 002F337309CA14F900EBEB88 /* Headers */, + 002F337409CA14F900EBEB88 /* Resources */, + 002F337609CA14F900EBEB88 /* Sources */, + 002F337809CA14F900EBEB88 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 002F337109CA14F900EBEB88 /* PBXTargetDependency */, + ); + name = test; + productInstallPath = "$(USER_APPS_DIR)"; + productName = testalpha; + productReference = 002F338109CA14F900EBEB88 /* test.app */; + productType = "com.apple.product-type.application"; + }; + 002F338609CA16BF00EBEB88 /* testblitspeed */ = { + isa = PBXNativeTarget; + buildConfigurationList = 002F339309CA16BF00EBEB88 /* Build configuration list for PBXNativeTarget "testblitspeed" */; + buildPhases = ( + 002F338909CA16BF00EBEB88 /* Headers */, + 002F338A09CA16BF00EBEB88 /* Resources */, + 002F338C09CA16BF00EBEB88 /* Sources */, + 002F338E09CA16BF00EBEB88 /* Frameworks */, + 00794EA909D234E8003FC8A1 /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + 002F338709CA16BF00EBEB88 /* PBXTargetDependency */, + ); + name = testblitspeed; + productInstallPath = "$(USER_APPS_DIR)"; + productName = testalpha; + productReference = 002F339709CA16BF00EBEB88 /* testblitspeed.app */; + productType = "com.apple.product-type.application"; + }; + 002F33CA09CA19A600EBEB88 /* testdyngl */ = { + isa = PBXNativeTarget; + buildConfigurationList = 002F33D709CA19A600EBEB88 /* Build configuration list for PBXNativeTarget "testdyngl" */; + buildPhases = ( + 002F33CD09CA19A600EBEB88 /* Headers */, + 002F33CE09CA19A600EBEB88 /* Resources */, + 002F33D009CA19A600EBEB88 /* Sources */, + 002F33D109CA19A600EBEB88 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 002F33CB09CA19A600EBEB88 /* PBXTargetDependency */, + ); + name = testdyngl; + productInstallPath = "$(USER_APPS_DIR)"; + productName = testalpha; + productReference = 002F33DB09CA19A600EBEB88 /* testdyngl.app */; + productType = "com.apple.product-type.application"; + }; + 002F340109CA1BFF00EBEB88 /* testfile */ = { + isa = PBXNativeTarget; + buildConfigurationList = 002F340E09CA1BFF00EBEB88 /* Build configuration list for PBXNativeTarget "testfile" */; + buildPhases = ( + 002F340409CA1BFF00EBEB88 /* Headers */, + 002F340509CA1BFF00EBEB88 /* Resources */, + 002F340709CA1BFF00EBEB88 /* Sources */, + 002F340809CA1BFF00EBEB88 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 002F340209CA1BFF00EBEB88 /* PBXTargetDependency */, + ); + name = testfile; + productInstallPath = "$(USER_APPS_DIR)"; + productName = testalpha; + productReference = 002F341209CA1BFF00EBEB88 /* testfile.app */; + productType = "com.apple.product-type.application"; + }; + 002F342009CA1F0300EBEB88 /* testiconv */ = { + isa = PBXNativeTarget; + buildConfigurationList = 002F342D09CA1F0300EBEB88 /* Build configuration list for PBXNativeTarget "testiconv" */; + buildPhases = ( + 002F342309CA1F0300EBEB88 /* Headers */, + 002F342409CA1F0300EBEB88 /* Resources */, + 002F342609CA1F0300EBEB88 /* Sources */, + 002F342709CA1F0300EBEB88 /* Frameworks */, + 00794EEC09D2371F003FC8A1 /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + 002F342109CA1F0300EBEB88 /* PBXTargetDependency */, + ); + name = testiconv; + productInstallPath = "$(USER_APPS_DIR)"; + productName = testalpha; + productReference = 002F343109CA1F0300EBEB88 /* testiconv.app */; + productType = "com.apple.product-type.application"; + }; + 002F343C09CA1FB300EBEB88 /* testoverlay2 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 002F344909CA1FB300EBEB88 /* Build configuration list for PBXNativeTarget "testoverlay2" */; + buildPhases = ( + 002F343F09CA1FB300EBEB88 /* Headers */, + 002F344009CA1FB300EBEB88 /* Resources */, + 002F344209CA1FB300EBEB88 /* Sources */, + 002F344309CA1FB300EBEB88 /* Frameworks */, + 00794EF409D237C7003FC8A1 /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + 002F343D09CA1FB300EBEB88 /* PBXTargetDependency */, + ); + name = testoverlay2; + productInstallPath = "$(USER_APPS_DIR)"; + productName = testalpha; + productReference = 002F344D09CA1FB300EBEB88 /* testoverlay2.app */; + productType = "com.apple.product-type.application"; + }; + 002F345909CA204F00EBEB88 /* testplatform */ = { + isa = PBXNativeTarget; + buildConfigurationList = 002F346609CA204F00EBEB88 /* Build configuration list for PBXNativeTarget "testplatform" */; + buildPhases = ( + 002F345C09CA204F00EBEB88 /* Headers */, + 002F345D09CA204F00EBEB88 /* Resources */, + 002F345F09CA204F00EBEB88 /* Sources */, + 002F346009CA204F00EBEB88 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 002F345A09CA204F00EBEB88 /* PBXTargetDependency */, + ); + name = testplatform; + productInstallPath = "$(USER_APPS_DIR)"; + productName = testalpha; + productReference = 002F346A09CA204F00EBEB88 /* testplatform.app */; + productType = "com.apple.product-type.application"; + }; + BEC566AB0761D90300A33029 /* checkkeys (Upgraded) */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B593808BDB826006539E9 /* Build configuration list for PBXNativeTarget "checkkeys (Upgraded)" */; + buildPhases = ( + BEC566AD0761D90300A33029 /* Headers */, + BEC566AE0761D90300A33029 /* Resources */, + BEC566B00761D90300A33029 /* Sources */, + BEC566B20761D90300A33029 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + BEC568310761D90600A33029 /* PBXTargetDependency */, + ); + name = "checkkeys (Upgraded)"; + productInstallPath = "$(USER_APPS_DIR)"; + productName = checkkeys; + productReference = BEC566B60761D90300A33029 /* checkkeys.app */; + productType = "com.apple.product-type.application"; + }; + BEC566B80761D90300A33029 /* graywin (Upgraded) */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B593C08BDB826006539E9 /* Build configuration list for PBXNativeTarget "graywin (Upgraded)" */; + buildPhases = ( + BEC566BA0761D90300A33029 /* Headers */, + BEC566BB0761D90300A33029 /* Resources */, + BEC566BD0761D90300A33029 /* Sources */, + BEC566BF0761D90300A33029 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + BEC568330761D90600A33029 /* PBXTargetDependency */, + ); + name = "graywin (Upgraded)"; + productInstallPath = "$(USER_APPS_DIR)"; + productName = graywin; + productReference = BEC566C30761D90300A33029 /* graywin.app */; + productType = "com.apple.product-type.application"; + }; + BEC566C50761D90300A33029 /* loopwave (Upgraded) */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B594008BDB826006539E9 /* Build configuration list for PBXNativeTarget "loopwave (Upgraded)" */; + buildPhases = ( + BEC566C70761D90300A33029 /* Headers */, + BEC566C80761D90300A33029 /* Resources */, + BEC566CA0761D90300A33029 /* Sources */, + BEC566CC0761D90300A33029 /* Frameworks */, + 00794E6409D2084F003FC8A1 /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + BEC568350761D90600A33029 /* PBXTargetDependency */, + ); + name = "loopwave (Upgraded)"; + productInstallPath = "$(USER_APPS_DIR)"; + productName = loopwave; + productReference = BEC566D10761D90300A33029 /* loopwave.app */; + productType = "com.apple.product-type.application"; + }; + BEC566D30761D90300A33029 /* testalpha (Upgraded) */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B594408BDB826006539E9 /* Build configuration list for PBXNativeTarget "testalpha (Upgraded)" */; + buildPhases = ( + BEC566D50761D90300A33029 /* Headers */, + BEC566D60761D90300A33029 /* Resources */, + BEC566D80761D90300A33029 /* Sources */, + BEC566DA0761D90300A33029 /* Frameworks */, + 00794EA009D2343A003FC8A1 /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + BEC568370761D90600A33029 /* PBXTargetDependency */, + ); + name = "testalpha (Upgraded)"; + productInstallPath = "$(USER_APPS_DIR)"; + productName = testalpha; + productReference = BEC566DF0761D90300A33029 /* testalpha.app */; + productType = "com.apple.product-type.application"; + }; + BEC566E10761D90300A33029 /* testbitmap (Upgraded) */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B594808BDB826006539E9 /* Build configuration list for PBXNativeTarget "testbitmap (Upgraded)" */; + buildPhases = ( + BEC566E30761D90300A33029 /* Headers */, + BEC566E40761D90300A33029 /* Resources */, + BEC566E60761D90300A33029 /* Sources */, + BEC566E80761D90300A33029 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + BEC568390761D90600A33029 /* PBXTargetDependency */, + ); + name = "testbitmap (Upgraded)"; + productInstallPath = "$(USER_APPS_DIR)"; + productName = testbitmap; + productReference = BEC566EC0761D90300A33029 /* testbitmap.app */; + productType = "com.apple.product-type.application"; + }; + BEC566EE0761D90300A33029 /* testcdrom (Upgraded) */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B594C08BDB826006539E9 /* Build configuration list for PBXNativeTarget "testcdrom (Upgraded)" */; + buildPhases = ( + BEC566F00761D90300A33029 /* Headers */, + BEC566F10761D90300A33029 /* Resources */, + BEC566F30761D90300A33029 /* Sources */, + BEC566F50761D90300A33029 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + BEC5683B0761D90600A33029 /* PBXTargetDependency */, + ); + name = "testcdrom (Upgraded)"; + productInstallPath = "$(USER_APPS_DIR)"; + productName = testcdrom; + productReference = BEC566F90761D90300A33029 /* testcdrom.app */; + productType = "com.apple.product-type.application"; + }; + BEC566FB0761D90300A33029 /* testerror (Upgraded) */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B595008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testerror (Upgraded)" */; + buildPhases = ( + BEC566FD0761D90300A33029 /* Headers */, + BEC566FE0761D90300A33029 /* Resources */, + BEC567000761D90300A33029 /* Sources */, + BEC567020761D90300A33029 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + BEC5683D0761D90600A33029 /* PBXTargetDependency */, + ); + name = "testerror (Upgraded)"; + productInstallPath = "$(USER_APPS_DIR)"; + productName = testerror; + productReference = BEC567060761D90400A33029 /* testerror.app */; + productType = "com.apple.product-type.application"; + }; + BEC567080761D90400A33029 /* testgamma (Upgraded) */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B595408BDB826006539E9 /* Build configuration list for PBXNativeTarget "testgamma (Upgraded)" */; + buildPhases = ( + BEC5670A0761D90400A33029 /* Headers */, + BEC5670B0761D90400A33029 /* Resources */, + BEC5670D0761D90400A33029 /* Sources */, + BEC5670F0761D90400A33029 /* Frameworks */, + 00794EE509D236E4003FC8A1 /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + BEC5683F0761D90600A33029 /* PBXTargetDependency */, + ); + name = "testgamma (Upgraded)"; + productInstallPath = "$(USER_APPS_DIR)"; + productName = testgamma; + productReference = BEC567140761D90400A33029 /* testgamma.app */; + productType = "com.apple.product-type.application"; + }; + BEC567160761D90400A33029 /* testgl (Upgraded) */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B595808BDB826006539E9 /* Build configuration list for PBXNativeTarget "testgl (Upgraded)" */; + buildPhases = ( + BEC567180761D90400A33029 /* Headers */, + BEC567190761D90400A33029 /* Resources */, + BEC5671B0761D90400A33029 /* Sources */, + BEC5671D0761D90400A33029 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + BEC568410761D90600A33029 /* PBXTargetDependency */, + ); + name = "testgl (Upgraded)"; + productInstallPath = "$(USER_APPS_DIR)"; + productName = testgl; + productReference = BEC567210761D90400A33029 /* testgl.app */; + productType = "com.apple.product-type.application"; + }; + BEC567230761D90400A33029 /* testthread (Upgraded) */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B595C08BDB826006539E9 /* Build configuration list for PBXNativeTarget "testthread (Upgraded)" */; + buildPhases = ( + BEC567250761D90400A33029 /* Headers */, + BEC567260761D90400A33029 /* Resources */, + BEC567280761D90400A33029 /* Sources */, + BEC5672A0761D90400A33029 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + BEC568430761D90600A33029 /* PBXTargetDependency */, + ); + name = "testthread (Upgraded)"; + productInstallPath = "$(USER_APPS_DIR)"; + productName = testthread; + productReference = BEC5672E0761D90400A33029 /* testthread.app */; + productType = "com.apple.product-type.application"; + }; + BEC567300761D90400A33029 /* testjoystick (Upgraded) */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B596008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testjoystick (Upgraded)" */; + buildPhases = ( + BEC567320761D90400A33029 /* Headers */, + BEC567330761D90400A33029 /* Resources */, + BEC567350761D90400A33029 /* Sources */, + BEC567370761D90400A33029 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + BEC568450761D90600A33029 /* PBXTargetDependency */, + ); + name = "testjoystick (Upgraded)"; + productInstallPath = "$(USER_APPS_DIR)"; + productName = testjoystick; + productReference = BEC5673B0761D90400A33029 /* testjoystick.app */; + productType = "com.apple.product-type.application"; + }; + BEC5673D0761D90400A33029 /* testkeys (Upgraded) */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B596408BDB826006539E9 /* Build configuration list for PBXNativeTarget "testkeys (Upgraded)" */; + buildPhases = ( + BEC5673F0761D90400A33029 /* Headers */, + BEC567400761D90400A33029 /* Resources */, + BEC567420761D90400A33029 /* Sources */, + BEC567440761D90400A33029 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + BEC568470761D90600A33029 /* PBXTargetDependency */, + ); + name = "testkeys (Upgraded)"; + productInstallPath = "$(USER_APPS_DIR)"; + productName = testkeys; + productReference = BEC567480761D90400A33029 /* testkeys.app */; + productType = "com.apple.product-type.application"; + }; + BEC5674A0761D90400A33029 /* testlock (Upgraded) */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B596808BDB826006539E9 /* Build configuration list for PBXNativeTarget "testlock (Upgraded)" */; + buildPhases = ( + BEC5674C0761D90400A33029 /* Headers */, + BEC5674D0761D90400A33029 /* Resources */, + BEC5674F0761D90400A33029 /* Sources */, + BEC567510761D90400A33029 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + BEC568490761D90600A33029 /* PBXTargetDependency */, + ); + name = "testlock (Upgraded)"; + productInstallPath = "$(USER_APPS_DIR)"; + productName = testlock; + productReference = BEC567550761D90400A33029 /* testlock.app */; + productType = "com.apple.product-type.application"; + }; + BEC567570761D90400A33029 /* testoverlay (Upgraded) */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B599C08BDB826006539E9 /* Build configuration list for PBXNativeTarget "testoverlay (Upgraded)" */; + buildPhases = ( + BEC567590761D90400A33029 /* Headers */, + BEC5675A0761D90400A33029 /* Resources */, + BEC5675C0761D90400A33029 /* Sources */, + BEC5675E0761D90400A33029 /* Frameworks */, + 00794F6109D24125003FC8A1 /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + BEC5684B0761D90600A33029 /* PBXTargetDependency */, + ); + name = "testoverlay (Upgraded)"; + productInstallPath = "$(USER_APPS_DIR)"; + productName = testoverlay; + productReference = BEC567620761D90400A33029 /* testoverlay.app */; + productType = "com.apple.product-type.application"; + }; + BEC567640761D90400A33029 /* testpalette (Upgraded) */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B596C08BDB826006539E9 /* Build configuration list for PBXNativeTarget "testpalette (Upgraded)" */; + buildPhases = ( + BEC567660761D90400A33029 /* Headers */, + BEC567670761D90400A33029 /* Resources */, + BEC567690761D90400A33029 /* Sources */, + BEC5676B0761D90400A33029 /* Frameworks */, + 00794EFC09D2381C003FC8A1 /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + BEC5684D0761D90600A33029 /* PBXTargetDependency */, + ); + name = "testpalette (Upgraded)"; + productInstallPath = "$(USER_APPS_DIR)"; + productName = testpalette; + productReference = BEC567700761D90500A33029 /* testpalette.app */; + productType = "com.apple.product-type.application"; + }; + BEC567720761D90500A33029 /* testsem (Upgraded) */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B597008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testsem (Upgraded)" */; + buildPhases = ( + BEC567740761D90500A33029 /* Headers */, + BEC567750761D90500A33029 /* Resources */, + BEC567770761D90500A33029 /* Sources */, + BEC567790761D90500A33029 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + BEC5684F0761D90600A33029 /* PBXTargetDependency */, + ); + name = "testsem (Upgraded)"; + productInstallPath = "$(USER_APPS_DIR)"; + productName = testsem; + productReference = BEC5677D0761D90500A33029 /* testsem.app */; + productType = "com.apple.product-type.application"; + }; + BEC5677F0761D90500A33029 /* testsprite (Upgraded) */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B597408BDB826006539E9 /* Build configuration list for PBXNativeTarget "testsprite (Upgraded)" */; + buildPhases = ( + BEC567810761D90500A33029 /* Headers */, + BEC567820761D90500A33029 /* Resources */, + BEC567840761D90500A33029 /* Sources */, + BEC567860761D90500A33029 /* Frameworks */, + 00794F0209D2385F003FC8A1 /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + BEC568510761D90600A33029 /* PBXTargetDependency */, + ); + name = "testsprite (Upgraded)"; + productInstallPath = "$(USER_APPS_DIR)"; + productName = testsprite; + productReference = BEC5678B0761D90500A33029 /* testsprite.app */; + productType = "com.apple.product-type.application"; + }; + BEC5678D0761D90500A33029 /* testtimer (Upgraded) */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B597808BDB826006539E9 /* Build configuration list for PBXNativeTarget "testtimer (Upgraded)" */; + buildPhases = ( + BEC5678F0761D90500A33029 /* Headers */, + BEC567900761D90500A33029 /* Resources */, + BEC567920761D90500A33029 /* Sources */, + BEC567940761D90500A33029 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + BEC568530761D90600A33029 /* PBXTargetDependency */, + ); + name = "testtimer (Upgraded)"; + productInstallPath = "$(USER_APPS_DIR)"; + productName = testtimer; + productReference = BEC567980761D90500A33029 /* testtimer.app */; + productType = "com.apple.product-type.application"; + }; + BEC567A70761D90500A33029 /* testversion (Upgraded) */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B598008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testversion (Upgraded)" */; + buildPhases = ( + BEC567A90761D90500A33029 /* Headers */, + BEC567AA0761D90500A33029 /* Resources */, + BEC567AC0761D90500A33029 /* Sources */, + BEC567AE0761D90500A33029 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + BEC568570761D90600A33029 /* PBXTargetDependency */, + ); + name = "testversion (Upgraded)"; + productInstallPath = "$(USER_APPS_DIR)"; + productName = testversion; + productReference = BEC567B20761D90500A33029 /* testversion.app */; + productType = "com.apple.product-type.application"; + }; + BEC567B40761D90500A33029 /* testvidinfo (Upgraded) */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B598408BDB826006539E9 /* Build configuration list for PBXNativeTarget "testvidinfo (Upgraded)" */; + buildPhases = ( + BEC567B60761D90500A33029 /* Headers */, + BEC567B70761D90500A33029 /* Resources */, + BEC567B90761D90500A33029 /* Sources */, + BEC567BB0761D90500A33029 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + BEC568590761D90600A33029 /* PBXTargetDependency */, + ); + name = "testvidinfo (Upgraded)"; + productInstallPath = "$(USER_APPS_DIR)"; + productName = testvidinfo; + productReference = BEC567BF0761D90500A33029 /* testvidinfo.app */; + productType = "com.apple.product-type.application"; + }; + BEC567C10761D90500A33029 /* testwin (Upgraded) */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B598808BDB826006539E9 /* Build configuration list for PBXNativeTarget "testwin (Upgraded)" */; + buildPhases = ( + BEC567C30761D90500A33029 /* Headers */, + BEC567C40761D90500A33029 /* Resources */, + BEC567C60761D90500A33029 /* Sources */, + BEC567C80761D90500A33029 /* Frameworks */, + 00794F0909D238E3003FC8A1 /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + BEC5685B0761D90600A33029 /* PBXTargetDependency */, + ); + name = "testwin (Upgraded)"; + productInstallPath = "$(USER_APPS_DIR)"; + productName = testwin; + productReference = BEC567CD0761D90500A33029 /* testwin.app */; + productType = "com.apple.product-type.application"; + }; + BEC567CF0761D90500A33029 /* testwm (Upgraded) */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B598C08BDB826006539E9 /* Build configuration list for PBXNativeTarget "testwm (Upgraded)" */; + buildPhases = ( + BEC567D10761D90500A33029 /* Headers */, + BEC567D20761D90500A33029 /* Resources */, + BEC567D40761D90500A33029 /* Sources */, + BEC567D60761D90500A33029 /* Frameworks */, + 00794F0F09D23923003FC8A1 /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + BEC5685D0761D90600A33029 /* PBXTargetDependency */, + ); + name = "testwm (Upgraded)"; + productInstallPath = "$(USER_APPS_DIR)"; + productName = testwm; + productReference = BEC567DB0761D90600A33029 /* testwm.app */; + productType = "com.apple.product-type.application"; + }; + BEC567DD0761D90600A33029 /* threadwin (Upgraded) */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B599008BDB826006539E9 /* Build configuration list for PBXNativeTarget "threadwin (Upgraded)" */; + buildPhases = ( + BEC567DF0761D90600A33029 /* Headers */, + BEC567E00761D90600A33029 /* Resources */, + BEC567E20761D90600A33029 /* Sources */, + BEC567E40761D90600A33029 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + BEC5685F0761D90600A33029 /* PBXTargetDependency */, + ); + name = "threadwin (Upgraded)"; + productInstallPath = "$(USER_APPS_DIR)"; + productName = threadwin; + productReference = BEC567E80761D90600A33029 /* threadwin.app */; + productType = "com.apple.product-type.application"; + }; + BEC567EA0761D90600A33029 /* torturethread (Upgraded) */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B599408BDB826006539E9 /* Build configuration list for PBXNativeTarget "torturethread (Upgraded)" */; + buildPhases = ( + BEC567EC0761D90600A33029 /* Headers */, + BEC567ED0761D90600A33029 /* Resources */, + BEC567EF0761D90600A33029 /* Sources */, + BEC567F10761D90600A33029 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + BEC568610761D90600A33029 /* PBXTargetDependency */, + ); + name = "torturethread (Upgraded)"; + productInstallPath = "$(USER_APPS_DIR)"; + productName = tortureThread; + productReference = BEC567F50761D90600A33029 /* torturethread.app */; + productType = "com.apple.product-type.application"; + }; + BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B593408BDB826006539E9 /* Build configuration list for PBXNativeTarget "libsdlmain.a (Upgraded)" */; + buildPhases = ( + BEC567F80761D90600A33029 /* Headers */, + BEC567FB0761D90600A33029 /* Sources */, + BEC567FD0761D90600A33029 /* Frameworks */, + BEC567FE0761D90600A33029 /* Rez */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "libsdlmain.a (Upgraded)"; + productInstallPath = /usr/local/lib; + productName = libsdlmain.a; + productReference = BEC567FF0761D90600A33029 /* libsdlmain.a */; + productType = "com.apple.product-type.library.static"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 08FB7793FE84155DC02AAC07 /* Project object */ = { + isa = PBXProject; + buildConfigurationList = 001B5A0C08BDB826006539E9 /* Build configuration list for PBXProject "SDLTest" */; + compatibilityVersion = "Xcode 2.4"; + developmentRegion = English; + hasScannedForEncodings = 1; + knownRegions = ( + English, + Japanese, + French, + German, + ); + mainGroup = 08FB7794FE84155DC02AAC07 /* SDLTest */; + projectDirPath = ""; + projectReferences = ( + { + ProductGroup = 003FA63B093FFD41000C53B3 /* Products */; + ProjectRef = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */; + }, + ); + projectRoot = ""; + targets = ( + BEC566920761D90300A33029 /* All */, + BEC566AB0761D90300A33029 /* checkkeys (Upgraded) */, + BEC566B80761D90300A33029 /* graywin (Upgraded) */, + BEC566C50761D90300A33029 /* loopwave (Upgraded) */, + BEC566D30761D90300A33029 /* testalpha (Upgraded) */, + BEC566E10761D90300A33029 /* testbitmap (Upgraded) */, + 002F338609CA16BF00EBEB88 /* testblitspeed */, + BEC566EE0761D90300A33029 /* testcdrom (Upgraded) */, + 002F33CA09CA19A600EBEB88 /* testdyngl */, + BEC566FB0761D90300A33029 /* testerror (Upgraded) */, + 002F340109CA1BFF00EBEB88 /* testfile */, + BEC567080761D90400A33029 /* testgamma (Upgraded) */, + BEC567160761D90400A33029 /* testgl (Upgraded) */, + 002F342009CA1F0300EBEB88 /* testiconv */, + BEC567300761D90400A33029 /* testjoystick (Upgraded) */, + BEC5673D0761D90400A33029 /* testkeys (Upgraded) */, + BEC5674A0761D90400A33029 /* testlock (Upgraded) */, + BEC567570761D90400A33029 /* testoverlay (Upgraded) */, + 002F343C09CA1FB300EBEB88 /* testoverlay2 */, + BEC567640761D90400A33029 /* testpalette (Upgraded) */, + 002F345909CA204F00EBEB88 /* testplatform */, + BEC567720761D90500A33029 /* testsem (Upgraded) */, + BEC5677F0761D90500A33029 /* testsprite (Upgraded) */, + BEC567230761D90400A33029 /* testthread (Upgraded) */, + BEC5678D0761D90500A33029 /* testtimer (Upgraded) */, + BEC567A70761D90500A33029 /* testversion (Upgraded) */, + BEC567B40761D90500A33029 /* testvidinfo (Upgraded) */, + BEC567C10761D90500A33029 /* testwin (Upgraded) */, + BEC567CF0761D90500A33029 /* testwm (Upgraded) */, + BEC567DD0761D90600A33029 /* threadwin (Upgraded) */, + BEC567EA0761D90600A33029 /* torturethread (Upgraded) */, + BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */, + 002F337009CA14F900EBEB88 /* test */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXReferenceProxy section */ + 003FA643093FFD41000C53B3 /* SDL.framework */ = { + isa = PBXReferenceProxy; + fileType = wrapper.framework; + path = SDL.framework; + remoteRef = 003FA642093FFD41000C53B3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 003FA645093FFD41000C53B3 /* libSDL.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libSDL.a; + remoteRef = 003FA644093FFD41000C53B3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 003FA647093FFD41000C53B3 /* libSDLmain.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libSDLmain.a; + remoteRef = 003FA646093FFD41000C53B3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 003FA649093FFD41000C53B3 /* Standard DMG */ = { + isa = PBXReferenceProxy; + fileType = "compiled.mach-o.executable"; + path = "Standard DMG"; + remoteRef = 003FA648093FFD41000C53B3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 003FA64B093FFD41000C53B3 /* Developer Extras Package */ = { + isa = PBXReferenceProxy; + fileType = "compiled.mach-o.executable"; + path = "Developer Extras Package"; + remoteRef = 003FA64A093FFD41000C53B3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; +/* End PBXReferenceProxy section */ + +/* Begin PBXResourcesBuildPhase section */ + 002F337409CA14F900EBEB88 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F337509CA14F900EBEB88 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F338A09CA16BF00EBEB88 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F338B09CA16BF00EBEB88 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F33CE09CA19A600EBEB88 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F33CF09CA19A600EBEB88 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F340509CA1BFF00EBEB88 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F340609CA1BFF00EBEB88 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F342409CA1F0300EBEB88 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F342509CA1F0300EBEB88 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F344009CA1FB300EBEB88 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F344109CA1FB300EBEB88 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F345D09CA204F00EBEB88 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F345E09CA204F00EBEB88 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566AE0761D90300A33029 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC566AF0761D90300A33029 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566BB0761D90300A33029 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC566BC0761D90300A33029 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566C80761D90300A33029 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC566C90761D90300A33029 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566D60761D90300A33029 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC566D70761D90300A33029 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566E40761D90300A33029 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC566E50761D90300A33029 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566F10761D90300A33029 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC566F20761D90300A33029 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566FE0761D90300A33029 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC566FF0761D90300A33029 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC5670B0761D90400A33029 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC5670C0761D90400A33029 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567190761D90400A33029 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC5671A0761D90400A33029 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567260761D90400A33029 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567270761D90400A33029 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567330761D90400A33029 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567340761D90400A33029 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567400761D90400A33029 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567410761D90400A33029 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC5674D0761D90400A33029 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC5674E0761D90400A33029 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC5675A0761D90400A33029 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567670761D90400A33029 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567680761D90400A33029 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567750761D90500A33029 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567760761D90500A33029 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567820761D90500A33029 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567830761D90500A33029 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567900761D90500A33029 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567910761D90500A33029 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567AA0761D90500A33029 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567AB0761D90500A33029 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567B70761D90500A33029 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567B80761D90500A33029 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567C40761D90500A33029 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567C50761D90500A33029 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567D20761D90500A33029 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567D30761D90500A33029 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567E00761D90600A33029 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567E10761D90600A33029 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567ED0761D90600A33029 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567EE0761D90600A33029 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXRezBuildPhase section */ + BEC567FE0761D90600A33029 /* Rez */ = { + isa = PBXRezBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXRezBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 002F337609CA14F900EBEB88 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F338C09CA16BF00EBEB88 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F339B09CA17BC00EBEB88 /* testblitspeed.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F33D009CA19A600EBEB88 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F33E309CA1A0B00EBEB88 /* testdyngl.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F340709CA1BFF00EBEB88 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F341809CA1C5B00EBEB88 /* testfile.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F342609CA1F0300EBEB88 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F343709CA1F6F00EBEB88 /* testiconv.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F344209CA1FB300EBEB88 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F345409CA202000EBEB88 /* testoverlay2.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F345F09CA204F00EBEB88 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F347009CA20A600EBEB88 /* testplatform.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566B00761D90300A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC566B10761D90300A33029 /* checkkeys.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566BD0761D90300A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC566BE0761D90300A33029 /* graywin.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566CA0761D90300A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC566CB0761D90300A33029 /* loopwave.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566D80761D90300A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC566D90761D90300A33029 /* testalpha.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566E60761D90300A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC566E70761D90300A33029 /* testbitmap.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566F30761D90300A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC566F40761D90300A33029 /* testcdrom.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567000761D90300A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567010761D90300A33029 /* testerror.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC5670D0761D90400A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC5670E0761D90400A33029 /* testgamma.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC5671B0761D90400A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC5671C0761D90400A33029 /* testgl.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567280761D90400A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567290761D90400A33029 /* testhread.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567350761D90400A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567360761D90400A33029 /* testjoystick.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567420761D90400A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567430761D90400A33029 /* testkeys.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC5674F0761D90400A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567500761D90400A33029 /* testlock.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC5675C0761D90400A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC5675D0761D90400A33029 /* testoverlay.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567690761D90400A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC5676A0761D90400A33029 /* testpalette.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567770761D90500A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567780761D90500A33029 /* testsem.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567840761D90500A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567850761D90500A33029 /* testsprite.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567920761D90500A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567930761D90500A33029 /* testtimer.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567AC0761D90500A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567AD0761D90500A33029 /* testver.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567B90761D90500A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567BA0761D90500A33029 /* testvidinfo.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567C60761D90500A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567C70761D90500A33029 /* testwin.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567D40761D90500A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567D50761D90500A33029 /* testwm.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567E20761D90600A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567E30761D90600A33029 /* threadwin.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567EF0761D90600A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567F00761D90600A33029 /* torturethread.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567FB0761D90600A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567FC0761D90600A33029 /* SDLMain.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 002F337109CA14F900EBEB88 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = 002F337209CA14F900EBEB88 /* PBXContainerItemProxy */; + }; + 002F338709CA16BF00EBEB88 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = 002F338809CA16BF00EBEB88 /* PBXContainerItemProxy */; + }; + 002F33CB09CA19A600EBEB88 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = 002F33CC09CA19A600EBEB88 /* PBXContainerItemProxy */; + }; + 002F340209CA1BFF00EBEB88 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = 002F340309CA1BFF00EBEB88 /* PBXContainerItemProxy */; + }; + 002F342109CA1F0300EBEB88 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = 002F342209CA1F0300EBEB88 /* PBXContainerItemProxy */; + }; + 002F343D09CA1FB300EBEB88 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = 002F343E09CA1FB300EBEB88 /* PBXContainerItemProxy */; + }; + 002F345A09CA204F00EBEB88 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = 002F345B09CA204F00EBEB88 /* PBXContainerItemProxy */; + }; + 002F347909CA215600EBEB88 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 002F338609CA16BF00EBEB88 /* testblitspeed */; + targetProxy = 002F347809CA215600EBEB88 /* PBXContainerItemProxy */; + }; + 002F347B09CA215600EBEB88 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 002F33CA09CA19A600EBEB88 /* testdyngl */; + targetProxy = 002F347A09CA215600EBEB88 /* PBXContainerItemProxy */; + }; + 002F347D09CA215600EBEB88 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 002F340109CA1BFF00EBEB88 /* testfile */; + targetProxy = 002F347C09CA215600EBEB88 /* PBXContainerItemProxy */; + }; + 002F347F09CA215600EBEB88 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 002F342009CA1F0300EBEB88 /* testiconv */; + targetProxy = 002F347E09CA215600EBEB88 /* PBXContainerItemProxy */; + }; + 002F348109CA215600EBEB88 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567570761D90400A33029 /* testoverlay (Upgraded) */; + targetProxy = 002F348009CA215600EBEB88 /* PBXContainerItemProxy */; + }; + 002F348309CA215600EBEB88 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 002F343C09CA1FB300EBEB88 /* testoverlay2 */; + targetProxy = 002F348209CA215600EBEB88 /* PBXContainerItemProxy */; + }; + 002F348509CA215600EBEB88 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 002F345909CA204F00EBEB88 /* testplatform */; + targetProxy = 002F348409CA215600EBEB88 /* PBXContainerItemProxy */; + }; + 003FA6A809400236000C53B3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Framework; + targetProxy = 003FA6A709400236000C53B3 /* PBXContainerItemProxy */; + }; + BEC568010761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC566AB0761D90300A33029 /* checkkeys (Upgraded) */; + targetProxy = BEC568000761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568030761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC566B80761D90300A33029 /* graywin (Upgraded) */; + targetProxy = BEC568020761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568050761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC566C50761D90300A33029 /* loopwave (Upgraded) */; + targetProxy = BEC568040761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568070761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC566D30761D90300A33029 /* testalpha (Upgraded) */; + targetProxy = BEC568060761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568090761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC566E10761D90300A33029 /* testbitmap (Upgraded) */; + targetProxy = BEC568080761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC5680B0761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC566EE0761D90300A33029 /* testcdrom (Upgraded) */; + targetProxy = BEC5680A0761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC5680D0761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC566FB0761D90300A33029 /* testerror (Upgraded) */; + targetProxy = BEC5680C0761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC5680F0761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567080761D90400A33029 /* testgamma (Upgraded) */; + targetProxy = BEC5680E0761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568110761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567160761D90400A33029 /* testgl (Upgraded) */; + targetProxy = BEC568100761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568130761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567230761D90400A33029 /* testthread (Upgraded) */; + targetProxy = BEC568120761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568150761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567300761D90400A33029 /* testjoystick (Upgraded) */; + targetProxy = BEC568140761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568170761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC5673D0761D90400A33029 /* testkeys (Upgraded) */; + targetProxy = BEC568160761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568190761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC5674A0761D90400A33029 /* testlock (Upgraded) */; + targetProxy = BEC568180761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC5681B0761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567640761D90400A33029 /* testpalette (Upgraded) */; + targetProxy = BEC5681A0761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC5681D0761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567720761D90500A33029 /* testsem (Upgraded) */; + targetProxy = BEC5681C0761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC5681F0761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC5677F0761D90500A33029 /* testsprite (Upgraded) */; + targetProxy = BEC5681E0761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568210761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC5678D0761D90500A33029 /* testtimer (Upgraded) */; + targetProxy = BEC568200761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568250761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567A70761D90500A33029 /* testversion (Upgraded) */; + targetProxy = BEC568240761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568270761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567B40761D90500A33029 /* testvidinfo (Upgraded) */; + targetProxy = BEC568260761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568290761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567C10761D90500A33029 /* testwin (Upgraded) */; + targetProxy = BEC568280761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC5682B0761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567CF0761D90500A33029 /* testwm (Upgraded) */; + targetProxy = BEC5682A0761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC5682D0761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567DD0761D90600A33029 /* threadwin (Upgraded) */; + targetProxy = BEC5682C0761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC5682F0761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567EA0761D90600A33029 /* torturethread (Upgraded) */; + targetProxy = BEC5682E0761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568310761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = BEC568300761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568330761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = BEC568320761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568350761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = BEC568340761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568370761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = BEC568360761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568390761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = BEC568380761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC5683B0761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = BEC5683A0761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC5683D0761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = BEC5683C0761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC5683F0761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = BEC5683E0761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568410761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = BEC568400761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568430761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = BEC568420761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568450761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = BEC568440761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568470761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = BEC568460761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568490761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = BEC568480761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC5684B0761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = BEC5684A0761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC5684D0761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = BEC5684C0761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC5684F0761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = BEC5684E0761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568510761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = BEC568500761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568530761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = BEC568520761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568570761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = BEC568560761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568590761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = BEC568580761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC5685B0761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = BEC5685A0761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC5685D0761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = BEC5685C0761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC5685F0761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = BEC5685E0761D90600A33029 /* PBXContainerItemProxy */; + }; + BEC568610761D90600A33029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567F70761D90600A33029 /* libsdlmain.a (Upgraded) */; + targetProxy = BEC568600761D90600A33029 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 001B593508BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREFIX_HEADER = libsdlmain_prefix.h; + PRODUCT_NAME = sdlmain; + }; + name = Deployment; + }; + 001B593608BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREFIX_HEADER = libsdlmain_prefix.h; + PRODUCT_NAME = sdlmain; + }; + name = Development; + }; + 001B593708BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREFIX_HEADER = libsdlmain_prefix.h; + PRODUCT_NAME = sdlmain; + }; + name = Default; + }; + 001B593908BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-checkkeys__Upgraded_.plist"; + PRODUCT_NAME = checkkeys; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 001B593A08BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-checkkeys__Upgraded_.plist"; + PRODUCT_NAME = checkkeys; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 001B593B08BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-checkkeys__Upgraded_.plist"; + PRODUCT_NAME = checkkeys; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 001B593D08BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-graywin__Upgraded_.plist"; + PRODUCT_NAME = graywin; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 001B593E08BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-graywin__Upgraded_.plist"; + PRODUCT_NAME = graywin; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 001B593F08BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-graywin__Upgraded_.plist"; + PRODUCT_NAME = graywin; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 001B594108BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-loopwave__Upgraded_.plist"; + PRODUCT_NAME = loopwave; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 001B594208BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-loopwave__Upgraded_.plist"; + PRODUCT_NAME = loopwave; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 001B594308BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-loopwave__Upgraded_.plist"; + PRODUCT_NAME = loopwave; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 001B594508BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testalpha__Upgraded_.plist"; + PRODUCT_NAME = testalpha; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 001B594608BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testalpha__Upgraded_.plist"; + PRODUCT_NAME = testalpha; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 001B594708BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testalpha__Upgraded_.plist"; + PRODUCT_NAME = testalpha; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 001B594908BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testbitmap__Upgraded_.plist"; + PRODUCT_NAME = testbitmap; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 001B594A08BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testbitmap__Upgraded_.plist"; + PRODUCT_NAME = testbitmap; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 001B594B08BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testbitmap__Upgraded_.plist"; + PRODUCT_NAME = testbitmap; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 001B594D08BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testcdrom__Upgraded_.plist"; + PRODUCT_NAME = testcdrom; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 001B594E08BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testcdrom__Upgraded_.plist"; + PRODUCT_NAME = testcdrom; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 001B594F08BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testcdrom__Upgraded_.plist"; + PRODUCT_NAME = testcdrom; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 001B595108BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testerror__Upgraded_.plist"; + PRODUCT_NAME = testerror; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 001B595208BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testerror__Upgraded_.plist"; + PRODUCT_NAME = testerror; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 001B595308BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testerror__Upgraded_.plist"; + PRODUCT_NAME = testerror; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 001B595508BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testgamma__Upgraded_.plist"; + PRODUCT_NAME = testgamma; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 001B595608BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testgamma__Upgraded_.plist"; + PRODUCT_NAME = testgamma; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 001B595708BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testgamma__Upgraded_.plist"; + PRODUCT_NAME = testgamma; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 001B595908BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = HAVE_OPENGL; + INFOPLIST_FILE = "Info-testgl__Upgraded_.plist"; + PRODUCT_NAME = testgl; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 001B595A08BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = HAVE_OPENGL; + INFOPLIST_FILE = "Info-testgl__Upgraded_.plist"; + PRODUCT_NAME = testgl; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 001B595B08BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = HAVE_OPENGL; + INFOPLIST_FILE = "Info-testgl__Upgraded_.plist"; + PRODUCT_NAME = testgl; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 001B595D08BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testthread__Upgraded_.plist"; + PRODUCT_NAME = testthread; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 001B595E08BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testthread__Upgraded_.plist"; + PRODUCT_NAME = testthread; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 001B595F08BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testthread__Upgraded_.plist"; + PRODUCT_NAME = testthread; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 001B596108BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testjoystick__Upgraded_.plist"; + PRODUCT_NAME = testjoystick; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 001B596208BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testjoystick__Upgraded_.plist"; + PRODUCT_NAME = testjoystick; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 001B596308BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testjoystick__Upgraded_.plist"; + PRODUCT_NAME = testjoystick; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 001B596508BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testkeys__Upgraded_.plist"; + PRODUCT_NAME = testkeys; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 001B596608BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testkeys__Upgraded_.plist"; + PRODUCT_NAME = testkeys; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 001B596708BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testkeys__Upgraded_.plist"; + PRODUCT_NAME = testkeys; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 001B596908BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testlock__Upgraded_.plist"; + PRODUCT_NAME = testlock; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 001B596A08BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testlock__Upgraded_.plist"; + PRODUCT_NAME = testlock; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 001B596B08BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testlock__Upgraded_.plist"; + PRODUCT_NAME = testlock; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 001B596D08BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testpalette__Upgraded_.plist"; + PRODUCT_NAME = testpalette; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 001B596E08BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testpalette__Upgraded_.plist"; + PRODUCT_NAME = testpalette; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 001B596F08BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testpalette__Upgraded_.plist"; + PRODUCT_NAME = testpalette; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 001B597108BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testsem__Upgraded_.plist"; + PRODUCT_NAME = testsem; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 001B597208BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testsem__Upgraded_.plist"; + PRODUCT_NAME = testsem; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 001B597308BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testsem__Upgraded_.plist"; + PRODUCT_NAME = testsem; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 001B597508BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testsprite__Upgraded_.plist"; + PRODUCT_NAME = testsprite; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 001B597608BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testsprite__Upgraded_.plist"; + PRODUCT_NAME = testsprite; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 001B597708BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testsprite__Upgraded_.plist"; + PRODUCT_NAME = testsprite; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 001B597908BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testtimer__Upgraded_.plist"; + PRODUCT_NAME = testtimer; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 001B597A08BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testtimer__Upgraded_.plist"; + PRODUCT_NAME = testtimer; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 001B597B08BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testtimer__Upgraded_.plist"; + PRODUCT_NAME = testtimer; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 001B598108BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testversion__Upgraded_.plist"; + PRODUCT_NAME = testversion; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 001B598208BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testversion__Upgraded_.plist"; + PRODUCT_NAME = testversion; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 001B598308BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testversion__Upgraded_.plist"; + PRODUCT_NAME = testversion; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 001B598508BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testvidinfo__Upgraded_.plist"; + PRODUCT_NAME = testvidinfo; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 001B598608BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testvidinfo__Upgraded_.plist"; + PRODUCT_NAME = testvidinfo; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 001B598708BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testvidinfo__Upgraded_.plist"; + PRODUCT_NAME = testvidinfo; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 001B598908BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testwin__Upgraded_.plist"; + PRODUCT_NAME = testwin; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 001B598A08BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testwin__Upgraded_.plist"; + PRODUCT_NAME = testwin; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 001B598B08BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testwin__Upgraded_.plist"; + PRODUCT_NAME = testwin; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 001B598D08BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testwm__Upgraded_.plist"; + PRODUCT_NAME = testwm; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 001B598E08BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testwm__Upgraded_.plist"; + PRODUCT_NAME = testwm; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 001B598F08BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testwm__Upgraded_.plist"; + PRODUCT_NAME = testwm; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 001B599108BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-threadwin__Upgraded_.plist"; + PRODUCT_NAME = threadwin; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 001B599208BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-threadwin__Upgraded_.plist"; + PRODUCT_NAME = threadwin; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 001B599308BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-threadwin__Upgraded_.plist"; + PRODUCT_NAME = threadwin; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 001B599508BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-torturethread__Upgraded_.plist"; + PRODUCT_NAME = torturethread; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 001B599608BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-torturethread__Upgraded_.plist"; + PRODUCT_NAME = torturethread; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 001B599708BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-torturethread__Upgraded_.plist"; + PRODUCT_NAME = torturethread; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 001B599908BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + COPY_PHASE_STRIP = YES; + DEBUGGING_SYMBOLS = NO; + GCC_ENABLE_FIX_AND_CONTINUE = NO; + GCC_OPTIMIZATION_LEVEL = 3; + OTHER_CFLAGS = ""; + OTHER_LDFLAGS = ""; + OTHER_REZFLAGS = ""; + PRODUCT_NAME = "Build All"; + SECTORDER_FLAGS = ""; + WARNING_CFLAGS = ( + "-Wmost", + "-Wno-four-char-constants", + "-Wno-unknown-pragmas", + ); + ZERO_LINK = NO; + }; + name = Deployment; + }; + 001B599A08BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_FIX_AND_CONTINUE = YES; + GCC_GENERATE_DEBUGGING_SYMBOLS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + OTHER_CFLAGS = ""; + OTHER_LDFLAGS = ""; + OTHER_REZFLAGS = ""; + PRODUCT_NAME = "Build All"; + SECTORDER_FLAGS = ""; + WARNING_CFLAGS = ( + "-Wmost", + "-Wno-four-char-constants", + "-Wno-unknown-pragmas", + ); + ZERO_LINK = YES; + }; + name = Development; + }; + 001B599B08BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + OTHER_CFLAGS = ""; + OTHER_LDFLAGS = ""; + OTHER_REZFLAGS = ""; + PRODUCT_NAME = "Build All"; + SECTORDER_FLAGS = ""; + WARNING_CFLAGS = ( + "-Wmost", + "-Wno-four-char-constants", + "-Wno-unknown-pragmas", + ); + }; + name = Default; + }; + 001B599D08BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testoverlay__Upgraded_.plist"; + PRODUCT_NAME = testoverlay; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 001B599E08BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testoverlay__Upgraded_.plist"; + PRODUCT_NAME = testoverlay; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 001B599F08BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testoverlay__Upgraded_.plist"; + PRODUCT_NAME = testoverlay; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 001B5A0D08BDB826006539E9 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_64_BIT_PRE_XCODE_3_1)"; + ARCHS_STANDARD_32_64_BIT_PRE_XCODE_3_1 = "x86_64 i386 ppc"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)"; + FRAMEWORK_SEARCH_PATHS = ( + "$(SRCROOT)/../SDL/build/$(CONFIGURATION)", + "$(HOME)/Library/Frameworks", + /Library/Frameworks, + ); + GCC_VERSION_i386 = 4.0; + GCC_VERSION_ppc = 4.0; + GCC_VERSION_x86_64 = 4.2; + HEADER_SEARCH_PATHS = ( + ../../include, + "$(HOME)/Library/Frameworks/SDL.framework/Headers", + /Library/Frameworks/SDL.framework/Headers, + ); + MACOSX_DEPLOYMENT_TARGET_i386 = 10.4; + MACOSX_DEPLOYMENT_TARGET_ppc = 10.4; + MACOSX_DEPLOYMENT_TARGET_x86_64 = 10.6; + WARNING_CFLAGS = "-Wmost"; + ZERO_LINK = NO; + }; + name = Deployment; + }; + 001B5A0E08BDB826006539E9 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_64_BIT_PRE_XCODE_3_1)"; + ARCHS_STANDARD_32_64_BIT_PRE_XCODE_3_1 = "x86_64 i386 ppc"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)"; + FRAMEWORK_SEARCH_PATHS = ( + "$(SRCROOT)/../SDL/build/$(CONFIGURATION)", + "$(HOME)/Library/Frameworks", + /Library/Frameworks, + ); + GCC_VERSION_i386 = 4.0; + GCC_VERSION_ppc = 4.0; + GCC_VERSION_x86_64 = 4.2; + HEADER_SEARCH_PATHS = ( + ../../include, + "$(HOME)/Library/Frameworks/SDL.framework/Headers", + /Library/Frameworks/SDL.framework/Headers, + ); + MACOSX_DEPLOYMENT_TARGET_i386 = 10.4; + MACOSX_DEPLOYMENT_TARGET_ppc = 10.4; + MACOSX_DEPLOYMENT_TARGET_x86_64 = 10.6; + WARNING_CFLAGS = "-Wmost"; + ZERO_LINK = NO; + }; + name = Development; + }; + 001B5A0F08BDB826006539E9 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_64_BIT_PRE_XCODE_3_1)"; + ARCHS_STANDARD_32_64_BIT_PRE_XCODE_3_1 = "x86_64 i386 ppc"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)"; + FRAMEWORK_SEARCH_PATHS = ( + "$(SRCROOT)/../SDL/build/$(CONFIGURATION)", + "$(HOME)/Library/Frameworks", + /Library/Frameworks, + ); + GCC_VERSION_i386 = 4.0; + GCC_VERSION_ppc = 4.0; + GCC_VERSION_x86_64 = 4.2; + HEADER_SEARCH_PATHS = ( + ../../include, + "$(HOME)/Library/Frameworks/SDL.framework/Headers", + /Library/Frameworks/SDL.framework/Headers, + ); + MACOSX_DEPLOYMENT_TARGET_i386 = 10.4; + MACOSX_DEPLOYMENT_TARGET_ppc = 10.4; + MACOSX_DEPLOYMENT_TARGET_x86_64 = 10.6; + WARNING_CFLAGS = "-Wmost"; + ZERO_LINK = NO; + }; + name = Default; + }; + 002F337E09CA14F900EBEB88 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-test.plist"; + PRODUCT_NAME = test; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 002F337F09CA14F900EBEB88 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-test.plist"; + PRODUCT_NAME = test; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 002F338009CA14F900EBEB88 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-test.plist"; + PRODUCT_NAME = test; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 002F339409CA16BF00EBEB88 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testblitspeed.plist"; + PRODUCT_NAME = testblitspeed; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 002F339509CA16BF00EBEB88 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testblitspeed.plist"; + PRODUCT_NAME = testblitspeed; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 002F339609CA16BF00EBEB88 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testblitspeed.plist"; + PRODUCT_NAME = testblitspeed; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 002F33D809CA19A600EBEB88 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(GCC_PREPROCESSOR_DEFINITIONS)", + HAVE_OPENGL, + ); + INFOPLIST_FILE = "Info-testdyngl.plist"; + PRODUCT_NAME = testdyngl; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 002F33D909CA19A600EBEB88 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(GCC_PREPROCESSOR_DEFINITIONS)", + HAVE_OPENGL, + ); + INFOPLIST_FILE = "Info-testdyngl.plist"; + PRODUCT_NAME = testdyngl; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 002F33DA09CA19A600EBEB88 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(GCC_PREPROCESSOR_DEFINITIONS)", + HAVE_OPENGL, + ); + INFOPLIST_FILE = "Info-testdyngl.plist"; + PRODUCT_NAME = testdyngl; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 002F340F09CA1BFF00EBEB88 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testfile.plist"; + PRODUCT_NAME = testfile; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 002F341009CA1BFF00EBEB88 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testfile.plist"; + PRODUCT_NAME = testfile; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 002F341109CA1BFF00EBEB88 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testfile.plist"; + PRODUCT_NAME = testfile; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 002F342E09CA1F0300EBEB88 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testiconv.plist"; + PRODUCT_NAME = testiconv; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 002F342F09CA1F0300EBEB88 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testiconv.plist"; + PRODUCT_NAME = testiconv; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 002F343009CA1F0300EBEB88 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testiconv.plist"; + PRODUCT_NAME = testiconv; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 002F344A09CA1FB300EBEB88 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testoverlay2.plist"; + PRODUCT_NAME = testoverlay2; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 002F344B09CA1FB300EBEB88 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testoverlay2.plist"; + PRODUCT_NAME = testoverlay2; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 002F344C09CA1FB300EBEB88 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testoverlay2.plist"; + PRODUCT_NAME = testoverlay2; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; + 002F346709CA204F00EBEB88 /* Deployment */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testplatform.plist"; + PRODUCT_NAME = testplatform; + WRAPPER_EXTENSION = app; + }; + name = Deployment; + }; + 002F346809CA204F00EBEB88 /* Development */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testplatform.plist"; + PRODUCT_NAME = testplatform; + WRAPPER_EXTENSION = app; + }; + name = Development; + }; + 002F346909CA204F00EBEB88 /* Default */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "Info-testplatform.plist"; + PRODUCT_NAME = testplatform; + WRAPPER_EXTENSION = app; + }; + name = Default; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 001B593408BDB826006539E9 /* Build configuration list for PBXNativeTarget "libsdlmain.a (Upgraded)" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B593508BDB826006539E9 /* Deployment */, + 001B593608BDB826006539E9 /* Development */, + 001B593708BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 001B593808BDB826006539E9 /* Build configuration list for PBXNativeTarget "checkkeys (Upgraded)" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B593908BDB826006539E9 /* Deployment */, + 001B593A08BDB826006539E9 /* Development */, + 001B593B08BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 001B593C08BDB826006539E9 /* Build configuration list for PBXNativeTarget "graywin (Upgraded)" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B593D08BDB826006539E9 /* Deployment */, + 001B593E08BDB826006539E9 /* Development */, + 001B593F08BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 001B594008BDB826006539E9 /* Build configuration list for PBXNativeTarget "loopwave (Upgraded)" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B594108BDB826006539E9 /* Deployment */, + 001B594208BDB826006539E9 /* Development */, + 001B594308BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 001B594408BDB826006539E9 /* Build configuration list for PBXNativeTarget "testalpha (Upgraded)" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B594508BDB826006539E9 /* Deployment */, + 001B594608BDB826006539E9 /* Development */, + 001B594708BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 001B594808BDB826006539E9 /* Build configuration list for PBXNativeTarget "testbitmap (Upgraded)" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B594908BDB826006539E9 /* Deployment */, + 001B594A08BDB826006539E9 /* Development */, + 001B594B08BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 001B594C08BDB826006539E9 /* Build configuration list for PBXNativeTarget "testcdrom (Upgraded)" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B594D08BDB826006539E9 /* Deployment */, + 001B594E08BDB826006539E9 /* Development */, + 001B594F08BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 001B595008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testerror (Upgraded)" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B595108BDB826006539E9 /* Deployment */, + 001B595208BDB826006539E9 /* Development */, + 001B595308BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 001B595408BDB826006539E9 /* Build configuration list for PBXNativeTarget "testgamma (Upgraded)" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B595508BDB826006539E9 /* Deployment */, + 001B595608BDB826006539E9 /* Development */, + 001B595708BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 001B595808BDB826006539E9 /* Build configuration list for PBXNativeTarget "testgl (Upgraded)" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B595908BDB826006539E9 /* Deployment */, + 001B595A08BDB826006539E9 /* Development */, + 001B595B08BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 001B595C08BDB826006539E9 /* Build configuration list for PBXNativeTarget "testthread (Upgraded)" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B595D08BDB826006539E9 /* Deployment */, + 001B595E08BDB826006539E9 /* Development */, + 001B595F08BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 001B596008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testjoystick (Upgraded)" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B596108BDB826006539E9 /* Deployment */, + 001B596208BDB826006539E9 /* Development */, + 001B596308BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 001B596408BDB826006539E9 /* Build configuration list for PBXNativeTarget "testkeys (Upgraded)" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B596508BDB826006539E9 /* Deployment */, + 001B596608BDB826006539E9 /* Development */, + 001B596708BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 001B596808BDB826006539E9 /* Build configuration list for PBXNativeTarget "testlock (Upgraded)" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B596908BDB826006539E9 /* Deployment */, + 001B596A08BDB826006539E9 /* Development */, + 001B596B08BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 001B596C08BDB826006539E9 /* Build configuration list for PBXNativeTarget "testpalette (Upgraded)" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B596D08BDB826006539E9 /* Deployment */, + 001B596E08BDB826006539E9 /* Development */, + 001B596F08BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 001B597008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testsem (Upgraded)" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B597108BDB826006539E9 /* Deployment */, + 001B597208BDB826006539E9 /* Development */, + 001B597308BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 001B597408BDB826006539E9 /* Build configuration list for PBXNativeTarget "testsprite (Upgraded)" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B597508BDB826006539E9 /* Deployment */, + 001B597608BDB826006539E9 /* Development */, + 001B597708BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 001B597808BDB826006539E9 /* Build configuration list for PBXNativeTarget "testtimer (Upgraded)" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B597908BDB826006539E9 /* Deployment */, + 001B597A08BDB826006539E9 /* Development */, + 001B597B08BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 001B598008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testversion (Upgraded)" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B598108BDB826006539E9 /* Deployment */, + 001B598208BDB826006539E9 /* Development */, + 001B598308BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 001B598408BDB826006539E9 /* Build configuration list for PBXNativeTarget "testvidinfo (Upgraded)" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B598508BDB826006539E9 /* Deployment */, + 001B598608BDB826006539E9 /* Development */, + 001B598708BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 001B598808BDB826006539E9 /* Build configuration list for PBXNativeTarget "testwin (Upgraded)" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B598908BDB826006539E9 /* Deployment */, + 001B598A08BDB826006539E9 /* Development */, + 001B598B08BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 001B598C08BDB826006539E9 /* Build configuration list for PBXNativeTarget "testwm (Upgraded)" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B598D08BDB826006539E9 /* Deployment */, + 001B598E08BDB826006539E9 /* Development */, + 001B598F08BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 001B599008BDB826006539E9 /* Build configuration list for PBXNativeTarget "threadwin (Upgraded)" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B599108BDB826006539E9 /* Deployment */, + 001B599208BDB826006539E9 /* Development */, + 001B599308BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 001B599408BDB826006539E9 /* Build configuration list for PBXNativeTarget "torturethread (Upgraded)" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B599508BDB826006539E9 /* Deployment */, + 001B599608BDB826006539E9 /* Development */, + 001B599708BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 001B599808BDB826006539E9 /* Build configuration list for PBXAggregateTarget "All" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B599908BDB826006539E9 /* Deployment */, + 001B599A08BDB826006539E9 /* Development */, + 001B599B08BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 001B599C08BDB826006539E9 /* Build configuration list for PBXNativeTarget "testoverlay (Upgraded)" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B599D08BDB826006539E9 /* Deployment */, + 001B599E08BDB826006539E9 /* Development */, + 001B599F08BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 001B5A0C08BDB826006539E9 /* Build configuration list for PBXProject "SDLTest" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001B5A0D08BDB826006539E9 /* Deployment */, + 001B5A0E08BDB826006539E9 /* Development */, + 001B5A0F08BDB826006539E9 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 002F337D09CA14F900EBEB88 /* Build configuration list for PBXNativeTarget "test" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 002F337E09CA14F900EBEB88 /* Deployment */, + 002F337F09CA14F900EBEB88 /* Development */, + 002F338009CA14F900EBEB88 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 002F339309CA16BF00EBEB88 /* Build configuration list for PBXNativeTarget "testblitspeed" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 002F339409CA16BF00EBEB88 /* Deployment */, + 002F339509CA16BF00EBEB88 /* Development */, + 002F339609CA16BF00EBEB88 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 002F33D709CA19A600EBEB88 /* Build configuration list for PBXNativeTarget "testdyngl" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 002F33D809CA19A600EBEB88 /* Deployment */, + 002F33D909CA19A600EBEB88 /* Development */, + 002F33DA09CA19A600EBEB88 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 002F340E09CA1BFF00EBEB88 /* Build configuration list for PBXNativeTarget "testfile" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 002F340F09CA1BFF00EBEB88 /* Deployment */, + 002F341009CA1BFF00EBEB88 /* Development */, + 002F341109CA1BFF00EBEB88 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 002F342D09CA1F0300EBEB88 /* Build configuration list for PBXNativeTarget "testiconv" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 002F342E09CA1F0300EBEB88 /* Deployment */, + 002F342F09CA1F0300EBEB88 /* Development */, + 002F343009CA1F0300EBEB88 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 002F344909CA1FB300EBEB88 /* Build configuration list for PBXNativeTarget "testoverlay2" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 002F344A09CA1FB300EBEB88 /* Deployment */, + 002F344B09CA1FB300EBEB88 /* Development */, + 002F344C09CA1FB300EBEB88 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; + 002F346609CA204F00EBEB88 /* Build configuration list for PBXNativeTarget "testplatform" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 002F346709CA204F00EBEB88 /* Deployment */, + 002F346809CA204F00EBEB88 /* Development */, + 002F346909CA204F00EBEB88 /* Default */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Default; + }; +/* End XCConfigurationList section */ + }; + rootObject = 08FB7793FE84155DC02AAC07 /* Project object */; +} diff --git a/Xcode/SDLTest/libsdlmain_prefix.h b/Xcode/SDLTest/libsdlmain_prefix.h new file mode 100644 index 000000000..ed41c9744 --- /dev/null +++ b/Xcode/SDLTest/libsdlmain_prefix.h @@ -0,0 +1,13 @@ +/* + * libsdlmain_prefix.h + * SDLTest + * + * Created by Darrell Walisser on Wed Aug 06 2003. + * Copyright (c) 2003 __MyCompanyName__. All rights reserved. + * + */ + +#include +#include +#include "SDL.h" +#include "SDLMain.h" \ No newline at end of file diff --git a/Xcode/TemplatesForXcodeLeopard/SDL Application/English.lproj/InfoPlist.strings b/Xcode/TemplatesForXcodeLeopard/SDL Application/English.lproj/InfoPlist.strings new file mode 100644 index 000000000..6e721b0ef Binary files /dev/null and b/Xcode/TemplatesForXcodeLeopard/SDL Application/English.lproj/InfoPlist.strings differ diff --git a/Xcode/TemplatesForXcodeLeopard/SDL Application/Info.plist b/Xcode/TemplatesForXcodeLeopard/SDL Application/Info.plist new file mode 100644 index 000000000..e4332041b --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL Application/Info.plist @@ -0,0 +1,37 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIconFile + + CFBundleIdentifier + com.yourcompany.___PROJECTNAMEASXML___ + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + APPL + CFBundleSignature + ???? + CFBundleVersion + 1.0 + NSMainNibFile + SDLMain + NSPrincipalClass + NSApplication + LSMinimumSystemVersionByArchitecture + + x86_64 + 10.6.0 + i386 + 10.4.0 + ppc + 10.4.0 + + + diff --git a/Xcode/TemplatesForXcodeLeopard/SDL Application/SDLMain.h b/Xcode/TemplatesForXcodeLeopard/SDL Application/SDLMain.h new file mode 100644 index 000000000..c56d90cbe --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL Application/SDLMain.h @@ -0,0 +1,16 @@ +/* SDLMain.m - main entry point for our Cocoa-ized SDL app + Initial Version: Darrell Walisser + Non-NIB-Code & other changes: Max Horn + + Feel free to customize this file to suit your needs +*/ + +#ifndef _SDLMain_h_ +#define _SDLMain_h_ + +#import + +@interface SDLMain : NSObject +@end + +#endif /* _SDLMain_h_ */ diff --git a/Xcode/TemplatesForXcodeLeopard/SDL Application/SDLMain.m b/Xcode/TemplatesForXcodeLeopard/SDL Application/SDLMain.m new file mode 100644 index 000000000..b065a2009 --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL Application/SDLMain.m @@ -0,0 +1,383 @@ +/* SDLMain.m - main entry point for our Cocoa-ized SDL app + Initial Version: Darrell Walisser + Non-NIB-Code & other changes: Max Horn + + Feel free to customize this file to suit your needs +*/ + +#include "SDL.h" +#include "SDLMain.h" +#include /* for MAXPATHLEN */ +#include + +/* For some reaon, Apple removed setAppleMenu from the headers in 10.4, + but the method still is there and works. To avoid warnings, we declare + it ourselves here. */ +@interface NSApplication(SDL_Missing_Methods) +- (void)setAppleMenu:(NSMenu *)menu; +@end + +/* Use this flag to determine whether we use SDLMain.nib or not */ +#define SDL_USE_NIB_FILE 0 + +/* Use this flag to determine whether we use CPS (docking) or not */ +#define SDL_USE_CPS 1 +#ifdef SDL_USE_CPS +/* Portions of CPS.h */ +typedef struct CPSProcessSerNum +{ + UInt32 lo; + UInt32 hi; +} CPSProcessSerNum; + +extern OSErr CPSGetCurrentProcess( CPSProcessSerNum *psn); +extern OSErr CPSEnableForegroundOperation( CPSProcessSerNum *psn, UInt32 _arg2, UInt32 _arg3, UInt32 _arg4, UInt32 _arg5); +extern OSErr CPSSetFrontProcess( CPSProcessSerNum *psn); + +#endif /* SDL_USE_CPS */ + +static int gArgc; +static char **gArgv; +static BOOL gFinderLaunch; +static BOOL gCalledAppMainline = FALSE; + +static NSString *getApplicationName(void) +{ + const NSDictionary *dict; + NSString *appName = 0; + + /* Determine the application name */ + dict = (const NSDictionary *)CFBundleGetInfoDictionary(CFBundleGetMainBundle()); + if (dict) + appName = [dict objectForKey: @"CFBundleName"]; + + if (![appName length]) + appName = [[NSProcessInfo processInfo] processName]; + + return appName; +} + +#if SDL_USE_NIB_FILE +/* A helper category for NSString */ +@interface NSString (ReplaceSubString) +- (NSString *)stringByReplacingRange:(NSRange)aRange with:(NSString *)aString; +@end +#endif + +@interface SDLApplication : NSApplication +@end + +@implementation SDLApplication +/* Invoked from the Quit menu item */ +- (void)terminate:(id)sender +{ + /* Post a SDL_QUIT event */ + SDL_Event event; + event.type = SDL_QUIT; + SDL_PushEvent(&event); +} +@end + +/* The main class of the application, the application's delegate */ +@implementation SDLMain + +/* Set the working directory to the .app's parent directory */ +- (void) setupWorkingDirectory:(BOOL)shouldChdir +{ + if (shouldChdir) + { + char parentdir[MAXPATHLEN]; + CFURLRef url = CFBundleCopyBundleURL(CFBundleGetMainBundle()); + CFURLRef url2 = CFURLCreateCopyDeletingLastPathComponent(0, url); + if (CFURLGetFileSystemRepresentation(url2, 1, (UInt8 *)parentdir, MAXPATHLEN)) { + chdir(parentdir); /* chdir to the binary app's parent */ + } + CFRelease(url); + CFRelease(url2); + } +} + +#if SDL_USE_NIB_FILE + +/* Fix menu to contain the real app name instead of "SDL App" */ +- (void)fixMenu:(NSMenu *)aMenu withAppName:(NSString *)appName +{ + NSRange aRange; + NSEnumerator *enumerator; + NSMenuItem *menuItem; + + aRange = [[aMenu title] rangeOfString:@"SDL App"]; + if (aRange.length != 0) + [aMenu setTitle: [[aMenu title] stringByReplacingRange:aRange with:appName]]; + + enumerator = [[aMenu itemArray] objectEnumerator]; + while ((menuItem = [enumerator nextObject])) + { + aRange = [[menuItem title] rangeOfString:@"SDL App"]; + if (aRange.length != 0) + [menuItem setTitle: [[menuItem title] stringByReplacingRange:aRange with:appName]]; + if ([menuItem hasSubmenu]) + [self fixMenu:[menuItem submenu] withAppName:appName]; + } + [ aMenu sizeToFit ]; +} + +#else + +static void setApplicationMenu(void) +{ + /* warning: this code is very odd */ + NSMenu *appleMenu; + NSMenuItem *menuItem; + NSString *title; + NSString *appName; + + appName = getApplicationName(); + appleMenu = [[NSMenu alloc] initWithTitle:@""]; + + /* Add menu items */ + title = [@"About " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""]; + + [appleMenu addItem:[NSMenuItem separatorItem]]; + + title = [@"Hide " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(hide:) keyEquivalent:@"h"]; + + menuItem = (NSMenuItem *)[appleMenu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"]; + [menuItem setKeyEquivalentModifierMask:(NSAlternateKeyMask|NSCommandKeyMask)]; + + [appleMenu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""]; + + [appleMenu addItem:[NSMenuItem separatorItem]]; + + title = [@"Quit " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(terminate:) keyEquivalent:@"q"]; + + + /* Put menu into the menubar */ + menuItem = [[NSMenuItem alloc] initWithTitle:@"" action:nil keyEquivalent:@""]; + [menuItem setSubmenu:appleMenu]; + [[NSApp mainMenu] addItem:menuItem]; + + /* Tell the application object that this is now the application menu */ + [NSApp setAppleMenu:appleMenu]; + + /* Finally give up our references to the objects */ + [appleMenu release]; + [menuItem release]; +} + +/* Create a window menu */ +static void setupWindowMenu(void) +{ + NSMenu *windowMenu; + NSMenuItem *windowMenuItem; + NSMenuItem *menuItem; + + windowMenu = [[NSMenu alloc] initWithTitle:@"Window"]; + + /* "Minimize" item */ + menuItem = [[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"]; + [windowMenu addItem:menuItem]; + [menuItem release]; + + /* Put menu into the menubar */ + windowMenuItem = [[NSMenuItem alloc] initWithTitle:@"Window" action:nil keyEquivalent:@""]; + [windowMenuItem setSubmenu:windowMenu]; + [[NSApp mainMenu] addItem:windowMenuItem]; + + /* Tell the application object that this is now the window menu */ + [NSApp setWindowsMenu:windowMenu]; + + /* Finally give up our references to the objects */ + [windowMenu release]; + [windowMenuItem release]; +} + +/* Replacement for NSApplicationMain */ +static void CustomApplicationMain (int argc, char **argv) +{ + NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; + SDLMain *sdlMain; + + /* Ensure the application object is initialised */ + [SDLApplication sharedApplication]; + +#ifdef SDL_USE_CPS + { + CPSProcessSerNum PSN; + /* Tell the dock about us */ + if (!CPSGetCurrentProcess(&PSN)) + if (!CPSEnableForegroundOperation(&PSN,0x03,0x3C,0x2C,0x1103)) + if (!CPSSetFrontProcess(&PSN)) + [SDLApplication sharedApplication]; + } +#endif /* SDL_USE_CPS */ + + /* Set up the menubar */ + [NSApp setMainMenu:[[NSMenu alloc] init]]; + setApplicationMenu(); + setupWindowMenu(); + + /* Create SDLMain and make it the app delegate */ + sdlMain = [[SDLMain alloc] init]; + [NSApp setDelegate:sdlMain]; + + /* Start the main event loop */ + [NSApp run]; + + [sdlMain release]; + [pool release]; +} + +#endif + + +/* + * Catch document open requests...this lets us notice files when the app + * was launched by double-clicking a document, or when a document was + * dragged/dropped on the app's icon. You need to have a + * CFBundleDocumentsType section in your Info.plist to get this message, + * apparently. + * + * Files are added to gArgv, so to the app, they'll look like command line + * arguments. Previously, apps launched from the finder had nothing but + * an argv[0]. + * + * This message may be received multiple times to open several docs on launch. + * + * This message is ignored once the app's mainline has been called. + */ +- (BOOL)application:(NSApplication *)theApplication openFile:(NSString *)filename +{ + const char *temparg; + size_t arglen; + char *arg; + char **newargv; + + if (!gFinderLaunch) /* MacOS is passing command line args. */ + return FALSE; + + if (gCalledAppMainline) /* app has started, ignore this document. */ + return FALSE; + + temparg = [filename UTF8String]; + arglen = SDL_strlen(temparg) + 1; + arg = (char *) SDL_malloc(arglen); + if (arg == NULL) + return FALSE; + + newargv = (char **) realloc(gArgv, sizeof (char *) * (gArgc + 2)); + if (newargv == NULL) + { + SDL_free(arg); + return FALSE; + } + gArgv = newargv; + + SDL_strlcpy(arg, temparg, arglen); + gArgv[gArgc++] = arg; + gArgv[gArgc] = NULL; + return TRUE; +} + + +/* Called when the internal event loop has just started running */ +- (void) applicationDidFinishLaunching: (NSNotification *) note +{ + int status; + + /* Set the working directory to the .app's parent directory */ + [self setupWorkingDirectory:gFinderLaunch]; + +#if SDL_USE_NIB_FILE + /* Set the main menu to contain the real app name instead of "SDL App" */ + [self fixMenu:[NSApp mainMenu] withAppName:getApplicationName()]; +#endif + + /* Hand off to main application code */ + gCalledAppMainline = TRUE; + status = SDL_main (gArgc, gArgv); + + /* We're done, thank you for playing */ + exit(status); +} +@end + + +@implementation NSString (ReplaceSubString) + +- (NSString *)stringByReplacingRange:(NSRange)aRange with:(NSString *)aString +{ + unsigned int bufferSize; + unsigned int selfLen = [self length]; + unsigned int aStringLen = [aString length]; + unichar *buffer; + NSRange localRange; + NSString *result; + + bufferSize = selfLen + aStringLen - aRange.length; + buffer = (unichar *)NSAllocateMemoryPages(bufferSize*sizeof(unichar)); + + /* Get first part into buffer */ + localRange.location = 0; + localRange.length = aRange.location; + [self getCharacters:buffer range:localRange]; + + /* Get middle part into buffer */ + localRange.location = 0; + localRange.length = aStringLen; + [aString getCharacters:(buffer+aRange.location) range:localRange]; + + /* Get last part into buffer */ + localRange.location = aRange.location + aRange.length; + localRange.length = selfLen - localRange.location; + [self getCharacters:(buffer+aRange.location+aStringLen) range:localRange]; + + /* Build output string */ + result = [NSString stringWithCharacters:buffer length:bufferSize]; + + NSDeallocateMemoryPages(buffer, bufferSize); + + return result; +} + +@end + + + +#ifdef main +# undef main +#endif + + +/* Main entry point to executable - should *not* be SDL_main! */ +int main (int argc, char **argv) +{ + /* Copy the arguments into a global variable */ + /* This is passed if we are launched by double-clicking */ + if ( argc >= 2 && strncmp (argv[1], "-psn", 4) == 0 ) { + gArgv = (char **) SDL_malloc(sizeof (char *) * 2); + gArgv[0] = argv[0]; + gArgv[1] = NULL; + gArgc = 1; + gFinderLaunch = YES; + } else { + int i; + gArgc = argc; + gArgv = (char **) SDL_malloc(sizeof (char *) * (argc+1)); + for (i = 0; i <= argc; i++) + gArgv[i] = argv[i]; + gFinderLaunch = NO; + } + +#if SDL_USE_NIB_FILE + [SDLApplication poseAsClass:[NSApplication class]]; + NSApplicationMain (argc, argv); +#else + CustomApplicationMain (argc, argv); +#endif + return 0; +} + diff --git a/Xcode/TemplatesForXcodeLeopard/SDL Application/___PROJECTNAMEASIDENTIFIER____Prefix.pch b/Xcode/TemplatesForXcodeLeopard/SDL Application/___PROJECTNAMEASIDENTIFIER____Prefix.pch new file mode 100644 index 000000000..00095074a --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL Application/___PROJECTNAMEASIDENTIFIER____Prefix.pch @@ -0,0 +1,9 @@ +// +// Prefix header for all source files of the 'ÇPROJECTNAMEÈ' target in the 'ÇPROJECTNAMEÈ' project +// + +#include "SDL.h" + +#ifdef __OBJC__ + #import +#endif diff --git a/Xcode/TemplatesForXcodeLeopard/SDL Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns b/Xcode/TemplatesForXcodeLeopard/SDL Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns new file mode 100644 index 000000000..ae0b02b12 Binary files /dev/null and b/Xcode/TemplatesForXcodeLeopard/SDL Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns differ diff --git a/Xcode/TemplatesForXcodeLeopard/SDL Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist b/Xcode/TemplatesForXcodeLeopard/SDL Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist new file mode 100644 index 000000000..d9ca45493 --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist @@ -0,0 +1,12 @@ +{ + FilesToRename = { + "SDLApp_Prefix.pch" = "ÇPROJECTNAMEÈ_Prefix.pch"; + }; + FilesToMacroExpand = ( + "ÇPROJECTNAMEÈ_Prefix.pch", + "Info.plist", + "English.lproj/InfoPlist.strings", + "main.c", + ); + Description = "This project builds an SDL-based application."; +} diff --git a/Xcode/TemplatesForXcodeLeopard/SDL Application/___PROJECTNAME___.xcodeproj/project.pbxproj b/Xcode/TemplatesForXcodeLeopard/SDL Application/___PROJECTNAME___.xcodeproj/project.pbxproj new file mode 100644 index 000000000..0cff0a338 --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL Application/___PROJECTNAME___.xcodeproj/project.pbxproj @@ -0,0 +1,308 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 42; + objects = { + +/* Begin PBXBuildFile section */ + 002F39FA09D0881F00EBEB88 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F39F909D0881F00EBEB88 /* SDL.framework */; }; + 002F3A0009D0884600EBEB88 /* SDL.framework in Copy Frameworks into .app bundle */ = {isa = PBXBuildFile; fileRef = 002F39F909D0881F00EBEB88 /* SDL.framework */; }; + 002F3A2E09D0888800EBEB88 /* SDLMain.m in Sources */ = {isa = PBXBuildFile; fileRef = 002F3A2C09D0888800EBEB88 /* SDLMain.m */; }; + 002F3A3F09D088BA00EBEB88 /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F3A3E09D088BA00EBEB88 /* main.c */; }; + 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; }; + 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 002F39FD09D0883400EBEB88 /* Copy Frameworks into .app bundle */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + 002F3A0009D0884600EBEB88 /* SDL.framework in Copy Frameworks into .app bundle */, + ); + name = "Copy Frameworks into .app bundle"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 002F39F909D0881F00EBEB88 /* SDL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL.framework; path = /Library/Frameworks/SDL.framework; sourceTree = ""; }; + 002F3A2B09D0888800EBEB88 /* SDLMain.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDLMain.h; sourceTree = SOURCE_ROOT; }; + 002F3A2C09D0888800EBEB88 /* SDLMain.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = SDLMain.m; sourceTree = SOURCE_ROOT; }; + 002F3A3E09D088BA00EBEB88 /* main.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = main.c; sourceTree = SOURCE_ROOT; }; + 089C165DFE840E0CC02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = ""; }; + 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = ""; }; + 29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = ""; }; + 29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = ""; }; + 32CA4F630368D1EE00C91783 /* ___PROJECTNAME____Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "___PROJECTNAME____Prefix.pch"; sourceTree = ""; }; + 8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + 8D1107320486CEB800E47090 /* ___PROJECTNAME___.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "___PROJECTNAME___.app"; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 8D11072E0486CEB800E47090 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F39FA09D0881F00EBEB88 /* SDL.framework in Frameworks */, + 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 080E96DDFE201D6D7F000001 /* Classes */ = { + isa = PBXGroup; + children = ( + 002F3A2B09D0888800EBEB88 /* SDLMain.h */, + 002F3A2C09D0888800EBEB88 /* SDLMain.m */, + ); + name = Classes; + sourceTree = ""; + }; + 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */ = { + isa = PBXGroup; + children = ( + 002F39F909D0881F00EBEB88 /* SDL.framework */, + 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */, + ); + name = "Linked Frameworks"; + sourceTree = ""; + }; + 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */ = { + isa = PBXGroup; + children = ( + 29B97324FDCFA39411CA2CEA /* AppKit.framework */, + 29B97325FDCFA39411CA2CEA /* Foundation.framework */, + ); + name = "Other Frameworks"; + sourceTree = ""; + }; + 19C28FACFE9D520D11CA2CBB /* Products */ = { + isa = PBXGroup; + children = ( + 8D1107320486CEB800E47090 /* ___PROJECTNAME___.app */, + ); + name = Products; + sourceTree = ""; + }; + 29B97314FDCFA39411CA2CEA /* ___PROJECTNAMEASXML___ */ = { + isa = PBXGroup; + children = ( + 080E96DDFE201D6D7F000001 /* Classes */, + 29B97315FDCFA39411CA2CEA /* Other Sources */, + 29B97317FDCFA39411CA2CEA /* Resources */, + 29B97323FDCFA39411CA2CEA /* Frameworks */, + 19C28FACFE9D520D11CA2CBB /* Products */, + ); + name = "___PROJECTNAMEASXML___"; + sourceTree = ""; + }; + 29B97315FDCFA39411CA2CEA /* Other Sources */ = { + isa = PBXGroup; + children = ( + 32CA4F630368D1EE00C91783 /* ___PROJECTNAME____Prefix.pch */, + 002F3A3E09D088BA00EBEB88 /* main.c */, + ); + name = "Other Sources"; + sourceTree = ""; + }; + 29B97317FDCFA39411CA2CEA /* Resources */ = { + isa = PBXGroup; + children = ( + 8D1107310486CEB800E47090 /* Info.plist */, + 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */, + ); + name = Resources; + sourceTree = ""; + }; + 29B97323FDCFA39411CA2CEA /* Frameworks */ = { + isa = PBXGroup; + children = ( + 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */, + 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */, + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 8D1107260486CEB800E47090 /* ___PROJECTNAME___ */ = { + isa = PBXNativeTarget; + buildConfigurationList = C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "___PROJECTNAME___" */; + buildPhases = ( + 8D1107290486CEB800E47090 /* Resources */, + 8D11072C0486CEB800E47090 /* Sources */, + 8D11072E0486CEB800E47090 /* Frameworks */, + 002F39FD09D0883400EBEB88 /* Copy Frameworks into .app bundle */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "___PROJECTNAME___"; + productInstallPath = "$(HOME)/Applications"; + productName = "___PROJECTNAME___"; + productReference = 8D1107320486CEB800E47090 /* ___PROJECTNAME___.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 29B97313FDCFA39411CA2CEA /* Project object */ = { + isa = PBXProject; + buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "___PROJECTNAME___" */; + compatibilityVersion = "Xcode 2.4"; + hasScannedForEncodings = 1; + mainGroup = 29B97314FDCFA39411CA2CEA /* ___PROJECTNAMEASXML___ */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 8D1107260486CEB800E47090 /* ___PROJECTNAME___ */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 8D1107290486CEB800E47090 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 8D11072C0486CEB800E47090 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F3A2E09D0888800EBEB88 /* SDLMain.m in Sources */, + 002F3A3F09D088BA00EBEB88 /* main.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXVariantGroup section */ + 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + 089C165DFE840E0CC02AAC07 /* English */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + C01FCF4B08A954540054247B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_FIX_AND_CONTINUE = YES; + GCC_MODEL_TUNING = G5; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "___PROJECTNAMEASIDENTIFIER____Prefix.pch"; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(HOME)/Applications"; + PRODUCT_NAME = "___PROJECTNAME___"; + WRAPPER_EXTENSION = app; + }; + name = Debug; + }; + C01FCF4C08A954540054247B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + GCC_MODEL_TUNING = G5; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "___PROJECTNAMEASIDENTIFIER____Prefix.pch"; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(HOME)/Applications"; + PRODUCT_NAME = "___PROJECTNAME___"; + WRAPPER_EXTENSION = app; + }; + name = Release; + }; + C01FCF4F08A954540054247B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; + ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; + FRAMEWORK_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks", + /Library/Frameworks, + "$(FRAMEWORK_SEARCH_PATHS)", + ); + GCC_VERSION = 4.0; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks/SDL.framework/Headers", + /Library/Frameworks/SDL.framework/Headers, + "$(HEADER_SEARCH_PATHS)", + ); + PREBINDING = NO; + SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; + }; + name = Debug; + }; + C01FCF5008A954540054247B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; + ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; + FRAMEWORK_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks", + /Library/Frameworks, + "$(FRAMEWORK_SEARCH_PATHS)", + ); + GCC_VERSION = 4.0; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks/SDL.framework/Headers", + /Library/Frameworks/SDL.framework/Headers, + "$(HEADER_SEARCH_PATHS)", + ); + PREBINDING = NO; + SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "___PROJECTNAME___" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01FCF4B08A954540054247B /* Debug */, + C01FCF4C08A954540054247B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + C01FCF4E08A954540054247B /* Build configuration list for PBXProject "___PROJECTNAME___" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01FCF4F08A954540054247B /* Debug */, + C01FCF5008A954540054247B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 29B97313FDCFA39411CA2CEA /* Project object */; +} diff --git a/Xcode/TemplatesForXcodeLeopard/SDL Application/main.c b/Xcode/TemplatesForXcodeLeopard/SDL Application/main.c new file mode 100644 index 000000000..7115de989 --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL Application/main.c @@ -0,0 +1,65 @@ + +/* Simple program: Create a blank window, wait for keypress, quit. + + Please see the SDL documentation for details on using the SDL API: + /Developer/Documentation/SDL/docs.html +*/ + +#include +#include +#include +#include + +#include "SDL.h" + +int main(int argc, char *argv[]) +{ + Uint32 initflags = SDL_INIT_VIDEO; /* See documentation for details */ + SDL_Surface *screen; + Uint8 video_bpp = 0; + Uint32 videoflags = SDL_SWSURFACE; + int done; + SDL_Event event; + + /* Initialize the SDL library */ + if ( SDL_Init(initflags) < 0 ) { + fprintf(stderr, "Couldn't initialize SDL: %s\n", + SDL_GetError()); + exit(1); + } + + /* Set 640x480 video mode */ + screen=SDL_SetVideoMode(640,480, video_bpp, videoflags); + if (screen == NULL) { + fprintf(stderr, "Couldn't set 640x480x%d video mode: %s\n", + video_bpp, SDL_GetError()); + SDL_Quit(); + exit(2); + } + + done = 0; + while ( !done ) { + + /* Check for events */ + while ( SDL_PollEvent(&event) ) { + switch (event.type) { + + case SDL_MOUSEMOTION: + break; + case SDL_MOUSEBUTTONDOWN: + break; + case SDL_KEYDOWN: + /* Any keypress quits the app... */ + case SDL_QUIT: + done = 1; + break; + default: + break; + } + } + } + + /* Clean up the SDL library */ + SDL_Quit(); + return(0); +} diff --git a/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/English.lproj/InfoPlist.strings b/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/English.lproj/InfoPlist.strings new file mode 100644 index 000000000..6e721b0ef Binary files /dev/null and b/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/English.lproj/InfoPlist.strings differ diff --git a/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/English.lproj/SDLMain.nib/classes.nib b/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/English.lproj/SDLMain.nib/classes.nib new file mode 100644 index 000000000..799eaaddd --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/English.lproj/SDLMain.nib/classes.nib @@ -0,0 +1,19 @@ +{ + IBClasses = ( + {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; }, + { + ACTIONS = { + help = id; + newGame = id; + openGame = id; + prefsMenu = id; + saveGame = id; + saveGameAs = id; + }; + CLASS = SDLMain; + LANGUAGE = ObjC; + SUPERCLASS = NSObject; + } + ); + IBVersion = 1; +} \ No newline at end of file diff --git a/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/English.lproj/SDLMain.nib/info.nib b/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/English.lproj/SDLMain.nib/info.nib new file mode 100644 index 000000000..1d6fb7e01 --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/English.lproj/SDLMain.nib/info.nib @@ -0,0 +1,21 @@ + + + + + IBDocumentLocation + 62 117 356 240 0 0 1152 848 + IBEditorPositions + + 29 + 62 362 195 44 0 0 1152 848 + + IBFramework Version + 291.0 + IBOpenObjects + + 29 + + IBSystem Version + 6L60 + + diff --git a/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/English.lproj/SDLMain.nib/objects.nib b/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/English.lproj/SDLMain.nib/objects.nib new file mode 100644 index 000000000..637801528 Binary files /dev/null and b/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/English.lproj/SDLMain.nib/objects.nib differ diff --git a/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/Info.plist b/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/Info.plist new file mode 100644 index 000000000..40a970f97 --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/Info.plist @@ -0,0 +1,37 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIconFile + + CFBundleIdentifier + com.yourcompany.___PROJECTNAMEASXML___ + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + APPL + CFBundleSignature + ???? + CFBundleVersion + 1.0 + NSMainNibFile + SDLMain + NSPrincipalClass + NSApplication + LSMinimumSystemVersionByArchitecture + + x86_64 + 10.6.0 + i386 + 10.4.0 + ppc + 10.4.0 + + + diff --git a/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/SDLMain.h b/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/SDLMain.h new file mode 100644 index 000000000..c56d90cbe --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/SDLMain.h @@ -0,0 +1,16 @@ +/* SDLMain.m - main entry point for our Cocoa-ized SDL app + Initial Version: Darrell Walisser + Non-NIB-Code & other changes: Max Horn + + Feel free to customize this file to suit your needs +*/ + +#ifndef _SDLMain_h_ +#define _SDLMain_h_ + +#import + +@interface SDLMain : NSObject +@end + +#endif /* _SDLMain_h_ */ diff --git a/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/SDLMain.m b/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/SDLMain.m new file mode 100644 index 000000000..b065a2009 --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/SDLMain.m @@ -0,0 +1,383 @@ +/* SDLMain.m - main entry point for our Cocoa-ized SDL app + Initial Version: Darrell Walisser + Non-NIB-Code & other changes: Max Horn + + Feel free to customize this file to suit your needs +*/ + +#include "SDL.h" +#include "SDLMain.h" +#include /* for MAXPATHLEN */ +#include + +/* For some reaon, Apple removed setAppleMenu from the headers in 10.4, + but the method still is there and works. To avoid warnings, we declare + it ourselves here. */ +@interface NSApplication(SDL_Missing_Methods) +- (void)setAppleMenu:(NSMenu *)menu; +@end + +/* Use this flag to determine whether we use SDLMain.nib or not */ +#define SDL_USE_NIB_FILE 0 + +/* Use this flag to determine whether we use CPS (docking) or not */ +#define SDL_USE_CPS 1 +#ifdef SDL_USE_CPS +/* Portions of CPS.h */ +typedef struct CPSProcessSerNum +{ + UInt32 lo; + UInt32 hi; +} CPSProcessSerNum; + +extern OSErr CPSGetCurrentProcess( CPSProcessSerNum *psn); +extern OSErr CPSEnableForegroundOperation( CPSProcessSerNum *psn, UInt32 _arg2, UInt32 _arg3, UInt32 _arg4, UInt32 _arg5); +extern OSErr CPSSetFrontProcess( CPSProcessSerNum *psn); + +#endif /* SDL_USE_CPS */ + +static int gArgc; +static char **gArgv; +static BOOL gFinderLaunch; +static BOOL gCalledAppMainline = FALSE; + +static NSString *getApplicationName(void) +{ + const NSDictionary *dict; + NSString *appName = 0; + + /* Determine the application name */ + dict = (const NSDictionary *)CFBundleGetInfoDictionary(CFBundleGetMainBundle()); + if (dict) + appName = [dict objectForKey: @"CFBundleName"]; + + if (![appName length]) + appName = [[NSProcessInfo processInfo] processName]; + + return appName; +} + +#if SDL_USE_NIB_FILE +/* A helper category for NSString */ +@interface NSString (ReplaceSubString) +- (NSString *)stringByReplacingRange:(NSRange)aRange with:(NSString *)aString; +@end +#endif + +@interface SDLApplication : NSApplication +@end + +@implementation SDLApplication +/* Invoked from the Quit menu item */ +- (void)terminate:(id)sender +{ + /* Post a SDL_QUIT event */ + SDL_Event event; + event.type = SDL_QUIT; + SDL_PushEvent(&event); +} +@end + +/* The main class of the application, the application's delegate */ +@implementation SDLMain + +/* Set the working directory to the .app's parent directory */ +- (void) setupWorkingDirectory:(BOOL)shouldChdir +{ + if (shouldChdir) + { + char parentdir[MAXPATHLEN]; + CFURLRef url = CFBundleCopyBundleURL(CFBundleGetMainBundle()); + CFURLRef url2 = CFURLCreateCopyDeletingLastPathComponent(0, url); + if (CFURLGetFileSystemRepresentation(url2, 1, (UInt8 *)parentdir, MAXPATHLEN)) { + chdir(parentdir); /* chdir to the binary app's parent */ + } + CFRelease(url); + CFRelease(url2); + } +} + +#if SDL_USE_NIB_FILE + +/* Fix menu to contain the real app name instead of "SDL App" */ +- (void)fixMenu:(NSMenu *)aMenu withAppName:(NSString *)appName +{ + NSRange aRange; + NSEnumerator *enumerator; + NSMenuItem *menuItem; + + aRange = [[aMenu title] rangeOfString:@"SDL App"]; + if (aRange.length != 0) + [aMenu setTitle: [[aMenu title] stringByReplacingRange:aRange with:appName]]; + + enumerator = [[aMenu itemArray] objectEnumerator]; + while ((menuItem = [enumerator nextObject])) + { + aRange = [[menuItem title] rangeOfString:@"SDL App"]; + if (aRange.length != 0) + [menuItem setTitle: [[menuItem title] stringByReplacingRange:aRange with:appName]]; + if ([menuItem hasSubmenu]) + [self fixMenu:[menuItem submenu] withAppName:appName]; + } + [ aMenu sizeToFit ]; +} + +#else + +static void setApplicationMenu(void) +{ + /* warning: this code is very odd */ + NSMenu *appleMenu; + NSMenuItem *menuItem; + NSString *title; + NSString *appName; + + appName = getApplicationName(); + appleMenu = [[NSMenu alloc] initWithTitle:@""]; + + /* Add menu items */ + title = [@"About " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""]; + + [appleMenu addItem:[NSMenuItem separatorItem]]; + + title = [@"Hide " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(hide:) keyEquivalent:@"h"]; + + menuItem = (NSMenuItem *)[appleMenu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"]; + [menuItem setKeyEquivalentModifierMask:(NSAlternateKeyMask|NSCommandKeyMask)]; + + [appleMenu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""]; + + [appleMenu addItem:[NSMenuItem separatorItem]]; + + title = [@"Quit " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(terminate:) keyEquivalent:@"q"]; + + + /* Put menu into the menubar */ + menuItem = [[NSMenuItem alloc] initWithTitle:@"" action:nil keyEquivalent:@""]; + [menuItem setSubmenu:appleMenu]; + [[NSApp mainMenu] addItem:menuItem]; + + /* Tell the application object that this is now the application menu */ + [NSApp setAppleMenu:appleMenu]; + + /* Finally give up our references to the objects */ + [appleMenu release]; + [menuItem release]; +} + +/* Create a window menu */ +static void setupWindowMenu(void) +{ + NSMenu *windowMenu; + NSMenuItem *windowMenuItem; + NSMenuItem *menuItem; + + windowMenu = [[NSMenu alloc] initWithTitle:@"Window"]; + + /* "Minimize" item */ + menuItem = [[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"]; + [windowMenu addItem:menuItem]; + [menuItem release]; + + /* Put menu into the menubar */ + windowMenuItem = [[NSMenuItem alloc] initWithTitle:@"Window" action:nil keyEquivalent:@""]; + [windowMenuItem setSubmenu:windowMenu]; + [[NSApp mainMenu] addItem:windowMenuItem]; + + /* Tell the application object that this is now the window menu */ + [NSApp setWindowsMenu:windowMenu]; + + /* Finally give up our references to the objects */ + [windowMenu release]; + [windowMenuItem release]; +} + +/* Replacement for NSApplicationMain */ +static void CustomApplicationMain (int argc, char **argv) +{ + NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; + SDLMain *sdlMain; + + /* Ensure the application object is initialised */ + [SDLApplication sharedApplication]; + +#ifdef SDL_USE_CPS + { + CPSProcessSerNum PSN; + /* Tell the dock about us */ + if (!CPSGetCurrentProcess(&PSN)) + if (!CPSEnableForegroundOperation(&PSN,0x03,0x3C,0x2C,0x1103)) + if (!CPSSetFrontProcess(&PSN)) + [SDLApplication sharedApplication]; + } +#endif /* SDL_USE_CPS */ + + /* Set up the menubar */ + [NSApp setMainMenu:[[NSMenu alloc] init]]; + setApplicationMenu(); + setupWindowMenu(); + + /* Create SDLMain and make it the app delegate */ + sdlMain = [[SDLMain alloc] init]; + [NSApp setDelegate:sdlMain]; + + /* Start the main event loop */ + [NSApp run]; + + [sdlMain release]; + [pool release]; +} + +#endif + + +/* + * Catch document open requests...this lets us notice files when the app + * was launched by double-clicking a document, or when a document was + * dragged/dropped on the app's icon. You need to have a + * CFBundleDocumentsType section in your Info.plist to get this message, + * apparently. + * + * Files are added to gArgv, so to the app, they'll look like command line + * arguments. Previously, apps launched from the finder had nothing but + * an argv[0]. + * + * This message may be received multiple times to open several docs on launch. + * + * This message is ignored once the app's mainline has been called. + */ +- (BOOL)application:(NSApplication *)theApplication openFile:(NSString *)filename +{ + const char *temparg; + size_t arglen; + char *arg; + char **newargv; + + if (!gFinderLaunch) /* MacOS is passing command line args. */ + return FALSE; + + if (gCalledAppMainline) /* app has started, ignore this document. */ + return FALSE; + + temparg = [filename UTF8String]; + arglen = SDL_strlen(temparg) + 1; + arg = (char *) SDL_malloc(arglen); + if (arg == NULL) + return FALSE; + + newargv = (char **) realloc(gArgv, sizeof (char *) * (gArgc + 2)); + if (newargv == NULL) + { + SDL_free(arg); + return FALSE; + } + gArgv = newargv; + + SDL_strlcpy(arg, temparg, arglen); + gArgv[gArgc++] = arg; + gArgv[gArgc] = NULL; + return TRUE; +} + + +/* Called when the internal event loop has just started running */ +- (void) applicationDidFinishLaunching: (NSNotification *) note +{ + int status; + + /* Set the working directory to the .app's parent directory */ + [self setupWorkingDirectory:gFinderLaunch]; + +#if SDL_USE_NIB_FILE + /* Set the main menu to contain the real app name instead of "SDL App" */ + [self fixMenu:[NSApp mainMenu] withAppName:getApplicationName()]; +#endif + + /* Hand off to main application code */ + gCalledAppMainline = TRUE; + status = SDL_main (gArgc, gArgv); + + /* We're done, thank you for playing */ + exit(status); +} +@end + + +@implementation NSString (ReplaceSubString) + +- (NSString *)stringByReplacingRange:(NSRange)aRange with:(NSString *)aString +{ + unsigned int bufferSize; + unsigned int selfLen = [self length]; + unsigned int aStringLen = [aString length]; + unichar *buffer; + NSRange localRange; + NSString *result; + + bufferSize = selfLen + aStringLen - aRange.length; + buffer = (unichar *)NSAllocateMemoryPages(bufferSize*sizeof(unichar)); + + /* Get first part into buffer */ + localRange.location = 0; + localRange.length = aRange.location; + [self getCharacters:buffer range:localRange]; + + /* Get middle part into buffer */ + localRange.location = 0; + localRange.length = aStringLen; + [aString getCharacters:(buffer+aRange.location) range:localRange]; + + /* Get last part into buffer */ + localRange.location = aRange.location + aRange.length; + localRange.length = selfLen - localRange.location; + [self getCharacters:(buffer+aRange.location+aStringLen) range:localRange]; + + /* Build output string */ + result = [NSString stringWithCharacters:buffer length:bufferSize]; + + NSDeallocateMemoryPages(buffer, bufferSize); + + return result; +} + +@end + + + +#ifdef main +# undef main +#endif + + +/* Main entry point to executable - should *not* be SDL_main! */ +int main (int argc, char **argv) +{ + /* Copy the arguments into a global variable */ + /* This is passed if we are launched by double-clicking */ + if ( argc >= 2 && strncmp (argv[1], "-psn", 4) == 0 ) { + gArgv = (char **) SDL_malloc(sizeof (char *) * 2); + gArgv[0] = argv[0]; + gArgv[1] = NULL; + gArgc = 1; + gFinderLaunch = YES; + } else { + int i; + gArgc = argc; + gArgv = (char **) SDL_malloc(sizeof (char *) * (argc+1)); + for (i = 0; i <= argc; i++) + gArgv[i] = argv[i]; + gFinderLaunch = NO; + } + +#if SDL_USE_NIB_FILE + [SDLApplication poseAsClass:[NSApplication class]]; + NSApplicationMain (argc, argv); +#else + CustomApplicationMain (argc, argv); +#endif + return 0; +} + diff --git a/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/___PROJECTNAMEASIDENTIFIER____Prefix.pch b/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/___PROJECTNAMEASIDENTIFIER____Prefix.pch new file mode 100644 index 000000000..00095074a --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/___PROJECTNAMEASIDENTIFIER____Prefix.pch @@ -0,0 +1,9 @@ +// +// Prefix header for all source files of the 'ÇPROJECTNAMEÈ' target in the 'ÇPROJECTNAMEÈ' project +// + +#include "SDL.h" + +#ifdef __OBJC__ + #import +#endif diff --git a/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns b/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns new file mode 100644 index 000000000..ae0b02b12 Binary files /dev/null and b/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns differ diff --git a/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist b/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist new file mode 100644 index 000000000..1dcbea207 --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist @@ -0,0 +1,12 @@ +{ + FilesToRename = { + "SDLApp_Prefix.pch" = "ÇPROJECTNAMEÈ_Prefix.pch"; + }; + FilesToMacroExpand = ( + "ÇPROJECTNAMEÈ_Prefix.pch", + "Info.plist", + "English.lproj/InfoPlist.strings", + "main.c", + ); + Description = "This project builds an SDL-based application with Cocoa menus."; +} diff --git a/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/___PROJECTNAME___.xcodeproj/project.pbxproj b/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/___PROJECTNAME___.xcodeproj/project.pbxproj new file mode 100644 index 000000000..c61e527c4 --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/___PROJECTNAME___.xcodeproj/project.pbxproj @@ -0,0 +1,320 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 42; + objects = { + +/* Begin PBXBuildFile section */ + 002F39FA09D0881F00EBEB88 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F39F909D0881F00EBEB88 /* SDL.framework */; }; + 002F3A0009D0884600EBEB88 /* SDL.framework in Copy Frameworks into .app bundle */ = {isa = PBXBuildFile; fileRef = 002F39F909D0881F00EBEB88 /* SDL.framework */; }; + 002F3A2E09D0888800EBEB88 /* SDLMain.m in Sources */ = {isa = PBXBuildFile; fileRef = 002F3A2C09D0888800EBEB88 /* SDLMain.m */; }; + 002F3A3F09D088BA00EBEB88 /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F3A3E09D088BA00EBEB88 /* main.c */; }; + 002F3AF109D08F1000EBEB88 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 002F3AEF09D08F1000EBEB88 /* SDLMain.nib */; }; + 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; }; + 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 002F39FD09D0883400EBEB88 /* Copy Frameworks into .app bundle */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + 002F3A0009D0884600EBEB88 /* SDL.framework in Copy Frameworks into .app bundle */, + ); + name = "Copy Frameworks into .app bundle"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 002F39F909D0881F00EBEB88 /* SDL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL.framework; path = /Library/Frameworks/SDL.framework; sourceTree = ""; }; + 002F3A2B09D0888800EBEB88 /* SDLMain.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDLMain.h; sourceTree = SOURCE_ROOT; }; + 002F3A2C09D0888800EBEB88 /* SDLMain.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = SDLMain.m; sourceTree = SOURCE_ROOT; }; + 002F3A3E09D088BA00EBEB88 /* main.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = main.c; sourceTree = SOURCE_ROOT; }; + 002F3AF009D08F1000EBEB88 /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/SDLMain.nib; sourceTree = ""; }; + 089C165DFE840E0CC02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = ""; }; + 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = ""; }; + 29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = ""; }; + 29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = ""; }; + 32CA4F630368D1EE00C91783 /* ___PROJECTNAME____Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "___PROJECTNAME____Prefix.pch"; sourceTree = ""; }; + 8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + 8D1107320486CEB800E47090 /* ___PROJECTNAME___.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "___PROJECTNAME___.app"; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 8D11072E0486CEB800E47090 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F39FA09D0881F00EBEB88 /* SDL.framework in Frameworks */, + 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 080E96DDFE201D6D7F000001 /* Classes */ = { + isa = PBXGroup; + children = ( + 002F3A2B09D0888800EBEB88 /* SDLMain.h */, + 002F3A2C09D0888800EBEB88 /* SDLMain.m */, + ); + name = Classes; + sourceTree = ""; + }; + 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */ = { + isa = PBXGroup; + children = ( + 002F39F909D0881F00EBEB88 /* SDL.framework */, + 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */, + ); + name = "Linked Frameworks"; + sourceTree = ""; + }; + 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */ = { + isa = PBXGroup; + children = ( + 29B97324FDCFA39411CA2CEA /* AppKit.framework */, + 29B97325FDCFA39411CA2CEA /* Foundation.framework */, + ); + name = "Other Frameworks"; + sourceTree = ""; + }; + 19C28FACFE9D520D11CA2CBB /* Products */ = { + isa = PBXGroup; + children = ( + 8D1107320486CEB800E47090 /* ___PROJECTNAME___.app */, + ); + name = Products; + sourceTree = ""; + }; + 29B97314FDCFA39411CA2CEA /* ___PROJECTNAMEASXML___ */ = { + isa = PBXGroup; + children = ( + 080E96DDFE201D6D7F000001 /* Classes */, + 29B97315FDCFA39411CA2CEA /* Other Sources */, + 29B97317FDCFA39411CA2CEA /* Resources */, + 29B97323FDCFA39411CA2CEA /* Frameworks */, + 19C28FACFE9D520D11CA2CBB /* Products */, + ); + name = "___PROJECTNAMEASXML___"; + sourceTree = ""; + }; + 29B97315FDCFA39411CA2CEA /* Other Sources */ = { + isa = PBXGroup; + children = ( + 32CA4F630368D1EE00C91783 /* ___PROJECTNAME____Prefix.pch */, + 002F3A3E09D088BA00EBEB88 /* main.c */, + ); + name = "Other Sources"; + sourceTree = ""; + }; + 29B97317FDCFA39411CA2CEA /* Resources */ = { + isa = PBXGroup; + children = ( + 8D1107310486CEB800E47090 /* Info.plist */, + 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */, + 002F3AEF09D08F1000EBEB88 /* SDLMain.nib */, + ); + name = Resources; + sourceTree = ""; + }; + 29B97323FDCFA39411CA2CEA /* Frameworks */ = { + isa = PBXGroup; + children = ( + 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */, + 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */, + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 8D1107260486CEB800E47090 /* ___PROJECTNAME___ */ = { + isa = PBXNativeTarget; + buildConfigurationList = C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "___PROJECTNAME___" */; + buildPhases = ( + 8D1107290486CEB800E47090 /* Resources */, + 8D11072C0486CEB800E47090 /* Sources */, + 8D11072E0486CEB800E47090 /* Frameworks */, + 002F39FD09D0883400EBEB88 /* Copy Frameworks into .app bundle */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "___PROJECTNAME___"; + productInstallPath = "$(HOME)/Applications"; + productName = "___PROJECTNAME___"; + productReference = 8D1107320486CEB800E47090 /* ___PROJECTNAME___.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 29B97313FDCFA39411CA2CEA /* Project object */ = { + isa = PBXProject; + buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "___PROJECTNAME___" */; + compatibilityVersion = "Xcode 2.4"; + hasScannedForEncodings = 1; + mainGroup = 29B97314FDCFA39411CA2CEA /* ___PROJECTNAMEASXML___ */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 8D1107260486CEB800E47090 /* ___PROJECTNAME___ */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 8D1107290486CEB800E47090 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */, + 002F3AF109D08F1000EBEB88 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 8D11072C0486CEB800E47090 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F3A2E09D0888800EBEB88 /* SDLMain.m in Sources */, + 002F3A3F09D088BA00EBEB88 /* main.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXVariantGroup section */ + 002F3AEF09D08F1000EBEB88 /* SDLMain.nib */ = { + isa = PBXVariantGroup; + children = ( + 002F3AF009D08F1000EBEB88 /* English */, + ); + name = SDLMain.nib; + sourceTree = ""; + }; + 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + 089C165DFE840E0CC02AAC07 /* English */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + C01FCF4B08A954540054247B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_FIX_AND_CONTINUE = YES; + GCC_MODEL_TUNING = G5; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "___PROJECTNAMEASIDENTIFIER____Prefix.pch"; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(HOME)/Applications"; + PRODUCT_NAME = "___PROJECTNAME___"; + WRAPPER_EXTENSION = app; + }; + name = Debug; + }; + C01FCF4C08A954540054247B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + GCC_MODEL_TUNING = G5; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "___PROJECTNAMEASIDENTIFIER____Prefix.pch"; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(HOME)/Applications"; + PRODUCT_NAME = "___PROJECTNAME___"; + WRAPPER_EXTENSION = app; + }; + name = Release; + }; + C01FCF4F08A954540054247B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; + ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; + FRAMEWORK_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks", + /Library/Frameworks, + "$(FRAMEWORK_SEARCH_PATHS)", + ); + GCC_VERSION = 4.0; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks/SDL.framework/Headers", + /Library/Frameworks/SDL.framework/Headers, + "$(HEADER_SEARCH_PATHS)", + ); + PREBINDING = NO; + SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; + }; + name = Debug; + }; + C01FCF5008A954540054247B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; + ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; + FRAMEWORK_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks", + /Library/Frameworks, + "$(FRAMEWORK_SEARCH_PATHS)", + ); + GCC_VERSION = 4.0; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks/SDL.framework/Headers", + /Library/Frameworks/SDL.framework/Headers, + "$(HEADER_SEARCH_PATHS)", + ); + PREBINDING = NO; + SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "___PROJECTNAME___" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01FCF4B08A954540054247B /* Debug */, + C01FCF4C08A954540054247B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + C01FCF4E08A954540054247B /* Build configuration list for PBXProject "___PROJECTNAME___" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01FCF4F08A954540054247B /* Debug */, + C01FCF5008A954540054247B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 29B97313FDCFA39411CA2CEA /* Project object */; +} diff --git a/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/main.c b/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/main.c new file mode 100644 index 000000000..7115de989 --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/main.c @@ -0,0 +1,65 @@ + +/* Simple program: Create a blank window, wait for keypress, quit. + + Please see the SDL documentation for details on using the SDL API: + /Developer/Documentation/SDL/docs.html +*/ + +#include +#include +#include +#include + +#include "SDL.h" + +int main(int argc, char *argv[]) +{ + Uint32 initflags = SDL_INIT_VIDEO; /* See documentation for details */ + SDL_Surface *screen; + Uint8 video_bpp = 0; + Uint32 videoflags = SDL_SWSURFACE; + int done; + SDL_Event event; + + /* Initialize the SDL library */ + if ( SDL_Init(initflags) < 0 ) { + fprintf(stderr, "Couldn't initialize SDL: %s\n", + SDL_GetError()); + exit(1); + } + + /* Set 640x480 video mode */ + screen=SDL_SetVideoMode(640,480, video_bpp, videoflags); + if (screen == NULL) { + fprintf(stderr, "Couldn't set 640x480x%d video mode: %s\n", + video_bpp, SDL_GetError()); + SDL_Quit(); + exit(2); + } + + done = 0; + while ( !done ) { + + /* Check for events */ + while ( SDL_PollEvent(&event) ) { + switch (event.type) { + + case SDL_MOUSEMOTION: + break; + case SDL_MOUSEBUTTONDOWN: + break; + case SDL_KEYDOWN: + /* Any keypress quits the app... */ + case SDL_QUIT: + done = 1; + break; + default: + break; + } + } + } + + /* Clean up the SDL library */ + SDL_Quit(); + return(0); +} diff --git a/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/English.lproj/InfoPlist.strings b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/English.lproj/InfoPlist.strings new file mode 100644 index 000000000..6e721b0ef Binary files /dev/null and b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/English.lproj/InfoPlist.strings differ diff --git a/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/Info.plist b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/Info.plist new file mode 100644 index 000000000..a2e942960 --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/Info.plist @@ -0,0 +1,37 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIconFile + + CFBundleIdentifier + com.yourcompany.___PROJECTNAMEASXML___ + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + APPL + CFBundleSignature + ???? + CFBundleVersion + 1.0 + NSMainNibFile + SDLMain + NSPrincipalClass + NSApplication + LSMinimumSystemVersionByArchitecture + + x86_64 + 10.6.0 + i386 + 10.4.0 + ppc + 10.4.0 + + + diff --git a/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/SDLMain.h b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/SDLMain.h new file mode 100644 index 000000000..c56d90cbe --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/SDLMain.h @@ -0,0 +1,16 @@ +/* SDLMain.m - main entry point for our Cocoa-ized SDL app + Initial Version: Darrell Walisser + Non-NIB-Code & other changes: Max Horn + + Feel free to customize this file to suit your needs +*/ + +#ifndef _SDLMain_h_ +#define _SDLMain_h_ + +#import + +@interface SDLMain : NSObject +@end + +#endif /* _SDLMain_h_ */ diff --git a/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/SDLMain.m b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/SDLMain.m new file mode 100644 index 000000000..b065a2009 --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/SDLMain.m @@ -0,0 +1,383 @@ +/* SDLMain.m - main entry point for our Cocoa-ized SDL app + Initial Version: Darrell Walisser + Non-NIB-Code & other changes: Max Horn + + Feel free to customize this file to suit your needs +*/ + +#include "SDL.h" +#include "SDLMain.h" +#include /* for MAXPATHLEN */ +#include + +/* For some reaon, Apple removed setAppleMenu from the headers in 10.4, + but the method still is there and works. To avoid warnings, we declare + it ourselves here. */ +@interface NSApplication(SDL_Missing_Methods) +- (void)setAppleMenu:(NSMenu *)menu; +@end + +/* Use this flag to determine whether we use SDLMain.nib or not */ +#define SDL_USE_NIB_FILE 0 + +/* Use this flag to determine whether we use CPS (docking) or not */ +#define SDL_USE_CPS 1 +#ifdef SDL_USE_CPS +/* Portions of CPS.h */ +typedef struct CPSProcessSerNum +{ + UInt32 lo; + UInt32 hi; +} CPSProcessSerNum; + +extern OSErr CPSGetCurrentProcess( CPSProcessSerNum *psn); +extern OSErr CPSEnableForegroundOperation( CPSProcessSerNum *psn, UInt32 _arg2, UInt32 _arg3, UInt32 _arg4, UInt32 _arg5); +extern OSErr CPSSetFrontProcess( CPSProcessSerNum *psn); + +#endif /* SDL_USE_CPS */ + +static int gArgc; +static char **gArgv; +static BOOL gFinderLaunch; +static BOOL gCalledAppMainline = FALSE; + +static NSString *getApplicationName(void) +{ + const NSDictionary *dict; + NSString *appName = 0; + + /* Determine the application name */ + dict = (const NSDictionary *)CFBundleGetInfoDictionary(CFBundleGetMainBundle()); + if (dict) + appName = [dict objectForKey: @"CFBundleName"]; + + if (![appName length]) + appName = [[NSProcessInfo processInfo] processName]; + + return appName; +} + +#if SDL_USE_NIB_FILE +/* A helper category for NSString */ +@interface NSString (ReplaceSubString) +- (NSString *)stringByReplacingRange:(NSRange)aRange with:(NSString *)aString; +@end +#endif + +@interface SDLApplication : NSApplication +@end + +@implementation SDLApplication +/* Invoked from the Quit menu item */ +- (void)terminate:(id)sender +{ + /* Post a SDL_QUIT event */ + SDL_Event event; + event.type = SDL_QUIT; + SDL_PushEvent(&event); +} +@end + +/* The main class of the application, the application's delegate */ +@implementation SDLMain + +/* Set the working directory to the .app's parent directory */ +- (void) setupWorkingDirectory:(BOOL)shouldChdir +{ + if (shouldChdir) + { + char parentdir[MAXPATHLEN]; + CFURLRef url = CFBundleCopyBundleURL(CFBundleGetMainBundle()); + CFURLRef url2 = CFURLCreateCopyDeletingLastPathComponent(0, url); + if (CFURLGetFileSystemRepresentation(url2, 1, (UInt8 *)parentdir, MAXPATHLEN)) { + chdir(parentdir); /* chdir to the binary app's parent */ + } + CFRelease(url); + CFRelease(url2); + } +} + +#if SDL_USE_NIB_FILE + +/* Fix menu to contain the real app name instead of "SDL App" */ +- (void)fixMenu:(NSMenu *)aMenu withAppName:(NSString *)appName +{ + NSRange aRange; + NSEnumerator *enumerator; + NSMenuItem *menuItem; + + aRange = [[aMenu title] rangeOfString:@"SDL App"]; + if (aRange.length != 0) + [aMenu setTitle: [[aMenu title] stringByReplacingRange:aRange with:appName]]; + + enumerator = [[aMenu itemArray] objectEnumerator]; + while ((menuItem = [enumerator nextObject])) + { + aRange = [[menuItem title] rangeOfString:@"SDL App"]; + if (aRange.length != 0) + [menuItem setTitle: [[menuItem title] stringByReplacingRange:aRange with:appName]]; + if ([menuItem hasSubmenu]) + [self fixMenu:[menuItem submenu] withAppName:appName]; + } + [ aMenu sizeToFit ]; +} + +#else + +static void setApplicationMenu(void) +{ + /* warning: this code is very odd */ + NSMenu *appleMenu; + NSMenuItem *menuItem; + NSString *title; + NSString *appName; + + appName = getApplicationName(); + appleMenu = [[NSMenu alloc] initWithTitle:@""]; + + /* Add menu items */ + title = [@"About " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""]; + + [appleMenu addItem:[NSMenuItem separatorItem]]; + + title = [@"Hide " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(hide:) keyEquivalent:@"h"]; + + menuItem = (NSMenuItem *)[appleMenu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"]; + [menuItem setKeyEquivalentModifierMask:(NSAlternateKeyMask|NSCommandKeyMask)]; + + [appleMenu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""]; + + [appleMenu addItem:[NSMenuItem separatorItem]]; + + title = [@"Quit " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(terminate:) keyEquivalent:@"q"]; + + + /* Put menu into the menubar */ + menuItem = [[NSMenuItem alloc] initWithTitle:@"" action:nil keyEquivalent:@""]; + [menuItem setSubmenu:appleMenu]; + [[NSApp mainMenu] addItem:menuItem]; + + /* Tell the application object that this is now the application menu */ + [NSApp setAppleMenu:appleMenu]; + + /* Finally give up our references to the objects */ + [appleMenu release]; + [menuItem release]; +} + +/* Create a window menu */ +static void setupWindowMenu(void) +{ + NSMenu *windowMenu; + NSMenuItem *windowMenuItem; + NSMenuItem *menuItem; + + windowMenu = [[NSMenu alloc] initWithTitle:@"Window"]; + + /* "Minimize" item */ + menuItem = [[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"]; + [windowMenu addItem:menuItem]; + [menuItem release]; + + /* Put menu into the menubar */ + windowMenuItem = [[NSMenuItem alloc] initWithTitle:@"Window" action:nil keyEquivalent:@""]; + [windowMenuItem setSubmenu:windowMenu]; + [[NSApp mainMenu] addItem:windowMenuItem]; + + /* Tell the application object that this is now the window menu */ + [NSApp setWindowsMenu:windowMenu]; + + /* Finally give up our references to the objects */ + [windowMenu release]; + [windowMenuItem release]; +} + +/* Replacement for NSApplicationMain */ +static void CustomApplicationMain (int argc, char **argv) +{ + NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; + SDLMain *sdlMain; + + /* Ensure the application object is initialised */ + [SDLApplication sharedApplication]; + +#ifdef SDL_USE_CPS + { + CPSProcessSerNum PSN; + /* Tell the dock about us */ + if (!CPSGetCurrentProcess(&PSN)) + if (!CPSEnableForegroundOperation(&PSN,0x03,0x3C,0x2C,0x1103)) + if (!CPSSetFrontProcess(&PSN)) + [SDLApplication sharedApplication]; + } +#endif /* SDL_USE_CPS */ + + /* Set up the menubar */ + [NSApp setMainMenu:[[NSMenu alloc] init]]; + setApplicationMenu(); + setupWindowMenu(); + + /* Create SDLMain and make it the app delegate */ + sdlMain = [[SDLMain alloc] init]; + [NSApp setDelegate:sdlMain]; + + /* Start the main event loop */ + [NSApp run]; + + [sdlMain release]; + [pool release]; +} + +#endif + + +/* + * Catch document open requests...this lets us notice files when the app + * was launched by double-clicking a document, or when a document was + * dragged/dropped on the app's icon. You need to have a + * CFBundleDocumentsType section in your Info.plist to get this message, + * apparently. + * + * Files are added to gArgv, so to the app, they'll look like command line + * arguments. Previously, apps launched from the finder had nothing but + * an argv[0]. + * + * This message may be received multiple times to open several docs on launch. + * + * This message is ignored once the app's mainline has been called. + */ +- (BOOL)application:(NSApplication *)theApplication openFile:(NSString *)filename +{ + const char *temparg; + size_t arglen; + char *arg; + char **newargv; + + if (!gFinderLaunch) /* MacOS is passing command line args. */ + return FALSE; + + if (gCalledAppMainline) /* app has started, ignore this document. */ + return FALSE; + + temparg = [filename UTF8String]; + arglen = SDL_strlen(temparg) + 1; + arg = (char *) SDL_malloc(arglen); + if (arg == NULL) + return FALSE; + + newargv = (char **) realloc(gArgv, sizeof (char *) * (gArgc + 2)); + if (newargv == NULL) + { + SDL_free(arg); + return FALSE; + } + gArgv = newargv; + + SDL_strlcpy(arg, temparg, arglen); + gArgv[gArgc++] = arg; + gArgv[gArgc] = NULL; + return TRUE; +} + + +/* Called when the internal event loop has just started running */ +- (void) applicationDidFinishLaunching: (NSNotification *) note +{ + int status; + + /* Set the working directory to the .app's parent directory */ + [self setupWorkingDirectory:gFinderLaunch]; + +#if SDL_USE_NIB_FILE + /* Set the main menu to contain the real app name instead of "SDL App" */ + [self fixMenu:[NSApp mainMenu] withAppName:getApplicationName()]; +#endif + + /* Hand off to main application code */ + gCalledAppMainline = TRUE; + status = SDL_main (gArgc, gArgv); + + /* We're done, thank you for playing */ + exit(status); +} +@end + + +@implementation NSString (ReplaceSubString) + +- (NSString *)stringByReplacingRange:(NSRange)aRange with:(NSString *)aString +{ + unsigned int bufferSize; + unsigned int selfLen = [self length]; + unsigned int aStringLen = [aString length]; + unichar *buffer; + NSRange localRange; + NSString *result; + + bufferSize = selfLen + aStringLen - aRange.length; + buffer = (unichar *)NSAllocateMemoryPages(bufferSize*sizeof(unichar)); + + /* Get first part into buffer */ + localRange.location = 0; + localRange.length = aRange.location; + [self getCharacters:buffer range:localRange]; + + /* Get middle part into buffer */ + localRange.location = 0; + localRange.length = aStringLen; + [aString getCharacters:(buffer+aRange.location) range:localRange]; + + /* Get last part into buffer */ + localRange.location = aRange.location + aRange.length; + localRange.length = selfLen - localRange.location; + [self getCharacters:(buffer+aRange.location+aStringLen) range:localRange]; + + /* Build output string */ + result = [NSString stringWithCharacters:buffer length:bufferSize]; + + NSDeallocateMemoryPages(buffer, bufferSize); + + return result; +} + +@end + + + +#ifdef main +# undef main +#endif + + +/* Main entry point to executable - should *not* be SDL_main! */ +int main (int argc, char **argv) +{ + /* Copy the arguments into a global variable */ + /* This is passed if we are launched by double-clicking */ + if ( argc >= 2 && strncmp (argv[1], "-psn", 4) == 0 ) { + gArgv = (char **) SDL_malloc(sizeof (char *) * 2); + gArgv[0] = argv[0]; + gArgv[1] = NULL; + gArgc = 1; + gFinderLaunch = YES; + } else { + int i; + gArgc = argc; + gArgv = (char **) SDL_malloc(sizeof (char *) * (argc+1)); + for (i = 0; i <= argc; i++) + gArgv[i] = argv[i]; + gFinderLaunch = NO; + } + +#if SDL_USE_NIB_FILE + [SDLApplication poseAsClass:[NSApplication class]]; + NSApplicationMain (argc, argv); +#else + CustomApplicationMain (argc, argv); +#endif + return 0; +} + diff --git a/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/___PROJECTNAMEASIDENTIFIER____Prefix.pch b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/___PROJECTNAMEASIDENTIFIER____Prefix.pch new file mode 100644 index 000000000..00095074a --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/___PROJECTNAMEASIDENTIFIER____Prefix.pch @@ -0,0 +1,9 @@ +// +// Prefix header for all source files of the 'ÇPROJECTNAMEÈ' target in the 'ÇPROJECTNAMEÈ' project +// + +#include "SDL.h" + +#ifdef __OBJC__ + #import +#endif diff --git a/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns new file mode 100644 index 000000000..ae0b02b12 Binary files /dev/null and b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns differ diff --git a/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist new file mode 100644 index 000000000..ba87745fc --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist @@ -0,0 +1,12 @@ +{ + FilesToRename = { + "SDLApp_Prefix.pch" = "ÇPROJECTNAMEÈ_Prefix.pch"; + }; + FilesToMacroExpand = ( + "ÇPROJECTNAMEÈ_Prefix.pch", + "Info.plist", + "English.lproj/InfoPlist.strings", + "main.c", + ); + Description = "This project builds an SDL-based application that uses OpenGL."; +} diff --git a/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/___PROJECTNAME___.xcodeproj/project.pbxproj b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/___PROJECTNAME___.xcodeproj/project.pbxproj new file mode 100644 index 000000000..529d44436 --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/___PROJECTNAME___.xcodeproj/project.pbxproj @@ -0,0 +1,350 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 42; + objects = { + +/* Begin PBXBuildFile section */ + 002F39FA09D0881F00EBEB88 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F39F909D0881F00EBEB88 /* SDL.framework */; }; + 002F3A0009D0884600EBEB88 /* SDL.framework in Copy Frameworks into .app bundle */ = {isa = PBXBuildFile; fileRef = 002F39F909D0881F00EBEB88 /* SDL.framework */; }; + 002F3A2E09D0888800EBEB88 /* SDLMain.m in Sources */ = {isa = PBXBuildFile; fileRef = 002F3A2C09D0888800EBEB88 /* SDLMain.m */; }; + 002F3A3F09D088BA00EBEB88 /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F3A3E09D088BA00EBEB88 /* main.c */; }; + 002F3BFA09D0938900EBEB88 /* atlantis.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F3BF409D0938900EBEB88 /* atlantis.c */; }; + 002F3BFC09D0938900EBEB88 /* dolphin.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F3BF609D0938900EBEB88 /* dolphin.c */; }; + 002F3BFD09D0938900EBEB88 /* shark.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F3BF709D0938900EBEB88 /* shark.c */; }; + 002F3BFE09D0938900EBEB88 /* swim.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F3BF809D0938900EBEB88 /* swim.c */; }; + 002F3BFF09D0938900EBEB88 /* whale.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F3BF909D0938900EBEB88 /* whale.c */; }; + 002F3C0109D093BD00EBEB88 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F3C0009D093BD00EBEB88 /* OpenGL.framework */; }; + 002F3C6109D0951E00EBEB88 /* GLUT.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F3C6009D0951E00EBEB88 /* GLUT.framework */; }; + 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; }; + 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 002F39FD09D0883400EBEB88 /* Copy Frameworks into .app bundle */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + 002F3A0009D0884600EBEB88 /* SDL.framework in Copy Frameworks into .app bundle */, + ); + name = "Copy Frameworks into .app bundle"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 002F39F909D0881F00EBEB88 /* SDL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL.framework; path = /Library/Frameworks/SDL.framework; sourceTree = ""; }; + 002F3A2B09D0888800EBEB88 /* SDLMain.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDLMain.h; sourceTree = SOURCE_ROOT; }; + 002F3A2C09D0888800EBEB88 /* SDLMain.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = SDLMain.m; sourceTree = SOURCE_ROOT; }; + 002F3A3E09D088BA00EBEB88 /* main.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = main.c; sourceTree = SOURCE_ROOT; }; + 002F3BF409D0938900EBEB88 /* atlantis.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = atlantis.c; path = atlantis/atlantis.c; sourceTree = SOURCE_ROOT; }; + 002F3BF509D0938900EBEB88 /* atlantis.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = atlantis.h; path = atlantis/atlantis.h; sourceTree = SOURCE_ROOT; }; + 002F3BF609D0938900EBEB88 /* dolphin.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = dolphin.c; path = atlantis/dolphin.c; sourceTree = SOURCE_ROOT; }; + 002F3BF709D0938900EBEB88 /* shark.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = shark.c; path = atlantis/shark.c; sourceTree = SOURCE_ROOT; }; + 002F3BF809D0938900EBEB88 /* swim.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = swim.c; path = atlantis/swim.c; sourceTree = SOURCE_ROOT; }; + 002F3BF909D0938900EBEB88 /* whale.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = whale.c; path = atlantis/whale.c; sourceTree = SOURCE_ROOT; }; + 002F3C0009D093BD00EBEB88 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = /System/Library/Frameworks/OpenGL.framework; sourceTree = ""; }; + 002F3C6009D0951E00EBEB88 /* GLUT.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLUT.framework; path = ../../../../../../../../../../System/Library/Frameworks/GLUT.framework; sourceTree = SOURCE_ROOT; }; + 089C165DFE840E0CC02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = ""; }; + 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = ""; }; + 29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = ""; }; + 29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = ""; }; + 32CA4F630368D1EE00C91783 /* ___PROJECTNAME____Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "___PROJECTNAME____Prefix.pch"; sourceTree = ""; }; + 8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + 8D1107320486CEB800E47090 /* ___PROJECTNAME___.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "___PROJECTNAME___.app"; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 8D11072E0486CEB800E47090 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F39FA09D0881F00EBEB88 /* SDL.framework in Frameworks */, + 002F3C6109D0951E00EBEB88 /* GLUT.framework in Frameworks */, + 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */, + 002F3C0109D093BD00EBEB88 /* OpenGL.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 002F3BF309D0937800EBEB88 /* atlantis */ = { + isa = PBXGroup; + children = ( + 002F3BF409D0938900EBEB88 /* atlantis.c */, + 002F3BF509D0938900EBEB88 /* atlantis.h */, + 002F3BF609D0938900EBEB88 /* dolphin.c */, + 002F3BF709D0938900EBEB88 /* shark.c */, + 002F3BF809D0938900EBEB88 /* swim.c */, + 002F3BF909D0938900EBEB88 /* whale.c */, + ); + name = atlantis; + sourceTree = ""; + }; + 080E96DDFE201D6D7F000001 /* Classes */ = { + isa = PBXGroup; + children = ( + 002F3A2B09D0888800EBEB88 /* SDLMain.h */, + 002F3A2C09D0888800EBEB88 /* SDLMain.m */, + ); + name = Classes; + sourceTree = ""; + }; + 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */ = { + isa = PBXGroup; + children = ( + 002F39F909D0881F00EBEB88 /* SDL.framework */, + 002F3C6009D0951E00EBEB88 /* GLUT.framework */, + 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */, + 002F3C0009D093BD00EBEB88 /* OpenGL.framework */, + ); + name = "Linked Frameworks"; + sourceTree = ""; + }; + 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */ = { + isa = PBXGroup; + children = ( + 29B97324FDCFA39411CA2CEA /* AppKit.framework */, + 29B97325FDCFA39411CA2CEA /* Foundation.framework */, + ); + name = "Other Frameworks"; + sourceTree = ""; + }; + 19C28FACFE9D520D11CA2CBB /* Products */ = { + isa = PBXGroup; + children = ( + 8D1107320486CEB800E47090 /* ___PROJECTNAME___.app */, + ); + name = Products; + sourceTree = ""; + }; + 29B97314FDCFA39411CA2CEA /* ___PROJECTNAMEASXML___ */ = { + isa = PBXGroup; + children = ( + 080E96DDFE201D6D7F000001 /* Classes */, + 29B97315FDCFA39411CA2CEA /* Other Sources */, + 29B97317FDCFA39411CA2CEA /* Resources */, + 29B97323FDCFA39411CA2CEA /* Frameworks */, + 19C28FACFE9D520D11CA2CBB /* Products */, + ); + name = "___PROJECTNAMEASXML___"; + sourceTree = ""; + }; + 29B97315FDCFA39411CA2CEA /* Other Sources */ = { + isa = PBXGroup; + children = ( + 002F3BF309D0937800EBEB88 /* atlantis */, + 32CA4F630368D1EE00C91783 /* ___PROJECTNAME____Prefix.pch */, + 002F3A3E09D088BA00EBEB88 /* main.c */, + ); + name = "Other Sources"; + sourceTree = ""; + }; + 29B97317FDCFA39411CA2CEA /* Resources */ = { + isa = PBXGroup; + children = ( + 8D1107310486CEB800E47090 /* Info.plist */, + 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */, + ); + name = Resources; + sourceTree = ""; + }; + 29B97323FDCFA39411CA2CEA /* Frameworks */ = { + isa = PBXGroup; + children = ( + 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */, + 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */, + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 8D1107260486CEB800E47090 /* ___PROJECTNAME___ */ = { + isa = PBXNativeTarget; + buildConfigurationList = C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "___PROJECTNAME___" */; + buildPhases = ( + 8D1107290486CEB800E47090 /* Resources */, + 8D11072C0486CEB800E47090 /* Sources */, + 8D11072E0486CEB800E47090 /* Frameworks */, + 002F39FD09D0883400EBEB88 /* Copy Frameworks into .app bundle */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "___PROJECTNAME___"; + productInstallPath = "$(HOME)/Applications"; + productName = "___PROJECTNAME___"; + productReference = 8D1107320486CEB800E47090 /* ___PROJECTNAME___.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 29B97313FDCFA39411CA2CEA /* Project object */ = { + isa = PBXProject; + buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "___PROJECTNAME___" */; + compatibilityVersion = "Xcode 2.4"; + hasScannedForEncodings = 1; + mainGroup = 29B97314FDCFA39411CA2CEA /* ___PROJECTNAMEASXML___ */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 8D1107260486CEB800E47090 /* ___PROJECTNAME___ */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 8D1107290486CEB800E47090 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 8D11072C0486CEB800E47090 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F3A2E09D0888800EBEB88 /* SDLMain.m in Sources */, + 002F3A3F09D088BA00EBEB88 /* main.c in Sources */, + 002F3BFA09D0938900EBEB88 /* atlantis.c in Sources */, + 002F3BFC09D0938900EBEB88 /* dolphin.c in Sources */, + 002F3BFD09D0938900EBEB88 /* shark.c in Sources */, + 002F3BFE09D0938900EBEB88 /* swim.c in Sources */, + 002F3BFF09D0938900EBEB88 /* whale.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXVariantGroup section */ + 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + 089C165DFE840E0CC02AAC07 /* English */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + C01FCF4B08A954540054247B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_FIX_AND_CONTINUE = YES; + GCC_MODEL_TUNING = G5; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "___PROJECTNAMEASIDENTIFIER____Prefix.pch"; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(HOME)/Applications"; + PRODUCT_NAME = "___PROJECTNAME___"; + WRAPPER_EXTENSION = app; + }; + name = Debug; + }; + C01FCF4C08A954540054247B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = ( + ppc, + i386, + ); + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + GCC_MODEL_TUNING = G5; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "___PROJECTNAMEASIDENTIFIER____Prefix.pch"; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(HOME)/Applications"; + PRODUCT_NAME = "___PROJECTNAME___"; + WRAPPER_EXTENSION = app; + }; + name = Release; + }; + C01FCF4F08A954540054247B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; + ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; + FRAMEWORK_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks", + /Library/Frameworks, + "$(FRAMEWORK_SEARCH_PATHS)", + ); + GCC_VERSION = 4.0; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks/SDL.framework/Headers", + /Library/Frameworks/SDL.framework/Headers, + "$(HEADER_SEARCH_PATHS)", + ); + PREBINDING = NO; + SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; + }; + name = Debug; + }; + C01FCF5008A954540054247B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)"; + ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386"; + FRAMEWORK_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks", + /Library/Frameworks, + "$(FRAMEWORK_SEARCH_PATHS)", + ); + GCC_VERSION = 4.0; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks/SDL.framework/Headers", + /Library/Frameworks/SDL.framework/Headers, + "$(HEADER_SEARCH_PATHS)", + ); + PREBINDING = NO; + SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "___PROJECTNAME___" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01FCF4B08A954540054247B /* Debug */, + C01FCF4C08A954540054247B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + C01FCF4E08A954540054247B /* Build configuration list for PBXProject "___PROJECTNAME___" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01FCF4F08A954540054247B /* Debug */, + C01FCF5008A954540054247B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 29B97313FDCFA39411CA2CEA /* Project object */; +} diff --git a/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/atlantis.c b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/atlantis.c new file mode 100644 index 000000000..4efdf6ce8 --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/atlantis.c @@ -0,0 +1,459 @@ + +/* Copyright (c) Mark J. Kilgard, 1994. */ + +/** + * (c) Copyright 1993, 1994, Silicon Graphics, Inc. + * ALL RIGHTS RESERVED + * Permission to use, copy, modify, and distribute this software for + * any purpose and without fee is hereby granted, provided that the above + * copyright notice appear in all copies and that both the copyright notice + * and this permission notice appear in supporting documentation, and that + * the name of Silicon Graphics, Inc. not be used in advertising + * or publicity pertaining to distribution of the software without specific, + * written prior permission. + * + * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS" + * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR + * FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON + * GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT, + * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY + * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, + * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF + * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC. HAS BEEN + * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE + * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE. + * + * US Government Users Restricted Rights + * Use, duplication, or disclosure by the Government is subject to + * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph + * (c)(1)(ii) of the Rights in Technical Data and Computer Software + * clause at DFARS 252.227-7013 and/or in similar or successor + * clauses in the FAR or the DOD or NASA FAR Supplement. + * Unpublished-- rights reserved under the copyright laws of the + * United States. Contractor/manufacturer is Silicon Graphics, + * Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311. + * + * OpenGL(TM) is a trademark of Silicon Graphics, Inc. + */ +#include +#include +#include +#include +#include +#include +#include "atlantis.h" + +fishRec sharks[NUM_SHARKS]; +fishRec momWhale; +fishRec babyWhale; +fishRec dolph; + +GLboolean Timing = GL_TRUE; + +int w_win = 640; +int h_win = 480; +GLint count = 0; +GLenum StrMode = GL_VENDOR; + +GLboolean moving; + +static double mtime(void) +{ + struct timeval tk_time; + struct timezone tz; + + gettimeofday(&tk_time, &tz); + + return 4294.967296 * tk_time.tv_sec + 0.000001 * tk_time.tv_usec; +} + +static double filter(double in, double *save) +{ + static double k1 = 0.9; + static double k2 = 0.05; + + save[3] = in; + save[1] = save[0]*k1 + k2*(save[3] + save[2]); + + save[0]=save[1]; + save[2]=save[3]; + + return(save[1]); +} + +void DrawStr(const char *str) +{ + GLint i = 0; + + if(!str) return; + + while(str[i]) + { + glutBitmapCharacter(GLUT_BITMAP_HELVETICA_12, str[i]); + i++; + } +} + +void +InitFishs(void) +{ + int i; + + for (i = 0; i < NUM_SHARKS; i++) { + sharks[i].x = 70000.0 + rand() % 6000; + sharks[i].y = rand() % 6000; + sharks[i].z = rand() % 6000; + sharks[i].psi = rand() % 360 - 180.0; + sharks[i].v = 1.0; + } + + dolph.x = 30000.0; + dolph.y = 0.0; + dolph.z = 6000.0; + dolph.psi = 90.0; + dolph.theta = 0.0; + dolph.v = 3.0; + + momWhale.x = 70000.0; + momWhale.y = 0.0; + momWhale.z = 0.0; + momWhale.psi = 90.0; + momWhale.theta = 0.0; + momWhale.v = 3.0; + + babyWhale.x = 60000.0; + babyWhale.y = -2000.0; + babyWhale.z = -2000.0; + babyWhale.psi = 90.0; + babyWhale.theta = 0.0; + babyWhale.v = 3.0; +} + +void +Atlantis_Init(void) +{ + static float ambient[] = {0.2, 0.2, 0.2, 1.0}; + static float diffuse[] = {1.0, 1.0, 1.0, 1.0}; + static float position[] = {0.0, 1.0, 0.0, 0.0}; + static float mat_shininess[] = {90.0}; + static float mat_specular[] = {0.8, 0.8, 0.8, 1.0}; + static float mat_diffuse[] = {0.46, 0.66, 0.795, 1.0}; + static float mat_ambient[] = {0.3, 0.4, 0.5, 1.0}; + static float lmodel_ambient[] = {0.4, 0.4, 0.4, 1.0}; + static float lmodel_localviewer[] = {0.0}; + //GLfloat map1[4] = {0.0, 0.0, 0.0, 0.0}; + //GLfloat map2[4] = {0.0, 0.0, 0.0, 0.0}; + static float fog_color[] = {0.0, 0.5, 0.9, 1.0}; + + glFrontFace(GL_CCW); + + glDepthFunc(GL_LESS); + glEnable(GL_DEPTH_TEST); + + glLightfv(GL_LIGHT0, GL_AMBIENT, ambient); + glLightfv(GL_LIGHT0, GL_DIFFUSE, diffuse); + glLightfv(GL_LIGHT0, GL_POSITION, position); + glLightModelfv(GL_LIGHT_MODEL_AMBIENT, lmodel_ambient); + glLightModelfv(GL_LIGHT_MODEL_LOCAL_VIEWER, lmodel_localviewer); + glEnable(GL_LIGHTING); + glEnable(GL_LIGHT0); + + glMaterialfv(GL_FRONT_AND_BACK, GL_SHININESS, mat_shininess); + glMaterialfv(GL_FRONT_AND_BACK, GL_SPECULAR, mat_specular); + glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE, mat_diffuse); + glMaterialfv(GL_FRONT_AND_BACK, GL_AMBIENT, mat_ambient); + + InitFishs(); + + glEnable(GL_FOG); + glFogi(GL_FOG_MODE, GL_EXP); + glFogf(GL_FOG_DENSITY, 0.0000025); + glFogfv(GL_FOG_COLOR, fog_color); + + glClearColor(0.0, 0.5, 0.9, 1.0); +} + +void +Atlantis_Reshape(int width, int height) +{ + w_win = width; + h_win = height; + + glViewport(0, 0, width, height); + + glMatrixMode(GL_PROJECTION); + glLoadIdentity(); + gluPerspective(60.0, (GLfloat) width / (GLfloat) height, 20000.0, 300000.0); + glMatrixMode(GL_MODELVIEW); +} + +void +Atlantis_Animate(void) +{ + int i; + + for (i = 0; i < NUM_SHARKS; i++) { + SharkPilot(&sharks[i]); + SharkMiss(i); + } + WhalePilot(&dolph); + dolph.phi++; + //glutPostRedisplay(); + WhalePilot(&momWhale); + momWhale.phi++; + WhalePilot(&babyWhale); + babyWhale.phi++; +} + +void +Atlantis_Key(unsigned char key, int x, int y) +{ + switch (key) { + case 't': + Timing = !Timing; + break; + case ' ': + switch(StrMode) + { + case GL_EXTENSIONS: + StrMode = GL_VENDOR; + break; + case GL_VENDOR: + StrMode = GL_RENDERER; + break; + case GL_RENDERER: + StrMode = GL_VERSION; + break; + case GL_VERSION: + StrMode = GL_EXTENSIONS; + break; + } + break; + case 27: /* Esc will quit */ + exit(1); + break; + case 's': /* "s" start animation */ + moving = GL_TRUE; + //glutIdleFunc(Animate); + break; + case 'a': /* "a" stop animation */ + moving = GL_FALSE; + //glutIdleFunc(NULL); + break; + case '.': /* "." will advance frame */ + if (!moving) { + Atlantis_Animate(); + } + } +} +/* +void Display(void) +{ + static float P123[3] = {-448.94, -203.14, 9499.60}; + static float P124[3] = {-442.64, -185.20, 9528.07}; + static float P125[3] = {-441.07, -148.05, 9528.07}; + static float P126[3] = {-443.43, -128.84, 9499.60}; + static float P127[3] = {-456.87, -146.78, 9466.67}; + static float P128[3] = {-453.68, -183.93, 9466.67}; + + glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); + + glPushMatrix(); + FishTransform(&dolph); + DrawDolphin(&dolph); + glPopMatrix(); + + glutSwapBuffers(); +} +*/ + +void +Atlantis_Display(void) +{ + int i; + static double th[4] = {0.0, 0.0, 0.0, 0.0}; + static double t1 = 0.0, t2 = 0.0, t; + char num_str[128]; + + t1 = t2; + + glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); + + for (i = 0; i < NUM_SHARKS; i++) { + glPushMatrix(); + FishTransform(&sharks[i]); + DrawShark(&sharks[i]); + glPopMatrix(); + } + + glPushMatrix(); + FishTransform(&dolph); + DrawDolphin(&dolph); + glPopMatrix(); + + glPushMatrix(); + FishTransform(&momWhale); + DrawWhale(&momWhale); + glPopMatrix(); + + glPushMatrix(); + FishTransform(&babyWhale); + glScalef(0.45, 0.45, 0.3); + DrawWhale(&babyWhale); + glPopMatrix(); + + if(Timing) + { + t2 = mtime(); + t = t2 - t1; + if(t > 0.0001) t = 1.0 / t; + + glDisable(GL_LIGHTING); + //glDisable(GL_DEPTH_TEST); + + glColor3f(1.0, 0.0, 0.0); + + glMatrixMode (GL_PROJECTION); + glPushMatrix(); + glLoadIdentity(); + glOrtho(0, w_win, 0, h_win, -10.0, 10.0); + + glRasterPos2f(5.0, 5.0); + + switch(StrMode) + { + case GL_VENDOR: + sprintf(num_str, "%0.2f Hz, %dx%d, VENDOR: ", filter(t, th), w_win, h_win); + DrawStr(num_str); + DrawStr(glGetString(GL_VENDOR)); + break; + case GL_RENDERER: + sprintf(num_str, "%0.2f Hz, %dx%d, RENDERER: ", filter(t, th), w_win, h_win); + DrawStr(num_str); + DrawStr(glGetString(GL_RENDERER)); + break; + case GL_VERSION: + sprintf(num_str, "%0.2f Hz, %dx%d, VERSION: ", filter(t, th), w_win, h_win); + DrawStr(num_str); + DrawStr(glGetString(GL_VERSION)); + break; + case GL_EXTENSIONS: + sprintf(num_str, "%0.2f Hz, %dx%d, EXTENSIONS: ", filter(t, th), w_win, h_win); + DrawStr(num_str); + DrawStr(glGetString(GL_EXTENSIONS)); + break; + } + + glPopMatrix(); + glMatrixMode(GL_MODELVIEW); + + glEnable(GL_LIGHTING); + //glEnable(GL_DEPTH_TEST); + } + + count++; + + glutSwapBuffers(); +} + +/* +void +Visible(int state) +{ + if (state == GLUT_VISIBLE) { + if (moving) + glutIdleFunc(Animate); + } else { + if (moving) + glutIdleFunc(NULL); + } +} + + +void +timingSelect(int value) +{ + switch(value) + { + case 1: + StrMode = GL_VENDOR; + break; + case 2: + StrMode = GL_RENDERER; + break; + case 3: + StrMode = GL_VERSION; + break; + case 4: + StrMode = GL_EXTENSIONS; + break; + } +} + +void +menuSelect(int value) +{ + switch (value) { + case 1: + moving = GL_TRUE; + glutIdleFunc(Animate); + break; + case 2: + moving = GL_FALSE; + glutIdleFunc(NULL); + break; + case 4: + exit(0); + break; + } +} + +int +main(int argc, char **argv) +{ + GLboolean fullscreen = GL_FALSE; + GLint time_menu; + + srand(0); + + glutInit(&argc, argv); + if (argc > 1 && !strcmp(argv[1], "-w")) + fullscreen = GL_FALSE; + + //glutInitDisplayMode(GLUT_RGBA | GLUT_DOUBLE | GLUT_DEPTH); + glutInitDisplayString("rgba double depth=24"); + if (fullscreen) { + glutGameModeString("1024x768:32"); + glutEnterGameMode(); + } else { + glutInitWindowSize(320, 240); + glutCreateWindow("Atlantis Timing"); + } + Init(); + glutDisplayFunc(Display); + glutReshapeFunc(Reshape); + glutKeyboardFunc(Key); + moving = GL_TRUE; +glutIdleFunc(Animate); + glutVisibilityFunc(Visible); + + time_menu = glutCreateMenu(timingSelect); + glutAddMenuEntry("GL_VENDOR", 1); + glutAddMenuEntry("GL_RENDERER", 2); + glutAddMenuEntry("GL_VERSION", 3); + glutAddMenuEntry("GL_EXTENSIONS", 4); + + glutCreateMenu(menuSelect); + glutAddMenuEntry("Start motion", 1); + glutAddMenuEntry("Stop motion", 2); + glutAddSubMenu("Timing Mode", time_menu); + glutAddMenuEntry("Quit", 4); + + //glutAttachMenu(GLUT_RIGHT_BUTTON); + glutAttachMenu(GLUT_RIGHT_BUTTON); + glutMainLoop(); + return 0; // ANSI C requires main to return int. +} +*/ \ No newline at end of file diff --git a/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/atlantis.h b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/atlantis.h new file mode 100644 index 000000000..6ccf2d5f0 --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/atlantis.h @@ -0,0 +1,65 @@ +/** + * (c) Copyright 1993, 1994, Silicon Graphics, Inc. + * ALL RIGHTS RESERVED + * Permission to use, copy, modify, and distribute this software for + * any purpose and without fee is hereby granted, provided that the above + * copyright notice appear in all copies and that both the copyright notice + * and this permission notice appear in supporting documentation, and that + * the name of Silicon Graphics, Inc. not be used in advertising + * or publicity pertaining to distribution of the software without specific, + * written prior permission. + * + * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS" + * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR + * FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON + * GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT, + * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY + * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, + * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF + * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC. HAS BEEN + * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE + * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE. + * + * US Government Users Restricted Rights + * Use, duplication, or disclosure by the Government is subject to + * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph + * (c)(1)(ii) of the Rights in Technical Data and Computer Software + * clause at DFARS 252.227-7013 and/or in similar or successor + * clauses in the FAR or the DOD or NASA FAR Supplement. + * Unpublished-- rights reserved under the copyright laws of the + * United States. Contractor/manufacturer is Silicon Graphics, + * Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311. + * + * OpenGL(TM) is a trademark of Silicon Graphics, Inc. + */ +#define RAD 57.295 +#define RRAD 0.01745 + +#define NUM_SHARKS 4 +#define SHARKSIZE 6000 +#define SHARKSPEED 100.0 + +#define WHALESPEED 250.0 + +typedef struct _fishRec { + float x, y, z, phi, theta, psi, v; + float xt, yt, zt; + float htail, vtail; + float dtheta; + int spurt, attack; +} fishRec; + +extern fishRec sharks[NUM_SHARKS]; +extern fishRec momWhale; +extern fishRec babyWhale; +extern fishRec dolph; + +extern void FishTransform(fishRec *); +extern void WhalePilot(fishRec *); +extern void SharkPilot(fishRec *); +extern void SharkMiss(int); +extern void DrawWhale(fishRec *); +extern void DrawShark(fishRec *); +extern void DrawDolphin(fishRec *); diff --git a/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/dolphin.c b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/dolphin.c new file mode 100644 index 000000000..9fba3ba98 --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/dolphin.c @@ -0,0 +1,1934 @@ +/** + * (c) Copyright 1993, 1994, Silicon Graphics, Inc. + * ALL RIGHTS RESERVED + * Permission to use, copy, modify, and distribute this software for + * any purpose and without fee is hereby granted, provided that the above + * copyright notice appear in all copies and that both the copyright notice + * and this permission notice appear in supporting documentation, and that + * the name of Silicon Graphics, Inc. not be used in advertising + * or publicity pertaining to distribution of the software without specific, + * written prior permission. + * + * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS" + * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR + * FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON + * GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT, + * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY + * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, + * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF + * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC. HAS BEEN + * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE + * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE. + * + * US Government Users Restricted Rights + * Use, duplication, or disclosure by the Government is subject to + * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph + * (c)(1)(ii) of the Rights in Technical Data and Computer Software + * clause at DFARS 252.227-7013 and/or in similar or successor + * clauses in the FAR or the DOD or NASA FAR Supplement. + * Unpublished-- rights reserved under the copyright laws of the + * United States. Contractor/manufacturer is Silicon Graphics, + * Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311. + * + * OpenGL(TM) is a trademark of Silicon Graphics, Inc. + */ +#include +#include +#include "atlantis.h" +/* *INDENT-OFF* */ +static float N001[3] = {-0.005937 ,-0.101998 ,-0.994767}; +static float N002[3] = {0.936780 ,-0.200803 ,0.286569}; +static float N003[3] = {-0.233062 ,0.972058 ,0.028007}; +static float N005[3] = {0.898117 ,0.360171 ,0.252315}; +static float N006[3] = {-0.915437 ,0.348456 ,0.201378}; +static float N007[3] = {0.602263 ,-0.777527 ,0.180920}; +static float N008[3] = {-0.906912 ,-0.412015 ,0.088061}; +static float N012[3] = {0.884408 ,-0.429417 ,-0.182821}; +static float N013[3] = {0.921121 ,0.311084 ,-0.234016}; +static float N014[3] = {0.382635 ,0.877882 ,-0.287948}; +static float N015[3] = {-0.380046 ,0.888166 ,-0.258316}; +static float N016[3] = {-0.891515 ,0.392238 ,-0.226607}; +static float N017[3] = {-0.901419 ,-0.382002 ,-0.203763}; +static float N018[3] = {-0.367225 ,-0.911091 ,-0.187243}; +static float N019[3] = {0.339539 ,-0.924846 ,-0.171388}; +static float N020[3] = {0.914706 ,-0.378617 ,-0.141290}; +static float N021[3] = {0.950662 ,0.262713 ,-0.164994}; +static float N022[3] = {0.546359 ,0.801460 ,-0.243218}; +static float N023[3] = {-0.315796 ,0.917068 ,-0.243431}; +static float N024[3] = {-0.825687 ,0.532277 ,-0.186875}; +static float N025[3] = {-0.974763 ,-0.155232 ,-0.160435}; +static float N026[3] = {-0.560596 ,-0.816658 ,-0.137119}; +static float N027[3] = {0.380210 ,-0.910817 ,-0.160786}; +static float N028[3] = {0.923772 ,-0.358322 ,-0.135093}; +static float N029[3] = {0.951202 ,0.275053 ,-0.139859}; +static float N030[3] = {0.686099 ,0.702548 ,-0.188932}; +static float N031[3] = {-0.521865 ,0.826719 ,-0.210220}; +static float N032[3] = {-0.923820 ,0.346739 ,-0.162258}; +static float N033[3] = {-0.902095 ,-0.409995 ,-0.134646}; +static float N034[3] = {-0.509115 ,-0.848498 ,-0.144404}; +static float N035[3] = {0.456469 ,-0.880293 ,-0.129305}; +static float N036[3] = {0.873401 ,-0.475489 ,-0.105266}; +static float N037[3] = {0.970825 ,0.179861 ,-0.158584}; +static float N038[3] = {0.675609 ,0.714187 ,-0.183004}; +static float N039[3] = {-0.523574 ,0.830212 ,-0.191360}; +static float N040[3] = {-0.958895 ,0.230808 ,-0.165071}; +static float N041[3] = {-0.918285 ,-0.376803 ,-0.121542}; +static float N042[3] = {-0.622467 ,-0.774167 ,-0.114888}; +static float N043[3] = {0.404497 ,-0.908807 ,-0.102231}; +static float N044[3] = {0.930538 ,-0.365155 ,-0.027588}; +static float N045[3] = {0.921920 ,0.374157 ,-0.100345}; +static float N046[3] = {0.507346 ,0.860739 ,0.041562}; +static float N047[3] = {-0.394646 ,0.918815 ,-0.005730}; +static float N048[3] = {-0.925411 ,0.373024 ,-0.066837}; +static float N049[3] = {-0.945337 ,-0.322309 ,-0.049551}; +static float N050[3] = {-0.660437 ,-0.750557 ,-0.022072}; +static float N051[3] = {0.488835 ,-0.871950 ,-0.027261}; +static float N052[3] = {0.902599 ,-0.421397 ,0.087969}; +static float N053[3] = {0.938636 ,0.322606 ,0.122020}; +static float N054[3] = {0.484605 ,0.871078 ,0.079878}; +static float N055[3] = {-0.353607 ,0.931559 ,0.084619}; +static float N056[3] = {-0.867759 ,0.478564 ,0.134054}; +static float N057[3] = {-0.951583 ,-0.296030 ,0.082794}; +static float N058[3] = {-0.672355 ,-0.730209 ,0.121384}; +static float N059[3] = {0.528336 ,-0.842452 ,0.105525}; +static float N060[3] = {0.786913 ,-0.564760 ,0.248627}; +static float N062[3] = {0.622098 ,0.765230 ,0.165584}; +static float N063[3] = {-0.631711 ,0.767816 ,0.106773}; +static float N064[3] = {-0.687886 ,0.606351 ,0.398938}; +static float N065[3] = {-0.946327 ,-0.281623 ,0.158598}; +static float N066[3] = {-0.509549 ,-0.860437 ,0.002776}; +static float N067[3] = {0.462594 ,-0.876692 ,0.131977}; +static float N071[3] = {0.000000 ,1.000000 ,0.000000}; +static float N077[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N078[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N079[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N080[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N081[3] = {-0.571197 ,0.816173 ,0.087152}; +static float N082[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N083[3] = {-0.571197 ,0.816173 ,0.087152}; +static float N084[3] = {-0.571197 ,0.816173 ,0.087152}; +static float N085[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N086[3] = {-0.571197 ,0.816173 ,0.087152}; +static float N087[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N088[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N089[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N090[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N091[3] = {0.000000 ,1.000000 ,0.000000}; +static float N092[3] = {0.000000 ,1.000000 ,0.000000}; +static float N093[3] = {0.000000 ,1.000000 ,0.000000}; +static float N094[3] = {1.000000 ,0.000000 ,0.000000}; +static float N095[3] = {-1.000000 ,0.000000 ,0.000000}; +static float N097[3] = {-0.697296 ,0.702881 ,0.140491}; +static float N098[3] = {0.918864 ,0.340821 ,0.198819}; +static float N099[3] = {-0.932737 ,0.201195 ,0.299202}; +static float N100[3] = {0.029517 ,0.981679 ,0.188244}; +static float N102[3] = {0.813521 ,-0.204936 ,0.544229}; +static float N110[3] = {-0.781480 ,-0.384779 ,0.491155}; +static float N111[3] = {-0.722243 ,0.384927 ,0.574627}; +static float N112[3] = {-0.752278 ,0.502679 ,0.425901}; +static float N113[3] = {0.547257 ,0.367910 ,0.751766}; +static float N114[3] = {0.725949 ,-0.232568 ,0.647233}; +static float N115[3] = {-0.747182 ,-0.660786 ,0.071280}; +static float N116[3] = {0.931519 ,0.200748 ,0.303270}; +static float N117[3] = {-0.828928 ,0.313757 ,0.463071}; +static float N118[3] = {0.902554 ,-0.370967 ,0.218587}; +static float N119[3] = {-0.879257 ,-0.441851 ,0.177973}; +static float N120[3] = {0.642327 ,0.611901 ,0.461512}; +static float N121[3] = {0.964817 ,-0.202322 ,0.167910}; +static float N122[3] = {0.000000 ,1.000000 ,0.000000}; +static float P001[3] = {5.68, -300.95, 1324.70}; +static float P002[3] = {338.69, -219.63, 9677.03}; +static float P003[3] = {12.18, 474.59, 9138.14}; +static float P005[3] = {487.51, 198.05, 9350.78}; +static float P006[3] = {-457.61, 68.74, 9427.85}; +static float P007[3] = {156.52, -266.72, 10311.68}; +static float P008[3] = {-185.56, -266.51, 10310.47}; +static float P009[3] = {124.39, -261.46, 1942.34}; +static float P010[3] = {-130.05, -261.46, 1946.03}; +static float P011[3] = {141.07, -320.11, 1239.38}; +static float P012[3] = {156.48, -360.12, 2073.41}; +static float P013[3] = {162.00, -175.88, 2064.44}; +static float P014[3] = {88.16, -87.72, 2064.02}; +static float P015[3] = {-65.21, -96.13, 2064.02}; +static float P016[3] = {-156.48, -180.96, 2064.44}; +static float P017[3] = {-162.00, -368.93, 2082.39}; +static float P018[3] = {-88.16, -439.22, 2082.39}; +static float P019[3] = {65.21, -440.32, 2083.39}; +static float P020[3] = {246.87, -356.02, 2576.95}; +static float P021[3] = {253.17, -111.15, 2567.15}; +static float P022[3] = {132.34, 51.41, 2559.84}; +static float P023[3] = {-97.88, 40.44, 2567.15}; +static float P024[3] = {-222.97, -117.49, 2567.15}; +static float P025[3] = {-252.22, -371.53, 2569.92}; +static float P026[3] = {-108.44, -518.19, 2586.75}; +static float P027[3] = {97.88, -524.79, 2586.75}; +static float P028[3] = {370.03, -421.19, 3419.70}; +static float P029[3] = {351.15, -16.98, 3423.17}; +static float P030[3] = {200.66, 248.46, 3430.37}; +static float P031[3] = {-148.42, 235.02, 3417.91}; +static float P032[3] = {-360.21, -30.27, 3416.84}; +static float P033[3] = {-357.90, -414.89, 3407.04}; +static float P034[3] = {-148.88, -631.35, 3409.90}; +static float P035[3] = {156.38, -632.59, 3419.70}; +static float P036[3] = {462.61, -469.21, 4431.51}; +static float P037[3] = {466.60, 102.25, 4434.98}; +static float P038[3] = {243.05, 474.34, 4562.02}; +static float P039[3] = {-191.23, 474.40, 4554.42}; +static float P040[3] = {-476.12, 111.05, 4451.11}; +static float P041[3] = {-473.36, -470.74, 4444.78}; +static float P042[3] = {-266.95, -748.41, 4447.78}; +static float P043[3] = {211.14, -749.91, 4429.73}; +static float P044[3] = {680.57, -370.27, 5943.46}; +static float P045[3] = {834.01, 363.09, 6360.63}; +static float P046[3] = {371.29, 804.51, 6486.26}; +static float P047[3] = {-291.43, 797.22, 6494.28}; +static float P048[3] = {-784.13, 370.75, 6378.01}; +static float P049[3] = {-743.29, -325.82, 5943.46}; +static float P050[3] = {-383.24, -804.77, 5943.46}; +static float P051[3] = {283.47, -846.09, 5943.46}; +static float iP001[3] = {5.68, -300.95, 1324.70}; +static float iP009[3] = {124.39, -261.46, 1942.34}; +static float iP010[3] = {-130.05, -261.46, 1946.03}; +static float iP011[3] = {141.07, -320.11, 1239.38}; +static float iP012[3] = {156.48, -360.12, 2073.41}; +static float iP013[3] = {162.00, -175.88, 2064.44}; +static float iP014[3] = {88.16, -87.72, 2064.02}; +static float iP015[3] = {-65.21, -96.13, 2064.02}; +static float iP016[3] = {-156.48, -180.96, 2064.44}; +static float iP017[3] = {-162.00, -368.93, 2082.39}; +static float iP018[3] = {-88.16, -439.22, 2082.39}; +static float iP019[3] = {65.21, -440.32, 2083.39}; +static float iP020[3] = {246.87, -356.02, 2576.95}; +static float iP021[3] = {253.17, -111.15, 2567.15}; +static float iP022[3] = {132.34, 51.41, 2559.84}; +static float iP023[3] = {-97.88, 40.44, 2567.15}; +static float iP024[3] = {-222.97, -117.49, 2567.15}; +static float iP025[3] = {-252.22, -371.53, 2569.92}; +static float iP026[3] = {-108.44, -518.19, 2586.75}; +static float iP027[3] = {97.88, -524.79, 2586.75}; +static float iP028[3] = {370.03, -421.19, 3419.70}; +static float iP029[3] = {351.15, -16.98, 3423.17}; +static float iP030[3] = {200.66, 248.46, 3430.37}; +static float iP031[3] = {-148.42, 235.02, 3417.91}; +static float iP032[3] = {-360.21, -30.27, 3416.84}; +static float iP033[3] = {-357.90, -414.89, 3407.04}; +static float iP034[3] = {-148.88, -631.35, 3409.90}; +static float iP035[3] = {156.38, -632.59, 3419.70}; +static float iP036[3] = {462.61, -469.21, 4431.51}; +static float iP037[3] = {466.60, 102.25, 4434.98}; +static float iP038[3] = {243.05, 474.34, 4562.02}; +static float iP039[3] = {-191.23, 474.40, 4554.42}; +static float iP040[3] = {-476.12, 111.05, 4451.11}; +static float iP041[3] = {-473.36, -470.74, 4444.78}; +static float iP042[3] = {-266.95, -748.41, 4447.78}; +static float iP043[3] = {211.14, -749.91, 4429.73}; +static float iP044[3] = {680.57, -370.27, 5943.46}; +static float iP045[3] = {834.01, 363.09, 6360.63}; +static float iP046[3] = {371.29, 804.51, 6486.26}; +static float iP047[3] = {-291.43, 797.22, 6494.28}; +static float iP048[3] = {-784.13, 370.75, 6378.01}; +static float iP049[3] = {-743.29, -325.82, 5943.46}; +static float iP050[3] = {-383.24, -804.77, 5943.46}; +static float iP051[3] = {283.47, -846.09, 5943.46}; +static float P052[3] = {599.09, -300.15, 7894.03}; +static float P053[3] = {735.48, 306.26, 7911.92}; +static float P054[3] = {246.22, 558.53, 8460.50}; +static float P055[3] = {-230.41, 559.84, 8473.23}; +static float P056[3] = {-698.66, 320.83, 7902.59}; +static float P057[3] = {-643.29, -299.16, 7902.59}; +static float P058[3] = {-341.47, -719.30, 7902.59}; +static float P059[3] = {252.57, -756.12, 7902.59}; +static float P060[3] = {458.39, -265.31, 9355.44}; +static float P062[3] = {224.04, 338.75, 9450.30}; +static float P063[3] = {-165.71, 341.04, 9462.35}; +static float P064[3] = {-298.11, 110.13, 10180.37}; +static float P065[3] = {-473.99, -219.71, 9355.44}; +static float P066[3] = {-211.97, -479.87, 9355.44}; +static float P067[3] = {192.86, -491.45, 9348.73}; +static float P068[3] = {-136.29, -319.84, 1228.73}; +static float P069[3] = {1111.17, -314.14, 1314.19}; +static float P070[3] = {-1167.34, -321.61, 1319.45}; +static float P071[3] = {1404.86, -306.66, 1235.45}; +static float P072[3] = {-1409.73, -314.14, 1247.66}; +static float P073[3] = {1254.01, -296.87, 1544.58}; +static float P074[3] = {-1262.09, -291.70, 1504.26}; +static float P075[3] = {965.71, -269.26, 1742.65}; +static float P076[3] = {-900.97, -276.74, 1726.07}; +static float iP068[3] = {-136.29, -319.84, 1228.73}; +static float iP069[3] = {1111.17, -314.14, 1314.19}; +static float iP070[3] = {-1167.34, -321.61, 1319.45}; +static float iP071[3] = {1404.86, -306.66, 1235.45}; +static float iP072[3] = {-1409.73, -314.14, 1247.66}; +static float iP073[3] = {1254.01, -296.87, 1544.58}; +static float iP074[3] = {-1262.09, -291.70, 1504.26}; +static float iP075[3] = {965.71, -269.26, 1742.65}; +static float iP076[3] = {-900.97, -276.74, 1726.07}; +static float P077[3] = {1058.00, -448.81, 8194.66}; +static float P078[3] = {-1016.51, -456.43, 8190.62}; +static float P079[3] = {-1515.96, -676.45, 7754.93}; +static float P080[3] = {1856.75, -830.34, 7296.56}; +static float P081[3] = {1472.16, -497.38, 7399.68}; +static float P082[3] = {-1775.26, -829.51, 7298.46}; +static float P083[3] = {911.09, -252.51, 7510.99}; +static float P084[3] = {-1451.94, -495.62, 7384.30}; +static float P085[3] = {1598.75, -669.26, 7769.90}; +static float P086[3] = {-836.53, -250.08, 7463.25}; +static float P087[3] = {722.87, -158.18, 8006.41}; +static float P088[3] = {-688.86, -162.28, 7993.89}; +static float P089[3] = {-626.92, -185.30, 8364.98}; +static float P090[3] = {647.72, -189.46, 8354.99}; +static float P091[3] = {0.00, 835.01, 5555.62}; +static float P092[3] = {0.00, 1350.18, 5220.86}; +static float P093[3] = {0.00, 1422.94, 5285.27}; +static float P094[3] = {0.00, 1296.75, 5650.19}; +static float P095[3] = {0.00, 795.63, 6493.88}; +static float iP091[3] = {0.00, 835.01, 5555.62}; +static float iP092[3] = {0.00, 1350.18, 5220.86}; +static float iP093[3] = {0.00, 1422.94, 5285.27}; +static float iP094[3] = {0.00, 1296.75, 5650.19}; +static float iP095[3] = {0.00, 795.63, 6493.88}; +static float P097[3] = {-194.91, -357.14, 10313.32}; +static float P098[3] = {135.35, -357.66, 10307.94}; +static float iP097[3] = {-194.91, -357.14, 10313.32}; +static float iP098[3] = {135.35, -357.66, 10307.94}; +static float P099[3] = {-380.53, -221.14, 9677.98}; +static float P100[3] = {0.00, 412.99, 9629.33}; +static float P102[3] = {59.51, -412.55, 10677.58}; +static float iP102[3] = {59.51, -412.55, 10677.58}; +static float P103[3] = {6.50, 484.74, 9009.94}; +static float P105[3] = {-41.86, 476.51, 9078.17}; +static float P108[3] = {49.20, 476.83, 9078.24}; +static float P110[3] = {-187.62, -410.04, 10674.12}; +static float iP110[3] = {-187.62, -410.04, 10674.12}; +static float P111[3] = {-184.25, -318.70, 10723.88}; +static float iP111[3] = {-184.25, -318.70, 10723.88}; +static float P112[3] = {-179.61, -142.81, 10670.26}; +static float P113[3] = {57.43, -147.94, 10675.26}; +static float P114[3] = {54.06, -218.90, 10712.44}; +static float P115[3] = {-186.35, -212.09, 10713.76}; +static float P116[3] = {205.90, -84.61, 10275.97}; +static float P117[3] = {-230.96, -83.26, 10280.09}; +static float iP118[3] = {216.78, -509.17, 10098.94}; +static float iP119[3] = {-313.21, -510.79, 10102.62}; +static float P118[3] = {216.78, -509.17, 10098.94}; +static float P119[3] = {-313.21, -510.79, 10102.62}; +static float P120[3] = {217.95, 96.34, 10161.62}; +static float P121[3] = {71.99, -319.74, 10717.70}; +static float iP121[3] = {71.99, -319.74, 10717.70}; +static float P122[3] = {0.00, 602.74, 5375.84}; +static float iP122[3] = {0.00, 602.74, 5375.84}; +static float P123[3] = {-448.94, -203.14, 9499.60}; +static float P124[3] = {-442.64, -185.20, 9528.07}; +static float P125[3] = {-441.07, -148.05, 9528.07}; +static float P126[3] = {-443.43, -128.84, 9499.60}; +static float P127[3] = {-456.87, -146.78, 9466.67}; +static float P128[3] = {-453.68, -183.93, 9466.67}; +static float P129[3] = {428.43, -124.08, 9503.03}; +static float P130[3] = {419.73, -142.14, 9534.56}; +static float P131[3] = {419.92, -179.96, 9534.56}; +static float P132[3] = {431.20, -199.73, 9505.26}; +static float P133[3] = {442.28, -181.67, 9475.96}; +static float P134[3] = {442.08, -143.84, 9475.96}; +/* *INDENT-ON* */ + +void +Dolphin001(void) +{ + glNormal3fv(N071); + glBegin(GL_POLYGON); + glVertex3fv(P001); + glVertex3fv(P068); + glVertex3fv(P010); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P068); + glVertex3fv(P076); + glVertex3fv(P010); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P068); + glVertex3fv(P070); + glVertex3fv(P076); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P076); + glVertex3fv(P070); + glVertex3fv(P074); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P070); + glVertex3fv(P072); + glVertex3fv(P074); + glEnd(); + glNormal3fv(N119); + glBegin(GL_POLYGON); + glVertex3fv(P072); + glVertex3fv(P070); + glVertex3fv(P074); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P074); + glVertex3fv(P070); + glVertex3fv(P076); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P070); + glVertex3fv(P068); + glVertex3fv(P076); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P076); + glVertex3fv(P068); + glVertex3fv(P010); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P068); + glVertex3fv(P001); + glVertex3fv(P010); + glEnd(); +} + +void +Dolphin002(void) +{ + glNormal3fv(N071); + glBegin(GL_POLYGON); + glVertex3fv(P011); + glVertex3fv(P001); + glVertex3fv(P009); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P075); + glVertex3fv(P011); + glVertex3fv(P009); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P069); + glVertex3fv(P011); + glVertex3fv(P075); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P069); + glVertex3fv(P075); + glVertex3fv(P073); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P071); + glVertex3fv(P069); + glVertex3fv(P073); + glEnd(); + glNormal3fv(N119); + glBegin(GL_POLYGON); + glVertex3fv(P001); + glVertex3fv(P011); + glVertex3fv(P009); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P009); + glVertex3fv(P011); + glVertex3fv(P075); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P011); + glVertex3fv(P069); + glVertex3fv(P075); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P069); + glVertex3fv(P073); + glVertex3fv(P075); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P069); + glVertex3fv(P071); + glVertex3fv(P073); + glEnd(); +} + +void +Dolphin003(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N019); + glVertex3fv(P019); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N012); + glVertex3fv(P012); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N018); + glVertex3fv(P018); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N016); + glVertex3fv(P016); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N012); + glVertex3fv(P012); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N015); + glVertex3fv(P015); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N013); + glVertex3fv(P013); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N014); + glVertex3fv(P014); + glEnd(); +} + +void +Dolphin004(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N022); + glVertex3fv(P022); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N023); + glVertex3fv(P023); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N024); + glVertex3fv(P024); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N025); + glVertex3fv(P025); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N021); + glVertex3fv(P021); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N012); + glVertex3fv(P012); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N020); + glVertex3fv(P020); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N026); + glVertex3fv(P026); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N012); + glVertex3fv(P012); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N027); + glVertex3fv(P027); + glEnd(); +} + +void +Dolphin005(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N030); + glVertex3fv(P030); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N030); + glVertex3fv(P030); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N031); + glVertex3fv(P031); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N031); + glVertex3fv(P031); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N032); + glVertex3fv(P032); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N032); + glVertex3fv(P032); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N028); + glVertex3fv(P028); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N028); + glVertex3fv(P028); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N035); + glVertex3fv(P035); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N033); + glVertex3fv(P033); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N034); + glVertex3fv(P034); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N034); + glVertex3fv(P034); + glEnd(); +} + +void +Dolphin006(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N092); + glVertex3fv(P092); + glNormal3fv(N093); + glVertex3fv(P093); + glNormal3fv(N094); + glVertex3fv(P094); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N093); + glVertex3fv(P093); + glNormal3fv(N092); + glVertex3fv(P092); + glNormal3fv(N094); + glVertex3fv(P094); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N092); + glVertex3fv(P092); + glNormal3fv(N091); + glVertex3fv(P091); + glNormal3fv(N095); + glVertex3fv(P095); + glNormal3fv(N094); + glVertex3fv(P094); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N091); + glVertex3fv(P091); + glNormal3fv(N092); + glVertex3fv(P092); + glNormal3fv(N094); + glVertex3fv(P094); + glNormal3fv(N095); + glVertex3fv(P095); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N122); + glVertex3fv(P122); + glNormal3fv(N095); + glVertex3fv(P095); + glNormal3fv(N091); + glVertex3fv(P091); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N122); + glVertex3fv(P122); + glNormal3fv(N091); + glVertex3fv(P091); + glNormal3fv(N095); + glVertex3fv(P095); + glEnd(); +} + +void +Dolphin007(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N038); + glVertex3fv(P038); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N038); + glVertex3fv(P038); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N037); + glVertex3fv(P037); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N037); + glVertex3fv(P037); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N036); + glVertex3fv(P036); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N036); + glVertex3fv(P036); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N043); + glVertex3fv(P043); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N034); + glVertex3fv(P034); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N043); + glVertex3fv(P043); + glNormal3fv(N042); + glVertex3fv(P042); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N034); + glVertex3fv(P034); + glNormal3fv(N042); + glVertex3fv(P042); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N041); + glVertex3fv(P041); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N039); + glVertex3fv(P039); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N040); + glVertex3fv(P040); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N040); + glVertex3fv(P040); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N041); + glVertex3fv(P041); + glEnd(); +} + +void +Dolphin008(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N043); + glVertex3fv(P043); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N050); + glVertex3fv(P050); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N043); + glVertex3fv(P043); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N051); + glVertex3fv(P051); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N044); + glVertex3fv(P044); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N050); + glVertex3fv(P050); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N049); + glVertex3fv(P049); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N044); + glVertex3fv(P044); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N045); + glVertex3fv(P045); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N049); + glVertex3fv(P049); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N048); + glVertex3fv(P048); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N048); + glVertex3fv(P048); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N047); + glVertex3fv(P047); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N045); + glVertex3fv(P045); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N045); + glVertex3fv(P045); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N046); + glVertex3fv(P046); + glEnd(); +} + +void +Dolphin009(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N058); + glVertex3fv(P058); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N059); + glVertex3fv(P059); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N052); + glVertex3fv(P052); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N045); + glVertex3fv(P045); + glNormal3fv(N053); + glVertex3fv(P053); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N053); + glVertex3fv(P053); + glNormal3fv(N052); + glVertex3fv(P052); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N058); + glVertex3fv(P058); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N057); + glVertex3fv(P057); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N057); + glVertex3fv(P057); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N057); + glVertex3fv(P057); + glNormal3fv(N056); + glVertex3fv(P056); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N056); + glVertex3fv(P056); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N055); + glVertex3fv(P055); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N045); + glVertex3fv(P045); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N053); + glVertex3fv(P053); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N054); + glVertex3fv(P054); + glNormal3fv(N053); + glVertex3fv(P053); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N055); + glVertex3fv(P055); + glNormal3fv(N054); + glVertex3fv(P054); + glEnd(); +} + +void +Dolphin010(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N080); + glVertex3fv(P080); + glNormal3fv(N081); + glVertex3fv(P081); + glNormal3fv(N085); + glVertex3fv(P085); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N081); + glVertex3fv(P081); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N085); + glVertex3fv(P085); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N085); + glVertex3fv(P085); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N077); + glVertex3fv(P077); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N087); + glVertex3fv(P087); + glNormal3fv(N077); + glVertex3fv(P077); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N077); + glVertex3fv(P077); + glNormal3fv(N087); + glVertex3fv(P087); + glNormal3fv(N090); + glVertex3fv(P090); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N081); + glVertex3fv(P081); + glNormal3fv(N080); + glVertex3fv(P080); + glNormal3fv(N085); + glVertex3fv(P085); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N081); + glVertex3fv(P081); + glNormal3fv(N085); + glVertex3fv(P085); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N085); + glVertex3fv(P085); + glNormal3fv(N077); + glVertex3fv(P077); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N087); + glVertex3fv(P087); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N077); + glVertex3fv(P077); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N087); + glVertex3fv(P087); + glNormal3fv(N077); + glVertex3fv(P077); + glNormal3fv(N090); + glVertex3fv(P090); + glEnd(); +} + +void +Dolphin011(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N082); + glVertex3fv(P082); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N079); + glVertex3fv(P079); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N079); + glVertex3fv(P079); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N079); + glVertex3fv(P079); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N078); + glVertex3fv(P078); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N088); + glVertex3fv(P088); + glNormal3fv(N078); + glVertex3fv(P078); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N078); + glVertex3fv(P078); + glNormal3fv(N088); + glVertex3fv(P088); + glNormal3fv(N089); + glVertex3fv(P089); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N088); + glVertex3fv(P088); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N089); + glVertex3fv(P089); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N089); + glVertex3fv(P089); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N078); + glVertex3fv(P078); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N078); + glVertex3fv(P078); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N078); + glVertex3fv(P078); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N079); + glVertex3fv(P079); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N082); + glVertex3fv(P082); + glNormal3fv(N079); + glVertex3fv(P079); + glEnd(); +} + +void +Dolphin012(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N067); + glVertex3fv(P067); + glNormal3fv(N066); + glVertex3fv(P066); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N052); + glVertex3fv(P052); + glNormal3fv(N060); + glVertex3fv(P060); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N067); + glVertex3fv(P067); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N065); + glVertex3fv(P065); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N057); + glVertex3fv(P057); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N057); + glVertex3fv(P057); + glNormal3fv(N065); + glVertex3fv(P065); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N006); + glVertex3fv(P006); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N063); + glVertex3fv(P063); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N055); + glVertex3fv(P055); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N054); + glVertex3fv(P054); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N005); + glVertex3fv(P005); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N054); + glVertex3fv(P054); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N053); + glVertex3fv(P053); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N052); + glVertex3fv(P052); + glNormal3fv(N053); + glVertex3fv(P053); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N060); + glVertex3fv(P060); + glEnd(); +} + +void +Dolphin013(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N116); + glVertex3fv(P116); + glNormal3fv(N117); + glVertex3fv(P117); + glNormal3fv(N112); + glVertex3fv(P112); + glNormal3fv(N113); + glVertex3fv(P113); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N114); + glVertex3fv(P114); + glNormal3fv(N113); + glVertex3fv(P113); + glNormal3fv(N112); + glVertex3fv(P112); + glNormal3fv(N115); + glVertex3fv(P115); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N114); + glVertex3fv(P114); + glNormal3fv(N116); + glVertex3fv(P116); + glNormal3fv(N113); + glVertex3fv(P113); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N114); + glVertex3fv(P114); + glNormal3fv(N007); + glVertex3fv(P007); + glNormal3fv(N116); + glVertex3fv(P116); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N007); + glVertex3fv(P007); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N116); + glVertex3fv(P116); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P002); + glVertex3fv(P007); + glVertex3fv(P008); + glVertex3fv(P099); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P007); + glVertex3fv(P114); + glVertex3fv(P115); + glVertex3fv(P008); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N117); + glVertex3fv(P117); + glNormal3fv(N099); + glVertex3fv(P099); + glNormal3fv(N008); + glVertex3fv(P008); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N117); + glVertex3fv(P117); + glNormal3fv(N008); + glVertex3fv(P008); + glNormal3fv(N112); + glVertex3fv(P112); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N112); + glVertex3fv(P112); + glNormal3fv(N008); + glVertex3fv(P008); + glNormal3fv(N115); + glVertex3fv(P115); + glEnd(); +} + +void +Dolphin014(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N111); + glVertex3fv(P111); + glNormal3fv(N110); + glVertex3fv(P110); + glNormal3fv(N102); + glVertex3fv(P102); + glNormal3fv(N121); + glVertex3fv(P121); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N111); + glVertex3fv(P111); + glNormal3fv(N097); + glVertex3fv(P097); + glNormal3fv(N110); + glVertex3fv(P110); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N097); + glVertex3fv(P097); + glNormal3fv(N119); + glVertex3fv(P119); + glNormal3fv(N110); + glVertex3fv(P110); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N097); + glVertex3fv(P097); + glNormal3fv(N099); + glVertex3fv(P099); + glNormal3fv(N119); + glVertex3fv(P119); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N099); + glVertex3fv(P099); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N119); + glVertex3fv(P119); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N119); + glVertex3fv(P119); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P098); + glVertex3fv(P097); + glVertex3fv(P111); + glVertex3fv(P121); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P002); + glVertex3fv(P099); + glVertex3fv(P097); + glVertex3fv(P098); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N110); + glVertex3fv(P110); + glNormal3fv(N119); + glVertex3fv(P119); + glNormal3fv(N118); + glVertex3fv(P118); + glNormal3fv(N102); + glVertex3fv(P102); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N119); + glVertex3fv(P119); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N067); + glVertex3fv(P067); + glNormal3fv(N118); + glVertex3fv(P118); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N067); + glVertex3fv(P067); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N002); + glVertex3fv(P002); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N067); + glVertex3fv(P067); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N118); + glVertex3fv(P118); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N118); + glVertex3fv(P118); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N098); + glVertex3fv(P098); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N118); + glVertex3fv(P118); + glNormal3fv(N098); + glVertex3fv(P098); + glNormal3fv(N102); + glVertex3fv(P102); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N102); + glVertex3fv(P102); + glNormal3fv(N098); + glVertex3fv(P098); + glNormal3fv(N121); + glVertex3fv(P121); + glEnd(); +} + +void +Dolphin015(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N055); + glVertex3fv(P055); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N054); + glVertex3fv(P054); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N055); + glVertex3fv(P055); + glNormal3fv(N063); + glVertex3fv(P063); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N100); + glVertex3fv(P100); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N054); + glVertex3fv(P054); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N054); + glVertex3fv(P054); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N062); + glVertex3fv(P062); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N064); + glVertex3fv(P064); + glNormal3fv(N120); + glVertex3fv(P120); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N064); + glVertex3fv(P064); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N064); + glVertex3fv(P064); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N064); + glVertex3fv(P064); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N099); + glVertex3fv(P099); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N064); + glVertex3fv(P064); + glNormal3fv(N099); + glVertex3fv(P099); + glNormal3fv(N117); + glVertex3fv(P117); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N120); + glVertex3fv(P120); + glNormal3fv(N064); + glVertex3fv(P064); + glNormal3fv(N117); + glVertex3fv(P117); + glNormal3fv(N116); + glVertex3fv(P116); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N099); + glVertex3fv(P099); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N120); + glVertex3fv(P120); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N120); + glVertex3fv(P120); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N120); + glVertex3fv(P120); + glNormal3fv(N002); + glVertex3fv(P002); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N120); + glVertex3fv(P120); + glNormal3fv(N116); + glVertex3fv(P116); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N002); + glVertex3fv(P002); + glEnd(); +} + +void +Dolphin016(void) +{ + + glDisable(GL_DEPTH_TEST); + glBegin(GL_POLYGON); + glVertex3fv(P123); + glVertex3fv(P124); + glVertex3fv(P125); + glVertex3fv(P126); + glVertex3fv(P127); + glVertex3fv(P128); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P129); + glVertex3fv(P130); + glVertex3fv(P131); + glVertex3fv(P132); + glVertex3fv(P133); + glVertex3fv(P134); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P103); + glVertex3fv(P105); + glVertex3fv(P108); + glEnd(); + glEnable(GL_DEPTH_TEST); +} + +void +DrawDolphin(fishRec * fish) +{ + float seg0, seg1, seg2, seg3, seg4, seg5, seg6, seg7; + float pitch, thrash, chomp; + + fish->htail = (int) (fish->htail - (int) (10.0 * fish->v)) % 360; + + thrash = 70.0 * fish->v; + + seg0 = 1.0 * thrash * sin((fish->htail) * RRAD); + seg3 = 1.0 * thrash * sin((fish->htail) * RRAD); + seg1 = 2.0 * thrash * sin((fish->htail + 4.0) * RRAD); + seg2 = 3.0 * thrash * sin((fish->htail + 6.0) * RRAD); + seg4 = 4.0 * thrash * sin((fish->htail + 10.0) * RRAD); + seg5 = 4.5 * thrash * sin((fish->htail + 15.0) * RRAD); + seg6 = 5.0 * thrash * sin((fish->htail + 20.0) * RRAD); + seg7 = 6.0 * thrash * sin((fish->htail + 30.0) * RRAD); + + pitch = fish->v * sin((fish->htail + 180.0) * RRAD); + + if (fish->v > 2.0) { + chomp = -(fish->v - 2.0) * 200.0; + } + chomp = 100.0; + + P012[1] = iP012[1] + seg5; + P013[1] = iP013[1] + seg5; + P014[1] = iP014[1] + seg5; + P015[1] = iP015[1] + seg5; + P016[1] = iP016[1] + seg5; + P017[1] = iP017[1] + seg5; + P018[1] = iP018[1] + seg5; + P019[1] = iP019[1] + seg5; + + P020[1] = iP020[1] + seg4; + P021[1] = iP021[1] + seg4; + P022[1] = iP022[1] + seg4; + P023[1] = iP023[1] + seg4; + P024[1] = iP024[1] + seg4; + P025[1] = iP025[1] + seg4; + P026[1] = iP026[1] + seg4; + P027[1] = iP027[1] + seg4; + + P028[1] = iP028[1] + seg2; + P029[1] = iP029[1] + seg2; + P030[1] = iP030[1] + seg2; + P031[1] = iP031[1] + seg2; + P032[1] = iP032[1] + seg2; + P033[1] = iP033[1] + seg2; + P034[1] = iP034[1] + seg2; + P035[1] = iP035[1] + seg2; + + P036[1] = iP036[1] + seg1; + P037[1] = iP037[1] + seg1; + P038[1] = iP038[1] + seg1; + P039[1] = iP039[1] + seg1; + P040[1] = iP040[1] + seg1; + P041[1] = iP041[1] + seg1; + P042[1] = iP042[1] + seg1; + P043[1] = iP043[1] + seg1; + + P044[1] = iP044[1] + seg0; + P045[1] = iP045[1] + seg0; + P046[1] = iP046[1] + seg0; + P047[1] = iP047[1] + seg0; + P048[1] = iP048[1] + seg0; + P049[1] = iP049[1] + seg0; + P050[1] = iP050[1] + seg0; + P051[1] = iP051[1] + seg0; + + P009[1] = iP009[1] + seg6; + P010[1] = iP010[1] + seg6; + P075[1] = iP075[1] + seg6; + P076[1] = iP076[1] + seg6; + + P001[1] = iP001[1] + seg7; + P011[1] = iP011[1] + seg7; + P068[1] = iP068[1] + seg7; + P069[1] = iP069[1] + seg7; + P070[1] = iP070[1] + seg7; + P071[1] = iP071[1] + seg7; + P072[1] = iP072[1] + seg7; + P073[1] = iP073[1] + seg7; + P074[1] = iP074[1] + seg7; + + P091[1] = iP091[1] + seg3; + P092[1] = iP092[1] + seg3; + P093[1] = iP093[1] + seg3; + P094[1] = iP094[1] + seg3; + P095[1] = iP095[1] + seg3; + P122[1] = iP122[1] + seg3 * 1.5; + + P097[1] = iP097[1] + chomp; + P098[1] = iP098[1] + chomp; + P102[1] = iP102[1] + chomp; + P110[1] = iP110[1] + chomp; + P111[1] = iP111[1] + chomp; + P121[1] = iP121[1] + chomp; + P118[1] = iP118[1] + chomp; + P119[1] = iP119[1] + chomp; + + glPushMatrix(); + + glRotatef(pitch, 1.0, 0.0, 0.0); + + glTranslatef(0.0, 0.0, 7000.0); + + glRotatef(180.0, 0.0, 1.0, 0.0); + + glEnable(GL_CULL_FACE); + Dolphin014(); + Dolphin010(); + Dolphin009(); + Dolphin012(); + Dolphin013(); + Dolphin006(); + Dolphin002(); + Dolphin001(); + Dolphin003(); + Dolphin015(); + Dolphin004(); + Dolphin005(); + Dolphin007(); + Dolphin008(); + Dolphin011(); + Dolphin016(); + glDisable(GL_CULL_FACE); + + glPopMatrix(); +} diff --git a/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/shark.c b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/shark.c new file mode 100644 index 000000000..9c847dbaf --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/shark.c @@ -0,0 +1,1308 @@ +/** + * (c) Copyright 1993, 1994, Silicon Graphics, Inc. + * ALL RIGHTS RESERVED + * Permission to use, copy, modify, and distribute this software for + * any purpose and without fee is hereby granted, provided that the above + * copyright notice appear in all copies and that both the copyright notice + * and this permission notice appear in supporting documentation, and that + * the name of Silicon Graphics, Inc. not be used in advertising + * or publicity pertaining to distribution of the software without specific, + * written prior permission. + * + * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS" + * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR + * FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON + * GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT, + * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY + * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, + * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF + * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC. HAS BEEN + * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE + * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE. + * + * US Government Users Restricted Rights + * Use, duplication, or disclosure by the Government is subject to + * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph + * (c)(1)(ii) of the Rights in Technical Data and Computer Software + * clause at DFARS 252.227-7013 and/or in similar or successor + * clauses in the FAR or the DOD or NASA FAR Supplement. + * Unpublished-- rights reserved under the copyright laws of the + * United States. Contractor/manufacturer is Silicon Graphics, + * Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311. + * + * OpenGL(TM) is a trademark of Silicon Graphics, Inc. + */ +#include +#include +#include "atlantis.h" +/* *INDENT-OFF* */ +static float N002[3] = {0.000077 ,-0.020611 ,0.999788}; +static float N003[3] = {0.961425 ,0.258729 ,-0.093390}; +static float N004[3] = {0.510811 ,-0.769633 ,-0.383063}; +static float N005[3] = {0.400123 ,0.855734 ,-0.328055}; +static float N006[3] = {-0.770715 ,0.610204 ,-0.183440}; +static float N007[3] = {-0.915597 ,-0.373345 ,-0.149316}; +static float N008[3] = {-0.972788 ,0.208921 ,-0.100179}; +static float N009[3] = {-0.939713 ,-0.312268 ,-0.139383}; +static float N010[3] = {-0.624138 ,-0.741047 ,-0.247589}; +static float N011[3] = {0.591434 ,-0.768401 ,-0.244471}; +static float N012[3] = {0.935152 ,-0.328495 ,-0.132598}; +static float N013[3] = {0.997102 ,0.074243 ,-0.016593}; +static float N014[3] = {0.969995 ,0.241712 ,-0.026186}; +static float N015[3] = {0.844539 ,0.502628 ,-0.184714}; +static float N016[3] = {-0.906608 ,0.386308 ,-0.169787}; +static float N017[3] = {-0.970016 ,0.241698 ,-0.025516}; +static float N018[3] = {-0.998652 ,0.050493 ,-0.012045}; +static float N019[3] = {-0.942685 ,-0.333051 ,-0.020556}; +static float N020[3] = {-0.660944 ,-0.750276 ,0.015480}; +static float N021[3] = {0.503549 ,-0.862908 ,-0.042749}; +static float N022[3] = {0.953202 ,-0.302092 ,-0.012089}; +static float N023[3] = {0.998738 ,0.023574 ,0.044344}; +static float N024[3] = {0.979297 ,0.193272 ,0.060202}; +static float N025[3] = {0.798300 ,0.464885 ,0.382883}; +static float N026[3] = {-0.756590 ,0.452403 ,0.472126}; +static float N027[3] = {-0.953855 ,0.293003 ,0.065651}; +static float N028[3] = {-0.998033 ,0.040292 ,0.048028}; +static float N029[3] = {-0.977079 ,-0.204288 ,0.059858}; +static float N030[3] = {-0.729117 ,-0.675304 ,0.111140}; +static float N031[3] = {0.598361 ,-0.792753 ,0.116221}; +static float N032[3] = {0.965192 ,-0.252991 ,0.066332}; +static float N033[3] = {0.998201 ,-0.002790 ,0.059892}; +static float N034[3] = {0.978657 ,0.193135 ,0.070207}; +static float N035[3] = {0.718815 ,0.680392 ,0.142733}; +static float N036[3] = {-0.383096 ,0.906212 ,0.178936}; +static float N037[3] = {-0.952831 ,0.292590 ,0.080647}; +static float N038[3] = {-0.997680 ,0.032417 ,0.059861}; +static float N039[3] = {-0.982629 ,-0.169881 ,0.074700}; +static float N040[3] = {-0.695424 ,-0.703466 ,0.146700}; +static float N041[3] = {0.359323 ,-0.915531 ,0.180805}; +static float N042[3] = {0.943356 ,-0.319387 ,0.089842}; +static float N043[3] = {0.998272 ,-0.032435 ,0.048993}; +static float N044[3] = {0.978997 ,0.193205 ,0.065084}; +static float N045[3] = {0.872144 ,0.470094 ,-0.135565}; +static float N046[3] = {-0.664282 ,0.737945 ,-0.119027}; +static float N047[3] = {-0.954508 ,0.288570 ,0.075107}; +static float N048[3] = {-0.998273 ,0.032406 ,0.048993}; +static float N049[3] = {-0.979908 ,-0.193579 ,0.048038}; +static float N050[3] = {-0.858736 ,-0.507202 ,-0.072938}; +static float N051[3] = {0.643545 ,-0.763887 ,-0.048237}; +static float N052[3] = {0.955580 ,-0.288954 ,0.058068}; +static float N058[3] = {0.000050 ,0.793007 ,-0.609213}; +static float N059[3] = {0.913510 ,0.235418 ,-0.331779}; +static float N060[3] = {-0.807970 ,0.495000 ,-0.319625}; +static float N061[3] = {0.000000 ,0.784687 ,-0.619892}; +static float N062[3] = {0.000000 ,-1.000000 ,0.000000}; +static float N063[3] = {0.000000 ,1.000000 ,0.000000}; +static float N064[3] = {0.000000 ,1.000000 ,0.000000}; +static float N065[3] = {0.000000 ,1.000000 ,0.000000}; +static float N066[3] = {-0.055784 ,0.257059 ,0.964784}; +static float N069[3] = {-0.000505 ,-0.929775 ,-0.368127}; +static float N070[3] = {0.000000 ,1.000000 ,0.000000}; +static float P002[3] = {0.00, -36.59, 5687.72}; +static float P003[3] = {90.00, 114.73, 724.38}; +static float P004[3] = {58.24, -146.84, 262.35}; +static float P005[3] = {27.81, 231.52, 510.43}; +static float P006[3] = {-27.81, 230.43, 509.76}; +static float P007[3] = {-46.09, -146.83, 265.84}; +static float P008[3] = {-90.00, 103.84, 718.53}; +static float P009[3] = {-131.10, -165.92, 834.85}; +static float P010[3] = {-27.81, -285.31, 500.00}; +static float P011[3] = {27.81, -285.32, 500.00}; +static float P012[3] = {147.96, -170.89, 845.50}; +static float P013[3] = {180.00, 0.00, 2000.00}; +static float P014[3] = {145.62, 352.67, 2000.00}; +static float P015[3] = {55.62, 570.63, 2000.00}; +static float P016[3] = {-55.62, 570.64, 2000.00}; +static float P017[3] = {-145.62, 352.68, 2000.00}; +static float P018[3] = {-180.00, 0.01, 2000.00}; +static float P019[3] = {-178.20, -352.66, 2001.61}; +static float P020[3] = {-55.63, -570.63, 2000.00}; +static float P021[3] = {55.62, -570.64, 2000.00}; +static float P022[3] = {179.91, -352.69, 1998.39}; +static float P023[3] = {150.00, 0.00, 3000.00}; +static float P024[3] = {121.35, 293.89, 3000.00}; +static float P025[3] = {46.35, 502.93, 2883.09}; +static float P026[3] = {-46.35, 497.45, 2877.24}; +static float P027[3] = {-121.35, 293.90, 3000.00}; +static float P028[3] = {-150.00, 0.00, 3000.00}; +static float P029[3] = {-152.21, -304.84, 2858.68}; +static float P030[3] = {-46.36, -475.52, 3000.00}; +static float P031[3] = {46.35, -475.53, 3000.00}; +static float P032[3] = {155.64, -304.87, 2863.50}; +static float P033[3] = {90.00, 0.00, 4000.00}; +static float P034[3] = {72.81, 176.33, 4000.00}; +static float P035[3] = {27.81, 285.32, 4000.00}; +static float P036[3] = {-27.81, 285.32, 4000.00}; +static float P037[3] = {-72.81, 176.34, 4000.00}; +static float P038[3] = {-90.00, 0.00, 4000.00}; +static float P039[3] = {-72.81, -176.33, 4000.00}; +static float P040[3] = {-27.81, -285.31, 4000.00}; +static float P041[3] = {27.81, -285.32, 4000.00}; +static float P042[3] = {72.81, -176.34, 4000.00}; +static float P043[3] = {30.00, 0.00, 5000.00}; +static float P044[3] = {24.27, 58.78, 5000.00}; +static float P045[3] = {9.27, 95.11, 5000.00}; +static float P046[3] = {-9.27, 95.11, 5000.00}; +static float P047[3] = {-24.27, 58.78, 5000.00}; +static float P048[3] = {-30.00, 0.00, 5000.00}; +static float P049[3] = {-24.27, -58.78, 5000.00}; +static float P050[3] = {-9.27, -95.10, 5000.00}; +static float P051[3] = {9.27, -95.11, 5000.00}; +static float P052[3] = {24.27, -58.78, 5000.00}; +static float P058[3] = {0.00, 1212.72, 2703.08}; +static float P059[3] = {50.36, 0.00, 108.14}; +static float P060[3] = {-22.18, 0.00, 108.14}; +static float P061[3] = {0.00, 1181.61, 6344.65}; +static float P062[3] = {516.45, -887.08, 2535.45}; +static float P063[3] = {-545.69, -879.31, 2555.63}; +static float P064[3] = {618.89, -1005.64, 2988.32}; +static float P065[3] = {-635.37, -1014.79, 2938.68}; +static float P066[3] = {0.00, 1374.43, 3064.18}; +static float P069[3] = {0.00, -418.25, 5765.04}; +static float P070[3] = {0.00, 1266.91, 6629.60}; +static float P071[3] = {-139.12, -124.96, 997.98}; +static float P072[3] = {-139.24, -110.18, 1020.68}; +static float P073[3] = {-137.33, -94.52, 1022.63}; +static float P074[3] = {-137.03, -79.91, 996.89}; +static float P075[3] = {-135.21, -91.48, 969.14}; +static float P076[3] = {-135.39, -110.87, 968.76}; +static float P077[3] = {150.23, -78.44, 995.53}; +static float P078[3] = {152.79, -92.76, 1018.46}; +static float P079[3] = {154.19, -110.20, 1020.55}; +static float P080[3] = {151.33, -124.15, 993.77}; +static float P081[3] = {150.49, -111.19, 969.86}; +static float P082[3] = {150.79, -92.41, 969.70}; +static float iP002[3] = {0.00, -36.59, 5687.72}; +static float iP004[3] = {58.24, -146.84, 262.35}; +static float iP007[3] = {-46.09, -146.83, 265.84}; +static float iP010[3] = {-27.81, -285.31, 500.00}; +static float iP011[3] = {27.81, -285.32, 500.00}; +static float iP023[3] = {150.00, 0.00, 3000.00}; +static float iP024[3] = {121.35, 293.89, 3000.00}; +static float iP025[3] = {46.35, 502.93, 2883.09}; +static float iP026[3] = {-46.35, 497.45, 2877.24}; +static float iP027[3] = {-121.35, 293.90, 3000.00}; +static float iP028[3] = {-150.00, 0.00, 3000.00}; +static float iP029[3] = {-121.35, -304.84, 2853.86}; +static float iP030[3] = {-46.36, -475.52, 3000.00}; +static float iP031[3] = {46.35, -475.53, 3000.00}; +static float iP032[3] = {121.35, -304.87, 2853.86}; +static float iP033[3] = {90.00, 0.00, 4000.00}; +static float iP034[3] = {72.81, 176.33, 4000.00}; +static float iP035[3] = {27.81, 285.32, 4000.00}; +static float iP036[3] = {-27.81, 285.32, 4000.00}; +static float iP037[3] = {-72.81, 176.34, 4000.00}; +static float iP038[3] = {-90.00, 0.00, 4000.00}; +static float iP039[3] = {-72.81, -176.33, 4000.00}; +static float iP040[3] = {-27.81, -285.31, 4000.00}; +static float iP041[3] = {27.81, -285.32, 4000.00}; +static float iP042[3] = {72.81, -176.34, 4000.00}; +static float iP043[3] = {30.00, 0.00, 5000.00}; +static float iP044[3] = {24.27, 58.78, 5000.00}; +static float iP045[3] = {9.27, 95.11, 5000.00}; +static float iP046[3] = {-9.27, 95.11, 5000.00}; +static float iP047[3] = {-24.27, 58.78, 5000.00}; +static float iP048[3] = {-30.00, 0.00, 5000.00}; +static float iP049[3] = {-24.27, -58.78, 5000.00}; +static float iP050[3] = {-9.27, -95.10, 5000.00}; +static float iP051[3] = {9.27, -95.11, 5000.00}; +static float iP052[3] = {24.27, -58.78, 5000.00}; +static float iP061[3] = {0.00, 1181.61, 6344.65}; +static float iP069[3] = {0.00, -418.25, 5765.04}; +static float iP070[3] = {0.00, 1266.91, 6629.60}; +/* *INDENT-ON* */ + +void +Fish001(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N006); + glVertex3fv(P006); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N016); + glVertex3fv(P016); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N008); + glVertex3fv(P008); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N008); + glVertex3fv(P008); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N008); + glVertex3fv(P008); + glNormal3fv(N017); + glVertex3fv(P017); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N008); + glVertex3fv(P008); + glNormal3fv(N018); + glVertex3fv(P018); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N008); + glVertex3fv(P008); + glNormal3fv(N009); + glVertex3fv(P009); + glNormal3fv(N018); + glVertex3fv(P018); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N008); + glVertex3fv(P008); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N009); + glVertex3fv(P009); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N007); + glVertex3fv(P007); + glNormal3fv(N010); + glVertex3fv(P010); + glNormal3fv(N009); + glVertex3fv(P009); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N009); + glVertex3fv(P009); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N018); + glVertex3fv(P018); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N009); + glVertex3fv(P009); + glNormal3fv(N010); + glVertex3fv(P010); + glNormal3fv(N019); + glVertex3fv(P019); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N010); + glVertex3fv(P010); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N019); + glVertex3fv(P019); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N010); + glVertex3fv(P010); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N020); + glVertex3fv(P020); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N004); + glVertex3fv(P004); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N010); + glVertex3fv(P010); + glNormal3fv(N007); + glVertex3fv(P007); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N004); + glVertex3fv(P004); + glNormal3fv(N012); + glVertex3fv(P012); + glNormal3fv(N011); + glVertex3fv(P011); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N012); + glVertex3fv(P012); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N011); + glVertex3fv(P011); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N021); + glVertex3fv(P021); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N015); + glVertex3fv(P015); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N003); + glVertex3fv(P003); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N059); + glVertex3fv(P059); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N003); + glVertex3fv(P003); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N012); + glVertex3fv(P012); + glNormal3fv(N059); + glVertex3fv(P059); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N012); + glVertex3fv(P012); + glNormal3fv(N003); + glVertex3fv(P003); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N012); + glVertex3fv(P012); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P071); + glVertex3fv(P072); + glVertex3fv(P073); + glVertex3fv(P074); + glVertex3fv(P075); + glVertex3fv(P076); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P077); + glVertex3fv(P078); + glVertex3fv(P079); + glVertex3fv(P080); + glVertex3fv(P081); + glVertex3fv(P082); + glEnd(); +} + +void +Fish002(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N023); + glVertex3fv(P023); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N024); + glVertex3fv(P024); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N026); + glVertex3fv(P026); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N027); + glVertex3fv(P027); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N030); + glVertex3fv(P030); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N022); + glVertex3fv(P022); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N032); + glVertex3fv(P032); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N031); + glVertex3fv(P031); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N021); + glVertex3fv(P021); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N028); + glVertex3fv(P028); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N030); + glVertex3fv(P030); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); +} + +void +Fish003(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N042); + glVertex3fv(P042); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N041); + glVertex3fv(P041); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N034); + glVertex3fv(P034); + glNormal3fv(N033); + glVertex3fv(P033); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N034); + glVertex3fv(P034); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N040); + glVertex3fv(P040); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N035); + glVertex3fv(P035); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N036); + glVertex3fv(P036); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N037); + glVertex3fv(P037); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N038); + glVertex3fv(P038); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N039); + glVertex3fv(P039); + glEnd(); +} + +void +Fish004(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N050); + glVertex3fv(P050); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N052); + glVertex3fv(P052); + glNormal3fv(N051); + glVertex3fv(P051); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N043); + glVertex3fv(P043); + glNormal3fv(N052); + glVertex3fv(P052); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N034); + glVertex3fv(P034); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N043); + glVertex3fv(P043); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N034); + glVertex3fv(P034); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N045); + glVertex3fv(P045); + glNormal3fv(N044); + glVertex3fv(P044); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N045); + glVertex3fv(P045); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N046); + glVertex3fv(P046); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N047); + glVertex3fv(P047); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N048); + glVertex3fv(P048); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N049); + glVertex3fv(P049); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N070); + glVertex3fv(P070); + glNormal3fv(N061); + glVertex3fv(P061); + glNormal3fv(N002); + glVertex3fv(P002); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N061); + glVertex3fv(P061); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N002); + glVertex3fv(P002); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N045); + glVertex3fv(P045); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N061); + glVertex3fv(P061); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N061); + glVertex3fv(P061); + glNormal3fv(N070); + glVertex3fv(P070); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N045); + glVertex3fv(P045); + glNormal3fv(N061); + glVertex3fv(P061); + glEnd(); +} + +void +Fish005(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N045); + glVertex3fv(P045); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N043); + glVertex3fv(P043); + glNormal3fv(N044); + glVertex3fv(P044); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N052); + glVertex3fv(P052); + glNormal3fv(N043); + glVertex3fv(P043); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N052); + glVertex3fv(P052); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N047); + glVertex3fv(P047); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N048); + glVertex3fv(P048); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N049); + glVertex3fv(P049); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N050); + glVertex3fv(P050); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N069); + glVertex3fv(P069); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N069); + glVertex3fv(P069); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N069); + glVertex3fv(P069); + glNormal3fv(N002); + glVertex3fv(P002); + glEnd(); +} + +void +Fish006(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N026); + glVertex3fv(P026); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N025); + glVertex3fv(P025); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N026); + glVertex3fv(P026); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N016); + glVertex3fv(P016); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N066); + glVertex3fv(P066); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N016); + glVertex3fv(P016); + glEnd(); +} + +void +Fish007(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N032); + glVertex3fv(P032); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N064); + glVertex3fv(P064); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N032); + glVertex3fv(P032); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N064); + glVertex3fv(P064); + glNormal3fv(N032); + glVertex3fv(P032); + glEnd(); +} + +void +Fish008(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N065); + glVertex3fv(P065); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); +} + +void +Fish009(void) +{ + glBegin(GL_POLYGON); + glVertex3fv(P059); + glVertex3fv(P012); + glVertex3fv(P009); + glVertex3fv(P060); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P012); + glVertex3fv(P004); + glVertex3fv(P007); + glVertex3fv(P009); + glEnd(); +} + +void +Fish_1(void) +{ + Fish004(); + Fish005(); + Fish003(); + Fish007(); + Fish006(); + Fish002(); + Fish008(); + Fish009(); + Fish001(); +} + +void +Fish_2(void) +{ + Fish005(); + Fish004(); + Fish003(); + Fish008(); + Fish006(); + Fish002(); + Fish007(); + Fish009(); + Fish001(); +} + +void +Fish_3(void) +{ + Fish005(); + Fish004(); + Fish007(); + Fish003(); + Fish002(); + Fish008(); + Fish009(); + Fish001(); + Fish006(); +} + +void +Fish_4(void) +{ + Fish005(); + Fish004(); + Fish008(); + Fish003(); + Fish002(); + Fish007(); + Fish009(); + Fish001(); + Fish006(); +} + +void +Fish_5(void) +{ + Fish009(); + Fish006(); + Fish007(); + Fish001(); + Fish002(); + Fish003(); + Fish008(); + Fish004(); + Fish005(); +} + +void +Fish_6(void) +{ + Fish009(); + Fish006(); + Fish008(); + Fish001(); + Fish002(); + Fish007(); + Fish003(); + Fish004(); + Fish005(); +} + +void +Fish_7(void) +{ + Fish009(); + Fish001(); + Fish007(); + Fish005(); + Fish002(); + Fish008(); + Fish003(); + Fish004(); + Fish006(); +} + +void +Fish_8(void) +{ + Fish009(); + Fish008(); + Fish001(); + Fish002(); + Fish007(); + Fish003(); + Fish005(); + Fish004(); + Fish006(); +} + +void +DrawShark(fishRec * fish) +{ + float mat[4][4]; + int n; + float seg1, seg2, seg3, seg4, segup; + float thrash, chomp; + + fish->htail = (int) (fish->htail - (int) (5.0 * fish->v)) % 360; + + thrash = 50.0 * fish->v; + + seg1 = 0.6 * thrash * sin(fish->htail * RRAD); + seg2 = 1.8 * thrash * sin((fish->htail + 45.0) * RRAD); + seg3 = 3.0 * thrash * sin((fish->htail + 90.0) * RRAD); + seg4 = 4.0 * thrash * sin((fish->htail + 110.0) * RRAD); + + chomp = 0.0; + if (fish->v > 2.0) { + chomp = -(fish->v - 2.0) * 200.0; + } + P004[1] = iP004[1] + chomp; + P007[1] = iP007[1] + chomp; + P010[1] = iP010[1] + chomp; + P011[1] = iP011[1] + chomp; + + P023[0] = iP023[0] + seg1; + P024[0] = iP024[0] + seg1; + P025[0] = iP025[0] + seg1; + P026[0] = iP026[0] + seg1; + P027[0] = iP027[0] + seg1; + P028[0] = iP028[0] + seg1; + P029[0] = iP029[0] + seg1; + P030[0] = iP030[0] + seg1; + P031[0] = iP031[0] + seg1; + P032[0] = iP032[0] + seg1; + P033[0] = iP033[0] + seg2; + P034[0] = iP034[0] + seg2; + P035[0] = iP035[0] + seg2; + P036[0] = iP036[0] + seg2; + P037[0] = iP037[0] + seg2; + P038[0] = iP038[0] + seg2; + P039[0] = iP039[0] + seg2; + P040[0] = iP040[0] + seg2; + P041[0] = iP041[0] + seg2; + P042[0] = iP042[0] + seg2; + P043[0] = iP043[0] + seg3; + P044[0] = iP044[0] + seg3; + P045[0] = iP045[0] + seg3; + P046[0] = iP046[0] + seg3; + P047[0] = iP047[0] + seg3; + P048[0] = iP048[0] + seg3; + P049[0] = iP049[0] + seg3; + P050[0] = iP050[0] + seg3; + P051[0] = iP051[0] + seg3; + P052[0] = iP052[0] + seg3; + P002[0] = iP002[0] + seg4; + P061[0] = iP061[0] + seg4; + P069[0] = iP069[0] + seg4; + P070[0] = iP070[0] + seg4; + + fish->vtail += ((fish->dtheta - fish->vtail) * 0.1); + + if (fish->vtail > 0.5) { + fish->vtail = 0.5; + } else if (fish->vtail < -0.5) { + fish->vtail = -0.5; + } + segup = thrash * fish->vtail; + + P023[1] = iP023[1] + segup; + P024[1] = iP024[1] + segup; + P025[1] = iP025[1] + segup; + P026[1] = iP026[1] + segup; + P027[1] = iP027[1] + segup; + P028[1] = iP028[1] + segup; + P029[1] = iP029[1] + segup; + P030[1] = iP030[1] + segup; + P031[1] = iP031[1] + segup; + P032[1] = iP032[1] + segup; + P033[1] = iP033[1] + segup * 5.0; + P034[1] = iP034[1] + segup * 5.0; + P035[1] = iP035[1] + segup * 5.0; + P036[1] = iP036[1] + segup * 5.0; + P037[1] = iP037[1] + segup * 5.0; + P038[1] = iP038[1] + segup * 5.0; + P039[1] = iP039[1] + segup * 5.0; + P040[1] = iP040[1] + segup * 5.0; + P041[1] = iP041[1] + segup * 5.0; + P042[1] = iP042[1] + segup * 5.0; + P043[1] = iP043[1] + segup * 12.0; + P044[1] = iP044[1] + segup * 12.0; + P045[1] = iP045[1] + segup * 12.0; + P046[1] = iP046[1] + segup * 12.0; + P047[1] = iP047[1] + segup * 12.0; + P048[1] = iP048[1] + segup * 12.0; + P049[1] = iP049[1] + segup * 12.0; + P050[1] = iP050[1] + segup * 12.0; + P051[1] = iP051[1] + segup * 12.0; + P052[1] = iP052[1] + segup * 12.0; + P002[1] = iP002[1] + segup * 17.0; + P061[1] = iP061[1] + segup * 17.0; + P069[1] = iP069[1] + segup * 17.0; + P070[1] = iP070[1] + segup * 17.0; + + glPushMatrix(); + + glTranslatef(0.0, 0.0, -3000.0); + + glGetFloatv(GL_MODELVIEW_MATRIX, &mat[0][0]); + n = 0; + if (mat[0][2] >= 0.0) { + n += 1; + } + if (mat[1][2] >= 0.0) { + n += 2; + } + if (mat[2][2] >= 0.0) { + n += 4; + } + glScalef(2.0, 1.0, 1.0); + + glEnable(GL_CULL_FACE); + switch (n) { + case 0: + Fish_1(); + break; + case 1: + Fish_2(); + break; + case 2: + Fish_3(); + break; + case 3: + Fish_4(); + break; + case 4: + Fish_5(); + break; + case 5: + Fish_6(); + break; + case 6: + Fish_7(); + break; + case 7: + Fish_8(); + break; + } + glDisable(GL_CULL_FACE); + + glPopMatrix(); +} diff --git a/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/swim.c b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/swim.c new file mode 100644 index 000000000..cac7b6095 --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/swim.c @@ -0,0 +1,188 @@ +/** + * (c) Copyright 1993, 1994, Silicon Graphics, Inc. + * ALL RIGHTS RESERVED + * Permission to use, copy, modify, and distribute this software for + * any purpose and without fee is hereby granted, provided that the above + * copyright notice appear in all copies and that both the copyright notice + * and this permission notice appear in supporting documentation, and that + * the name of Silicon Graphics, Inc. not be used in advertising + * or publicity pertaining to distribution of the software without specific, + * written prior permission. + * + * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS" + * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR + * FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON + * GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT, + * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY + * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, + * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF + * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC. HAS BEEN + * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE + * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE. + * + * US Government Users Restricted Rights + * Use, duplication, or disclosure by the Government is subject to + * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph + * (c)(1)(ii) of the Rights in Technical Data and Computer Software + * clause at DFARS 252.227-7013 and/or in similar or successor + * clauses in the FAR or the DOD or NASA FAR Supplement. + * Unpublished-- rights reserved under the copyright laws of the + * United States. Contractor/manufacturer is Silicon Graphics, + * Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311. + * + * OpenGL(TM) is a trademark of Silicon Graphics, Inc. + */ +#include +#include /* For rand(). */ +#include +#include "atlantis.h" + +void +FishTransform(fishRec * fish) +{ + + glTranslatef(fish->y, fish->z, -fish->x); + glRotatef(-fish->psi, 0.0, 1.0, 0.0); + glRotatef(fish->theta, 1.0, 0.0, 0.0); + glRotatef(-fish->phi, 0.0, 0.0, 1.0); +} + +void +WhalePilot(fishRec * fish) +{ + + fish->phi = -20.0; + fish->theta = 0.0; + fish->psi -= 0.5; + + fish->x += WHALESPEED * fish->v * cos(fish->psi / RAD) * cos(fish->theta / RAD); + fish->y += WHALESPEED * fish->v * sin(fish->psi / RAD) * cos(fish->theta / RAD); + fish->z += WHALESPEED * fish->v * sin(fish->theta / RAD); +} + +void +SharkPilot(fishRec * fish) +{ + static int sign = 1; + float X, Y, Z, tpsi, ttheta, thetal; + + fish->xt = 60000.0; + fish->yt = 0.0; + fish->zt = 0.0; + + X = fish->xt - fish->x; + Y = fish->yt - fish->y; + Z = fish->zt - fish->z; + + thetal = fish->theta; + + ttheta = RAD * atan(Z / (sqrt(X * X + Y * Y))); + + if (ttheta > fish->theta + 0.25) { + fish->theta += 0.5; + } else if (ttheta < fish->theta - 0.25) { + fish->theta -= 0.5; + } + if (fish->theta > 90.0) { + fish->theta = 90.0; + } + if (fish->theta < -90.0) { + fish->theta = -90.0; + } + fish->dtheta = fish->theta - thetal; + + tpsi = RAD * atan2(Y, X); + + fish->attack = 0; + + if (fabs(tpsi - fish->psi) < 10.0) { + fish->attack = 1; + } else if (fabs(tpsi - fish->psi) < 45.0) { + if (fish->psi > tpsi) { + fish->psi -= 0.5; + if (fish->psi < -180.0) { + fish->psi += 360.0; + } + } else if (fish->psi < tpsi) { + fish->psi += 0.5; + if (fish->psi > 180.0) { + fish->psi -= 360.0; + } + } + } else { + if (rand() % 100 > 98) { + sign = 1 - sign; + } + fish->psi += sign; + if (fish->psi > 180.0) { + fish->psi -= 360.0; + } + if (fish->psi < -180.0) { + fish->psi += 360.0; + } + } + + if (fish->attack) { + if (fish->v < 1.1) { + fish->spurt = 1; + } + if (fish->spurt) { + fish->v += 0.2; + } + if (fish->v > 5.0) { + fish->spurt = 0; + } + if ((fish->v > 1.0) && (!fish->spurt)) { + fish->v -= 0.2; + } + } else { + if (!(rand() % 400) && (!fish->spurt)) { + fish->spurt = 1; + } + if (fish->spurt) { + fish->v += 0.05; + } + if (fish->v > 3.0) { + fish->spurt = 0; + } + if ((fish->v > 1.0) && (!fish->spurt)) { + fish->v -= 0.05; + } + } + + fish->x += SHARKSPEED * fish->v * cos(fish->psi / RAD) * cos(fish->theta / RAD); + fish->y += SHARKSPEED * fish->v * sin(fish->psi / RAD) * cos(fish->theta / RAD); + fish->z += SHARKSPEED * fish->v * sin(fish->theta / RAD); +} + +void +SharkMiss(int i) +{ + int j; + float avoid, thetal; + float X, Y, Z, R; + + for (j = 0; j < NUM_SHARKS; j++) { + if (j != i) { + X = sharks[j].x - sharks[i].x; + Y = sharks[j].y - sharks[i].y; + Z = sharks[j].z - sharks[i].z; + + R = sqrt(X * X + Y * Y + Z * Z); + + avoid = 1.0; + thetal = sharks[i].theta; + + if (R < SHARKSIZE) { + if (Z > 0.0) { + sharks[i].theta -= avoid; + } else { + sharks[i].theta += avoid; + } + } + sharks[i].dtheta += (sharks[i].theta - thetal); + } + } +} diff --git a/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/whale.c b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/whale.c new file mode 100644 index 000000000..828640ad0 --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/whale.c @@ -0,0 +1,1798 @@ +/** + * (c) Copyright 1993, 1994, Silicon Graphics, Inc. + * ALL RIGHTS RESERVED + * Permission to use, copy, modify, and distribute this software for + * any purpose and without fee is hereby granted, provided that the above + * copyright notice appear in all copies and that both the copyright notice + * and this permission notice appear in supporting documentation, and that + * the name of Silicon Graphics, Inc. not be used in advertising + * or publicity pertaining to distribution of the software without specific, + * written prior permission. + * + * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS" + * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR + * FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON + * GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT, + * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY + * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, + * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF + * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC. HAS BEEN + * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE + * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE. + * + * US Government Users Restricted Rights + * Use, duplication, or disclosure by the Government is subject to + * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph + * (c)(1)(ii) of the Rights in Technical Data and Computer Software + * clause at DFARS 252.227-7013 and/or in similar or successor + * clauses in the FAR or the DOD or NASA FAR Supplement. + * Unpublished-- rights reserved under the copyright laws of the + * United States. Contractor/manufacturer is Silicon Graphics, + * Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311. + * + * OpenGL(TM) is a trademark of Silicon Graphics, Inc. + */ +#include +#include +#include "atlantis.h" +/* *INDENT-OFF* */ +static float N001[3] = {0.019249 ,0.011340 ,-0.999750}; +static float N002[3] = {-0.132579 ,0.954547 ,0.266952}; +static float N003[3] = {-0.196061 ,0.980392 ,-0.019778}; +static float N004[3] = {0.695461 ,0.604704 ,0.388158}; +static float N005[3] = {0.870600 ,0.425754 ,0.246557}; +static float N006[3] = {-0.881191 ,0.392012 ,0.264251}; +static float N008[3] = {-0.341437 ,0.887477 ,0.309523}; +static float N009[3] = {0.124035 ,-0.992278 ,0.000000}; +static float N010[3] = {0.242536 ,0.000000 ,-0.970143}; +static float N011[3] = {0.588172 ,0.000000 ,0.808736}; +static float N012[3] = {0.929824 ,-0.340623 ,-0.139298}; +static float N013[3] = {0.954183 ,0.267108 ,-0.134865}; +static float N014[3] = {0.495127 ,0.855436 ,-0.151914}; +static float N015[3] = {-0.390199 ,0.906569 ,-0.160867}; +static float N016[3] = {-0.923605 ,0.354581 ,-0.145692}; +static float N017[3] = {-0.955796 ,-0.260667 ,-0.136036}; +static float N018[3] = {-0.501283 ,-0.853462 ,-0.142540}; +static float N019[3] = {0.405300 ,-0.901974 ,-0.148913}; +static float N020[3] = {0.909913 ,-0.392746 ,-0.133451}; +static float N021[3] = {0.936494 ,0.331147 ,-0.115414}; +static float N022[3] = {0.600131 ,0.793724 ,-0.099222}; +static float N023[3] = {-0.231556 ,0.968361 ,-0.093053}; +static float N024[3] = {-0.844369 ,0.525330 ,-0.105211}; +static float N025[3] = {-0.982725 ,-0.136329 ,-0.125164}; +static float N026[3] = {-0.560844 ,-0.822654 ,-0.093241}; +static float N027[3] = {0.263884 ,-0.959981 ,-0.093817}; +static float N028[3] = {0.842057 ,-0.525192 ,-0.122938}; +static float N029[3] = {0.921620 ,0.367565 ,-0.124546}; +static float N030[3] = {0.613927 ,0.784109 ,-0.090918}; +static float N031[3] = {-0.448754 ,0.888261 ,-0.098037}; +static float N032[3] = {-0.891865 ,0.434376 ,-0.126077}; +static float N033[3] = {-0.881447 ,-0.448017 ,-0.149437}; +static float N034[3] = {-0.345647 ,-0.922057 ,-0.174183}; +static float N035[3] = {0.307998 ,-0.941371 ,-0.137688}; +static float N036[3] = {0.806316 ,-0.574647 ,-0.140124}; +static float N037[3] = {0.961346 ,0.233646 ,-0.145681}; +static float N038[3] = {0.488451 ,0.865586 ,-0.110351}; +static float N039[3] = {-0.374290 ,0.921953 ,-0.099553}; +static float N040[3] = {-0.928504 ,0.344533 ,-0.138485}; +static float N041[3] = {-0.918419 ,-0.371792 ,-0.135189}; +static float N042[3] = {-0.520666 ,-0.833704 ,-0.183968}; +static float N043[3] = {0.339204 ,-0.920273 ,-0.195036}; +static float N044[3] = {0.921475 ,-0.387382 ,-0.028636}; +static float N045[3] = {0.842465 ,0.533335 ,-0.076204}; +static float N046[3] = {0.380110 ,0.924939 ,0.002073}; +static float N047[3] = {-0.276128 ,0.961073 ,-0.009579}; +static float N048[3] = {-0.879684 ,0.473001 ,-0.049250}; +static float N049[3] = {-0.947184 ,-0.317614 ,-0.044321}; +static float N050[3] = {-0.642059 ,-0.764933 ,-0.051363}; +static float N051[3] = {0.466794 ,-0.880921 ,-0.077990}; +static float N052[3] = {0.898509 ,-0.432277 ,0.076279}; +static float N053[3] = {0.938985 ,0.328141 ,0.103109}; +static float N054[3] = {0.442420 ,0.895745 ,0.043647}; +static float N055[3] = {-0.255163 ,0.966723 ,0.018407}; +static float N056[3] = {-0.833769 ,0.540650 ,0.111924}; +static float N057[3] = {-0.953653 ,-0.289939 ,0.080507}; +static float N058[3] = {-0.672357 ,-0.730524 ,0.119461}; +static float N059[3] = {0.522249 ,-0.846652 ,0.102157}; +static float N060[3] = {0.885868 ,-0.427631 ,0.179914}; +static float N062[3] = {0.648942 ,0.743116 ,0.163255}; +static float N063[3] = {-0.578967 ,0.807730 ,0.111219}; +static float N065[3] = {-0.909864 ,-0.352202 ,0.219321}; +static float N066[3] = {-0.502541 ,-0.818090 ,0.279610}; +static float N067[3] = {0.322919 ,-0.915358 ,0.240504}; +static float N068[3] = {0.242536 ,0.000000 ,-0.970143}; +static float N069[3] = {0.000000 ,1.000000 ,0.000000}; +static float N070[3] = {0.000000 ,1.000000 ,0.000000}; +static float N071[3] = {0.000000 ,1.000000 ,0.000000}; +static float N072[3] = {0.000000 ,1.000000 ,0.000000}; +static float N073[3] = {0.000000 ,1.000000 ,0.000000}; +static float N074[3] = {0.000000 ,1.000000 ,0.000000}; +static float N075[3] = {0.031220 ,0.999025 ,-0.031220}; +static float N076[3] = {0.000000 ,1.000000 ,0.000000}; +static float N077[3] = {0.446821 ,0.893642 ,0.041889}; +static float N078[3] = {0.863035 ,-0.100980 ,0.494949}; +static float N079[3] = {0.585597 ,-0.808215 ,0.062174}; +static float N080[3] = {0.000000 ,1.000000 ,0.000000}; +static float N081[3] = {1.000000 ,0.000000 ,0.000000}; +static float N082[3] = {0.000000 ,1.000000 ,0.000000}; +static float N083[3] = {-1.000000 ,0.000000 ,0.000000}; +static float N084[3] = {-0.478893 ,0.837129 ,-0.264343}; +static float N085[3] = {0.000000 ,1.000000 ,0.000000}; +static float N086[3] = {0.763909 ,0.539455 ,-0.354163}; +static float N087[3] = {0.446821 ,0.893642 ,0.041889}; +static float N088[3] = {0.385134 ,-0.908288 ,0.163352}; +static float N089[3] = {-0.605952 ,0.779253 ,-0.159961}; +static float N090[3] = {0.000000 ,1.000000 ,0.000000}; +static float N091[3] = {0.000000 ,1.000000 ,0.000000}; +static float N092[3] = {0.000000 ,1.000000 ,0.000000}; +static float N093[3] = {0.000000 ,1.000000 ,0.000000}; +static float N094[3] = {1.000000 ,0.000000 ,0.000000}; +static float N095[3] = {-1.000000 ,0.000000 ,0.000000}; +static float N096[3] = {0.644444 ,-0.621516 ,0.445433}; +static float N097[3] = {-0.760896 ,-0.474416 ,0.442681}; +static float N098[3] = {0.636888 ,-0.464314 ,0.615456}; +static float N099[3] = {-0.710295 ,0.647038 ,0.277168}; +static float N100[3] = {0.009604 ,0.993655 ,0.112063}; +static float iP001[3] = {18.74, 13.19, 3.76}; +static float P001[3] = {18.74, 13.19, 3.76}; +static float P002[3] = {0.00, 390.42, 10292.57}; +static float P003[3] = {55.80, 622.31, 8254.35}; +static float P004[3] = {20.80, 247.66, 10652.13}; +static float P005[3] = {487.51, 198.05, 9350.78}; +static float P006[3] = {-457.61, 199.04, 9353.01}; +static float P008[3] = {-34.67, 247.64, 10663.71}; +static float iP009[3] = {97.46, 67.63, 593.82}; +static float iP010[3] = {-84.33, 67.63, 588.18}; +static float iP011[3] = {118.69, 8.98, -66.91}; +static float P009[3] = {97.46, 67.63, 593.82}; +static float P010[3] = {-84.33, 67.63, 588.18}; +static float P011[3] = {118.69, 8.98, -66.91}; +static float iP012[3] = {156.48, -31.95, 924.54}; +static float iP013[3] = {162.00, 110.22, 924.54}; +static float iP014[3] = {88.16, 221.65, 924.54}; +static float iP015[3] = {-65.21, 231.16, 924.54}; +static float iP016[3] = {-156.48, 121.97, 924.54}; +static float iP017[3] = {-162.00, -23.93, 924.54}; +static float iP018[3] = {-88.16, -139.10, 924.54}; +static float iP019[3] = {65.21, -148.61, 924.54}; +static float iP020[3] = {246.87, -98.73, 1783.04}; +static float iP021[3] = {253.17, 127.76, 1783.04}; +static float iP022[3] = {132.34, 270.77, 1783.04}; +static float iP023[3] = {-97.88, 285.04, 1783.04}; +static float iP024[3] = {-222.97, 139.80, 1783.04}; +static float iP025[3] = {-225.29, -86.68, 1783.04}; +static float iP026[3] = {-108.44, -224.15, 1783.04}; +static float iP027[3] = {97.88, -221.56, 1783.04}; +static float iP028[3] = {410.55, -200.66, 3213.87}; +static float iP029[3] = {432.19, 148.42, 3213.87}; +static float iP030[3] = {200.66, 410.55, 3213.87}; +static float iP031[3] = {-148.42, 432.19, 3213.87}; +static float iP032[3] = {-407.48, 171.88, 3213.87}; +static float iP033[3] = {-432.19, -148.42, 3213.87}; +static float iP034[3] = {-148.88, -309.74, 3213.87}; +static float iP035[3] = {156.38, -320.17, 3213.87}; +static float iP036[3] = {523.39, -303.81, 4424.57}; +static float iP037[3] = {574.66, 276.84, 4424.57}; +static float iP038[3] = {243.05, 492.50, 4424.57}; +static float iP039[3] = {-191.23, 520.13, 4424.57}; +static float iP040[3] = {-523.39, 304.01, 4424.57}; +static float iP041[3] = {-574.66, -231.83, 4424.57}; +static float iP042[3] = {-266.95, -578.17, 4424.57}; +static float iP043[3] = {211.14, -579.67, 4424.57}; +static float iP044[3] = {680.57, -370.27, 5943.46}; +static float iP045[3] = {834.01, 363.09, 5943.46}; +static float iP046[3] = {371.29, 614.13, 5943.46}; +static float iP047[3] = {-291.43, 621.86, 5943.46}; +static float iP048[3] = {-784.13, 362.60, 5943.46}; +static float iP049[3] = {-743.29, -325.82, 5943.46}; +static float iP050[3] = {-383.24, -804.77, 5943.46}; +static float iP051[3] = {283.47, -846.09, 5943.46}; +static float P012[3] = {156.48, -31.95, 924.54}; +static float P013[3] = {162.00, 110.22, 924.54}; +static float P014[3] = {88.16, 221.65, 924.54}; +static float P015[3] = {-65.21, 231.16, 924.54}; +static float P016[3] = {-156.48, 121.97, 924.54}; +static float P017[3] = {-162.00, -23.93, 924.54}; +static float P018[3] = {-88.16, -139.10, 924.54}; +static float P019[3] = {65.21, -148.61, 924.54}; +static float P020[3] = {246.87, -98.73, 1783.04}; +static float P021[3] = {253.17, 127.76, 1783.04}; +static float P022[3] = {132.34, 270.77, 1783.04}; +static float P023[3] = {-97.88, 285.04, 1783.04}; +static float P024[3] = {-222.97, 139.80, 1783.04}; +static float P025[3] = {-225.29, -86.68, 1783.04}; +static float P026[3] = {-108.44, -224.15, 1783.04}; +static float P027[3] = {97.88, -221.56, 1783.04}; +static float P028[3] = {410.55, -200.66, 3213.87}; +static float P029[3] = {432.19, 148.42, 3213.87}; +static float P030[3] = {200.66, 410.55, 3213.87}; +static float P031[3] = {-148.42, 432.19, 3213.87}; +static float P032[3] = {-407.48, 171.88, 3213.87}; +static float P033[3] = {-432.19, -148.42, 3213.87}; +static float P034[3] = {-148.88, -309.74, 3213.87}; +static float P035[3] = {156.38, -320.17, 3213.87}; +static float P036[3] = {523.39, -303.81, 4424.57}; +static float P037[3] = {574.66, 276.84, 4424.57}; +static float P038[3] = {243.05, 492.50, 4424.57}; +static float P039[3] = {-191.23, 520.13, 4424.57}; +static float P040[3] = {-523.39, 304.01, 4424.57}; +static float P041[3] = {-574.66, -231.83, 4424.57}; +static float P042[3] = {-266.95, -578.17, 4424.57}; +static float P043[3] = {211.14, -579.67, 4424.57}; +static float P044[3] = {680.57, -370.27, 5943.46}; +static float P045[3] = {834.01, 363.09, 5943.46}; +static float P046[3] = {371.29, 614.13, 5943.46}; +static float P047[3] = {-291.43, 621.86, 5943.46}; +static float P048[3] = {-784.13, 362.60, 5943.46}; +static float P049[3] = {-743.29, -325.82, 5943.46}; +static float P050[3] = {-383.24, -804.77, 5943.46}; +static float P051[3] = {283.47, -846.09, 5943.46}; +static float P052[3] = {599.09, -332.24, 7902.59}; +static float P053[3] = {735.48, 306.26, 7911.92}; +static float P054[3] = {321.55, 558.53, 7902.59}; +static float P055[3] = {-260.54, 559.84, 7902.59}; +static float P056[3] = {-698.66, 320.83, 7902.59}; +static float P057[3] = {-643.29, -299.16, 7902.59}; +static float P058[3] = {-341.47, -719.30, 7902.59}; +static float P059[3] = {252.57, -756.12, 7902.59}; +static float P060[3] = {458.39, -265.31, 9355.44}; +static float P062[3] = {224.04, 438.98, 9364.77}; +static float P063[3] = {-165.71, 441.27, 9355.44}; +static float P065[3] = {-473.99, -219.71, 9355.44}; +static float P066[3] = {-211.97, -479.87, 9355.44}; +static float P067[3] = {192.86, -504.03, 9355.44}; +static float iP068[3] = {-112.44, 9.25, -64.42}; +static float iP069[3] = {1155.63, 0.00, -182.46}; +static float iP070[3] = {-1143.13, 0.00, -181.54}; +static float iP071[3] = {1424.23, 0.00, -322.09}; +static float iP072[3] = {-1368.01, 0.00, -310.38}; +static float iP073[3] = {1255.57, 2.31, 114.05}; +static float iP074[3] = {-1149.38, 0.00, 117.12}; +static float iP075[3] = {718.36, 0.00, 433.36}; +static float iP076[3] = {-655.90, 0.00, 433.36}; +static float P068[3] = {-112.44, 9.25, -64.42}; +static float P069[3] = {1155.63, 0.00, -182.46}; +static float P070[3] = {-1143.13, 0.00, -181.54}; +static float P071[3] = {1424.23, 0.00, -322.09}; +static float P072[3] = {-1368.01, 0.00, -310.38}; +static float P073[3] = {1255.57, 2.31, 114.05}; +static float P074[3] = {-1149.38, 0.00, 117.12}; +static float P075[3] = {718.36, 0.00, 433.36}; +static float P076[3] = {-655.90, 0.00, 433.36}; +static float P077[3] = {1058.00, -2.66, 7923.51}; +static float P078[3] = {-1016.51, -15.47, 7902.87}; +static float P079[3] = {-1363.99, -484.50, 7593.38}; +static float P080[3] = {1478.09, -861.47, 7098.12}; +static float P081[3] = {1338.06, -284.68, 7024.15}; +static float P082[3] = {-1545.51, -860.64, 7106.60}; +static float P083[3] = {1063.19, -70.46, 7466.60}; +static float P084[3] = {-1369.18, -288.11, 7015.34}; +static float P085[3] = {1348.44, -482.50, 7591.41}; +static float P086[3] = {-1015.45, -96.80, 7474.86}; +static float P087[3] = {731.04, 148.38, 7682.58}; +static float P088[3] = {-697.03, 151.82, 7668.81}; +static float P089[3] = {-686.82, 157.09, 7922.29}; +static float P090[3] = {724.73, 147.75, 7931.39}; +static float iP091[3] = {0.00, 327.10, 2346.55}; +static float iP092[3] = {0.00, 552.28, 2311.31}; +static float iP093[3] = {0.00, 721.16, 2166.41}; +static float iP094[3] = {0.00, 693.42, 2388.80}; +static float iP095[3] = {0.00, 389.44, 2859.97}; +static float P091[3] = {0.00, 327.10, 2346.55}; +static float P092[3] = {0.00, 552.28, 2311.31}; +static float P093[3] = {0.00, 721.16, 2166.41}; +static float P094[3] = {0.00, 693.42, 2388.80}; +static float P095[3] = {0.00, 389.44, 2859.97}; +static float iP096[3] = {222.02, -183.67, 10266.89}; +static float iP097[3] = {-128.90, -182.70, 10266.89}; +static float iP098[3] = {41.04, 88.31, 10659.36}; +static float iP099[3] = {-48.73, 88.30, 10659.36}; +static float P096[3] = {222.02, -183.67, 10266.89}; +static float P097[3] = {-128.90, -182.70, 10266.89}; +static float P098[3] = {41.04, 88.31, 10659.36}; +static float P099[3] = {-48.73, 88.30, 10659.36}; +static float P100[3] = {0.00, 603.42, 9340.68}; +static float P104[3] = {-9.86, 567.62, 7858.65}; +static float P105[3] = {31.96, 565.27, 7908.46}; +static float P106[3] = {22.75, 568.13, 7782.83}; +static float P107[3] = {58.93, 568.42, 7775.94}; +static float P108[3] = {55.91, 565.59, 7905.86}; +static float P109[3] = {99.21, 566.00, 7858.65}; +static float P110[3] = {-498.83, 148.14, 9135.10}; +static float P111[3] = {-495.46, 133.24, 9158.48}; +static float P112[3] = {-490.82, 146.23, 9182.76}; +static float P113[3] = {-489.55, 174.11, 9183.66}; +static float P114[3] = {-492.92, 189.00, 9160.28}; +static float P115[3] = {-497.56, 176.02, 9136.00}; +static float P116[3] = {526.54, 169.68, 9137.70}; +static float P117[3] = {523.49, 184.85, 9161.42}; +static float P118[3] = {518.56, 171.78, 9186.06}; +static float P119[3] = {516.68, 143.53, 9186.98}; +static float P120[3] = {519.73, 128.36, 9163.26}; +static float P121[3] = {524.66, 141.43, 9138.62}; +/* *INDENT-ON* */ + +void +Whale001(void) +{ + + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N068); + glVertex3fv(P068); + glNormal3fv(N010); + glVertex3fv(P010); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N068); + glVertex3fv(P068); + glNormal3fv(N076); + glVertex3fv(P076); + glNormal3fv(N010); + glVertex3fv(P010); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N068); + glVertex3fv(P068); + glNormal3fv(N070); + glVertex3fv(P070); + glNormal3fv(N076); + glVertex3fv(P076); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N076); + glVertex3fv(P076); + glNormal3fv(N070); + glVertex3fv(P070); + glNormal3fv(N074); + glVertex3fv(P074); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N070); + glVertex3fv(P070); + glNormal3fv(N072); + glVertex3fv(P072); + glNormal3fv(N074); + glVertex3fv(P074); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N072); + glVertex3fv(P072); + glNormal3fv(N070); + glVertex3fv(P070); + glNormal3fv(N074); + glVertex3fv(P074); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N074); + glVertex3fv(P074); + glNormal3fv(N070); + glVertex3fv(P070); + glNormal3fv(N076); + glVertex3fv(P076); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N070); + glVertex3fv(P070); + glNormal3fv(N068); + glVertex3fv(P068); + glNormal3fv(N076); + glVertex3fv(P076); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N076); + glVertex3fv(P076); + glNormal3fv(N068); + glVertex3fv(P068); + glNormal3fv(N010); + glVertex3fv(P010); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N068); + glVertex3fv(P068); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N010); + glVertex3fv(P010); + glEnd(); +} + +void +Whale002(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N009); + glVertex3fv(P009); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N075); + glVertex3fv(P075); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N009); + glVertex3fv(P009); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N069); + glVertex3fv(P069); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N075); + glVertex3fv(P075); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N069); + glVertex3fv(P069); + glNormal3fv(N075); + glVertex3fv(P075); + glNormal3fv(N073); + glVertex3fv(P073); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N071); + glVertex3fv(P071); + glNormal3fv(N069); + glVertex3fv(P069); + glNormal3fv(N073); + glVertex3fv(P073); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N009); + glVertex3fv(P009); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N009); + glVertex3fv(P009); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N075); + glVertex3fv(P075); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N069); + glVertex3fv(P069); + glNormal3fv(N075); + glVertex3fv(P075); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N069); + glVertex3fv(P069); + glNormal3fv(N073); + glVertex3fv(P073); + glNormal3fv(N075); + glVertex3fv(P075); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N069); + glVertex3fv(P069); + glNormal3fv(N071); + glVertex3fv(P071); + glNormal3fv(N073); + glVertex3fv(P073); + glEnd(); +} + +void +Whale003(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N019); + glVertex3fv(P019); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N012); + glVertex3fv(P012); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N018); + glVertex3fv(P018); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N016); + glVertex3fv(P016); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N012); + glVertex3fv(P012); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N015); + glVertex3fv(P015); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N013); + glVertex3fv(P013); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N014); + glVertex3fv(P014); + glEnd(); +} + +void +Whale004(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N022); + glVertex3fv(P022); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N023); + glVertex3fv(P023); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N024); + glVertex3fv(P024); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N025); + glVertex3fv(P025); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N021); + glVertex3fv(P021); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N012); + glVertex3fv(P012); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N020); + glVertex3fv(P020); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N026); + glVertex3fv(P026); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N012); + glVertex3fv(P012); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N027); + glVertex3fv(P027); + glEnd(); +} + +void +Whale005(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N030); + glVertex3fv(P030); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N030); + glVertex3fv(P030); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N031); + glVertex3fv(P031); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N031); + glVertex3fv(P031); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N032); + glVertex3fv(P032); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N032); + glVertex3fv(P032); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N028); + glVertex3fv(P028); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N028); + glVertex3fv(P028); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N035); + glVertex3fv(P035); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N033); + glVertex3fv(P033); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N034); + glVertex3fv(P034); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N034); + glVertex3fv(P034); + glEnd(); +} + +void +Whale006(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N092); + glVertex3fv(P092); + glNormal3fv(N093); + glVertex3fv(P093); + glNormal3fv(N094); + glVertex3fv(P094); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N093); + glVertex3fv(P093); + glNormal3fv(N092); + glVertex3fv(P092); + glNormal3fv(N094); + glVertex3fv(P094); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N092); + glVertex3fv(P092); + glNormal3fv(N091); + glVertex3fv(P091); + glNormal3fv(N095); + glVertex3fv(P095); + glNormal3fv(N094); + glVertex3fv(P094); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N091); + glVertex3fv(P091); + glNormal3fv(N092); + glVertex3fv(P092); + glNormal3fv(N094); + glVertex3fv(P094); + glNormal3fv(N095); + glVertex3fv(P095); + glEnd(); +} + +void +Whale007(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N038); + glVertex3fv(P038); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N038); + glVertex3fv(P038); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N037); + glVertex3fv(P037); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N037); + glVertex3fv(P037); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N036); + glVertex3fv(P036); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N036); + glVertex3fv(P036); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N043); + glVertex3fv(P043); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N034); + glVertex3fv(P034); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N043); + glVertex3fv(P043); + glNormal3fv(N042); + glVertex3fv(P042); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N034); + glVertex3fv(P034); + glNormal3fv(N042); + glVertex3fv(P042); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N041); + glVertex3fv(P041); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N039); + glVertex3fv(P039); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N040); + glVertex3fv(P040); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N040); + glVertex3fv(P040); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N041); + glVertex3fv(P041); + glEnd(); +} + +void +Whale008(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N043); + glVertex3fv(P043); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N050); + glVertex3fv(P050); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N043); + glVertex3fv(P043); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N051); + glVertex3fv(P051); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N044); + glVertex3fv(P044); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N050); + glVertex3fv(P050); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N049); + glVertex3fv(P049); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N044); + glVertex3fv(P044); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N045); + glVertex3fv(P045); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N049); + glVertex3fv(P049); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N048); + glVertex3fv(P048); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N048); + glVertex3fv(P048); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N047); + glVertex3fv(P047); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N045); + glVertex3fv(P045); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N045); + glVertex3fv(P045); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N046); + glVertex3fv(P046); + glEnd(); +} + +void +Whale009(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N058); + glVertex3fv(P058); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N059); + glVertex3fv(P059); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N052); + glVertex3fv(P052); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N045); + glVertex3fv(P045); + glNormal3fv(N053); + glVertex3fv(P053); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N053); + glVertex3fv(P053); + glNormal3fv(N052); + glVertex3fv(P052); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N058); + glVertex3fv(P058); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N057); + glVertex3fv(P057); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N057); + glVertex3fv(P057); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N057); + glVertex3fv(P057); + glNormal3fv(N056); + glVertex3fv(P056); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N056); + glVertex3fv(P056); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N055); + glVertex3fv(P055); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N045); + glVertex3fv(P045); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N053); + glVertex3fv(P053); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N054); + glVertex3fv(P054); + glNormal3fv(N053); + glVertex3fv(P053); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N055); + glVertex3fv(P055); + glNormal3fv(N054); + glVertex3fv(P054); + glEnd(); +} + +void +Whale010(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N080); + glVertex3fv(P080); + glNormal3fv(N081); + glVertex3fv(P081); + glNormal3fv(N085); + glVertex3fv(P085); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N081); + glVertex3fv(P081); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N085); + glVertex3fv(P085); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N085); + glVertex3fv(P085); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N077); + glVertex3fv(P077); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N087); + glVertex3fv(P087); + glNormal3fv(N077); + glVertex3fv(P077); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N077); + glVertex3fv(P077); + glNormal3fv(N087); + glVertex3fv(P087); + glNormal3fv(N090); + glVertex3fv(P090); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N081); + glVertex3fv(P081); + glNormal3fv(N080); + glVertex3fv(P080); + glNormal3fv(N085); + glVertex3fv(P085); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N081); + glVertex3fv(P081); + glNormal3fv(N085); + glVertex3fv(P085); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N085); + glVertex3fv(P085); + glNormal3fv(N077); + glVertex3fv(P077); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N087); + glVertex3fv(P087); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N077); + glVertex3fv(P077); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N087); + glVertex3fv(P087); + glNormal3fv(N077); + glVertex3fv(P077); + glNormal3fv(N090); + glVertex3fv(P090); + glEnd(); +} + +void +Whale011(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N082); + glVertex3fv(P082); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N079); + glVertex3fv(P079); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N079); + glVertex3fv(P079); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N079); + glVertex3fv(P079); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N078); + glVertex3fv(P078); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N088); + glVertex3fv(P088); + glNormal3fv(N078); + glVertex3fv(P078); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N078); + glVertex3fv(P078); + glNormal3fv(N088); + glVertex3fv(P088); + glNormal3fv(N089); + glVertex3fv(P089); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N088); + glVertex3fv(P088); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N089); + glVertex3fv(P089); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N089); + glVertex3fv(P089); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N078); + glVertex3fv(P078); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N078); + glVertex3fv(P078); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N078); + glVertex3fv(P078); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N079); + glVertex3fv(P079); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N082); + glVertex3fv(P082); + glNormal3fv(N079); + glVertex3fv(P079); + glEnd(); +} + +void +Whale012(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N067); + glVertex3fv(P067); + glNormal3fv(N066); + glVertex3fv(P066); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N052); + glVertex3fv(P052); + glNormal3fv(N060); + glVertex3fv(P060); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N067); + glVertex3fv(P067); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N065); + glVertex3fv(P065); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N057); + glVertex3fv(P057); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N057); + glVertex3fv(P057); + glNormal3fv(N065); + glVertex3fv(P065); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N006); + glVertex3fv(P006); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N063); + glVertex3fv(P063); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N055); + glVertex3fv(P055); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N054); + glVertex3fv(P054); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N005); + glVertex3fv(P005); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N054); + glVertex3fv(P054); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N053); + glVertex3fv(P053); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N053); + glVertex3fv(P053); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N060); + glVertex3fv(P060); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N053); + glVertex3fv(P053); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N052); + glVertex3fv(P052); + glEnd(); +} + +void +Whale013(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N067); + glVertex3fv(P067); + glNormal3fv(N096); + glVertex3fv(P096); + glNormal3fv(N097); + glVertex3fv(P097); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N097); + glVertex3fv(P097); + glNormal3fv(N096); + glVertex3fv(P096); + glNormal3fv(N098); + glVertex3fv(P098); + glNormal3fv(N099); + glVertex3fv(P099); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N097); + glVertex3fv(P097); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N067); + glVertex3fv(P067); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N096); + glVertex3fv(P096); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N096); + glVertex3fv(P096); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N096); + glVertex3fv(P096); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N098); + glVertex3fv(P098); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N097); + glVertex3fv(P097); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N097); + glVertex3fv(P097); + glNormal3fv(N099); + glVertex3fv(P099); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P005); + glVertex3fv(P006); + glVertex3fv(P099); + glVertex3fv(P098); + glEnd(); +} + +void +Whale014(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N004); + glVertex3fv(P004); + glNormal3fv(N005); + glVertex3fv(P005); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P006); + glVertex3fv(P005); + glVertex3fv(P004); + glVertex3fv(P008); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N002); + glVertex3fv(P002); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N008); + glVertex3fv(P008); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N008); + glVertex3fv(P008); + glNormal3fv(N004); + glVertex3fv(P004); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N004); + glVertex3fv(P004); + glEnd(); +} + +void +Whale015(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N055); + glVertex3fv(P055); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N054); + glVertex3fv(P054); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N055); + glVertex3fv(P055); + glNormal3fv(N063); + glVertex3fv(P063); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N100); + glVertex3fv(P100); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N054); + glVertex3fv(P054); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N054); + glVertex3fv(P054); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N062); + glVertex3fv(P062); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N002); + glVertex3fv(P002); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N062); + glVertex3fv(P062); + glEnd(); +} + +void +Whale016(void) +{ + glBegin(GL_POLYGON); + glVertex3fv(P104); + glVertex3fv(P105); + glVertex3fv(P106); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P107); + glVertex3fv(P108); + glVertex3fv(P109); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P110); + glVertex3fv(P111); + glVertex3fv(P112); + glVertex3fv(P113); + glVertex3fv(P114); + glVertex3fv(P115); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P116); + glVertex3fv(P117); + glVertex3fv(P118); + glVertex3fv(P119); + glVertex3fv(P120); + glVertex3fv(P121); + glEnd(); +} + +void +DrawWhale(fishRec * fish) +{ + float seg0, seg1, seg2, seg3, seg4, seg5, seg6, seg7; + float pitch, thrash, chomp; + + fish->htail = (int) (fish->htail - (int) (5.0 * fish->v)) % 360; + + thrash = 70.0 * fish->v; + + seg0 = 1.5 * thrash * sin((fish->htail) * RRAD); + seg1 = 2.5 * thrash * sin((fish->htail + 10.0) * RRAD); + seg2 = 3.7 * thrash * sin((fish->htail + 15.0) * RRAD); + seg3 = 4.8 * thrash * sin((fish->htail + 23.0) * RRAD); + seg4 = 6.0 * thrash * sin((fish->htail + 28.0) * RRAD); + seg5 = 6.5 * thrash * sin((fish->htail + 35.0) * RRAD); + seg6 = 6.5 * thrash * sin((fish->htail + 40.0) * RRAD); + seg7 = 6.5 * thrash * sin((fish->htail + 55.0) * RRAD); + + pitch = fish->v * sin((fish->htail - 160.0) * RRAD); + + chomp = 0.0; + if (fish->v > 2.0) { + chomp = -(fish->v - 2.0) * 200.0; + } + P012[1] = iP012[1] + seg5; + P013[1] = iP013[1] + seg5; + P014[1] = iP014[1] + seg5; + P015[1] = iP015[1] + seg5; + P016[1] = iP016[1] + seg5; + P017[1] = iP017[1] + seg5; + P018[1] = iP018[1] + seg5; + P019[1] = iP019[1] + seg5; + + P020[1] = iP020[1] + seg4; + P021[1] = iP021[1] + seg4; + P022[1] = iP022[1] + seg4; + P023[1] = iP023[1] + seg4; + P024[1] = iP024[1] + seg4; + P025[1] = iP025[1] + seg4; + P026[1] = iP026[1] + seg4; + P027[1] = iP027[1] + seg4; + + P028[1] = iP028[1] + seg2; + P029[1] = iP029[1] + seg2; + P030[1] = iP030[1] + seg2; + P031[1] = iP031[1] + seg2; + P032[1] = iP032[1] + seg2; + P033[1] = iP033[1] + seg2; + P034[1] = iP034[1] + seg2; + P035[1] = iP035[1] + seg2; + + P036[1] = iP036[1] + seg1; + P037[1] = iP037[1] + seg1; + P038[1] = iP038[1] + seg1; + P039[1] = iP039[1] + seg1; + P040[1] = iP040[1] + seg1; + P041[1] = iP041[1] + seg1; + P042[1] = iP042[1] + seg1; + P043[1] = iP043[1] + seg1; + + P044[1] = iP044[1] + seg0; + P045[1] = iP045[1] + seg0; + P046[1] = iP046[1] + seg0; + P047[1] = iP047[1] + seg0; + P048[1] = iP048[1] + seg0; + P049[1] = iP049[1] + seg0; + P050[1] = iP050[1] + seg0; + P051[1] = iP051[1] + seg0; + + P009[1] = iP009[1] + seg6; + P010[1] = iP010[1] + seg6; + P075[1] = iP075[1] + seg6; + P076[1] = iP076[1] + seg6; + + P001[1] = iP001[1] + seg7; + P011[1] = iP011[1] + seg7; + P068[1] = iP068[1] + seg7; + P069[1] = iP069[1] + seg7; + P070[1] = iP070[1] + seg7; + P071[1] = iP071[1] + seg7; + P072[1] = iP072[1] + seg7; + P073[1] = iP073[1] + seg7; + P074[1] = iP074[1] + seg7; + + P091[1] = iP091[1] + seg3 * 1.1; + P092[1] = iP092[1] + seg3; + P093[1] = iP093[1] + seg3; + P094[1] = iP094[1] + seg3; + P095[1] = iP095[1] + seg3 * 0.9; + + P099[1] = iP099[1] + chomp; + P098[1] = iP098[1] + chomp; + P097[1] = iP097[1] + chomp; + P096[1] = iP096[1] + chomp; + + glPushMatrix(); + + glRotatef(pitch, 1.0, 0.0, 0.0); + + glTranslatef(0.0, 0.0, 8000.0); + + glRotatef(180.0, 0.0, 1.0, 0.0); + + glScalef(3.0, 3.0, 3.0); + + glEnable(GL_CULL_FACE); + + Whale001(); + Whale002(); + Whale003(); + Whale004(); + Whale005(); + Whale006(); + Whale007(); + Whale008(); + Whale009(); + Whale010(); + Whale011(); + Whale012(); + Whale013(); + Whale014(); + Whale015(); + Whale016(); + + glDisable(GL_CULL_FACE); + + glPopMatrix(); +} diff --git a/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/main.c b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/main.c new file mode 100644 index 000000000..b7794b3b6 --- /dev/null +++ b/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/main.c @@ -0,0 +1,179 @@ + +/* Simple program: Create a blank window, wait for keypress, quit. + + Please see the SDL documentation for details on using the SDL API: + /Developer/Documentation/SDL/docs.html +*/ + +#include +#include +#include +#include + +#include "SDL.h" + +extern void Atlantis_Init (); +extern void Atlantis_Reshape (int w, int h); +extern void Atlantis_Animate (); +extern void Atlantis_Display (); + +static SDL_Surface *gScreen; + +static void initAttributes () +{ + // Setup attributes we want for the OpenGL context + + int value; + + // Don't set color bit sizes (SDL_GL_RED_SIZE, etc) + // Mac OS X will always use 8-8-8-8 ARGB for 32-bit screens and + // 5-5-5 RGB for 16-bit screens + + // Request a 16-bit depth buffer (without this, there is no depth buffer) + value = 16; + SDL_GL_SetAttribute (SDL_GL_DEPTH_SIZE, value); + + + // Request double-buffered OpenGL + // The fact that windows are double-buffered on Mac OS X has no effect + // on OpenGL double buffering. + value = 1; + SDL_GL_SetAttribute (SDL_GL_DOUBLEBUFFER, value); +} + +static void printAttributes () +{ + // Print out attributes of the context we created + int nAttr; + int i; + + int attr[] = { SDL_GL_RED_SIZE, SDL_GL_BLUE_SIZE, SDL_GL_GREEN_SIZE, + SDL_GL_ALPHA_SIZE, SDL_GL_BUFFER_SIZE, SDL_GL_DEPTH_SIZE }; + + char *desc[] = { "Red size: %d bits\n", "Blue size: %d bits\n", "Green size: %d bits\n", + "Alpha size: %d bits\n", "Color buffer size: %d bits\n", + "Depth bufer size: %d bits\n" }; + + nAttr = sizeof(attr) / sizeof(int); + + for (i = 0; i < nAttr; i++) { + + int value; + SDL_GL_GetAttribute (attr[i], &value); + printf (desc[i], value); + } +} + +static void createSurface (int fullscreen) +{ + Uint32 flags = 0; + + flags = SDL_OPENGL; + if (fullscreen) + flags |= SDL_FULLSCREEN; + + // Create window + gScreen = SDL_SetVideoMode (640, 480, 0, flags); + if (gScreen == NULL) { + + fprintf (stderr, "Couldn't set 640x480 OpenGL video mode: %s\n", + SDL_GetError()); + SDL_Quit(); + exit(2); + } +} + +static void initGL () +{ + Atlantis_Init (); + Atlantis_Reshape (gScreen->w, gScreen->h); +} + +static void drawGL () +{ + Atlantis_Animate (); + Atlantis_Display (); +} + +static void mainLoop () +{ + SDL_Event event; + int done = 0; + int fps = 24; + int delay = 1000/fps; + int thenTicks = -1; + int nowTicks; + + while ( !done ) { + + /* Check for events */ + while ( SDL_PollEvent (&event) ) { + switch (event.type) { + + case SDL_MOUSEMOTION: + break; + case SDL_MOUSEBUTTONDOWN: + break; + case SDL_KEYDOWN: + /* Any keypress quits the app... */ + case SDL_QUIT: + done = 1; + break; + default: + break; + } + } + + // Draw at 24 hz + // This approach is not normally recommended - it is better to + // use time-based animation and run as fast as possible + drawGL (); + SDL_GL_SwapBuffers (); + + // Time how long each draw-swap-delay cycle takes + // and adjust delay to get closer to target framerate + if (thenTicks > 0) { + nowTicks = SDL_GetTicks (); + delay += (1000/fps - (nowTicks-thenTicks)); + thenTicks = nowTicks; + if (delay < 0) + delay = 1000/fps; + } + else { + thenTicks = SDL_GetTicks (); + } + + SDL_Delay (delay); + } +} + +int main(int argc, char *argv[]) +{ + // Init SDL video subsystem + if ( SDL_Init (SDL_INIT_VIDEO) < 0 ) { + + fprintf(stderr, "Couldn't initialize SDL: %s\n", + SDL_GetError()); + exit(1); + } + + // Set GL context attributes + initAttributes (); + + // Create GL context + createSurface (0); + + // Get GL context attributes + printAttributes (); + + // Init GL state + initGL (); + + // Draw, get events... + mainLoop (); + + // Cleanup + SDL_Quit(); + + return 0; +} diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/English.lproj/InfoPlist.strings b/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/English.lproj/InfoPlist.strings new file mode 100644 index 000000000..6e721b0ef Binary files /dev/null and b/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/English.lproj/InfoPlist.strings differ diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/Info.plist b/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/Info.plist new file mode 100644 index 000000000..e4332041b --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/Info.plist @@ -0,0 +1,37 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIconFile + + CFBundleIdentifier + com.yourcompany.___PROJECTNAMEASXML___ + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + APPL + CFBundleSignature + ???? + CFBundleVersion + 1.0 + NSMainNibFile + SDLMain + NSPrincipalClass + NSApplication + LSMinimumSystemVersionByArchitecture + + x86_64 + 10.6.0 + i386 + 10.4.0 + ppc + 10.4.0 + + + diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/SDLMain.h b/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/SDLMain.h new file mode 100644 index 000000000..c56d90cbe --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/SDLMain.h @@ -0,0 +1,16 @@ +/* SDLMain.m - main entry point for our Cocoa-ized SDL app + Initial Version: Darrell Walisser + Non-NIB-Code & other changes: Max Horn + + Feel free to customize this file to suit your needs +*/ + +#ifndef _SDLMain_h_ +#define _SDLMain_h_ + +#import + +@interface SDLMain : NSObject +@end + +#endif /* _SDLMain_h_ */ diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/SDLMain.m b/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/SDLMain.m new file mode 100644 index 000000000..b065a2009 --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/SDLMain.m @@ -0,0 +1,383 @@ +/* SDLMain.m - main entry point for our Cocoa-ized SDL app + Initial Version: Darrell Walisser + Non-NIB-Code & other changes: Max Horn + + Feel free to customize this file to suit your needs +*/ + +#include "SDL.h" +#include "SDLMain.h" +#include /* for MAXPATHLEN */ +#include + +/* For some reaon, Apple removed setAppleMenu from the headers in 10.4, + but the method still is there and works. To avoid warnings, we declare + it ourselves here. */ +@interface NSApplication(SDL_Missing_Methods) +- (void)setAppleMenu:(NSMenu *)menu; +@end + +/* Use this flag to determine whether we use SDLMain.nib or not */ +#define SDL_USE_NIB_FILE 0 + +/* Use this flag to determine whether we use CPS (docking) or not */ +#define SDL_USE_CPS 1 +#ifdef SDL_USE_CPS +/* Portions of CPS.h */ +typedef struct CPSProcessSerNum +{ + UInt32 lo; + UInt32 hi; +} CPSProcessSerNum; + +extern OSErr CPSGetCurrentProcess( CPSProcessSerNum *psn); +extern OSErr CPSEnableForegroundOperation( CPSProcessSerNum *psn, UInt32 _arg2, UInt32 _arg3, UInt32 _arg4, UInt32 _arg5); +extern OSErr CPSSetFrontProcess( CPSProcessSerNum *psn); + +#endif /* SDL_USE_CPS */ + +static int gArgc; +static char **gArgv; +static BOOL gFinderLaunch; +static BOOL gCalledAppMainline = FALSE; + +static NSString *getApplicationName(void) +{ + const NSDictionary *dict; + NSString *appName = 0; + + /* Determine the application name */ + dict = (const NSDictionary *)CFBundleGetInfoDictionary(CFBundleGetMainBundle()); + if (dict) + appName = [dict objectForKey: @"CFBundleName"]; + + if (![appName length]) + appName = [[NSProcessInfo processInfo] processName]; + + return appName; +} + +#if SDL_USE_NIB_FILE +/* A helper category for NSString */ +@interface NSString (ReplaceSubString) +- (NSString *)stringByReplacingRange:(NSRange)aRange with:(NSString *)aString; +@end +#endif + +@interface SDLApplication : NSApplication +@end + +@implementation SDLApplication +/* Invoked from the Quit menu item */ +- (void)terminate:(id)sender +{ + /* Post a SDL_QUIT event */ + SDL_Event event; + event.type = SDL_QUIT; + SDL_PushEvent(&event); +} +@end + +/* The main class of the application, the application's delegate */ +@implementation SDLMain + +/* Set the working directory to the .app's parent directory */ +- (void) setupWorkingDirectory:(BOOL)shouldChdir +{ + if (shouldChdir) + { + char parentdir[MAXPATHLEN]; + CFURLRef url = CFBundleCopyBundleURL(CFBundleGetMainBundle()); + CFURLRef url2 = CFURLCreateCopyDeletingLastPathComponent(0, url); + if (CFURLGetFileSystemRepresentation(url2, 1, (UInt8 *)parentdir, MAXPATHLEN)) { + chdir(parentdir); /* chdir to the binary app's parent */ + } + CFRelease(url); + CFRelease(url2); + } +} + +#if SDL_USE_NIB_FILE + +/* Fix menu to contain the real app name instead of "SDL App" */ +- (void)fixMenu:(NSMenu *)aMenu withAppName:(NSString *)appName +{ + NSRange aRange; + NSEnumerator *enumerator; + NSMenuItem *menuItem; + + aRange = [[aMenu title] rangeOfString:@"SDL App"]; + if (aRange.length != 0) + [aMenu setTitle: [[aMenu title] stringByReplacingRange:aRange with:appName]]; + + enumerator = [[aMenu itemArray] objectEnumerator]; + while ((menuItem = [enumerator nextObject])) + { + aRange = [[menuItem title] rangeOfString:@"SDL App"]; + if (aRange.length != 0) + [menuItem setTitle: [[menuItem title] stringByReplacingRange:aRange with:appName]]; + if ([menuItem hasSubmenu]) + [self fixMenu:[menuItem submenu] withAppName:appName]; + } + [ aMenu sizeToFit ]; +} + +#else + +static void setApplicationMenu(void) +{ + /* warning: this code is very odd */ + NSMenu *appleMenu; + NSMenuItem *menuItem; + NSString *title; + NSString *appName; + + appName = getApplicationName(); + appleMenu = [[NSMenu alloc] initWithTitle:@""]; + + /* Add menu items */ + title = [@"About " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""]; + + [appleMenu addItem:[NSMenuItem separatorItem]]; + + title = [@"Hide " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(hide:) keyEquivalent:@"h"]; + + menuItem = (NSMenuItem *)[appleMenu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"]; + [menuItem setKeyEquivalentModifierMask:(NSAlternateKeyMask|NSCommandKeyMask)]; + + [appleMenu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""]; + + [appleMenu addItem:[NSMenuItem separatorItem]]; + + title = [@"Quit " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(terminate:) keyEquivalent:@"q"]; + + + /* Put menu into the menubar */ + menuItem = [[NSMenuItem alloc] initWithTitle:@"" action:nil keyEquivalent:@""]; + [menuItem setSubmenu:appleMenu]; + [[NSApp mainMenu] addItem:menuItem]; + + /* Tell the application object that this is now the application menu */ + [NSApp setAppleMenu:appleMenu]; + + /* Finally give up our references to the objects */ + [appleMenu release]; + [menuItem release]; +} + +/* Create a window menu */ +static void setupWindowMenu(void) +{ + NSMenu *windowMenu; + NSMenuItem *windowMenuItem; + NSMenuItem *menuItem; + + windowMenu = [[NSMenu alloc] initWithTitle:@"Window"]; + + /* "Minimize" item */ + menuItem = [[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"]; + [windowMenu addItem:menuItem]; + [menuItem release]; + + /* Put menu into the menubar */ + windowMenuItem = [[NSMenuItem alloc] initWithTitle:@"Window" action:nil keyEquivalent:@""]; + [windowMenuItem setSubmenu:windowMenu]; + [[NSApp mainMenu] addItem:windowMenuItem]; + + /* Tell the application object that this is now the window menu */ + [NSApp setWindowsMenu:windowMenu]; + + /* Finally give up our references to the objects */ + [windowMenu release]; + [windowMenuItem release]; +} + +/* Replacement for NSApplicationMain */ +static void CustomApplicationMain (int argc, char **argv) +{ + NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; + SDLMain *sdlMain; + + /* Ensure the application object is initialised */ + [SDLApplication sharedApplication]; + +#ifdef SDL_USE_CPS + { + CPSProcessSerNum PSN; + /* Tell the dock about us */ + if (!CPSGetCurrentProcess(&PSN)) + if (!CPSEnableForegroundOperation(&PSN,0x03,0x3C,0x2C,0x1103)) + if (!CPSSetFrontProcess(&PSN)) + [SDLApplication sharedApplication]; + } +#endif /* SDL_USE_CPS */ + + /* Set up the menubar */ + [NSApp setMainMenu:[[NSMenu alloc] init]]; + setApplicationMenu(); + setupWindowMenu(); + + /* Create SDLMain and make it the app delegate */ + sdlMain = [[SDLMain alloc] init]; + [NSApp setDelegate:sdlMain]; + + /* Start the main event loop */ + [NSApp run]; + + [sdlMain release]; + [pool release]; +} + +#endif + + +/* + * Catch document open requests...this lets us notice files when the app + * was launched by double-clicking a document, or when a document was + * dragged/dropped on the app's icon. You need to have a + * CFBundleDocumentsType section in your Info.plist to get this message, + * apparently. + * + * Files are added to gArgv, so to the app, they'll look like command line + * arguments. Previously, apps launched from the finder had nothing but + * an argv[0]. + * + * This message may be received multiple times to open several docs on launch. + * + * This message is ignored once the app's mainline has been called. + */ +- (BOOL)application:(NSApplication *)theApplication openFile:(NSString *)filename +{ + const char *temparg; + size_t arglen; + char *arg; + char **newargv; + + if (!gFinderLaunch) /* MacOS is passing command line args. */ + return FALSE; + + if (gCalledAppMainline) /* app has started, ignore this document. */ + return FALSE; + + temparg = [filename UTF8String]; + arglen = SDL_strlen(temparg) + 1; + arg = (char *) SDL_malloc(arglen); + if (arg == NULL) + return FALSE; + + newargv = (char **) realloc(gArgv, sizeof (char *) * (gArgc + 2)); + if (newargv == NULL) + { + SDL_free(arg); + return FALSE; + } + gArgv = newargv; + + SDL_strlcpy(arg, temparg, arglen); + gArgv[gArgc++] = arg; + gArgv[gArgc] = NULL; + return TRUE; +} + + +/* Called when the internal event loop has just started running */ +- (void) applicationDidFinishLaunching: (NSNotification *) note +{ + int status; + + /* Set the working directory to the .app's parent directory */ + [self setupWorkingDirectory:gFinderLaunch]; + +#if SDL_USE_NIB_FILE + /* Set the main menu to contain the real app name instead of "SDL App" */ + [self fixMenu:[NSApp mainMenu] withAppName:getApplicationName()]; +#endif + + /* Hand off to main application code */ + gCalledAppMainline = TRUE; + status = SDL_main (gArgc, gArgv); + + /* We're done, thank you for playing */ + exit(status); +} +@end + + +@implementation NSString (ReplaceSubString) + +- (NSString *)stringByReplacingRange:(NSRange)aRange with:(NSString *)aString +{ + unsigned int bufferSize; + unsigned int selfLen = [self length]; + unsigned int aStringLen = [aString length]; + unichar *buffer; + NSRange localRange; + NSString *result; + + bufferSize = selfLen + aStringLen - aRange.length; + buffer = (unichar *)NSAllocateMemoryPages(bufferSize*sizeof(unichar)); + + /* Get first part into buffer */ + localRange.location = 0; + localRange.length = aRange.location; + [self getCharacters:buffer range:localRange]; + + /* Get middle part into buffer */ + localRange.location = 0; + localRange.length = aStringLen; + [aString getCharacters:(buffer+aRange.location) range:localRange]; + + /* Get last part into buffer */ + localRange.location = aRange.location + aRange.length; + localRange.length = selfLen - localRange.location; + [self getCharacters:(buffer+aRange.location+aStringLen) range:localRange]; + + /* Build output string */ + result = [NSString stringWithCharacters:buffer length:bufferSize]; + + NSDeallocateMemoryPages(buffer, bufferSize); + + return result; +} + +@end + + + +#ifdef main +# undef main +#endif + + +/* Main entry point to executable - should *not* be SDL_main! */ +int main (int argc, char **argv) +{ + /* Copy the arguments into a global variable */ + /* This is passed if we are launched by double-clicking */ + if ( argc >= 2 && strncmp (argv[1], "-psn", 4) == 0 ) { + gArgv = (char **) SDL_malloc(sizeof (char *) * 2); + gArgv[0] = argv[0]; + gArgv[1] = NULL; + gArgc = 1; + gFinderLaunch = YES; + } else { + int i; + gArgc = argc; + gArgv = (char **) SDL_malloc(sizeof (char *) * (argc+1)); + for (i = 0; i <= argc; i++) + gArgv[i] = argv[i]; + gFinderLaunch = NO; + } + +#if SDL_USE_NIB_FILE + [SDLApplication poseAsClass:[NSApplication class]]; + NSApplicationMain (argc, argv); +#else + CustomApplicationMain (argc, argv); +#endif + return 0; +} + diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/___PROJECTNAMEASIDENTIFIER____Prefix.pch b/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/___PROJECTNAMEASIDENTIFIER____Prefix.pch new file mode 100644 index 000000000..00095074a --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/___PROJECTNAMEASIDENTIFIER____Prefix.pch @@ -0,0 +1,9 @@ +// +// Prefix header for all source files of the 'ÇPROJECTNAMEÈ' target in the 'ÇPROJECTNAMEÈ' project +// + +#include "SDL.h" + +#ifdef __OBJC__ + #import +#endif diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns b/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns new file mode 100644 index 000000000..ae0b02b12 Binary files /dev/null and b/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns differ diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist b/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist new file mode 100644 index 000000000..d9ca45493 --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist @@ -0,0 +1,12 @@ +{ + FilesToRename = { + "SDLApp_Prefix.pch" = "ÇPROJECTNAMEÈ_Prefix.pch"; + }; + FilesToMacroExpand = ( + "ÇPROJECTNAMEÈ_Prefix.pch", + "Info.plist", + "English.lproj/InfoPlist.strings", + "main.c", + ); + Description = "This project builds an SDL-based application."; +} diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/___PROJECTNAME___.xcodeproj/project.pbxproj b/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/___PROJECTNAME___.xcodeproj/project.pbxproj new file mode 100644 index 000000000..d6553a7bf --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/___PROJECTNAME___.xcodeproj/project.pbxproj @@ -0,0 +1,310 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 002F39FA09D0881F00EBEB88 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F39F909D0881F00EBEB88 /* SDL.framework */; }; + 002F3A0009D0884600EBEB88 /* SDL.framework in Copy Frameworks into .app bundle */ = {isa = PBXBuildFile; fileRef = 002F39F909D0881F00EBEB88 /* SDL.framework */; }; + 002F3A2E09D0888800EBEB88 /* SDLMain.m in Sources */ = {isa = PBXBuildFile; fileRef = 002F3A2C09D0888800EBEB88 /* SDLMain.m */; }; + 002F3A3F09D088BA00EBEB88 /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F3A3E09D088BA00EBEB88 /* main.c */; }; + 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; }; + 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 002F39FD09D0883400EBEB88 /* Copy Frameworks into .app bundle */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + 002F3A0009D0884600EBEB88 /* SDL.framework in Copy Frameworks into .app bundle */, + ); + name = "Copy Frameworks into .app bundle"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 002F39F909D0881F00EBEB88 /* SDL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL.framework; path = /Library/Frameworks/SDL.framework; sourceTree = ""; }; + 002F3A2B09D0888800EBEB88 /* SDLMain.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDLMain.h; sourceTree = SOURCE_ROOT; }; + 002F3A2C09D0888800EBEB88 /* SDLMain.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = SDLMain.m; sourceTree = SOURCE_ROOT; }; + 002F3A3E09D088BA00EBEB88 /* main.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = main.c; sourceTree = SOURCE_ROOT; }; + 089C165DFE840E0CC02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = ""; }; + 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = ""; }; + 29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = ""; }; + 29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = ""; }; + 32CA4F630368D1EE00C91783 /* ___PROJECTNAME____Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "___PROJECTNAME____Prefix.pch"; sourceTree = ""; }; + 8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + 8D1107320486CEB800E47090 /* ___PROJECTNAME___.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "___PROJECTNAME___.app"; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 8D11072E0486CEB800E47090 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F39FA09D0881F00EBEB88 /* SDL.framework in Frameworks */, + 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 080E96DDFE201D6D7F000001 /* Classes */ = { + isa = PBXGroup; + children = ( + 002F3A2B09D0888800EBEB88 /* SDLMain.h */, + 002F3A2C09D0888800EBEB88 /* SDLMain.m */, + ); + name = Classes; + sourceTree = ""; + }; + 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */ = { + isa = PBXGroup; + children = ( + 002F39F909D0881F00EBEB88 /* SDL.framework */, + 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */, + ); + name = "Linked Frameworks"; + sourceTree = ""; + }; + 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */ = { + isa = PBXGroup; + children = ( + 29B97324FDCFA39411CA2CEA /* AppKit.framework */, + 29B97325FDCFA39411CA2CEA /* Foundation.framework */, + ); + name = "Other Frameworks"; + sourceTree = ""; + }; + 19C28FACFE9D520D11CA2CBB /* Products */ = { + isa = PBXGroup; + children = ( + 8D1107320486CEB800E47090 /* ___PROJECTNAME___.app */, + ); + name = Products; + sourceTree = ""; + }; + 29B97314FDCFA39411CA2CEA /* ___PROJECTNAMEASXML___ */ = { + isa = PBXGroup; + children = ( + 080E96DDFE201D6D7F000001 /* Classes */, + 29B97315FDCFA39411CA2CEA /* Other Sources */, + 29B97317FDCFA39411CA2CEA /* Resources */, + 29B97323FDCFA39411CA2CEA /* Frameworks */, + 19C28FACFE9D520D11CA2CBB /* Products */, + ); + name = "___PROJECTNAMEASXML___"; + sourceTree = ""; + }; + 29B97315FDCFA39411CA2CEA /* Other Sources */ = { + isa = PBXGroup; + children = ( + 32CA4F630368D1EE00C91783 /* ___PROJECTNAME____Prefix.pch */, + 002F3A3E09D088BA00EBEB88 /* main.c */, + ); + name = "Other Sources"; + sourceTree = ""; + }; + 29B97317FDCFA39411CA2CEA /* Resources */ = { + isa = PBXGroup; + children = ( + 8D1107310486CEB800E47090 /* Info.plist */, + 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */, + ); + name = Resources; + sourceTree = ""; + }; + 29B97323FDCFA39411CA2CEA /* Frameworks */ = { + isa = PBXGroup; + children = ( + 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */, + 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */, + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 8D1107260486CEB800E47090 /* ___PROJECTNAME___ */ = { + isa = PBXNativeTarget; + buildConfigurationList = C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "___PROJECTNAME___" */; + buildPhases = ( + 8D1107290486CEB800E47090 /* Resources */, + 8D11072C0486CEB800E47090 /* Sources */, + 8D11072E0486CEB800E47090 /* Frameworks */, + 002F39FD09D0883400EBEB88 /* Copy Frameworks into .app bundle */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "___PROJECTNAME___"; + productInstallPath = "$(HOME)/Applications"; + productName = "___PROJECTNAME___"; + productReference = 8D1107320486CEB800E47090 /* ___PROJECTNAME___.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 29B97313FDCFA39411CA2CEA /* Project object */ = { + isa = PBXProject; + buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "___PROJECTNAME___" */; + compatibilityVersion = "Xcode 3.2"; + hasScannedForEncodings = 1; + mainGroup = 29B97314FDCFA39411CA2CEA /* ___PROJECTNAMEASXML___ */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 8D1107260486CEB800E47090 /* ___PROJECTNAME___ */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 8D1107290486CEB800E47090 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 8D11072C0486CEB800E47090 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F3A2E09D0888800EBEB88 /* SDLMain.m in Sources */, + 002F3A3F09D088BA00EBEB88 /* main.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXVariantGroup section */ + 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + 089C165DFE840E0CC02AAC07 /* English */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + C01FCF4B08A954540054247B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_FIX_AND_CONTINUE = YES; + GCC_MODEL_TUNING = G5; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "___PROJECTNAMEASIDENTIFIER____Prefix.pch"; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(HOME)/Applications"; + PRODUCT_NAME = "___PROJECTNAME___"; + WRAPPER_EXTENSION = app; + }; + name = Debug; + }; + C01FCF4C08A954540054247B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + GCC_MODEL_TUNING = G5; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "___PROJECTNAMEASIDENTIFIER____Prefix.pch"; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(HOME)/Applications"; + PRODUCT_NAME = "___PROJECTNAME___"; + WRAPPER_EXTENSION = app; + }; + name = Release; + }; + C01FCF4F08A954540054247B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + FRAMEWORK_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks", + /Library/Frameworks, + "$(FRAMEWORK_SEARCH_PATHS)", + ); + GCC_VERSION = 4.0; + "GCC_VERSION[arch=x86_64]" = 4.2; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks/SDL.framework/Headers", + /Library/Frameworks/SDL.framework/Headers, + "$(HEADER_SEARCH_PATHS)", + ); + PREBINDING = NO; + SDKROOT = macosx10.4; + "SDKROOT[arch=x86_64]" = macosx10.6; + }; + name = Debug; + }; + C01FCF5008A954540054247B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + FRAMEWORK_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks", + /Library/Frameworks, + "$(FRAMEWORK_SEARCH_PATHS)", + ); + GCC_VERSION = 4.0; + "GCC_VERSION[arch=x86_64]" = 4.2; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks/SDL.framework/Headers", + /Library/Frameworks/SDL.framework/Headers, + "$(HEADER_SEARCH_PATHS)", + ); + PREBINDING = NO; + SDKROOT = macosx10.4; + "SDKROOT[arch=x86_64]" = macosx10.6; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "___PROJECTNAME___" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01FCF4B08A954540054247B /* Debug */, + C01FCF4C08A954540054247B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + C01FCF4E08A954540054247B /* Build configuration list for PBXProject "___PROJECTNAME___" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01FCF4F08A954540054247B /* Debug */, + C01FCF5008A954540054247B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 29B97313FDCFA39411CA2CEA /* Project object */; +} diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/main.c b/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/main.c new file mode 100644 index 000000000..7115de989 --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/main.c @@ -0,0 +1,65 @@ + +/* Simple program: Create a blank window, wait for keypress, quit. + + Please see the SDL documentation for details on using the SDL API: + /Developer/Documentation/SDL/docs.html +*/ + +#include +#include +#include +#include + +#include "SDL.h" + +int main(int argc, char *argv[]) +{ + Uint32 initflags = SDL_INIT_VIDEO; /* See documentation for details */ + SDL_Surface *screen; + Uint8 video_bpp = 0; + Uint32 videoflags = SDL_SWSURFACE; + int done; + SDL_Event event; + + /* Initialize the SDL library */ + if ( SDL_Init(initflags) < 0 ) { + fprintf(stderr, "Couldn't initialize SDL: %s\n", + SDL_GetError()); + exit(1); + } + + /* Set 640x480 video mode */ + screen=SDL_SetVideoMode(640,480, video_bpp, videoflags); + if (screen == NULL) { + fprintf(stderr, "Couldn't set 640x480x%d video mode: %s\n", + video_bpp, SDL_GetError()); + SDL_Quit(); + exit(2); + } + + done = 0; + while ( !done ) { + + /* Check for events */ + while ( SDL_PollEvent(&event) ) { + switch (event.type) { + + case SDL_MOUSEMOTION: + break; + case SDL_MOUSEBUTTONDOWN: + break; + case SDL_KEYDOWN: + /* Any keypress quits the app... */ + case SDL_QUIT: + done = 1; + break; + default: + break; + } + } + } + + /* Clean up the SDL library */ + SDL_Quit(); + return(0); +} diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/English.lproj/InfoPlist.strings b/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/English.lproj/InfoPlist.strings new file mode 100644 index 000000000..6e721b0ef Binary files /dev/null and b/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/English.lproj/InfoPlist.strings differ diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/English.lproj/SDLMain.nib/classes.nib b/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/English.lproj/SDLMain.nib/classes.nib new file mode 100644 index 000000000..799eaaddd --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/English.lproj/SDLMain.nib/classes.nib @@ -0,0 +1,19 @@ +{ + IBClasses = ( + {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; }, + { + ACTIONS = { + help = id; + newGame = id; + openGame = id; + prefsMenu = id; + saveGame = id; + saveGameAs = id; + }; + CLASS = SDLMain; + LANGUAGE = ObjC; + SUPERCLASS = NSObject; + } + ); + IBVersion = 1; +} \ No newline at end of file diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/English.lproj/SDLMain.nib/info.nib b/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/English.lproj/SDLMain.nib/info.nib new file mode 100644 index 000000000..1d6fb7e01 --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/English.lproj/SDLMain.nib/info.nib @@ -0,0 +1,21 @@ + + + + + IBDocumentLocation + 62 117 356 240 0 0 1152 848 + IBEditorPositions + + 29 + 62 362 195 44 0 0 1152 848 + + IBFramework Version + 291.0 + IBOpenObjects + + 29 + + IBSystem Version + 6L60 + + diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/English.lproj/SDLMain.nib/objects.nib b/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/English.lproj/SDLMain.nib/objects.nib new file mode 100644 index 000000000..637801528 Binary files /dev/null and b/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/English.lproj/SDLMain.nib/objects.nib differ diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/Info.plist b/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/Info.plist new file mode 100644 index 000000000..40a970f97 --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/Info.plist @@ -0,0 +1,37 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIconFile + + CFBundleIdentifier + com.yourcompany.___PROJECTNAMEASXML___ + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + APPL + CFBundleSignature + ???? + CFBundleVersion + 1.0 + NSMainNibFile + SDLMain + NSPrincipalClass + NSApplication + LSMinimumSystemVersionByArchitecture + + x86_64 + 10.6.0 + i386 + 10.4.0 + ppc + 10.4.0 + + + diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/SDLMain.h b/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/SDLMain.h new file mode 100644 index 000000000..c56d90cbe --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/SDLMain.h @@ -0,0 +1,16 @@ +/* SDLMain.m - main entry point for our Cocoa-ized SDL app + Initial Version: Darrell Walisser + Non-NIB-Code & other changes: Max Horn + + Feel free to customize this file to suit your needs +*/ + +#ifndef _SDLMain_h_ +#define _SDLMain_h_ + +#import + +@interface SDLMain : NSObject +@end + +#endif /* _SDLMain_h_ */ diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/SDLMain.m b/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/SDLMain.m new file mode 100644 index 000000000..b065a2009 --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/SDLMain.m @@ -0,0 +1,383 @@ +/* SDLMain.m - main entry point for our Cocoa-ized SDL app + Initial Version: Darrell Walisser + Non-NIB-Code & other changes: Max Horn + + Feel free to customize this file to suit your needs +*/ + +#include "SDL.h" +#include "SDLMain.h" +#include /* for MAXPATHLEN */ +#include + +/* For some reaon, Apple removed setAppleMenu from the headers in 10.4, + but the method still is there and works. To avoid warnings, we declare + it ourselves here. */ +@interface NSApplication(SDL_Missing_Methods) +- (void)setAppleMenu:(NSMenu *)menu; +@end + +/* Use this flag to determine whether we use SDLMain.nib or not */ +#define SDL_USE_NIB_FILE 0 + +/* Use this flag to determine whether we use CPS (docking) or not */ +#define SDL_USE_CPS 1 +#ifdef SDL_USE_CPS +/* Portions of CPS.h */ +typedef struct CPSProcessSerNum +{ + UInt32 lo; + UInt32 hi; +} CPSProcessSerNum; + +extern OSErr CPSGetCurrentProcess( CPSProcessSerNum *psn); +extern OSErr CPSEnableForegroundOperation( CPSProcessSerNum *psn, UInt32 _arg2, UInt32 _arg3, UInt32 _arg4, UInt32 _arg5); +extern OSErr CPSSetFrontProcess( CPSProcessSerNum *psn); + +#endif /* SDL_USE_CPS */ + +static int gArgc; +static char **gArgv; +static BOOL gFinderLaunch; +static BOOL gCalledAppMainline = FALSE; + +static NSString *getApplicationName(void) +{ + const NSDictionary *dict; + NSString *appName = 0; + + /* Determine the application name */ + dict = (const NSDictionary *)CFBundleGetInfoDictionary(CFBundleGetMainBundle()); + if (dict) + appName = [dict objectForKey: @"CFBundleName"]; + + if (![appName length]) + appName = [[NSProcessInfo processInfo] processName]; + + return appName; +} + +#if SDL_USE_NIB_FILE +/* A helper category for NSString */ +@interface NSString (ReplaceSubString) +- (NSString *)stringByReplacingRange:(NSRange)aRange with:(NSString *)aString; +@end +#endif + +@interface SDLApplication : NSApplication +@end + +@implementation SDLApplication +/* Invoked from the Quit menu item */ +- (void)terminate:(id)sender +{ + /* Post a SDL_QUIT event */ + SDL_Event event; + event.type = SDL_QUIT; + SDL_PushEvent(&event); +} +@end + +/* The main class of the application, the application's delegate */ +@implementation SDLMain + +/* Set the working directory to the .app's parent directory */ +- (void) setupWorkingDirectory:(BOOL)shouldChdir +{ + if (shouldChdir) + { + char parentdir[MAXPATHLEN]; + CFURLRef url = CFBundleCopyBundleURL(CFBundleGetMainBundle()); + CFURLRef url2 = CFURLCreateCopyDeletingLastPathComponent(0, url); + if (CFURLGetFileSystemRepresentation(url2, 1, (UInt8 *)parentdir, MAXPATHLEN)) { + chdir(parentdir); /* chdir to the binary app's parent */ + } + CFRelease(url); + CFRelease(url2); + } +} + +#if SDL_USE_NIB_FILE + +/* Fix menu to contain the real app name instead of "SDL App" */ +- (void)fixMenu:(NSMenu *)aMenu withAppName:(NSString *)appName +{ + NSRange aRange; + NSEnumerator *enumerator; + NSMenuItem *menuItem; + + aRange = [[aMenu title] rangeOfString:@"SDL App"]; + if (aRange.length != 0) + [aMenu setTitle: [[aMenu title] stringByReplacingRange:aRange with:appName]]; + + enumerator = [[aMenu itemArray] objectEnumerator]; + while ((menuItem = [enumerator nextObject])) + { + aRange = [[menuItem title] rangeOfString:@"SDL App"]; + if (aRange.length != 0) + [menuItem setTitle: [[menuItem title] stringByReplacingRange:aRange with:appName]]; + if ([menuItem hasSubmenu]) + [self fixMenu:[menuItem submenu] withAppName:appName]; + } + [ aMenu sizeToFit ]; +} + +#else + +static void setApplicationMenu(void) +{ + /* warning: this code is very odd */ + NSMenu *appleMenu; + NSMenuItem *menuItem; + NSString *title; + NSString *appName; + + appName = getApplicationName(); + appleMenu = [[NSMenu alloc] initWithTitle:@""]; + + /* Add menu items */ + title = [@"About " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""]; + + [appleMenu addItem:[NSMenuItem separatorItem]]; + + title = [@"Hide " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(hide:) keyEquivalent:@"h"]; + + menuItem = (NSMenuItem *)[appleMenu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"]; + [menuItem setKeyEquivalentModifierMask:(NSAlternateKeyMask|NSCommandKeyMask)]; + + [appleMenu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""]; + + [appleMenu addItem:[NSMenuItem separatorItem]]; + + title = [@"Quit " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(terminate:) keyEquivalent:@"q"]; + + + /* Put menu into the menubar */ + menuItem = [[NSMenuItem alloc] initWithTitle:@"" action:nil keyEquivalent:@""]; + [menuItem setSubmenu:appleMenu]; + [[NSApp mainMenu] addItem:menuItem]; + + /* Tell the application object that this is now the application menu */ + [NSApp setAppleMenu:appleMenu]; + + /* Finally give up our references to the objects */ + [appleMenu release]; + [menuItem release]; +} + +/* Create a window menu */ +static void setupWindowMenu(void) +{ + NSMenu *windowMenu; + NSMenuItem *windowMenuItem; + NSMenuItem *menuItem; + + windowMenu = [[NSMenu alloc] initWithTitle:@"Window"]; + + /* "Minimize" item */ + menuItem = [[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"]; + [windowMenu addItem:menuItem]; + [menuItem release]; + + /* Put menu into the menubar */ + windowMenuItem = [[NSMenuItem alloc] initWithTitle:@"Window" action:nil keyEquivalent:@""]; + [windowMenuItem setSubmenu:windowMenu]; + [[NSApp mainMenu] addItem:windowMenuItem]; + + /* Tell the application object that this is now the window menu */ + [NSApp setWindowsMenu:windowMenu]; + + /* Finally give up our references to the objects */ + [windowMenu release]; + [windowMenuItem release]; +} + +/* Replacement for NSApplicationMain */ +static void CustomApplicationMain (int argc, char **argv) +{ + NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; + SDLMain *sdlMain; + + /* Ensure the application object is initialised */ + [SDLApplication sharedApplication]; + +#ifdef SDL_USE_CPS + { + CPSProcessSerNum PSN; + /* Tell the dock about us */ + if (!CPSGetCurrentProcess(&PSN)) + if (!CPSEnableForegroundOperation(&PSN,0x03,0x3C,0x2C,0x1103)) + if (!CPSSetFrontProcess(&PSN)) + [SDLApplication sharedApplication]; + } +#endif /* SDL_USE_CPS */ + + /* Set up the menubar */ + [NSApp setMainMenu:[[NSMenu alloc] init]]; + setApplicationMenu(); + setupWindowMenu(); + + /* Create SDLMain and make it the app delegate */ + sdlMain = [[SDLMain alloc] init]; + [NSApp setDelegate:sdlMain]; + + /* Start the main event loop */ + [NSApp run]; + + [sdlMain release]; + [pool release]; +} + +#endif + + +/* + * Catch document open requests...this lets us notice files when the app + * was launched by double-clicking a document, or when a document was + * dragged/dropped on the app's icon. You need to have a + * CFBundleDocumentsType section in your Info.plist to get this message, + * apparently. + * + * Files are added to gArgv, so to the app, they'll look like command line + * arguments. Previously, apps launched from the finder had nothing but + * an argv[0]. + * + * This message may be received multiple times to open several docs on launch. + * + * This message is ignored once the app's mainline has been called. + */ +- (BOOL)application:(NSApplication *)theApplication openFile:(NSString *)filename +{ + const char *temparg; + size_t arglen; + char *arg; + char **newargv; + + if (!gFinderLaunch) /* MacOS is passing command line args. */ + return FALSE; + + if (gCalledAppMainline) /* app has started, ignore this document. */ + return FALSE; + + temparg = [filename UTF8String]; + arglen = SDL_strlen(temparg) + 1; + arg = (char *) SDL_malloc(arglen); + if (arg == NULL) + return FALSE; + + newargv = (char **) realloc(gArgv, sizeof (char *) * (gArgc + 2)); + if (newargv == NULL) + { + SDL_free(arg); + return FALSE; + } + gArgv = newargv; + + SDL_strlcpy(arg, temparg, arglen); + gArgv[gArgc++] = arg; + gArgv[gArgc] = NULL; + return TRUE; +} + + +/* Called when the internal event loop has just started running */ +- (void) applicationDidFinishLaunching: (NSNotification *) note +{ + int status; + + /* Set the working directory to the .app's parent directory */ + [self setupWorkingDirectory:gFinderLaunch]; + +#if SDL_USE_NIB_FILE + /* Set the main menu to contain the real app name instead of "SDL App" */ + [self fixMenu:[NSApp mainMenu] withAppName:getApplicationName()]; +#endif + + /* Hand off to main application code */ + gCalledAppMainline = TRUE; + status = SDL_main (gArgc, gArgv); + + /* We're done, thank you for playing */ + exit(status); +} +@end + + +@implementation NSString (ReplaceSubString) + +- (NSString *)stringByReplacingRange:(NSRange)aRange with:(NSString *)aString +{ + unsigned int bufferSize; + unsigned int selfLen = [self length]; + unsigned int aStringLen = [aString length]; + unichar *buffer; + NSRange localRange; + NSString *result; + + bufferSize = selfLen + aStringLen - aRange.length; + buffer = (unichar *)NSAllocateMemoryPages(bufferSize*sizeof(unichar)); + + /* Get first part into buffer */ + localRange.location = 0; + localRange.length = aRange.location; + [self getCharacters:buffer range:localRange]; + + /* Get middle part into buffer */ + localRange.location = 0; + localRange.length = aStringLen; + [aString getCharacters:(buffer+aRange.location) range:localRange]; + + /* Get last part into buffer */ + localRange.location = aRange.location + aRange.length; + localRange.length = selfLen - localRange.location; + [self getCharacters:(buffer+aRange.location+aStringLen) range:localRange]; + + /* Build output string */ + result = [NSString stringWithCharacters:buffer length:bufferSize]; + + NSDeallocateMemoryPages(buffer, bufferSize); + + return result; +} + +@end + + + +#ifdef main +# undef main +#endif + + +/* Main entry point to executable - should *not* be SDL_main! */ +int main (int argc, char **argv) +{ + /* Copy the arguments into a global variable */ + /* This is passed if we are launched by double-clicking */ + if ( argc >= 2 && strncmp (argv[1], "-psn", 4) == 0 ) { + gArgv = (char **) SDL_malloc(sizeof (char *) * 2); + gArgv[0] = argv[0]; + gArgv[1] = NULL; + gArgc = 1; + gFinderLaunch = YES; + } else { + int i; + gArgc = argc; + gArgv = (char **) SDL_malloc(sizeof (char *) * (argc+1)); + for (i = 0; i <= argc; i++) + gArgv[i] = argv[i]; + gFinderLaunch = NO; + } + +#if SDL_USE_NIB_FILE + [SDLApplication poseAsClass:[NSApplication class]]; + NSApplicationMain (argc, argv); +#else + CustomApplicationMain (argc, argv); +#endif + return 0; +} + diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/___PROJECTNAMEASIDENTIFIER____Prefix.pch b/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/___PROJECTNAMEASIDENTIFIER____Prefix.pch new file mode 100644 index 000000000..00095074a --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/___PROJECTNAMEASIDENTIFIER____Prefix.pch @@ -0,0 +1,9 @@ +// +// Prefix header for all source files of the 'ÇPROJECTNAMEÈ' target in the 'ÇPROJECTNAMEÈ' project +// + +#include "SDL.h" + +#ifdef __OBJC__ + #import +#endif diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns b/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns new file mode 100644 index 000000000..ae0b02b12 Binary files /dev/null and b/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns differ diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist b/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist new file mode 100644 index 000000000..1dcbea207 --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist @@ -0,0 +1,12 @@ +{ + FilesToRename = { + "SDLApp_Prefix.pch" = "ÇPROJECTNAMEÈ_Prefix.pch"; + }; + FilesToMacroExpand = ( + "ÇPROJECTNAMEÈ_Prefix.pch", + "Info.plist", + "English.lproj/InfoPlist.strings", + "main.c", + ); + Description = "This project builds an SDL-based application with Cocoa menus."; +} diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/___PROJECTNAME___.xcodeproj/project.pbxproj b/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/___PROJECTNAME___.xcodeproj/project.pbxproj new file mode 100644 index 000000000..9d9a9248f --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/___PROJECTNAME___.xcodeproj/project.pbxproj @@ -0,0 +1,322 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 002F39FA09D0881F00EBEB88 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F39F909D0881F00EBEB88 /* SDL.framework */; }; + 002F3A0009D0884600EBEB88 /* SDL.framework in Copy Frameworks into .app bundle */ = {isa = PBXBuildFile; fileRef = 002F39F909D0881F00EBEB88 /* SDL.framework */; }; + 002F3A2E09D0888800EBEB88 /* SDLMain.m in Sources */ = {isa = PBXBuildFile; fileRef = 002F3A2C09D0888800EBEB88 /* SDLMain.m */; }; + 002F3A3F09D088BA00EBEB88 /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F3A3E09D088BA00EBEB88 /* main.c */; }; + 002F3AF109D08F1000EBEB88 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 002F3AEF09D08F1000EBEB88 /* SDLMain.nib */; }; + 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; }; + 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 002F39FD09D0883400EBEB88 /* Copy Frameworks into .app bundle */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + 002F3A0009D0884600EBEB88 /* SDL.framework in Copy Frameworks into .app bundle */, + ); + name = "Copy Frameworks into .app bundle"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 002F39F909D0881F00EBEB88 /* SDL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL.framework; path = /Library/Frameworks/SDL.framework; sourceTree = ""; }; + 002F3A2B09D0888800EBEB88 /* SDLMain.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDLMain.h; sourceTree = SOURCE_ROOT; }; + 002F3A2C09D0888800EBEB88 /* SDLMain.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = SDLMain.m; sourceTree = SOURCE_ROOT; }; + 002F3A3E09D088BA00EBEB88 /* main.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = main.c; sourceTree = SOURCE_ROOT; }; + 002F3AF009D08F1000EBEB88 /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/SDLMain.nib; sourceTree = ""; }; + 089C165DFE840E0CC02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = ""; }; + 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = ""; }; + 29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = ""; }; + 29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = ""; }; + 32CA4F630368D1EE00C91783 /* ___PROJECTNAME____Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "___PROJECTNAME____Prefix.pch"; sourceTree = ""; }; + 8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + 8D1107320486CEB800E47090 /* ___PROJECTNAME___.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "___PROJECTNAME___.app"; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 8D11072E0486CEB800E47090 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F39FA09D0881F00EBEB88 /* SDL.framework in Frameworks */, + 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 080E96DDFE201D6D7F000001 /* Classes */ = { + isa = PBXGroup; + children = ( + 002F3A2B09D0888800EBEB88 /* SDLMain.h */, + 002F3A2C09D0888800EBEB88 /* SDLMain.m */, + ); + name = Classes; + sourceTree = ""; + }; + 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */ = { + isa = PBXGroup; + children = ( + 002F39F909D0881F00EBEB88 /* SDL.framework */, + 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */, + ); + name = "Linked Frameworks"; + sourceTree = ""; + }; + 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */ = { + isa = PBXGroup; + children = ( + 29B97324FDCFA39411CA2CEA /* AppKit.framework */, + 29B97325FDCFA39411CA2CEA /* Foundation.framework */, + ); + name = "Other Frameworks"; + sourceTree = ""; + }; + 19C28FACFE9D520D11CA2CBB /* Products */ = { + isa = PBXGroup; + children = ( + 8D1107320486CEB800E47090 /* ___PROJECTNAME___.app */, + ); + name = Products; + sourceTree = ""; + }; + 29B97314FDCFA39411CA2CEA /* ___PROJECTNAMEASXML___ */ = { + isa = PBXGroup; + children = ( + 080E96DDFE201D6D7F000001 /* Classes */, + 29B97315FDCFA39411CA2CEA /* Other Sources */, + 29B97317FDCFA39411CA2CEA /* Resources */, + 29B97323FDCFA39411CA2CEA /* Frameworks */, + 19C28FACFE9D520D11CA2CBB /* Products */, + ); + name = "___PROJECTNAMEASXML___"; + sourceTree = ""; + }; + 29B97315FDCFA39411CA2CEA /* Other Sources */ = { + isa = PBXGroup; + children = ( + 32CA4F630368D1EE00C91783 /* ___PROJECTNAME____Prefix.pch */, + 002F3A3E09D088BA00EBEB88 /* main.c */, + ); + name = "Other Sources"; + sourceTree = ""; + }; + 29B97317FDCFA39411CA2CEA /* Resources */ = { + isa = PBXGroup; + children = ( + 8D1107310486CEB800E47090 /* Info.plist */, + 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */, + 002F3AEF09D08F1000EBEB88 /* SDLMain.nib */, + ); + name = Resources; + sourceTree = ""; + }; + 29B97323FDCFA39411CA2CEA /* Frameworks */ = { + isa = PBXGroup; + children = ( + 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */, + 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */, + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 8D1107260486CEB800E47090 /* ___PROJECTNAME___ */ = { + isa = PBXNativeTarget; + buildConfigurationList = C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "___PROJECTNAME___" */; + buildPhases = ( + 8D1107290486CEB800E47090 /* Resources */, + 8D11072C0486CEB800E47090 /* Sources */, + 8D11072E0486CEB800E47090 /* Frameworks */, + 002F39FD09D0883400EBEB88 /* Copy Frameworks into .app bundle */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "___PROJECTNAME___"; + productInstallPath = "$(HOME)/Applications"; + productName = "___PROJECTNAME___"; + productReference = 8D1107320486CEB800E47090 /* ___PROJECTNAME___.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 29B97313FDCFA39411CA2CEA /* Project object */ = { + isa = PBXProject; + buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "___PROJECTNAME___" */; + compatibilityVersion = "Xcode 3.2"; + hasScannedForEncodings = 1; + mainGroup = 29B97314FDCFA39411CA2CEA /* ___PROJECTNAMEASXML___ */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 8D1107260486CEB800E47090 /* ___PROJECTNAME___ */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 8D1107290486CEB800E47090 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */, + 002F3AF109D08F1000EBEB88 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 8D11072C0486CEB800E47090 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F3A2E09D0888800EBEB88 /* SDLMain.m in Sources */, + 002F3A3F09D088BA00EBEB88 /* main.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXVariantGroup section */ + 002F3AEF09D08F1000EBEB88 /* SDLMain.nib */ = { + isa = PBXVariantGroup; + children = ( + 002F3AF009D08F1000EBEB88 /* English */, + ); + name = SDLMain.nib; + sourceTree = ""; + }; + 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + 089C165DFE840E0CC02AAC07 /* English */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + C01FCF4B08A954540054247B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_FIX_AND_CONTINUE = YES; + GCC_MODEL_TUNING = G5; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "___PROJECTNAMEASIDENTIFIER____Prefix.pch"; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(HOME)/Applications"; + PRODUCT_NAME = "___PROJECTNAME___"; + WRAPPER_EXTENSION = app; + }; + name = Debug; + }; + C01FCF4C08A954540054247B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + GCC_MODEL_TUNING = G5; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "___PROJECTNAMEASIDENTIFIER____Prefix.pch"; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(HOME)/Applications"; + PRODUCT_NAME = "___PROJECTNAME___"; + WRAPPER_EXTENSION = app; + }; + name = Release; + }; + C01FCF4F08A954540054247B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + FRAMEWORK_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks", + /Library/Frameworks, + "$(FRAMEWORK_SEARCH_PATHS)", + ); + GCC_VERSION = 4.0; + "GCC_VERSION[arch=x86_64]" = 4.2; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks/SDL.framework/Headers", + /Library/Frameworks/SDL.framework/Headers, + "$(HEADER_SEARCH_PATHS)", + ); + PREBINDING = NO; + SDKROOT = macosx10.4; + "SDKROOT[arch=x86_64]" = macosx10.6; + }; + name = Debug; + }; + C01FCF5008A954540054247B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + FRAMEWORK_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks", + /Library/Frameworks, + "$(FRAMEWORK_SEARCH_PATHS)", + ); + GCC_VERSION = 4.0; + "GCC_VERSION[arch=x86_64]" = 4.2; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks/SDL.framework/Headers", + /Library/Frameworks/SDL.framework/Headers, + "$(HEADER_SEARCH_PATHS)", + ); + PREBINDING = NO; + SDKROOT = macosx10.4; + "SDKROOT[arch=x86_64]" = macosx10.6; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "___PROJECTNAME___" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01FCF4B08A954540054247B /* Debug */, + C01FCF4C08A954540054247B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + C01FCF4E08A954540054247B /* Build configuration list for PBXProject "___PROJECTNAME___" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01FCF4F08A954540054247B /* Debug */, + C01FCF5008A954540054247B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 29B97313FDCFA39411CA2CEA /* Project object */; +} diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/main.c b/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/main.c new file mode 100644 index 000000000..7115de989 --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/main.c @@ -0,0 +1,65 @@ + +/* Simple program: Create a blank window, wait for keypress, quit. + + Please see the SDL documentation for details on using the SDL API: + /Developer/Documentation/SDL/docs.html +*/ + +#include +#include +#include +#include + +#include "SDL.h" + +int main(int argc, char *argv[]) +{ + Uint32 initflags = SDL_INIT_VIDEO; /* See documentation for details */ + SDL_Surface *screen; + Uint8 video_bpp = 0; + Uint32 videoflags = SDL_SWSURFACE; + int done; + SDL_Event event; + + /* Initialize the SDL library */ + if ( SDL_Init(initflags) < 0 ) { + fprintf(stderr, "Couldn't initialize SDL: %s\n", + SDL_GetError()); + exit(1); + } + + /* Set 640x480 video mode */ + screen=SDL_SetVideoMode(640,480, video_bpp, videoflags); + if (screen == NULL) { + fprintf(stderr, "Couldn't set 640x480x%d video mode: %s\n", + video_bpp, SDL_GetError()); + SDL_Quit(); + exit(2); + } + + done = 0; + while ( !done ) { + + /* Check for events */ + while ( SDL_PollEvent(&event) ) { + switch (event.type) { + + case SDL_MOUSEMOTION: + break; + case SDL_MOUSEBUTTONDOWN: + break; + case SDL_KEYDOWN: + /* Any keypress quits the app... */ + case SDL_QUIT: + done = 1; + break; + default: + break; + } + } + } + + /* Clean up the SDL library */ + SDL_Quit(); + return(0); +} diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/English.lproj/InfoPlist.strings b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/English.lproj/InfoPlist.strings new file mode 100644 index 000000000..6e721b0ef Binary files /dev/null and b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/English.lproj/InfoPlist.strings differ diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/Info.plist b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/Info.plist new file mode 100644 index 000000000..a2e942960 --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/Info.plist @@ -0,0 +1,37 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIconFile + + CFBundleIdentifier + com.yourcompany.___PROJECTNAMEASXML___ + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + APPL + CFBundleSignature + ???? + CFBundleVersion + 1.0 + NSMainNibFile + SDLMain + NSPrincipalClass + NSApplication + LSMinimumSystemVersionByArchitecture + + x86_64 + 10.6.0 + i386 + 10.4.0 + ppc + 10.4.0 + + + diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/SDLMain.h b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/SDLMain.h new file mode 100644 index 000000000..c56d90cbe --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/SDLMain.h @@ -0,0 +1,16 @@ +/* SDLMain.m - main entry point for our Cocoa-ized SDL app + Initial Version: Darrell Walisser + Non-NIB-Code & other changes: Max Horn + + Feel free to customize this file to suit your needs +*/ + +#ifndef _SDLMain_h_ +#define _SDLMain_h_ + +#import + +@interface SDLMain : NSObject +@end + +#endif /* _SDLMain_h_ */ diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/SDLMain.m b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/SDLMain.m new file mode 100644 index 000000000..b065a2009 --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/SDLMain.m @@ -0,0 +1,383 @@ +/* SDLMain.m - main entry point for our Cocoa-ized SDL app + Initial Version: Darrell Walisser + Non-NIB-Code & other changes: Max Horn + + Feel free to customize this file to suit your needs +*/ + +#include "SDL.h" +#include "SDLMain.h" +#include /* for MAXPATHLEN */ +#include + +/* For some reaon, Apple removed setAppleMenu from the headers in 10.4, + but the method still is there and works. To avoid warnings, we declare + it ourselves here. */ +@interface NSApplication(SDL_Missing_Methods) +- (void)setAppleMenu:(NSMenu *)menu; +@end + +/* Use this flag to determine whether we use SDLMain.nib or not */ +#define SDL_USE_NIB_FILE 0 + +/* Use this flag to determine whether we use CPS (docking) or not */ +#define SDL_USE_CPS 1 +#ifdef SDL_USE_CPS +/* Portions of CPS.h */ +typedef struct CPSProcessSerNum +{ + UInt32 lo; + UInt32 hi; +} CPSProcessSerNum; + +extern OSErr CPSGetCurrentProcess( CPSProcessSerNum *psn); +extern OSErr CPSEnableForegroundOperation( CPSProcessSerNum *psn, UInt32 _arg2, UInt32 _arg3, UInt32 _arg4, UInt32 _arg5); +extern OSErr CPSSetFrontProcess( CPSProcessSerNum *psn); + +#endif /* SDL_USE_CPS */ + +static int gArgc; +static char **gArgv; +static BOOL gFinderLaunch; +static BOOL gCalledAppMainline = FALSE; + +static NSString *getApplicationName(void) +{ + const NSDictionary *dict; + NSString *appName = 0; + + /* Determine the application name */ + dict = (const NSDictionary *)CFBundleGetInfoDictionary(CFBundleGetMainBundle()); + if (dict) + appName = [dict objectForKey: @"CFBundleName"]; + + if (![appName length]) + appName = [[NSProcessInfo processInfo] processName]; + + return appName; +} + +#if SDL_USE_NIB_FILE +/* A helper category for NSString */ +@interface NSString (ReplaceSubString) +- (NSString *)stringByReplacingRange:(NSRange)aRange with:(NSString *)aString; +@end +#endif + +@interface SDLApplication : NSApplication +@end + +@implementation SDLApplication +/* Invoked from the Quit menu item */ +- (void)terminate:(id)sender +{ + /* Post a SDL_QUIT event */ + SDL_Event event; + event.type = SDL_QUIT; + SDL_PushEvent(&event); +} +@end + +/* The main class of the application, the application's delegate */ +@implementation SDLMain + +/* Set the working directory to the .app's parent directory */ +- (void) setupWorkingDirectory:(BOOL)shouldChdir +{ + if (shouldChdir) + { + char parentdir[MAXPATHLEN]; + CFURLRef url = CFBundleCopyBundleURL(CFBundleGetMainBundle()); + CFURLRef url2 = CFURLCreateCopyDeletingLastPathComponent(0, url); + if (CFURLGetFileSystemRepresentation(url2, 1, (UInt8 *)parentdir, MAXPATHLEN)) { + chdir(parentdir); /* chdir to the binary app's parent */ + } + CFRelease(url); + CFRelease(url2); + } +} + +#if SDL_USE_NIB_FILE + +/* Fix menu to contain the real app name instead of "SDL App" */ +- (void)fixMenu:(NSMenu *)aMenu withAppName:(NSString *)appName +{ + NSRange aRange; + NSEnumerator *enumerator; + NSMenuItem *menuItem; + + aRange = [[aMenu title] rangeOfString:@"SDL App"]; + if (aRange.length != 0) + [aMenu setTitle: [[aMenu title] stringByReplacingRange:aRange with:appName]]; + + enumerator = [[aMenu itemArray] objectEnumerator]; + while ((menuItem = [enumerator nextObject])) + { + aRange = [[menuItem title] rangeOfString:@"SDL App"]; + if (aRange.length != 0) + [menuItem setTitle: [[menuItem title] stringByReplacingRange:aRange with:appName]]; + if ([menuItem hasSubmenu]) + [self fixMenu:[menuItem submenu] withAppName:appName]; + } + [ aMenu sizeToFit ]; +} + +#else + +static void setApplicationMenu(void) +{ + /* warning: this code is very odd */ + NSMenu *appleMenu; + NSMenuItem *menuItem; + NSString *title; + NSString *appName; + + appName = getApplicationName(); + appleMenu = [[NSMenu alloc] initWithTitle:@""]; + + /* Add menu items */ + title = [@"About " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""]; + + [appleMenu addItem:[NSMenuItem separatorItem]]; + + title = [@"Hide " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(hide:) keyEquivalent:@"h"]; + + menuItem = (NSMenuItem *)[appleMenu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"]; + [menuItem setKeyEquivalentModifierMask:(NSAlternateKeyMask|NSCommandKeyMask)]; + + [appleMenu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""]; + + [appleMenu addItem:[NSMenuItem separatorItem]]; + + title = [@"Quit " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(terminate:) keyEquivalent:@"q"]; + + + /* Put menu into the menubar */ + menuItem = [[NSMenuItem alloc] initWithTitle:@"" action:nil keyEquivalent:@""]; + [menuItem setSubmenu:appleMenu]; + [[NSApp mainMenu] addItem:menuItem]; + + /* Tell the application object that this is now the application menu */ + [NSApp setAppleMenu:appleMenu]; + + /* Finally give up our references to the objects */ + [appleMenu release]; + [menuItem release]; +} + +/* Create a window menu */ +static void setupWindowMenu(void) +{ + NSMenu *windowMenu; + NSMenuItem *windowMenuItem; + NSMenuItem *menuItem; + + windowMenu = [[NSMenu alloc] initWithTitle:@"Window"]; + + /* "Minimize" item */ + menuItem = [[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"]; + [windowMenu addItem:menuItem]; + [menuItem release]; + + /* Put menu into the menubar */ + windowMenuItem = [[NSMenuItem alloc] initWithTitle:@"Window" action:nil keyEquivalent:@""]; + [windowMenuItem setSubmenu:windowMenu]; + [[NSApp mainMenu] addItem:windowMenuItem]; + + /* Tell the application object that this is now the window menu */ + [NSApp setWindowsMenu:windowMenu]; + + /* Finally give up our references to the objects */ + [windowMenu release]; + [windowMenuItem release]; +} + +/* Replacement for NSApplicationMain */ +static void CustomApplicationMain (int argc, char **argv) +{ + NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; + SDLMain *sdlMain; + + /* Ensure the application object is initialised */ + [SDLApplication sharedApplication]; + +#ifdef SDL_USE_CPS + { + CPSProcessSerNum PSN; + /* Tell the dock about us */ + if (!CPSGetCurrentProcess(&PSN)) + if (!CPSEnableForegroundOperation(&PSN,0x03,0x3C,0x2C,0x1103)) + if (!CPSSetFrontProcess(&PSN)) + [SDLApplication sharedApplication]; + } +#endif /* SDL_USE_CPS */ + + /* Set up the menubar */ + [NSApp setMainMenu:[[NSMenu alloc] init]]; + setApplicationMenu(); + setupWindowMenu(); + + /* Create SDLMain and make it the app delegate */ + sdlMain = [[SDLMain alloc] init]; + [NSApp setDelegate:sdlMain]; + + /* Start the main event loop */ + [NSApp run]; + + [sdlMain release]; + [pool release]; +} + +#endif + + +/* + * Catch document open requests...this lets us notice files when the app + * was launched by double-clicking a document, or when a document was + * dragged/dropped on the app's icon. You need to have a + * CFBundleDocumentsType section in your Info.plist to get this message, + * apparently. + * + * Files are added to gArgv, so to the app, they'll look like command line + * arguments. Previously, apps launched from the finder had nothing but + * an argv[0]. + * + * This message may be received multiple times to open several docs on launch. + * + * This message is ignored once the app's mainline has been called. + */ +- (BOOL)application:(NSApplication *)theApplication openFile:(NSString *)filename +{ + const char *temparg; + size_t arglen; + char *arg; + char **newargv; + + if (!gFinderLaunch) /* MacOS is passing command line args. */ + return FALSE; + + if (gCalledAppMainline) /* app has started, ignore this document. */ + return FALSE; + + temparg = [filename UTF8String]; + arglen = SDL_strlen(temparg) + 1; + arg = (char *) SDL_malloc(arglen); + if (arg == NULL) + return FALSE; + + newargv = (char **) realloc(gArgv, sizeof (char *) * (gArgc + 2)); + if (newargv == NULL) + { + SDL_free(arg); + return FALSE; + } + gArgv = newargv; + + SDL_strlcpy(arg, temparg, arglen); + gArgv[gArgc++] = arg; + gArgv[gArgc] = NULL; + return TRUE; +} + + +/* Called when the internal event loop has just started running */ +- (void) applicationDidFinishLaunching: (NSNotification *) note +{ + int status; + + /* Set the working directory to the .app's parent directory */ + [self setupWorkingDirectory:gFinderLaunch]; + +#if SDL_USE_NIB_FILE + /* Set the main menu to contain the real app name instead of "SDL App" */ + [self fixMenu:[NSApp mainMenu] withAppName:getApplicationName()]; +#endif + + /* Hand off to main application code */ + gCalledAppMainline = TRUE; + status = SDL_main (gArgc, gArgv); + + /* We're done, thank you for playing */ + exit(status); +} +@end + + +@implementation NSString (ReplaceSubString) + +- (NSString *)stringByReplacingRange:(NSRange)aRange with:(NSString *)aString +{ + unsigned int bufferSize; + unsigned int selfLen = [self length]; + unsigned int aStringLen = [aString length]; + unichar *buffer; + NSRange localRange; + NSString *result; + + bufferSize = selfLen + aStringLen - aRange.length; + buffer = (unichar *)NSAllocateMemoryPages(bufferSize*sizeof(unichar)); + + /* Get first part into buffer */ + localRange.location = 0; + localRange.length = aRange.location; + [self getCharacters:buffer range:localRange]; + + /* Get middle part into buffer */ + localRange.location = 0; + localRange.length = aStringLen; + [aString getCharacters:(buffer+aRange.location) range:localRange]; + + /* Get last part into buffer */ + localRange.location = aRange.location + aRange.length; + localRange.length = selfLen - localRange.location; + [self getCharacters:(buffer+aRange.location+aStringLen) range:localRange]; + + /* Build output string */ + result = [NSString stringWithCharacters:buffer length:bufferSize]; + + NSDeallocateMemoryPages(buffer, bufferSize); + + return result; +} + +@end + + + +#ifdef main +# undef main +#endif + + +/* Main entry point to executable - should *not* be SDL_main! */ +int main (int argc, char **argv) +{ + /* Copy the arguments into a global variable */ + /* This is passed if we are launched by double-clicking */ + if ( argc >= 2 && strncmp (argv[1], "-psn", 4) == 0 ) { + gArgv = (char **) SDL_malloc(sizeof (char *) * 2); + gArgv[0] = argv[0]; + gArgv[1] = NULL; + gArgc = 1; + gFinderLaunch = YES; + } else { + int i; + gArgc = argc; + gArgv = (char **) SDL_malloc(sizeof (char *) * (argc+1)); + for (i = 0; i <= argc; i++) + gArgv[i] = argv[i]; + gFinderLaunch = NO; + } + +#if SDL_USE_NIB_FILE + [SDLApplication poseAsClass:[NSApplication class]]; + NSApplicationMain (argc, argv); +#else + CustomApplicationMain (argc, argv); +#endif + return 0; +} + diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/___PROJECTNAMEASIDENTIFIER____Prefix.pch b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/___PROJECTNAMEASIDENTIFIER____Prefix.pch new file mode 100644 index 000000000..00095074a --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/___PROJECTNAMEASIDENTIFIER____Prefix.pch @@ -0,0 +1,9 @@ +// +// Prefix header for all source files of the 'ÇPROJECTNAMEÈ' target in the 'ÇPROJECTNAMEÈ' project +// + +#include "SDL.h" + +#ifdef __OBJC__ + #import +#endif diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns new file mode 100644 index 000000000..ae0b02b12 Binary files /dev/null and b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns differ diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist new file mode 100644 index 000000000..ba87745fc --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist @@ -0,0 +1,12 @@ +{ + FilesToRename = { + "SDLApp_Prefix.pch" = "ÇPROJECTNAMEÈ_Prefix.pch"; + }; + FilesToMacroExpand = ( + "ÇPROJECTNAMEÈ_Prefix.pch", + "Info.plist", + "English.lproj/InfoPlist.strings", + "main.c", + ); + Description = "This project builds an SDL-based application that uses OpenGL."; +} diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/___PROJECTNAME___.xcodeproj/project.pbxproj b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/___PROJECTNAME___.xcodeproj/project.pbxproj new file mode 100644 index 000000000..568327307 --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/___PROJECTNAME___.xcodeproj/project.pbxproj @@ -0,0 +1,352 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 002F39FA09D0881F00EBEB88 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F39F909D0881F00EBEB88 /* SDL.framework */; }; + 002F3A0009D0884600EBEB88 /* SDL.framework in Copy Frameworks into .app bundle */ = {isa = PBXBuildFile; fileRef = 002F39F909D0881F00EBEB88 /* SDL.framework */; }; + 002F3A2E09D0888800EBEB88 /* SDLMain.m in Sources */ = {isa = PBXBuildFile; fileRef = 002F3A2C09D0888800EBEB88 /* SDLMain.m */; }; + 002F3A3F09D088BA00EBEB88 /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F3A3E09D088BA00EBEB88 /* main.c */; }; + 002F3BFA09D0938900EBEB88 /* atlantis.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F3BF409D0938900EBEB88 /* atlantis.c */; }; + 002F3BFC09D0938900EBEB88 /* dolphin.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F3BF609D0938900EBEB88 /* dolphin.c */; }; + 002F3BFD09D0938900EBEB88 /* shark.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F3BF709D0938900EBEB88 /* shark.c */; }; + 002F3BFE09D0938900EBEB88 /* swim.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F3BF809D0938900EBEB88 /* swim.c */; }; + 002F3BFF09D0938900EBEB88 /* whale.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F3BF909D0938900EBEB88 /* whale.c */; }; + 002F3C0109D093BD00EBEB88 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F3C0009D093BD00EBEB88 /* OpenGL.framework */; }; + 002F3C6109D0951E00EBEB88 /* GLUT.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F3C6009D0951E00EBEB88 /* GLUT.framework */; }; + 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; }; + 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 002F39FD09D0883400EBEB88 /* Copy Frameworks into .app bundle */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + 002F3A0009D0884600EBEB88 /* SDL.framework in Copy Frameworks into .app bundle */, + ); + name = "Copy Frameworks into .app bundle"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 002F39F909D0881F00EBEB88 /* SDL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL.framework; path = /Library/Frameworks/SDL.framework; sourceTree = ""; }; + 002F3A2B09D0888800EBEB88 /* SDLMain.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDLMain.h; sourceTree = SOURCE_ROOT; }; + 002F3A2C09D0888800EBEB88 /* SDLMain.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = SDLMain.m; sourceTree = SOURCE_ROOT; }; + 002F3A3E09D088BA00EBEB88 /* main.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = main.c; sourceTree = SOURCE_ROOT; }; + 002F3BF409D0938900EBEB88 /* atlantis.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = atlantis.c; path = atlantis/atlantis.c; sourceTree = SOURCE_ROOT; }; + 002F3BF509D0938900EBEB88 /* atlantis.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = atlantis.h; path = atlantis/atlantis.h; sourceTree = SOURCE_ROOT; }; + 002F3BF609D0938900EBEB88 /* dolphin.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = dolphin.c; path = atlantis/dolphin.c; sourceTree = SOURCE_ROOT; }; + 002F3BF709D0938900EBEB88 /* shark.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = shark.c; path = atlantis/shark.c; sourceTree = SOURCE_ROOT; }; + 002F3BF809D0938900EBEB88 /* swim.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = swim.c; path = atlantis/swim.c; sourceTree = SOURCE_ROOT; }; + 002F3BF909D0938900EBEB88 /* whale.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = whale.c; path = atlantis/whale.c; sourceTree = SOURCE_ROOT; }; + 002F3C0009D093BD00EBEB88 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = /System/Library/Frameworks/OpenGL.framework; sourceTree = ""; }; + 002F3C6009D0951E00EBEB88 /* GLUT.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLUT.framework; path = ../../../../../../../../../../System/Library/Frameworks/GLUT.framework; sourceTree = SOURCE_ROOT; }; + 089C165DFE840E0CC02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = ""; }; + 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = ""; }; + 29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = ""; }; + 29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = ""; }; + 32CA4F630368D1EE00C91783 /* ___PROJECTNAME____Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "___PROJECTNAME____Prefix.pch"; sourceTree = ""; }; + 8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + 8D1107320486CEB800E47090 /* ___PROJECTNAME___.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "___PROJECTNAME___.app"; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 8D11072E0486CEB800E47090 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F39FA09D0881F00EBEB88 /* SDL.framework in Frameworks */, + 002F3C6109D0951E00EBEB88 /* GLUT.framework in Frameworks */, + 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */, + 002F3C0109D093BD00EBEB88 /* OpenGL.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 002F3BF309D0937800EBEB88 /* atlantis */ = { + isa = PBXGroup; + children = ( + 002F3BF409D0938900EBEB88 /* atlantis.c */, + 002F3BF509D0938900EBEB88 /* atlantis.h */, + 002F3BF609D0938900EBEB88 /* dolphin.c */, + 002F3BF709D0938900EBEB88 /* shark.c */, + 002F3BF809D0938900EBEB88 /* swim.c */, + 002F3BF909D0938900EBEB88 /* whale.c */, + ); + name = atlantis; + sourceTree = ""; + }; + 080E96DDFE201D6D7F000001 /* Classes */ = { + isa = PBXGroup; + children = ( + 002F3A2B09D0888800EBEB88 /* SDLMain.h */, + 002F3A2C09D0888800EBEB88 /* SDLMain.m */, + ); + name = Classes; + sourceTree = ""; + }; + 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */ = { + isa = PBXGroup; + children = ( + 002F39F909D0881F00EBEB88 /* SDL.framework */, + 002F3C6009D0951E00EBEB88 /* GLUT.framework */, + 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */, + 002F3C0009D093BD00EBEB88 /* OpenGL.framework */, + ); + name = "Linked Frameworks"; + sourceTree = ""; + }; + 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */ = { + isa = PBXGroup; + children = ( + 29B97324FDCFA39411CA2CEA /* AppKit.framework */, + 29B97325FDCFA39411CA2CEA /* Foundation.framework */, + ); + name = "Other Frameworks"; + sourceTree = ""; + }; + 19C28FACFE9D520D11CA2CBB /* Products */ = { + isa = PBXGroup; + children = ( + 8D1107320486CEB800E47090 /* ___PROJECTNAME___.app */, + ); + name = Products; + sourceTree = ""; + }; + 29B97314FDCFA39411CA2CEA /* ___PROJECTNAMEASXML___ */ = { + isa = PBXGroup; + children = ( + 080E96DDFE201D6D7F000001 /* Classes */, + 29B97315FDCFA39411CA2CEA /* Other Sources */, + 29B97317FDCFA39411CA2CEA /* Resources */, + 29B97323FDCFA39411CA2CEA /* Frameworks */, + 19C28FACFE9D520D11CA2CBB /* Products */, + ); + name = "___PROJECTNAMEASXML___"; + sourceTree = ""; + }; + 29B97315FDCFA39411CA2CEA /* Other Sources */ = { + isa = PBXGroup; + children = ( + 002F3BF309D0937800EBEB88 /* atlantis */, + 32CA4F630368D1EE00C91783 /* ___PROJECTNAME____Prefix.pch */, + 002F3A3E09D088BA00EBEB88 /* main.c */, + ); + name = "Other Sources"; + sourceTree = ""; + }; + 29B97317FDCFA39411CA2CEA /* Resources */ = { + isa = PBXGroup; + children = ( + 8D1107310486CEB800E47090 /* Info.plist */, + 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */, + ); + name = Resources; + sourceTree = ""; + }; + 29B97323FDCFA39411CA2CEA /* Frameworks */ = { + isa = PBXGroup; + children = ( + 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */, + 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */, + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 8D1107260486CEB800E47090 /* ___PROJECTNAME___ */ = { + isa = PBXNativeTarget; + buildConfigurationList = C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "___PROJECTNAME___" */; + buildPhases = ( + 8D1107290486CEB800E47090 /* Resources */, + 8D11072C0486CEB800E47090 /* Sources */, + 8D11072E0486CEB800E47090 /* Frameworks */, + 002F39FD09D0883400EBEB88 /* Copy Frameworks into .app bundle */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "___PROJECTNAME___"; + productInstallPath = "$(HOME)/Applications"; + productName = "___PROJECTNAME___"; + productReference = 8D1107320486CEB800E47090 /* ___PROJECTNAME___.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 29B97313FDCFA39411CA2CEA /* Project object */ = { + isa = PBXProject; + buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "___PROJECTNAME___" */; + compatibilityVersion = "Xcode 3.2"; + hasScannedForEncodings = 1; + mainGroup = 29B97314FDCFA39411CA2CEA /* ___PROJECTNAMEASXML___ */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 8D1107260486CEB800E47090 /* ___PROJECTNAME___ */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 8D1107290486CEB800E47090 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 8D11072C0486CEB800E47090 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F3A2E09D0888800EBEB88 /* SDLMain.m in Sources */, + 002F3A3F09D088BA00EBEB88 /* main.c in Sources */, + 002F3BFA09D0938900EBEB88 /* atlantis.c in Sources */, + 002F3BFC09D0938900EBEB88 /* dolphin.c in Sources */, + 002F3BFD09D0938900EBEB88 /* shark.c in Sources */, + 002F3BFE09D0938900EBEB88 /* swim.c in Sources */, + 002F3BFF09D0938900EBEB88 /* whale.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXVariantGroup section */ + 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + 089C165DFE840E0CC02AAC07 /* English */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + C01FCF4B08A954540054247B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_FIX_AND_CONTINUE = YES; + GCC_MODEL_TUNING = G5; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "___PROJECTNAMEASIDENTIFIER____Prefix.pch"; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(HOME)/Applications"; + PRODUCT_NAME = "___PROJECTNAME___"; + WRAPPER_EXTENSION = app; + }; + name = Debug; + }; + C01FCF4C08A954540054247B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = ( + ppc, + i386, + ); + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + GCC_MODEL_TUNING = G5; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "___PROJECTNAMEASIDENTIFIER____Prefix.pch"; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(HOME)/Applications"; + PRODUCT_NAME = "___PROJECTNAME___"; + WRAPPER_EXTENSION = app; + }; + name = Release; + }; + C01FCF4F08A954540054247B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + FRAMEWORK_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks", + /Library/Frameworks, + "$(FRAMEWORK_SEARCH_PATHS)", + ); + GCC_VERSION = 4.0; + "GCC_VERSION[arch=x86_64]" = 4.2; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks/SDL.framework/Headers", + /Library/Frameworks/SDL.framework/Headers, + "$(HEADER_SEARCH_PATHS)", + ); + PREBINDING = NO; + SDKROOT = macosx10.4; + "SDKROOT[arch=x86_64]" = "$(DEVELOPER_SDK_DIR)/MacOSX10.6.sdk"; + }; + name = Debug; + }; + C01FCF5008A954540054247B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + FRAMEWORK_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks", + /Library/Frameworks, + "$(FRAMEWORK_SEARCH_PATHS)", + ); + GCC_VERSION = 4.0; + "GCC_VERSION[arch=x86_64]" = 4.2; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks/SDL.framework/Headers", + /Library/Frameworks/SDL.framework/Headers, + "$(HEADER_SEARCH_PATHS)", + ); + PREBINDING = NO; + SDKROOT = macosx10.4; + "SDKROOT[arch=x86_64]" = "$(DEVELOPER_SDK_DIR)/MacOSX10.6.sdk"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "___PROJECTNAME___" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01FCF4B08A954540054247B /* Debug */, + C01FCF4C08A954540054247B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + C01FCF4E08A954540054247B /* Build configuration list for PBXProject "___PROJECTNAME___" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01FCF4F08A954540054247B /* Debug */, + C01FCF5008A954540054247B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 29B97313FDCFA39411CA2CEA /* Project object */; +} diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/atlantis.c b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/atlantis.c new file mode 100644 index 000000000..4efdf6ce8 --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/atlantis.c @@ -0,0 +1,459 @@ + +/* Copyright (c) Mark J. Kilgard, 1994. */ + +/** + * (c) Copyright 1993, 1994, Silicon Graphics, Inc. + * ALL RIGHTS RESERVED + * Permission to use, copy, modify, and distribute this software for + * any purpose and without fee is hereby granted, provided that the above + * copyright notice appear in all copies and that both the copyright notice + * and this permission notice appear in supporting documentation, and that + * the name of Silicon Graphics, Inc. not be used in advertising + * or publicity pertaining to distribution of the software without specific, + * written prior permission. + * + * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS" + * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR + * FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON + * GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT, + * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY + * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, + * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF + * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC. HAS BEEN + * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE + * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE. + * + * US Government Users Restricted Rights + * Use, duplication, or disclosure by the Government is subject to + * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph + * (c)(1)(ii) of the Rights in Technical Data and Computer Software + * clause at DFARS 252.227-7013 and/or in similar or successor + * clauses in the FAR or the DOD or NASA FAR Supplement. + * Unpublished-- rights reserved under the copyright laws of the + * United States. Contractor/manufacturer is Silicon Graphics, + * Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311. + * + * OpenGL(TM) is a trademark of Silicon Graphics, Inc. + */ +#include +#include +#include +#include +#include +#include +#include "atlantis.h" + +fishRec sharks[NUM_SHARKS]; +fishRec momWhale; +fishRec babyWhale; +fishRec dolph; + +GLboolean Timing = GL_TRUE; + +int w_win = 640; +int h_win = 480; +GLint count = 0; +GLenum StrMode = GL_VENDOR; + +GLboolean moving; + +static double mtime(void) +{ + struct timeval tk_time; + struct timezone tz; + + gettimeofday(&tk_time, &tz); + + return 4294.967296 * tk_time.tv_sec + 0.000001 * tk_time.tv_usec; +} + +static double filter(double in, double *save) +{ + static double k1 = 0.9; + static double k2 = 0.05; + + save[3] = in; + save[1] = save[0]*k1 + k2*(save[3] + save[2]); + + save[0]=save[1]; + save[2]=save[3]; + + return(save[1]); +} + +void DrawStr(const char *str) +{ + GLint i = 0; + + if(!str) return; + + while(str[i]) + { + glutBitmapCharacter(GLUT_BITMAP_HELVETICA_12, str[i]); + i++; + } +} + +void +InitFishs(void) +{ + int i; + + for (i = 0; i < NUM_SHARKS; i++) { + sharks[i].x = 70000.0 + rand() % 6000; + sharks[i].y = rand() % 6000; + sharks[i].z = rand() % 6000; + sharks[i].psi = rand() % 360 - 180.0; + sharks[i].v = 1.0; + } + + dolph.x = 30000.0; + dolph.y = 0.0; + dolph.z = 6000.0; + dolph.psi = 90.0; + dolph.theta = 0.0; + dolph.v = 3.0; + + momWhale.x = 70000.0; + momWhale.y = 0.0; + momWhale.z = 0.0; + momWhale.psi = 90.0; + momWhale.theta = 0.0; + momWhale.v = 3.0; + + babyWhale.x = 60000.0; + babyWhale.y = -2000.0; + babyWhale.z = -2000.0; + babyWhale.psi = 90.0; + babyWhale.theta = 0.0; + babyWhale.v = 3.0; +} + +void +Atlantis_Init(void) +{ + static float ambient[] = {0.2, 0.2, 0.2, 1.0}; + static float diffuse[] = {1.0, 1.0, 1.0, 1.0}; + static float position[] = {0.0, 1.0, 0.0, 0.0}; + static float mat_shininess[] = {90.0}; + static float mat_specular[] = {0.8, 0.8, 0.8, 1.0}; + static float mat_diffuse[] = {0.46, 0.66, 0.795, 1.0}; + static float mat_ambient[] = {0.3, 0.4, 0.5, 1.0}; + static float lmodel_ambient[] = {0.4, 0.4, 0.4, 1.0}; + static float lmodel_localviewer[] = {0.0}; + //GLfloat map1[4] = {0.0, 0.0, 0.0, 0.0}; + //GLfloat map2[4] = {0.0, 0.0, 0.0, 0.0}; + static float fog_color[] = {0.0, 0.5, 0.9, 1.0}; + + glFrontFace(GL_CCW); + + glDepthFunc(GL_LESS); + glEnable(GL_DEPTH_TEST); + + glLightfv(GL_LIGHT0, GL_AMBIENT, ambient); + glLightfv(GL_LIGHT0, GL_DIFFUSE, diffuse); + glLightfv(GL_LIGHT0, GL_POSITION, position); + glLightModelfv(GL_LIGHT_MODEL_AMBIENT, lmodel_ambient); + glLightModelfv(GL_LIGHT_MODEL_LOCAL_VIEWER, lmodel_localviewer); + glEnable(GL_LIGHTING); + glEnable(GL_LIGHT0); + + glMaterialfv(GL_FRONT_AND_BACK, GL_SHININESS, mat_shininess); + glMaterialfv(GL_FRONT_AND_BACK, GL_SPECULAR, mat_specular); + glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE, mat_diffuse); + glMaterialfv(GL_FRONT_AND_BACK, GL_AMBIENT, mat_ambient); + + InitFishs(); + + glEnable(GL_FOG); + glFogi(GL_FOG_MODE, GL_EXP); + glFogf(GL_FOG_DENSITY, 0.0000025); + glFogfv(GL_FOG_COLOR, fog_color); + + glClearColor(0.0, 0.5, 0.9, 1.0); +} + +void +Atlantis_Reshape(int width, int height) +{ + w_win = width; + h_win = height; + + glViewport(0, 0, width, height); + + glMatrixMode(GL_PROJECTION); + glLoadIdentity(); + gluPerspective(60.0, (GLfloat) width / (GLfloat) height, 20000.0, 300000.0); + glMatrixMode(GL_MODELVIEW); +} + +void +Atlantis_Animate(void) +{ + int i; + + for (i = 0; i < NUM_SHARKS; i++) { + SharkPilot(&sharks[i]); + SharkMiss(i); + } + WhalePilot(&dolph); + dolph.phi++; + //glutPostRedisplay(); + WhalePilot(&momWhale); + momWhale.phi++; + WhalePilot(&babyWhale); + babyWhale.phi++; +} + +void +Atlantis_Key(unsigned char key, int x, int y) +{ + switch (key) { + case 't': + Timing = !Timing; + break; + case ' ': + switch(StrMode) + { + case GL_EXTENSIONS: + StrMode = GL_VENDOR; + break; + case GL_VENDOR: + StrMode = GL_RENDERER; + break; + case GL_RENDERER: + StrMode = GL_VERSION; + break; + case GL_VERSION: + StrMode = GL_EXTENSIONS; + break; + } + break; + case 27: /* Esc will quit */ + exit(1); + break; + case 's': /* "s" start animation */ + moving = GL_TRUE; + //glutIdleFunc(Animate); + break; + case 'a': /* "a" stop animation */ + moving = GL_FALSE; + //glutIdleFunc(NULL); + break; + case '.': /* "." will advance frame */ + if (!moving) { + Atlantis_Animate(); + } + } +} +/* +void Display(void) +{ + static float P123[3] = {-448.94, -203.14, 9499.60}; + static float P124[3] = {-442.64, -185.20, 9528.07}; + static float P125[3] = {-441.07, -148.05, 9528.07}; + static float P126[3] = {-443.43, -128.84, 9499.60}; + static float P127[3] = {-456.87, -146.78, 9466.67}; + static float P128[3] = {-453.68, -183.93, 9466.67}; + + glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); + + glPushMatrix(); + FishTransform(&dolph); + DrawDolphin(&dolph); + glPopMatrix(); + + glutSwapBuffers(); +} +*/ + +void +Atlantis_Display(void) +{ + int i; + static double th[4] = {0.0, 0.0, 0.0, 0.0}; + static double t1 = 0.0, t2 = 0.0, t; + char num_str[128]; + + t1 = t2; + + glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); + + for (i = 0; i < NUM_SHARKS; i++) { + glPushMatrix(); + FishTransform(&sharks[i]); + DrawShark(&sharks[i]); + glPopMatrix(); + } + + glPushMatrix(); + FishTransform(&dolph); + DrawDolphin(&dolph); + glPopMatrix(); + + glPushMatrix(); + FishTransform(&momWhale); + DrawWhale(&momWhale); + glPopMatrix(); + + glPushMatrix(); + FishTransform(&babyWhale); + glScalef(0.45, 0.45, 0.3); + DrawWhale(&babyWhale); + glPopMatrix(); + + if(Timing) + { + t2 = mtime(); + t = t2 - t1; + if(t > 0.0001) t = 1.0 / t; + + glDisable(GL_LIGHTING); + //glDisable(GL_DEPTH_TEST); + + glColor3f(1.0, 0.0, 0.0); + + glMatrixMode (GL_PROJECTION); + glPushMatrix(); + glLoadIdentity(); + glOrtho(0, w_win, 0, h_win, -10.0, 10.0); + + glRasterPos2f(5.0, 5.0); + + switch(StrMode) + { + case GL_VENDOR: + sprintf(num_str, "%0.2f Hz, %dx%d, VENDOR: ", filter(t, th), w_win, h_win); + DrawStr(num_str); + DrawStr(glGetString(GL_VENDOR)); + break; + case GL_RENDERER: + sprintf(num_str, "%0.2f Hz, %dx%d, RENDERER: ", filter(t, th), w_win, h_win); + DrawStr(num_str); + DrawStr(glGetString(GL_RENDERER)); + break; + case GL_VERSION: + sprintf(num_str, "%0.2f Hz, %dx%d, VERSION: ", filter(t, th), w_win, h_win); + DrawStr(num_str); + DrawStr(glGetString(GL_VERSION)); + break; + case GL_EXTENSIONS: + sprintf(num_str, "%0.2f Hz, %dx%d, EXTENSIONS: ", filter(t, th), w_win, h_win); + DrawStr(num_str); + DrawStr(glGetString(GL_EXTENSIONS)); + break; + } + + glPopMatrix(); + glMatrixMode(GL_MODELVIEW); + + glEnable(GL_LIGHTING); + //glEnable(GL_DEPTH_TEST); + } + + count++; + + glutSwapBuffers(); +} + +/* +void +Visible(int state) +{ + if (state == GLUT_VISIBLE) { + if (moving) + glutIdleFunc(Animate); + } else { + if (moving) + glutIdleFunc(NULL); + } +} + + +void +timingSelect(int value) +{ + switch(value) + { + case 1: + StrMode = GL_VENDOR; + break; + case 2: + StrMode = GL_RENDERER; + break; + case 3: + StrMode = GL_VERSION; + break; + case 4: + StrMode = GL_EXTENSIONS; + break; + } +} + +void +menuSelect(int value) +{ + switch (value) { + case 1: + moving = GL_TRUE; + glutIdleFunc(Animate); + break; + case 2: + moving = GL_FALSE; + glutIdleFunc(NULL); + break; + case 4: + exit(0); + break; + } +} + +int +main(int argc, char **argv) +{ + GLboolean fullscreen = GL_FALSE; + GLint time_menu; + + srand(0); + + glutInit(&argc, argv); + if (argc > 1 && !strcmp(argv[1], "-w")) + fullscreen = GL_FALSE; + + //glutInitDisplayMode(GLUT_RGBA | GLUT_DOUBLE | GLUT_DEPTH); + glutInitDisplayString("rgba double depth=24"); + if (fullscreen) { + glutGameModeString("1024x768:32"); + glutEnterGameMode(); + } else { + glutInitWindowSize(320, 240); + glutCreateWindow("Atlantis Timing"); + } + Init(); + glutDisplayFunc(Display); + glutReshapeFunc(Reshape); + glutKeyboardFunc(Key); + moving = GL_TRUE; +glutIdleFunc(Animate); + glutVisibilityFunc(Visible); + + time_menu = glutCreateMenu(timingSelect); + glutAddMenuEntry("GL_VENDOR", 1); + glutAddMenuEntry("GL_RENDERER", 2); + glutAddMenuEntry("GL_VERSION", 3); + glutAddMenuEntry("GL_EXTENSIONS", 4); + + glutCreateMenu(menuSelect); + glutAddMenuEntry("Start motion", 1); + glutAddMenuEntry("Stop motion", 2); + glutAddSubMenu("Timing Mode", time_menu); + glutAddMenuEntry("Quit", 4); + + //glutAttachMenu(GLUT_RIGHT_BUTTON); + glutAttachMenu(GLUT_RIGHT_BUTTON); + glutMainLoop(); + return 0; // ANSI C requires main to return int. +} +*/ \ No newline at end of file diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/atlantis.h b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/atlantis.h new file mode 100644 index 000000000..6ccf2d5f0 --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/atlantis.h @@ -0,0 +1,65 @@ +/** + * (c) Copyright 1993, 1994, Silicon Graphics, Inc. + * ALL RIGHTS RESERVED + * Permission to use, copy, modify, and distribute this software for + * any purpose and without fee is hereby granted, provided that the above + * copyright notice appear in all copies and that both the copyright notice + * and this permission notice appear in supporting documentation, and that + * the name of Silicon Graphics, Inc. not be used in advertising + * or publicity pertaining to distribution of the software without specific, + * written prior permission. + * + * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS" + * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR + * FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON + * GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT, + * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY + * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, + * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF + * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC. HAS BEEN + * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE + * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE. + * + * US Government Users Restricted Rights + * Use, duplication, or disclosure by the Government is subject to + * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph + * (c)(1)(ii) of the Rights in Technical Data and Computer Software + * clause at DFARS 252.227-7013 and/or in similar or successor + * clauses in the FAR or the DOD or NASA FAR Supplement. + * Unpublished-- rights reserved under the copyright laws of the + * United States. Contractor/manufacturer is Silicon Graphics, + * Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311. + * + * OpenGL(TM) is a trademark of Silicon Graphics, Inc. + */ +#define RAD 57.295 +#define RRAD 0.01745 + +#define NUM_SHARKS 4 +#define SHARKSIZE 6000 +#define SHARKSPEED 100.0 + +#define WHALESPEED 250.0 + +typedef struct _fishRec { + float x, y, z, phi, theta, psi, v; + float xt, yt, zt; + float htail, vtail; + float dtheta; + int spurt, attack; +} fishRec; + +extern fishRec sharks[NUM_SHARKS]; +extern fishRec momWhale; +extern fishRec babyWhale; +extern fishRec dolph; + +extern void FishTransform(fishRec *); +extern void WhalePilot(fishRec *); +extern void SharkPilot(fishRec *); +extern void SharkMiss(int); +extern void DrawWhale(fishRec *); +extern void DrawShark(fishRec *); +extern void DrawDolphin(fishRec *); diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/dolphin.c b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/dolphin.c new file mode 100644 index 000000000..9fba3ba98 --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/dolphin.c @@ -0,0 +1,1934 @@ +/** + * (c) Copyright 1993, 1994, Silicon Graphics, Inc. + * ALL RIGHTS RESERVED + * Permission to use, copy, modify, and distribute this software for + * any purpose and without fee is hereby granted, provided that the above + * copyright notice appear in all copies and that both the copyright notice + * and this permission notice appear in supporting documentation, and that + * the name of Silicon Graphics, Inc. not be used in advertising + * or publicity pertaining to distribution of the software without specific, + * written prior permission. + * + * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS" + * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR + * FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON + * GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT, + * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY + * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, + * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF + * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC. HAS BEEN + * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE + * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE. + * + * US Government Users Restricted Rights + * Use, duplication, or disclosure by the Government is subject to + * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph + * (c)(1)(ii) of the Rights in Technical Data and Computer Software + * clause at DFARS 252.227-7013 and/or in similar or successor + * clauses in the FAR or the DOD or NASA FAR Supplement. + * Unpublished-- rights reserved under the copyright laws of the + * United States. Contractor/manufacturer is Silicon Graphics, + * Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311. + * + * OpenGL(TM) is a trademark of Silicon Graphics, Inc. + */ +#include +#include +#include "atlantis.h" +/* *INDENT-OFF* */ +static float N001[3] = {-0.005937 ,-0.101998 ,-0.994767}; +static float N002[3] = {0.936780 ,-0.200803 ,0.286569}; +static float N003[3] = {-0.233062 ,0.972058 ,0.028007}; +static float N005[3] = {0.898117 ,0.360171 ,0.252315}; +static float N006[3] = {-0.915437 ,0.348456 ,0.201378}; +static float N007[3] = {0.602263 ,-0.777527 ,0.180920}; +static float N008[3] = {-0.906912 ,-0.412015 ,0.088061}; +static float N012[3] = {0.884408 ,-0.429417 ,-0.182821}; +static float N013[3] = {0.921121 ,0.311084 ,-0.234016}; +static float N014[3] = {0.382635 ,0.877882 ,-0.287948}; +static float N015[3] = {-0.380046 ,0.888166 ,-0.258316}; +static float N016[3] = {-0.891515 ,0.392238 ,-0.226607}; +static float N017[3] = {-0.901419 ,-0.382002 ,-0.203763}; +static float N018[3] = {-0.367225 ,-0.911091 ,-0.187243}; +static float N019[3] = {0.339539 ,-0.924846 ,-0.171388}; +static float N020[3] = {0.914706 ,-0.378617 ,-0.141290}; +static float N021[3] = {0.950662 ,0.262713 ,-0.164994}; +static float N022[3] = {0.546359 ,0.801460 ,-0.243218}; +static float N023[3] = {-0.315796 ,0.917068 ,-0.243431}; +static float N024[3] = {-0.825687 ,0.532277 ,-0.186875}; +static float N025[3] = {-0.974763 ,-0.155232 ,-0.160435}; +static float N026[3] = {-0.560596 ,-0.816658 ,-0.137119}; +static float N027[3] = {0.380210 ,-0.910817 ,-0.160786}; +static float N028[3] = {0.923772 ,-0.358322 ,-0.135093}; +static float N029[3] = {0.951202 ,0.275053 ,-0.139859}; +static float N030[3] = {0.686099 ,0.702548 ,-0.188932}; +static float N031[3] = {-0.521865 ,0.826719 ,-0.210220}; +static float N032[3] = {-0.923820 ,0.346739 ,-0.162258}; +static float N033[3] = {-0.902095 ,-0.409995 ,-0.134646}; +static float N034[3] = {-0.509115 ,-0.848498 ,-0.144404}; +static float N035[3] = {0.456469 ,-0.880293 ,-0.129305}; +static float N036[3] = {0.873401 ,-0.475489 ,-0.105266}; +static float N037[3] = {0.970825 ,0.179861 ,-0.158584}; +static float N038[3] = {0.675609 ,0.714187 ,-0.183004}; +static float N039[3] = {-0.523574 ,0.830212 ,-0.191360}; +static float N040[3] = {-0.958895 ,0.230808 ,-0.165071}; +static float N041[3] = {-0.918285 ,-0.376803 ,-0.121542}; +static float N042[3] = {-0.622467 ,-0.774167 ,-0.114888}; +static float N043[3] = {0.404497 ,-0.908807 ,-0.102231}; +static float N044[3] = {0.930538 ,-0.365155 ,-0.027588}; +static float N045[3] = {0.921920 ,0.374157 ,-0.100345}; +static float N046[3] = {0.507346 ,0.860739 ,0.041562}; +static float N047[3] = {-0.394646 ,0.918815 ,-0.005730}; +static float N048[3] = {-0.925411 ,0.373024 ,-0.066837}; +static float N049[3] = {-0.945337 ,-0.322309 ,-0.049551}; +static float N050[3] = {-0.660437 ,-0.750557 ,-0.022072}; +static float N051[3] = {0.488835 ,-0.871950 ,-0.027261}; +static float N052[3] = {0.902599 ,-0.421397 ,0.087969}; +static float N053[3] = {0.938636 ,0.322606 ,0.122020}; +static float N054[3] = {0.484605 ,0.871078 ,0.079878}; +static float N055[3] = {-0.353607 ,0.931559 ,0.084619}; +static float N056[3] = {-0.867759 ,0.478564 ,0.134054}; +static float N057[3] = {-0.951583 ,-0.296030 ,0.082794}; +static float N058[3] = {-0.672355 ,-0.730209 ,0.121384}; +static float N059[3] = {0.528336 ,-0.842452 ,0.105525}; +static float N060[3] = {0.786913 ,-0.564760 ,0.248627}; +static float N062[3] = {0.622098 ,0.765230 ,0.165584}; +static float N063[3] = {-0.631711 ,0.767816 ,0.106773}; +static float N064[3] = {-0.687886 ,0.606351 ,0.398938}; +static float N065[3] = {-0.946327 ,-0.281623 ,0.158598}; +static float N066[3] = {-0.509549 ,-0.860437 ,0.002776}; +static float N067[3] = {0.462594 ,-0.876692 ,0.131977}; +static float N071[3] = {0.000000 ,1.000000 ,0.000000}; +static float N077[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N078[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N079[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N080[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N081[3] = {-0.571197 ,0.816173 ,0.087152}; +static float N082[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N083[3] = {-0.571197 ,0.816173 ,0.087152}; +static float N084[3] = {-0.571197 ,0.816173 ,0.087152}; +static float N085[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N086[3] = {-0.571197 ,0.816173 ,0.087152}; +static float N087[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N088[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N089[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N090[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N091[3] = {0.000000 ,1.000000 ,0.000000}; +static float N092[3] = {0.000000 ,1.000000 ,0.000000}; +static float N093[3] = {0.000000 ,1.000000 ,0.000000}; +static float N094[3] = {1.000000 ,0.000000 ,0.000000}; +static float N095[3] = {-1.000000 ,0.000000 ,0.000000}; +static float N097[3] = {-0.697296 ,0.702881 ,0.140491}; +static float N098[3] = {0.918864 ,0.340821 ,0.198819}; +static float N099[3] = {-0.932737 ,0.201195 ,0.299202}; +static float N100[3] = {0.029517 ,0.981679 ,0.188244}; +static float N102[3] = {0.813521 ,-0.204936 ,0.544229}; +static float N110[3] = {-0.781480 ,-0.384779 ,0.491155}; +static float N111[3] = {-0.722243 ,0.384927 ,0.574627}; +static float N112[3] = {-0.752278 ,0.502679 ,0.425901}; +static float N113[3] = {0.547257 ,0.367910 ,0.751766}; +static float N114[3] = {0.725949 ,-0.232568 ,0.647233}; +static float N115[3] = {-0.747182 ,-0.660786 ,0.071280}; +static float N116[3] = {0.931519 ,0.200748 ,0.303270}; +static float N117[3] = {-0.828928 ,0.313757 ,0.463071}; +static float N118[3] = {0.902554 ,-0.370967 ,0.218587}; +static float N119[3] = {-0.879257 ,-0.441851 ,0.177973}; +static float N120[3] = {0.642327 ,0.611901 ,0.461512}; +static float N121[3] = {0.964817 ,-0.202322 ,0.167910}; +static float N122[3] = {0.000000 ,1.000000 ,0.000000}; +static float P001[3] = {5.68, -300.95, 1324.70}; +static float P002[3] = {338.69, -219.63, 9677.03}; +static float P003[3] = {12.18, 474.59, 9138.14}; +static float P005[3] = {487.51, 198.05, 9350.78}; +static float P006[3] = {-457.61, 68.74, 9427.85}; +static float P007[3] = {156.52, -266.72, 10311.68}; +static float P008[3] = {-185.56, -266.51, 10310.47}; +static float P009[3] = {124.39, -261.46, 1942.34}; +static float P010[3] = {-130.05, -261.46, 1946.03}; +static float P011[3] = {141.07, -320.11, 1239.38}; +static float P012[3] = {156.48, -360.12, 2073.41}; +static float P013[3] = {162.00, -175.88, 2064.44}; +static float P014[3] = {88.16, -87.72, 2064.02}; +static float P015[3] = {-65.21, -96.13, 2064.02}; +static float P016[3] = {-156.48, -180.96, 2064.44}; +static float P017[3] = {-162.00, -368.93, 2082.39}; +static float P018[3] = {-88.16, -439.22, 2082.39}; +static float P019[3] = {65.21, -440.32, 2083.39}; +static float P020[3] = {246.87, -356.02, 2576.95}; +static float P021[3] = {253.17, -111.15, 2567.15}; +static float P022[3] = {132.34, 51.41, 2559.84}; +static float P023[3] = {-97.88, 40.44, 2567.15}; +static float P024[3] = {-222.97, -117.49, 2567.15}; +static float P025[3] = {-252.22, -371.53, 2569.92}; +static float P026[3] = {-108.44, -518.19, 2586.75}; +static float P027[3] = {97.88, -524.79, 2586.75}; +static float P028[3] = {370.03, -421.19, 3419.70}; +static float P029[3] = {351.15, -16.98, 3423.17}; +static float P030[3] = {200.66, 248.46, 3430.37}; +static float P031[3] = {-148.42, 235.02, 3417.91}; +static float P032[3] = {-360.21, -30.27, 3416.84}; +static float P033[3] = {-357.90, -414.89, 3407.04}; +static float P034[3] = {-148.88, -631.35, 3409.90}; +static float P035[3] = {156.38, -632.59, 3419.70}; +static float P036[3] = {462.61, -469.21, 4431.51}; +static float P037[3] = {466.60, 102.25, 4434.98}; +static float P038[3] = {243.05, 474.34, 4562.02}; +static float P039[3] = {-191.23, 474.40, 4554.42}; +static float P040[3] = {-476.12, 111.05, 4451.11}; +static float P041[3] = {-473.36, -470.74, 4444.78}; +static float P042[3] = {-266.95, -748.41, 4447.78}; +static float P043[3] = {211.14, -749.91, 4429.73}; +static float P044[3] = {680.57, -370.27, 5943.46}; +static float P045[3] = {834.01, 363.09, 6360.63}; +static float P046[3] = {371.29, 804.51, 6486.26}; +static float P047[3] = {-291.43, 797.22, 6494.28}; +static float P048[3] = {-784.13, 370.75, 6378.01}; +static float P049[3] = {-743.29, -325.82, 5943.46}; +static float P050[3] = {-383.24, -804.77, 5943.46}; +static float P051[3] = {283.47, -846.09, 5943.46}; +static float iP001[3] = {5.68, -300.95, 1324.70}; +static float iP009[3] = {124.39, -261.46, 1942.34}; +static float iP010[3] = {-130.05, -261.46, 1946.03}; +static float iP011[3] = {141.07, -320.11, 1239.38}; +static float iP012[3] = {156.48, -360.12, 2073.41}; +static float iP013[3] = {162.00, -175.88, 2064.44}; +static float iP014[3] = {88.16, -87.72, 2064.02}; +static float iP015[3] = {-65.21, -96.13, 2064.02}; +static float iP016[3] = {-156.48, -180.96, 2064.44}; +static float iP017[3] = {-162.00, -368.93, 2082.39}; +static float iP018[3] = {-88.16, -439.22, 2082.39}; +static float iP019[3] = {65.21, -440.32, 2083.39}; +static float iP020[3] = {246.87, -356.02, 2576.95}; +static float iP021[3] = {253.17, -111.15, 2567.15}; +static float iP022[3] = {132.34, 51.41, 2559.84}; +static float iP023[3] = {-97.88, 40.44, 2567.15}; +static float iP024[3] = {-222.97, -117.49, 2567.15}; +static float iP025[3] = {-252.22, -371.53, 2569.92}; +static float iP026[3] = {-108.44, -518.19, 2586.75}; +static float iP027[3] = {97.88, -524.79, 2586.75}; +static float iP028[3] = {370.03, -421.19, 3419.70}; +static float iP029[3] = {351.15, -16.98, 3423.17}; +static float iP030[3] = {200.66, 248.46, 3430.37}; +static float iP031[3] = {-148.42, 235.02, 3417.91}; +static float iP032[3] = {-360.21, -30.27, 3416.84}; +static float iP033[3] = {-357.90, -414.89, 3407.04}; +static float iP034[3] = {-148.88, -631.35, 3409.90}; +static float iP035[3] = {156.38, -632.59, 3419.70}; +static float iP036[3] = {462.61, -469.21, 4431.51}; +static float iP037[3] = {466.60, 102.25, 4434.98}; +static float iP038[3] = {243.05, 474.34, 4562.02}; +static float iP039[3] = {-191.23, 474.40, 4554.42}; +static float iP040[3] = {-476.12, 111.05, 4451.11}; +static float iP041[3] = {-473.36, -470.74, 4444.78}; +static float iP042[3] = {-266.95, -748.41, 4447.78}; +static float iP043[3] = {211.14, -749.91, 4429.73}; +static float iP044[3] = {680.57, -370.27, 5943.46}; +static float iP045[3] = {834.01, 363.09, 6360.63}; +static float iP046[3] = {371.29, 804.51, 6486.26}; +static float iP047[3] = {-291.43, 797.22, 6494.28}; +static float iP048[3] = {-784.13, 370.75, 6378.01}; +static float iP049[3] = {-743.29, -325.82, 5943.46}; +static float iP050[3] = {-383.24, -804.77, 5943.46}; +static float iP051[3] = {283.47, -846.09, 5943.46}; +static float P052[3] = {599.09, -300.15, 7894.03}; +static float P053[3] = {735.48, 306.26, 7911.92}; +static float P054[3] = {246.22, 558.53, 8460.50}; +static float P055[3] = {-230.41, 559.84, 8473.23}; +static float P056[3] = {-698.66, 320.83, 7902.59}; +static float P057[3] = {-643.29, -299.16, 7902.59}; +static float P058[3] = {-341.47, -719.30, 7902.59}; +static float P059[3] = {252.57, -756.12, 7902.59}; +static float P060[3] = {458.39, -265.31, 9355.44}; +static float P062[3] = {224.04, 338.75, 9450.30}; +static float P063[3] = {-165.71, 341.04, 9462.35}; +static float P064[3] = {-298.11, 110.13, 10180.37}; +static float P065[3] = {-473.99, -219.71, 9355.44}; +static float P066[3] = {-211.97, -479.87, 9355.44}; +static float P067[3] = {192.86, -491.45, 9348.73}; +static float P068[3] = {-136.29, -319.84, 1228.73}; +static float P069[3] = {1111.17, -314.14, 1314.19}; +static float P070[3] = {-1167.34, -321.61, 1319.45}; +static float P071[3] = {1404.86, -306.66, 1235.45}; +static float P072[3] = {-1409.73, -314.14, 1247.66}; +static float P073[3] = {1254.01, -296.87, 1544.58}; +static float P074[3] = {-1262.09, -291.70, 1504.26}; +static float P075[3] = {965.71, -269.26, 1742.65}; +static float P076[3] = {-900.97, -276.74, 1726.07}; +static float iP068[3] = {-136.29, -319.84, 1228.73}; +static float iP069[3] = {1111.17, -314.14, 1314.19}; +static float iP070[3] = {-1167.34, -321.61, 1319.45}; +static float iP071[3] = {1404.86, -306.66, 1235.45}; +static float iP072[3] = {-1409.73, -314.14, 1247.66}; +static float iP073[3] = {1254.01, -296.87, 1544.58}; +static float iP074[3] = {-1262.09, -291.70, 1504.26}; +static float iP075[3] = {965.71, -269.26, 1742.65}; +static float iP076[3] = {-900.97, -276.74, 1726.07}; +static float P077[3] = {1058.00, -448.81, 8194.66}; +static float P078[3] = {-1016.51, -456.43, 8190.62}; +static float P079[3] = {-1515.96, -676.45, 7754.93}; +static float P080[3] = {1856.75, -830.34, 7296.56}; +static float P081[3] = {1472.16, -497.38, 7399.68}; +static float P082[3] = {-1775.26, -829.51, 7298.46}; +static float P083[3] = {911.09, -252.51, 7510.99}; +static float P084[3] = {-1451.94, -495.62, 7384.30}; +static float P085[3] = {1598.75, -669.26, 7769.90}; +static float P086[3] = {-836.53, -250.08, 7463.25}; +static float P087[3] = {722.87, -158.18, 8006.41}; +static float P088[3] = {-688.86, -162.28, 7993.89}; +static float P089[3] = {-626.92, -185.30, 8364.98}; +static float P090[3] = {647.72, -189.46, 8354.99}; +static float P091[3] = {0.00, 835.01, 5555.62}; +static float P092[3] = {0.00, 1350.18, 5220.86}; +static float P093[3] = {0.00, 1422.94, 5285.27}; +static float P094[3] = {0.00, 1296.75, 5650.19}; +static float P095[3] = {0.00, 795.63, 6493.88}; +static float iP091[3] = {0.00, 835.01, 5555.62}; +static float iP092[3] = {0.00, 1350.18, 5220.86}; +static float iP093[3] = {0.00, 1422.94, 5285.27}; +static float iP094[3] = {0.00, 1296.75, 5650.19}; +static float iP095[3] = {0.00, 795.63, 6493.88}; +static float P097[3] = {-194.91, -357.14, 10313.32}; +static float P098[3] = {135.35, -357.66, 10307.94}; +static float iP097[3] = {-194.91, -357.14, 10313.32}; +static float iP098[3] = {135.35, -357.66, 10307.94}; +static float P099[3] = {-380.53, -221.14, 9677.98}; +static float P100[3] = {0.00, 412.99, 9629.33}; +static float P102[3] = {59.51, -412.55, 10677.58}; +static float iP102[3] = {59.51, -412.55, 10677.58}; +static float P103[3] = {6.50, 484.74, 9009.94}; +static float P105[3] = {-41.86, 476.51, 9078.17}; +static float P108[3] = {49.20, 476.83, 9078.24}; +static float P110[3] = {-187.62, -410.04, 10674.12}; +static float iP110[3] = {-187.62, -410.04, 10674.12}; +static float P111[3] = {-184.25, -318.70, 10723.88}; +static float iP111[3] = {-184.25, -318.70, 10723.88}; +static float P112[3] = {-179.61, -142.81, 10670.26}; +static float P113[3] = {57.43, -147.94, 10675.26}; +static float P114[3] = {54.06, -218.90, 10712.44}; +static float P115[3] = {-186.35, -212.09, 10713.76}; +static float P116[3] = {205.90, -84.61, 10275.97}; +static float P117[3] = {-230.96, -83.26, 10280.09}; +static float iP118[3] = {216.78, -509.17, 10098.94}; +static float iP119[3] = {-313.21, -510.79, 10102.62}; +static float P118[3] = {216.78, -509.17, 10098.94}; +static float P119[3] = {-313.21, -510.79, 10102.62}; +static float P120[3] = {217.95, 96.34, 10161.62}; +static float P121[3] = {71.99, -319.74, 10717.70}; +static float iP121[3] = {71.99, -319.74, 10717.70}; +static float P122[3] = {0.00, 602.74, 5375.84}; +static float iP122[3] = {0.00, 602.74, 5375.84}; +static float P123[3] = {-448.94, -203.14, 9499.60}; +static float P124[3] = {-442.64, -185.20, 9528.07}; +static float P125[3] = {-441.07, -148.05, 9528.07}; +static float P126[3] = {-443.43, -128.84, 9499.60}; +static float P127[3] = {-456.87, -146.78, 9466.67}; +static float P128[3] = {-453.68, -183.93, 9466.67}; +static float P129[3] = {428.43, -124.08, 9503.03}; +static float P130[3] = {419.73, -142.14, 9534.56}; +static float P131[3] = {419.92, -179.96, 9534.56}; +static float P132[3] = {431.20, -199.73, 9505.26}; +static float P133[3] = {442.28, -181.67, 9475.96}; +static float P134[3] = {442.08, -143.84, 9475.96}; +/* *INDENT-ON* */ + +void +Dolphin001(void) +{ + glNormal3fv(N071); + glBegin(GL_POLYGON); + glVertex3fv(P001); + glVertex3fv(P068); + glVertex3fv(P010); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P068); + glVertex3fv(P076); + glVertex3fv(P010); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P068); + glVertex3fv(P070); + glVertex3fv(P076); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P076); + glVertex3fv(P070); + glVertex3fv(P074); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P070); + glVertex3fv(P072); + glVertex3fv(P074); + glEnd(); + glNormal3fv(N119); + glBegin(GL_POLYGON); + glVertex3fv(P072); + glVertex3fv(P070); + glVertex3fv(P074); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P074); + glVertex3fv(P070); + glVertex3fv(P076); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P070); + glVertex3fv(P068); + glVertex3fv(P076); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P076); + glVertex3fv(P068); + glVertex3fv(P010); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P068); + glVertex3fv(P001); + glVertex3fv(P010); + glEnd(); +} + +void +Dolphin002(void) +{ + glNormal3fv(N071); + glBegin(GL_POLYGON); + glVertex3fv(P011); + glVertex3fv(P001); + glVertex3fv(P009); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P075); + glVertex3fv(P011); + glVertex3fv(P009); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P069); + glVertex3fv(P011); + glVertex3fv(P075); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P069); + glVertex3fv(P075); + glVertex3fv(P073); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P071); + glVertex3fv(P069); + glVertex3fv(P073); + glEnd(); + glNormal3fv(N119); + glBegin(GL_POLYGON); + glVertex3fv(P001); + glVertex3fv(P011); + glVertex3fv(P009); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P009); + glVertex3fv(P011); + glVertex3fv(P075); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P011); + glVertex3fv(P069); + glVertex3fv(P075); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P069); + glVertex3fv(P073); + glVertex3fv(P075); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P069); + glVertex3fv(P071); + glVertex3fv(P073); + glEnd(); +} + +void +Dolphin003(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N019); + glVertex3fv(P019); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N012); + glVertex3fv(P012); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N018); + glVertex3fv(P018); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N016); + glVertex3fv(P016); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N012); + glVertex3fv(P012); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N015); + glVertex3fv(P015); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N013); + glVertex3fv(P013); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N014); + glVertex3fv(P014); + glEnd(); +} + +void +Dolphin004(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N022); + glVertex3fv(P022); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N023); + glVertex3fv(P023); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N024); + glVertex3fv(P024); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N025); + glVertex3fv(P025); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N021); + glVertex3fv(P021); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N012); + glVertex3fv(P012); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N020); + glVertex3fv(P020); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N026); + glVertex3fv(P026); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N012); + glVertex3fv(P012); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N027); + glVertex3fv(P027); + glEnd(); +} + +void +Dolphin005(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N030); + glVertex3fv(P030); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N030); + glVertex3fv(P030); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N031); + glVertex3fv(P031); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N031); + glVertex3fv(P031); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N032); + glVertex3fv(P032); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N032); + glVertex3fv(P032); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N028); + glVertex3fv(P028); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N028); + glVertex3fv(P028); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N035); + glVertex3fv(P035); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N033); + glVertex3fv(P033); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N034); + glVertex3fv(P034); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N034); + glVertex3fv(P034); + glEnd(); +} + +void +Dolphin006(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N092); + glVertex3fv(P092); + glNormal3fv(N093); + glVertex3fv(P093); + glNormal3fv(N094); + glVertex3fv(P094); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N093); + glVertex3fv(P093); + glNormal3fv(N092); + glVertex3fv(P092); + glNormal3fv(N094); + glVertex3fv(P094); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N092); + glVertex3fv(P092); + glNormal3fv(N091); + glVertex3fv(P091); + glNormal3fv(N095); + glVertex3fv(P095); + glNormal3fv(N094); + glVertex3fv(P094); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N091); + glVertex3fv(P091); + glNormal3fv(N092); + glVertex3fv(P092); + glNormal3fv(N094); + glVertex3fv(P094); + glNormal3fv(N095); + glVertex3fv(P095); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N122); + glVertex3fv(P122); + glNormal3fv(N095); + glVertex3fv(P095); + glNormal3fv(N091); + glVertex3fv(P091); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N122); + glVertex3fv(P122); + glNormal3fv(N091); + glVertex3fv(P091); + glNormal3fv(N095); + glVertex3fv(P095); + glEnd(); +} + +void +Dolphin007(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N038); + glVertex3fv(P038); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N038); + glVertex3fv(P038); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N037); + glVertex3fv(P037); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N037); + glVertex3fv(P037); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N036); + glVertex3fv(P036); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N036); + glVertex3fv(P036); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N043); + glVertex3fv(P043); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N034); + glVertex3fv(P034); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N043); + glVertex3fv(P043); + glNormal3fv(N042); + glVertex3fv(P042); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N034); + glVertex3fv(P034); + glNormal3fv(N042); + glVertex3fv(P042); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N041); + glVertex3fv(P041); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N039); + glVertex3fv(P039); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N040); + glVertex3fv(P040); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N040); + glVertex3fv(P040); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N041); + glVertex3fv(P041); + glEnd(); +} + +void +Dolphin008(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N043); + glVertex3fv(P043); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N050); + glVertex3fv(P050); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N043); + glVertex3fv(P043); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N051); + glVertex3fv(P051); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N044); + glVertex3fv(P044); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N050); + glVertex3fv(P050); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N049); + glVertex3fv(P049); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N044); + glVertex3fv(P044); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N045); + glVertex3fv(P045); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N049); + glVertex3fv(P049); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N048); + glVertex3fv(P048); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N048); + glVertex3fv(P048); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N047); + glVertex3fv(P047); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N045); + glVertex3fv(P045); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N045); + glVertex3fv(P045); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N046); + glVertex3fv(P046); + glEnd(); +} + +void +Dolphin009(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N058); + glVertex3fv(P058); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N059); + glVertex3fv(P059); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N052); + glVertex3fv(P052); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N045); + glVertex3fv(P045); + glNormal3fv(N053); + glVertex3fv(P053); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N053); + glVertex3fv(P053); + glNormal3fv(N052); + glVertex3fv(P052); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N058); + glVertex3fv(P058); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N057); + glVertex3fv(P057); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N057); + glVertex3fv(P057); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N057); + glVertex3fv(P057); + glNormal3fv(N056); + glVertex3fv(P056); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N056); + glVertex3fv(P056); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N055); + glVertex3fv(P055); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N045); + glVertex3fv(P045); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N053); + glVertex3fv(P053); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N054); + glVertex3fv(P054); + glNormal3fv(N053); + glVertex3fv(P053); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N055); + glVertex3fv(P055); + glNormal3fv(N054); + glVertex3fv(P054); + glEnd(); +} + +void +Dolphin010(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N080); + glVertex3fv(P080); + glNormal3fv(N081); + glVertex3fv(P081); + glNormal3fv(N085); + glVertex3fv(P085); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N081); + glVertex3fv(P081); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N085); + glVertex3fv(P085); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N085); + glVertex3fv(P085); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N077); + glVertex3fv(P077); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N087); + glVertex3fv(P087); + glNormal3fv(N077); + glVertex3fv(P077); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N077); + glVertex3fv(P077); + glNormal3fv(N087); + glVertex3fv(P087); + glNormal3fv(N090); + glVertex3fv(P090); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N081); + glVertex3fv(P081); + glNormal3fv(N080); + glVertex3fv(P080); + glNormal3fv(N085); + glVertex3fv(P085); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N081); + glVertex3fv(P081); + glNormal3fv(N085); + glVertex3fv(P085); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N085); + glVertex3fv(P085); + glNormal3fv(N077); + glVertex3fv(P077); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N087); + glVertex3fv(P087); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N077); + glVertex3fv(P077); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N087); + glVertex3fv(P087); + glNormal3fv(N077); + glVertex3fv(P077); + glNormal3fv(N090); + glVertex3fv(P090); + glEnd(); +} + +void +Dolphin011(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N082); + glVertex3fv(P082); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N079); + glVertex3fv(P079); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N079); + glVertex3fv(P079); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N079); + glVertex3fv(P079); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N078); + glVertex3fv(P078); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N088); + glVertex3fv(P088); + glNormal3fv(N078); + glVertex3fv(P078); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N078); + glVertex3fv(P078); + glNormal3fv(N088); + glVertex3fv(P088); + glNormal3fv(N089); + glVertex3fv(P089); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N088); + glVertex3fv(P088); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N089); + glVertex3fv(P089); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N089); + glVertex3fv(P089); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N078); + glVertex3fv(P078); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N078); + glVertex3fv(P078); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N078); + glVertex3fv(P078); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N079); + glVertex3fv(P079); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N082); + glVertex3fv(P082); + glNormal3fv(N079); + glVertex3fv(P079); + glEnd(); +} + +void +Dolphin012(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N067); + glVertex3fv(P067); + glNormal3fv(N066); + glVertex3fv(P066); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N052); + glVertex3fv(P052); + glNormal3fv(N060); + glVertex3fv(P060); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N067); + glVertex3fv(P067); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N065); + glVertex3fv(P065); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N057); + glVertex3fv(P057); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N057); + glVertex3fv(P057); + glNormal3fv(N065); + glVertex3fv(P065); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N006); + glVertex3fv(P006); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N063); + glVertex3fv(P063); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N055); + glVertex3fv(P055); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N054); + glVertex3fv(P054); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N005); + glVertex3fv(P005); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N054); + glVertex3fv(P054); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N053); + glVertex3fv(P053); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N052); + glVertex3fv(P052); + glNormal3fv(N053); + glVertex3fv(P053); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N060); + glVertex3fv(P060); + glEnd(); +} + +void +Dolphin013(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N116); + glVertex3fv(P116); + glNormal3fv(N117); + glVertex3fv(P117); + glNormal3fv(N112); + glVertex3fv(P112); + glNormal3fv(N113); + glVertex3fv(P113); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N114); + glVertex3fv(P114); + glNormal3fv(N113); + glVertex3fv(P113); + glNormal3fv(N112); + glVertex3fv(P112); + glNormal3fv(N115); + glVertex3fv(P115); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N114); + glVertex3fv(P114); + glNormal3fv(N116); + glVertex3fv(P116); + glNormal3fv(N113); + glVertex3fv(P113); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N114); + glVertex3fv(P114); + glNormal3fv(N007); + glVertex3fv(P007); + glNormal3fv(N116); + glVertex3fv(P116); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N007); + glVertex3fv(P007); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N116); + glVertex3fv(P116); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P002); + glVertex3fv(P007); + glVertex3fv(P008); + glVertex3fv(P099); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P007); + glVertex3fv(P114); + glVertex3fv(P115); + glVertex3fv(P008); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N117); + glVertex3fv(P117); + glNormal3fv(N099); + glVertex3fv(P099); + glNormal3fv(N008); + glVertex3fv(P008); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N117); + glVertex3fv(P117); + glNormal3fv(N008); + glVertex3fv(P008); + glNormal3fv(N112); + glVertex3fv(P112); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N112); + glVertex3fv(P112); + glNormal3fv(N008); + glVertex3fv(P008); + glNormal3fv(N115); + glVertex3fv(P115); + glEnd(); +} + +void +Dolphin014(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N111); + glVertex3fv(P111); + glNormal3fv(N110); + glVertex3fv(P110); + glNormal3fv(N102); + glVertex3fv(P102); + glNormal3fv(N121); + glVertex3fv(P121); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N111); + glVertex3fv(P111); + glNormal3fv(N097); + glVertex3fv(P097); + glNormal3fv(N110); + glVertex3fv(P110); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N097); + glVertex3fv(P097); + glNormal3fv(N119); + glVertex3fv(P119); + glNormal3fv(N110); + glVertex3fv(P110); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N097); + glVertex3fv(P097); + glNormal3fv(N099); + glVertex3fv(P099); + glNormal3fv(N119); + glVertex3fv(P119); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N099); + glVertex3fv(P099); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N119); + glVertex3fv(P119); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N119); + glVertex3fv(P119); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P098); + glVertex3fv(P097); + glVertex3fv(P111); + glVertex3fv(P121); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P002); + glVertex3fv(P099); + glVertex3fv(P097); + glVertex3fv(P098); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N110); + glVertex3fv(P110); + glNormal3fv(N119); + glVertex3fv(P119); + glNormal3fv(N118); + glVertex3fv(P118); + glNormal3fv(N102); + glVertex3fv(P102); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N119); + glVertex3fv(P119); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N067); + glVertex3fv(P067); + glNormal3fv(N118); + glVertex3fv(P118); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N067); + glVertex3fv(P067); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N002); + glVertex3fv(P002); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N067); + glVertex3fv(P067); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N118); + glVertex3fv(P118); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N118); + glVertex3fv(P118); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N098); + glVertex3fv(P098); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N118); + glVertex3fv(P118); + glNormal3fv(N098); + glVertex3fv(P098); + glNormal3fv(N102); + glVertex3fv(P102); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N102); + glVertex3fv(P102); + glNormal3fv(N098); + glVertex3fv(P098); + glNormal3fv(N121); + glVertex3fv(P121); + glEnd(); +} + +void +Dolphin015(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N055); + glVertex3fv(P055); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N054); + glVertex3fv(P054); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N055); + glVertex3fv(P055); + glNormal3fv(N063); + glVertex3fv(P063); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N100); + glVertex3fv(P100); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N054); + glVertex3fv(P054); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N054); + glVertex3fv(P054); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N062); + glVertex3fv(P062); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N064); + glVertex3fv(P064); + glNormal3fv(N120); + glVertex3fv(P120); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N064); + glVertex3fv(P064); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N064); + glVertex3fv(P064); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N064); + glVertex3fv(P064); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N099); + glVertex3fv(P099); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N064); + glVertex3fv(P064); + glNormal3fv(N099); + glVertex3fv(P099); + glNormal3fv(N117); + glVertex3fv(P117); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N120); + glVertex3fv(P120); + glNormal3fv(N064); + glVertex3fv(P064); + glNormal3fv(N117); + glVertex3fv(P117); + glNormal3fv(N116); + glVertex3fv(P116); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N099); + glVertex3fv(P099); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N120); + glVertex3fv(P120); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N120); + glVertex3fv(P120); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N120); + glVertex3fv(P120); + glNormal3fv(N002); + glVertex3fv(P002); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N120); + glVertex3fv(P120); + glNormal3fv(N116); + glVertex3fv(P116); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N002); + glVertex3fv(P002); + glEnd(); +} + +void +Dolphin016(void) +{ + + glDisable(GL_DEPTH_TEST); + glBegin(GL_POLYGON); + glVertex3fv(P123); + glVertex3fv(P124); + glVertex3fv(P125); + glVertex3fv(P126); + glVertex3fv(P127); + glVertex3fv(P128); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P129); + glVertex3fv(P130); + glVertex3fv(P131); + glVertex3fv(P132); + glVertex3fv(P133); + glVertex3fv(P134); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P103); + glVertex3fv(P105); + glVertex3fv(P108); + glEnd(); + glEnable(GL_DEPTH_TEST); +} + +void +DrawDolphin(fishRec * fish) +{ + float seg0, seg1, seg2, seg3, seg4, seg5, seg6, seg7; + float pitch, thrash, chomp; + + fish->htail = (int) (fish->htail - (int) (10.0 * fish->v)) % 360; + + thrash = 70.0 * fish->v; + + seg0 = 1.0 * thrash * sin((fish->htail) * RRAD); + seg3 = 1.0 * thrash * sin((fish->htail) * RRAD); + seg1 = 2.0 * thrash * sin((fish->htail + 4.0) * RRAD); + seg2 = 3.0 * thrash * sin((fish->htail + 6.0) * RRAD); + seg4 = 4.0 * thrash * sin((fish->htail + 10.0) * RRAD); + seg5 = 4.5 * thrash * sin((fish->htail + 15.0) * RRAD); + seg6 = 5.0 * thrash * sin((fish->htail + 20.0) * RRAD); + seg7 = 6.0 * thrash * sin((fish->htail + 30.0) * RRAD); + + pitch = fish->v * sin((fish->htail + 180.0) * RRAD); + + if (fish->v > 2.0) { + chomp = -(fish->v - 2.0) * 200.0; + } + chomp = 100.0; + + P012[1] = iP012[1] + seg5; + P013[1] = iP013[1] + seg5; + P014[1] = iP014[1] + seg5; + P015[1] = iP015[1] + seg5; + P016[1] = iP016[1] + seg5; + P017[1] = iP017[1] + seg5; + P018[1] = iP018[1] + seg5; + P019[1] = iP019[1] + seg5; + + P020[1] = iP020[1] + seg4; + P021[1] = iP021[1] + seg4; + P022[1] = iP022[1] + seg4; + P023[1] = iP023[1] + seg4; + P024[1] = iP024[1] + seg4; + P025[1] = iP025[1] + seg4; + P026[1] = iP026[1] + seg4; + P027[1] = iP027[1] + seg4; + + P028[1] = iP028[1] + seg2; + P029[1] = iP029[1] + seg2; + P030[1] = iP030[1] + seg2; + P031[1] = iP031[1] + seg2; + P032[1] = iP032[1] + seg2; + P033[1] = iP033[1] + seg2; + P034[1] = iP034[1] + seg2; + P035[1] = iP035[1] + seg2; + + P036[1] = iP036[1] + seg1; + P037[1] = iP037[1] + seg1; + P038[1] = iP038[1] + seg1; + P039[1] = iP039[1] + seg1; + P040[1] = iP040[1] + seg1; + P041[1] = iP041[1] + seg1; + P042[1] = iP042[1] + seg1; + P043[1] = iP043[1] + seg1; + + P044[1] = iP044[1] + seg0; + P045[1] = iP045[1] + seg0; + P046[1] = iP046[1] + seg0; + P047[1] = iP047[1] + seg0; + P048[1] = iP048[1] + seg0; + P049[1] = iP049[1] + seg0; + P050[1] = iP050[1] + seg0; + P051[1] = iP051[1] + seg0; + + P009[1] = iP009[1] + seg6; + P010[1] = iP010[1] + seg6; + P075[1] = iP075[1] + seg6; + P076[1] = iP076[1] + seg6; + + P001[1] = iP001[1] + seg7; + P011[1] = iP011[1] + seg7; + P068[1] = iP068[1] + seg7; + P069[1] = iP069[1] + seg7; + P070[1] = iP070[1] + seg7; + P071[1] = iP071[1] + seg7; + P072[1] = iP072[1] + seg7; + P073[1] = iP073[1] + seg7; + P074[1] = iP074[1] + seg7; + + P091[1] = iP091[1] + seg3; + P092[1] = iP092[1] + seg3; + P093[1] = iP093[1] + seg3; + P094[1] = iP094[1] + seg3; + P095[1] = iP095[1] + seg3; + P122[1] = iP122[1] + seg3 * 1.5; + + P097[1] = iP097[1] + chomp; + P098[1] = iP098[1] + chomp; + P102[1] = iP102[1] + chomp; + P110[1] = iP110[1] + chomp; + P111[1] = iP111[1] + chomp; + P121[1] = iP121[1] + chomp; + P118[1] = iP118[1] + chomp; + P119[1] = iP119[1] + chomp; + + glPushMatrix(); + + glRotatef(pitch, 1.0, 0.0, 0.0); + + glTranslatef(0.0, 0.0, 7000.0); + + glRotatef(180.0, 0.0, 1.0, 0.0); + + glEnable(GL_CULL_FACE); + Dolphin014(); + Dolphin010(); + Dolphin009(); + Dolphin012(); + Dolphin013(); + Dolphin006(); + Dolphin002(); + Dolphin001(); + Dolphin003(); + Dolphin015(); + Dolphin004(); + Dolphin005(); + Dolphin007(); + Dolphin008(); + Dolphin011(); + Dolphin016(); + glDisable(GL_CULL_FACE); + + glPopMatrix(); +} diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/shark.c b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/shark.c new file mode 100644 index 000000000..9c847dbaf --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/shark.c @@ -0,0 +1,1308 @@ +/** + * (c) Copyright 1993, 1994, Silicon Graphics, Inc. + * ALL RIGHTS RESERVED + * Permission to use, copy, modify, and distribute this software for + * any purpose and without fee is hereby granted, provided that the above + * copyright notice appear in all copies and that both the copyright notice + * and this permission notice appear in supporting documentation, and that + * the name of Silicon Graphics, Inc. not be used in advertising + * or publicity pertaining to distribution of the software without specific, + * written prior permission. + * + * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS" + * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR + * FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON + * GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT, + * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY + * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, + * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF + * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC. HAS BEEN + * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE + * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE. + * + * US Government Users Restricted Rights + * Use, duplication, or disclosure by the Government is subject to + * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph + * (c)(1)(ii) of the Rights in Technical Data and Computer Software + * clause at DFARS 252.227-7013 and/or in similar or successor + * clauses in the FAR or the DOD or NASA FAR Supplement. + * Unpublished-- rights reserved under the copyright laws of the + * United States. Contractor/manufacturer is Silicon Graphics, + * Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311. + * + * OpenGL(TM) is a trademark of Silicon Graphics, Inc. + */ +#include +#include +#include "atlantis.h" +/* *INDENT-OFF* */ +static float N002[3] = {0.000077 ,-0.020611 ,0.999788}; +static float N003[3] = {0.961425 ,0.258729 ,-0.093390}; +static float N004[3] = {0.510811 ,-0.769633 ,-0.383063}; +static float N005[3] = {0.400123 ,0.855734 ,-0.328055}; +static float N006[3] = {-0.770715 ,0.610204 ,-0.183440}; +static float N007[3] = {-0.915597 ,-0.373345 ,-0.149316}; +static float N008[3] = {-0.972788 ,0.208921 ,-0.100179}; +static float N009[3] = {-0.939713 ,-0.312268 ,-0.139383}; +static float N010[3] = {-0.624138 ,-0.741047 ,-0.247589}; +static float N011[3] = {0.591434 ,-0.768401 ,-0.244471}; +static float N012[3] = {0.935152 ,-0.328495 ,-0.132598}; +static float N013[3] = {0.997102 ,0.074243 ,-0.016593}; +static float N014[3] = {0.969995 ,0.241712 ,-0.026186}; +static float N015[3] = {0.844539 ,0.502628 ,-0.184714}; +static float N016[3] = {-0.906608 ,0.386308 ,-0.169787}; +static float N017[3] = {-0.970016 ,0.241698 ,-0.025516}; +static float N018[3] = {-0.998652 ,0.050493 ,-0.012045}; +static float N019[3] = {-0.942685 ,-0.333051 ,-0.020556}; +static float N020[3] = {-0.660944 ,-0.750276 ,0.015480}; +static float N021[3] = {0.503549 ,-0.862908 ,-0.042749}; +static float N022[3] = {0.953202 ,-0.302092 ,-0.012089}; +static float N023[3] = {0.998738 ,0.023574 ,0.044344}; +static float N024[3] = {0.979297 ,0.193272 ,0.060202}; +static float N025[3] = {0.798300 ,0.464885 ,0.382883}; +static float N026[3] = {-0.756590 ,0.452403 ,0.472126}; +static float N027[3] = {-0.953855 ,0.293003 ,0.065651}; +static float N028[3] = {-0.998033 ,0.040292 ,0.048028}; +static float N029[3] = {-0.977079 ,-0.204288 ,0.059858}; +static float N030[3] = {-0.729117 ,-0.675304 ,0.111140}; +static float N031[3] = {0.598361 ,-0.792753 ,0.116221}; +static float N032[3] = {0.965192 ,-0.252991 ,0.066332}; +static float N033[3] = {0.998201 ,-0.002790 ,0.059892}; +static float N034[3] = {0.978657 ,0.193135 ,0.070207}; +static float N035[3] = {0.718815 ,0.680392 ,0.142733}; +static float N036[3] = {-0.383096 ,0.906212 ,0.178936}; +static float N037[3] = {-0.952831 ,0.292590 ,0.080647}; +static float N038[3] = {-0.997680 ,0.032417 ,0.059861}; +static float N039[3] = {-0.982629 ,-0.169881 ,0.074700}; +static float N040[3] = {-0.695424 ,-0.703466 ,0.146700}; +static float N041[3] = {0.359323 ,-0.915531 ,0.180805}; +static float N042[3] = {0.943356 ,-0.319387 ,0.089842}; +static float N043[3] = {0.998272 ,-0.032435 ,0.048993}; +static float N044[3] = {0.978997 ,0.193205 ,0.065084}; +static float N045[3] = {0.872144 ,0.470094 ,-0.135565}; +static float N046[3] = {-0.664282 ,0.737945 ,-0.119027}; +static float N047[3] = {-0.954508 ,0.288570 ,0.075107}; +static float N048[3] = {-0.998273 ,0.032406 ,0.048993}; +static float N049[3] = {-0.979908 ,-0.193579 ,0.048038}; +static float N050[3] = {-0.858736 ,-0.507202 ,-0.072938}; +static float N051[3] = {0.643545 ,-0.763887 ,-0.048237}; +static float N052[3] = {0.955580 ,-0.288954 ,0.058068}; +static float N058[3] = {0.000050 ,0.793007 ,-0.609213}; +static float N059[3] = {0.913510 ,0.235418 ,-0.331779}; +static float N060[3] = {-0.807970 ,0.495000 ,-0.319625}; +static float N061[3] = {0.000000 ,0.784687 ,-0.619892}; +static float N062[3] = {0.000000 ,-1.000000 ,0.000000}; +static float N063[3] = {0.000000 ,1.000000 ,0.000000}; +static float N064[3] = {0.000000 ,1.000000 ,0.000000}; +static float N065[3] = {0.000000 ,1.000000 ,0.000000}; +static float N066[3] = {-0.055784 ,0.257059 ,0.964784}; +static float N069[3] = {-0.000505 ,-0.929775 ,-0.368127}; +static float N070[3] = {0.000000 ,1.000000 ,0.000000}; +static float P002[3] = {0.00, -36.59, 5687.72}; +static float P003[3] = {90.00, 114.73, 724.38}; +static float P004[3] = {58.24, -146.84, 262.35}; +static float P005[3] = {27.81, 231.52, 510.43}; +static float P006[3] = {-27.81, 230.43, 509.76}; +static float P007[3] = {-46.09, -146.83, 265.84}; +static float P008[3] = {-90.00, 103.84, 718.53}; +static float P009[3] = {-131.10, -165.92, 834.85}; +static float P010[3] = {-27.81, -285.31, 500.00}; +static float P011[3] = {27.81, -285.32, 500.00}; +static float P012[3] = {147.96, -170.89, 845.50}; +static float P013[3] = {180.00, 0.00, 2000.00}; +static float P014[3] = {145.62, 352.67, 2000.00}; +static float P015[3] = {55.62, 570.63, 2000.00}; +static float P016[3] = {-55.62, 570.64, 2000.00}; +static float P017[3] = {-145.62, 352.68, 2000.00}; +static float P018[3] = {-180.00, 0.01, 2000.00}; +static float P019[3] = {-178.20, -352.66, 2001.61}; +static float P020[3] = {-55.63, -570.63, 2000.00}; +static float P021[3] = {55.62, -570.64, 2000.00}; +static float P022[3] = {179.91, -352.69, 1998.39}; +static float P023[3] = {150.00, 0.00, 3000.00}; +static float P024[3] = {121.35, 293.89, 3000.00}; +static float P025[3] = {46.35, 502.93, 2883.09}; +static float P026[3] = {-46.35, 497.45, 2877.24}; +static float P027[3] = {-121.35, 293.90, 3000.00}; +static float P028[3] = {-150.00, 0.00, 3000.00}; +static float P029[3] = {-152.21, -304.84, 2858.68}; +static float P030[3] = {-46.36, -475.52, 3000.00}; +static float P031[3] = {46.35, -475.53, 3000.00}; +static float P032[3] = {155.64, -304.87, 2863.50}; +static float P033[3] = {90.00, 0.00, 4000.00}; +static float P034[3] = {72.81, 176.33, 4000.00}; +static float P035[3] = {27.81, 285.32, 4000.00}; +static float P036[3] = {-27.81, 285.32, 4000.00}; +static float P037[3] = {-72.81, 176.34, 4000.00}; +static float P038[3] = {-90.00, 0.00, 4000.00}; +static float P039[3] = {-72.81, -176.33, 4000.00}; +static float P040[3] = {-27.81, -285.31, 4000.00}; +static float P041[3] = {27.81, -285.32, 4000.00}; +static float P042[3] = {72.81, -176.34, 4000.00}; +static float P043[3] = {30.00, 0.00, 5000.00}; +static float P044[3] = {24.27, 58.78, 5000.00}; +static float P045[3] = {9.27, 95.11, 5000.00}; +static float P046[3] = {-9.27, 95.11, 5000.00}; +static float P047[3] = {-24.27, 58.78, 5000.00}; +static float P048[3] = {-30.00, 0.00, 5000.00}; +static float P049[3] = {-24.27, -58.78, 5000.00}; +static float P050[3] = {-9.27, -95.10, 5000.00}; +static float P051[3] = {9.27, -95.11, 5000.00}; +static float P052[3] = {24.27, -58.78, 5000.00}; +static float P058[3] = {0.00, 1212.72, 2703.08}; +static float P059[3] = {50.36, 0.00, 108.14}; +static float P060[3] = {-22.18, 0.00, 108.14}; +static float P061[3] = {0.00, 1181.61, 6344.65}; +static float P062[3] = {516.45, -887.08, 2535.45}; +static float P063[3] = {-545.69, -879.31, 2555.63}; +static float P064[3] = {618.89, -1005.64, 2988.32}; +static float P065[3] = {-635.37, -1014.79, 2938.68}; +static float P066[3] = {0.00, 1374.43, 3064.18}; +static float P069[3] = {0.00, -418.25, 5765.04}; +static float P070[3] = {0.00, 1266.91, 6629.60}; +static float P071[3] = {-139.12, -124.96, 997.98}; +static float P072[3] = {-139.24, -110.18, 1020.68}; +static float P073[3] = {-137.33, -94.52, 1022.63}; +static float P074[3] = {-137.03, -79.91, 996.89}; +static float P075[3] = {-135.21, -91.48, 969.14}; +static float P076[3] = {-135.39, -110.87, 968.76}; +static float P077[3] = {150.23, -78.44, 995.53}; +static float P078[3] = {152.79, -92.76, 1018.46}; +static float P079[3] = {154.19, -110.20, 1020.55}; +static float P080[3] = {151.33, -124.15, 993.77}; +static float P081[3] = {150.49, -111.19, 969.86}; +static float P082[3] = {150.79, -92.41, 969.70}; +static float iP002[3] = {0.00, -36.59, 5687.72}; +static float iP004[3] = {58.24, -146.84, 262.35}; +static float iP007[3] = {-46.09, -146.83, 265.84}; +static float iP010[3] = {-27.81, -285.31, 500.00}; +static float iP011[3] = {27.81, -285.32, 500.00}; +static float iP023[3] = {150.00, 0.00, 3000.00}; +static float iP024[3] = {121.35, 293.89, 3000.00}; +static float iP025[3] = {46.35, 502.93, 2883.09}; +static float iP026[3] = {-46.35, 497.45, 2877.24}; +static float iP027[3] = {-121.35, 293.90, 3000.00}; +static float iP028[3] = {-150.00, 0.00, 3000.00}; +static float iP029[3] = {-121.35, -304.84, 2853.86}; +static float iP030[3] = {-46.36, -475.52, 3000.00}; +static float iP031[3] = {46.35, -475.53, 3000.00}; +static float iP032[3] = {121.35, -304.87, 2853.86}; +static float iP033[3] = {90.00, 0.00, 4000.00}; +static float iP034[3] = {72.81, 176.33, 4000.00}; +static float iP035[3] = {27.81, 285.32, 4000.00}; +static float iP036[3] = {-27.81, 285.32, 4000.00}; +static float iP037[3] = {-72.81, 176.34, 4000.00}; +static float iP038[3] = {-90.00, 0.00, 4000.00}; +static float iP039[3] = {-72.81, -176.33, 4000.00}; +static float iP040[3] = {-27.81, -285.31, 4000.00}; +static float iP041[3] = {27.81, -285.32, 4000.00}; +static float iP042[3] = {72.81, -176.34, 4000.00}; +static float iP043[3] = {30.00, 0.00, 5000.00}; +static float iP044[3] = {24.27, 58.78, 5000.00}; +static float iP045[3] = {9.27, 95.11, 5000.00}; +static float iP046[3] = {-9.27, 95.11, 5000.00}; +static float iP047[3] = {-24.27, 58.78, 5000.00}; +static float iP048[3] = {-30.00, 0.00, 5000.00}; +static float iP049[3] = {-24.27, -58.78, 5000.00}; +static float iP050[3] = {-9.27, -95.10, 5000.00}; +static float iP051[3] = {9.27, -95.11, 5000.00}; +static float iP052[3] = {24.27, -58.78, 5000.00}; +static float iP061[3] = {0.00, 1181.61, 6344.65}; +static float iP069[3] = {0.00, -418.25, 5765.04}; +static float iP070[3] = {0.00, 1266.91, 6629.60}; +/* *INDENT-ON* */ + +void +Fish001(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N006); + glVertex3fv(P006); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N016); + glVertex3fv(P016); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N008); + glVertex3fv(P008); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N008); + glVertex3fv(P008); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N008); + glVertex3fv(P008); + glNormal3fv(N017); + glVertex3fv(P017); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N008); + glVertex3fv(P008); + glNormal3fv(N018); + glVertex3fv(P018); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N008); + glVertex3fv(P008); + glNormal3fv(N009); + glVertex3fv(P009); + glNormal3fv(N018); + glVertex3fv(P018); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N008); + glVertex3fv(P008); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N009); + glVertex3fv(P009); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N007); + glVertex3fv(P007); + glNormal3fv(N010); + glVertex3fv(P010); + glNormal3fv(N009); + glVertex3fv(P009); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N009); + glVertex3fv(P009); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N018); + glVertex3fv(P018); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N009); + glVertex3fv(P009); + glNormal3fv(N010); + glVertex3fv(P010); + glNormal3fv(N019); + glVertex3fv(P019); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N010); + glVertex3fv(P010); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N019); + glVertex3fv(P019); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N010); + glVertex3fv(P010); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N020); + glVertex3fv(P020); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N004); + glVertex3fv(P004); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N010); + glVertex3fv(P010); + glNormal3fv(N007); + glVertex3fv(P007); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N004); + glVertex3fv(P004); + glNormal3fv(N012); + glVertex3fv(P012); + glNormal3fv(N011); + glVertex3fv(P011); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N012); + glVertex3fv(P012); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N011); + glVertex3fv(P011); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N021); + glVertex3fv(P021); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N015); + glVertex3fv(P015); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N003); + glVertex3fv(P003); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N059); + glVertex3fv(P059); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N003); + glVertex3fv(P003); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N012); + glVertex3fv(P012); + glNormal3fv(N059); + glVertex3fv(P059); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N012); + glVertex3fv(P012); + glNormal3fv(N003); + glVertex3fv(P003); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N012); + glVertex3fv(P012); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P071); + glVertex3fv(P072); + glVertex3fv(P073); + glVertex3fv(P074); + glVertex3fv(P075); + glVertex3fv(P076); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P077); + glVertex3fv(P078); + glVertex3fv(P079); + glVertex3fv(P080); + glVertex3fv(P081); + glVertex3fv(P082); + glEnd(); +} + +void +Fish002(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N023); + glVertex3fv(P023); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N024); + glVertex3fv(P024); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N026); + glVertex3fv(P026); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N027); + glVertex3fv(P027); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N030); + glVertex3fv(P030); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N022); + glVertex3fv(P022); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N032); + glVertex3fv(P032); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N031); + glVertex3fv(P031); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N021); + glVertex3fv(P021); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N028); + glVertex3fv(P028); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N030); + glVertex3fv(P030); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); +} + +void +Fish003(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N042); + glVertex3fv(P042); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N041); + glVertex3fv(P041); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N034); + glVertex3fv(P034); + glNormal3fv(N033); + glVertex3fv(P033); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N034); + glVertex3fv(P034); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N040); + glVertex3fv(P040); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N035); + glVertex3fv(P035); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N036); + glVertex3fv(P036); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N037); + glVertex3fv(P037); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N038); + glVertex3fv(P038); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N039); + glVertex3fv(P039); + glEnd(); +} + +void +Fish004(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N050); + glVertex3fv(P050); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N052); + glVertex3fv(P052); + glNormal3fv(N051); + glVertex3fv(P051); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N043); + glVertex3fv(P043); + glNormal3fv(N052); + glVertex3fv(P052); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N034); + glVertex3fv(P034); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N043); + glVertex3fv(P043); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N034); + glVertex3fv(P034); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N045); + glVertex3fv(P045); + glNormal3fv(N044); + glVertex3fv(P044); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N045); + glVertex3fv(P045); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N046); + glVertex3fv(P046); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N047); + glVertex3fv(P047); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N048); + glVertex3fv(P048); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N049); + glVertex3fv(P049); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N070); + glVertex3fv(P070); + glNormal3fv(N061); + glVertex3fv(P061); + glNormal3fv(N002); + glVertex3fv(P002); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N061); + glVertex3fv(P061); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N002); + glVertex3fv(P002); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N045); + glVertex3fv(P045); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N061); + glVertex3fv(P061); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N061); + glVertex3fv(P061); + glNormal3fv(N070); + glVertex3fv(P070); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N045); + glVertex3fv(P045); + glNormal3fv(N061); + glVertex3fv(P061); + glEnd(); +} + +void +Fish005(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N045); + glVertex3fv(P045); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N043); + glVertex3fv(P043); + glNormal3fv(N044); + glVertex3fv(P044); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N052); + glVertex3fv(P052); + glNormal3fv(N043); + glVertex3fv(P043); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N052); + glVertex3fv(P052); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N047); + glVertex3fv(P047); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N048); + glVertex3fv(P048); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N049); + glVertex3fv(P049); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N050); + glVertex3fv(P050); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N069); + glVertex3fv(P069); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N069); + glVertex3fv(P069); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N069); + glVertex3fv(P069); + glNormal3fv(N002); + glVertex3fv(P002); + glEnd(); +} + +void +Fish006(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N026); + glVertex3fv(P026); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N025); + glVertex3fv(P025); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N026); + glVertex3fv(P026); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N016); + glVertex3fv(P016); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N066); + glVertex3fv(P066); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N016); + glVertex3fv(P016); + glEnd(); +} + +void +Fish007(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N032); + glVertex3fv(P032); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N064); + glVertex3fv(P064); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N032); + glVertex3fv(P032); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N064); + glVertex3fv(P064); + glNormal3fv(N032); + glVertex3fv(P032); + glEnd(); +} + +void +Fish008(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N065); + glVertex3fv(P065); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); +} + +void +Fish009(void) +{ + glBegin(GL_POLYGON); + glVertex3fv(P059); + glVertex3fv(P012); + glVertex3fv(P009); + glVertex3fv(P060); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P012); + glVertex3fv(P004); + glVertex3fv(P007); + glVertex3fv(P009); + glEnd(); +} + +void +Fish_1(void) +{ + Fish004(); + Fish005(); + Fish003(); + Fish007(); + Fish006(); + Fish002(); + Fish008(); + Fish009(); + Fish001(); +} + +void +Fish_2(void) +{ + Fish005(); + Fish004(); + Fish003(); + Fish008(); + Fish006(); + Fish002(); + Fish007(); + Fish009(); + Fish001(); +} + +void +Fish_3(void) +{ + Fish005(); + Fish004(); + Fish007(); + Fish003(); + Fish002(); + Fish008(); + Fish009(); + Fish001(); + Fish006(); +} + +void +Fish_4(void) +{ + Fish005(); + Fish004(); + Fish008(); + Fish003(); + Fish002(); + Fish007(); + Fish009(); + Fish001(); + Fish006(); +} + +void +Fish_5(void) +{ + Fish009(); + Fish006(); + Fish007(); + Fish001(); + Fish002(); + Fish003(); + Fish008(); + Fish004(); + Fish005(); +} + +void +Fish_6(void) +{ + Fish009(); + Fish006(); + Fish008(); + Fish001(); + Fish002(); + Fish007(); + Fish003(); + Fish004(); + Fish005(); +} + +void +Fish_7(void) +{ + Fish009(); + Fish001(); + Fish007(); + Fish005(); + Fish002(); + Fish008(); + Fish003(); + Fish004(); + Fish006(); +} + +void +Fish_8(void) +{ + Fish009(); + Fish008(); + Fish001(); + Fish002(); + Fish007(); + Fish003(); + Fish005(); + Fish004(); + Fish006(); +} + +void +DrawShark(fishRec * fish) +{ + float mat[4][4]; + int n; + float seg1, seg2, seg3, seg4, segup; + float thrash, chomp; + + fish->htail = (int) (fish->htail - (int) (5.0 * fish->v)) % 360; + + thrash = 50.0 * fish->v; + + seg1 = 0.6 * thrash * sin(fish->htail * RRAD); + seg2 = 1.8 * thrash * sin((fish->htail + 45.0) * RRAD); + seg3 = 3.0 * thrash * sin((fish->htail + 90.0) * RRAD); + seg4 = 4.0 * thrash * sin((fish->htail + 110.0) * RRAD); + + chomp = 0.0; + if (fish->v > 2.0) { + chomp = -(fish->v - 2.0) * 200.0; + } + P004[1] = iP004[1] + chomp; + P007[1] = iP007[1] + chomp; + P010[1] = iP010[1] + chomp; + P011[1] = iP011[1] + chomp; + + P023[0] = iP023[0] + seg1; + P024[0] = iP024[0] + seg1; + P025[0] = iP025[0] + seg1; + P026[0] = iP026[0] + seg1; + P027[0] = iP027[0] + seg1; + P028[0] = iP028[0] + seg1; + P029[0] = iP029[0] + seg1; + P030[0] = iP030[0] + seg1; + P031[0] = iP031[0] + seg1; + P032[0] = iP032[0] + seg1; + P033[0] = iP033[0] + seg2; + P034[0] = iP034[0] + seg2; + P035[0] = iP035[0] + seg2; + P036[0] = iP036[0] + seg2; + P037[0] = iP037[0] + seg2; + P038[0] = iP038[0] + seg2; + P039[0] = iP039[0] + seg2; + P040[0] = iP040[0] + seg2; + P041[0] = iP041[0] + seg2; + P042[0] = iP042[0] + seg2; + P043[0] = iP043[0] + seg3; + P044[0] = iP044[0] + seg3; + P045[0] = iP045[0] + seg3; + P046[0] = iP046[0] + seg3; + P047[0] = iP047[0] + seg3; + P048[0] = iP048[0] + seg3; + P049[0] = iP049[0] + seg3; + P050[0] = iP050[0] + seg3; + P051[0] = iP051[0] + seg3; + P052[0] = iP052[0] + seg3; + P002[0] = iP002[0] + seg4; + P061[0] = iP061[0] + seg4; + P069[0] = iP069[0] + seg4; + P070[0] = iP070[0] + seg4; + + fish->vtail += ((fish->dtheta - fish->vtail) * 0.1); + + if (fish->vtail > 0.5) { + fish->vtail = 0.5; + } else if (fish->vtail < -0.5) { + fish->vtail = -0.5; + } + segup = thrash * fish->vtail; + + P023[1] = iP023[1] + segup; + P024[1] = iP024[1] + segup; + P025[1] = iP025[1] + segup; + P026[1] = iP026[1] + segup; + P027[1] = iP027[1] + segup; + P028[1] = iP028[1] + segup; + P029[1] = iP029[1] + segup; + P030[1] = iP030[1] + segup; + P031[1] = iP031[1] + segup; + P032[1] = iP032[1] + segup; + P033[1] = iP033[1] + segup * 5.0; + P034[1] = iP034[1] + segup * 5.0; + P035[1] = iP035[1] + segup * 5.0; + P036[1] = iP036[1] + segup * 5.0; + P037[1] = iP037[1] + segup * 5.0; + P038[1] = iP038[1] + segup * 5.0; + P039[1] = iP039[1] + segup * 5.0; + P040[1] = iP040[1] + segup * 5.0; + P041[1] = iP041[1] + segup * 5.0; + P042[1] = iP042[1] + segup * 5.0; + P043[1] = iP043[1] + segup * 12.0; + P044[1] = iP044[1] + segup * 12.0; + P045[1] = iP045[1] + segup * 12.0; + P046[1] = iP046[1] + segup * 12.0; + P047[1] = iP047[1] + segup * 12.0; + P048[1] = iP048[1] + segup * 12.0; + P049[1] = iP049[1] + segup * 12.0; + P050[1] = iP050[1] + segup * 12.0; + P051[1] = iP051[1] + segup * 12.0; + P052[1] = iP052[1] + segup * 12.0; + P002[1] = iP002[1] + segup * 17.0; + P061[1] = iP061[1] + segup * 17.0; + P069[1] = iP069[1] + segup * 17.0; + P070[1] = iP070[1] + segup * 17.0; + + glPushMatrix(); + + glTranslatef(0.0, 0.0, -3000.0); + + glGetFloatv(GL_MODELVIEW_MATRIX, &mat[0][0]); + n = 0; + if (mat[0][2] >= 0.0) { + n += 1; + } + if (mat[1][2] >= 0.0) { + n += 2; + } + if (mat[2][2] >= 0.0) { + n += 4; + } + glScalef(2.0, 1.0, 1.0); + + glEnable(GL_CULL_FACE); + switch (n) { + case 0: + Fish_1(); + break; + case 1: + Fish_2(); + break; + case 2: + Fish_3(); + break; + case 3: + Fish_4(); + break; + case 4: + Fish_5(); + break; + case 5: + Fish_6(); + break; + case 6: + Fish_7(); + break; + case 7: + Fish_8(); + break; + } + glDisable(GL_CULL_FACE); + + glPopMatrix(); +} diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/swim.c b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/swim.c new file mode 100644 index 000000000..cac7b6095 --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/swim.c @@ -0,0 +1,188 @@ +/** + * (c) Copyright 1993, 1994, Silicon Graphics, Inc. + * ALL RIGHTS RESERVED + * Permission to use, copy, modify, and distribute this software for + * any purpose and without fee is hereby granted, provided that the above + * copyright notice appear in all copies and that both the copyright notice + * and this permission notice appear in supporting documentation, and that + * the name of Silicon Graphics, Inc. not be used in advertising + * or publicity pertaining to distribution of the software without specific, + * written prior permission. + * + * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS" + * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR + * FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON + * GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT, + * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY + * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, + * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF + * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC. HAS BEEN + * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE + * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE. + * + * US Government Users Restricted Rights + * Use, duplication, or disclosure by the Government is subject to + * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph + * (c)(1)(ii) of the Rights in Technical Data and Computer Software + * clause at DFARS 252.227-7013 and/or in similar or successor + * clauses in the FAR or the DOD or NASA FAR Supplement. + * Unpublished-- rights reserved under the copyright laws of the + * United States. Contractor/manufacturer is Silicon Graphics, + * Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311. + * + * OpenGL(TM) is a trademark of Silicon Graphics, Inc. + */ +#include +#include /* For rand(). */ +#include +#include "atlantis.h" + +void +FishTransform(fishRec * fish) +{ + + glTranslatef(fish->y, fish->z, -fish->x); + glRotatef(-fish->psi, 0.0, 1.0, 0.0); + glRotatef(fish->theta, 1.0, 0.0, 0.0); + glRotatef(-fish->phi, 0.0, 0.0, 1.0); +} + +void +WhalePilot(fishRec * fish) +{ + + fish->phi = -20.0; + fish->theta = 0.0; + fish->psi -= 0.5; + + fish->x += WHALESPEED * fish->v * cos(fish->psi / RAD) * cos(fish->theta / RAD); + fish->y += WHALESPEED * fish->v * sin(fish->psi / RAD) * cos(fish->theta / RAD); + fish->z += WHALESPEED * fish->v * sin(fish->theta / RAD); +} + +void +SharkPilot(fishRec * fish) +{ + static int sign = 1; + float X, Y, Z, tpsi, ttheta, thetal; + + fish->xt = 60000.0; + fish->yt = 0.0; + fish->zt = 0.0; + + X = fish->xt - fish->x; + Y = fish->yt - fish->y; + Z = fish->zt - fish->z; + + thetal = fish->theta; + + ttheta = RAD * atan(Z / (sqrt(X * X + Y * Y))); + + if (ttheta > fish->theta + 0.25) { + fish->theta += 0.5; + } else if (ttheta < fish->theta - 0.25) { + fish->theta -= 0.5; + } + if (fish->theta > 90.0) { + fish->theta = 90.0; + } + if (fish->theta < -90.0) { + fish->theta = -90.0; + } + fish->dtheta = fish->theta - thetal; + + tpsi = RAD * atan2(Y, X); + + fish->attack = 0; + + if (fabs(tpsi - fish->psi) < 10.0) { + fish->attack = 1; + } else if (fabs(tpsi - fish->psi) < 45.0) { + if (fish->psi > tpsi) { + fish->psi -= 0.5; + if (fish->psi < -180.0) { + fish->psi += 360.0; + } + } else if (fish->psi < tpsi) { + fish->psi += 0.5; + if (fish->psi > 180.0) { + fish->psi -= 360.0; + } + } + } else { + if (rand() % 100 > 98) { + sign = 1 - sign; + } + fish->psi += sign; + if (fish->psi > 180.0) { + fish->psi -= 360.0; + } + if (fish->psi < -180.0) { + fish->psi += 360.0; + } + } + + if (fish->attack) { + if (fish->v < 1.1) { + fish->spurt = 1; + } + if (fish->spurt) { + fish->v += 0.2; + } + if (fish->v > 5.0) { + fish->spurt = 0; + } + if ((fish->v > 1.0) && (!fish->spurt)) { + fish->v -= 0.2; + } + } else { + if (!(rand() % 400) && (!fish->spurt)) { + fish->spurt = 1; + } + if (fish->spurt) { + fish->v += 0.05; + } + if (fish->v > 3.0) { + fish->spurt = 0; + } + if ((fish->v > 1.0) && (!fish->spurt)) { + fish->v -= 0.05; + } + } + + fish->x += SHARKSPEED * fish->v * cos(fish->psi / RAD) * cos(fish->theta / RAD); + fish->y += SHARKSPEED * fish->v * sin(fish->psi / RAD) * cos(fish->theta / RAD); + fish->z += SHARKSPEED * fish->v * sin(fish->theta / RAD); +} + +void +SharkMiss(int i) +{ + int j; + float avoid, thetal; + float X, Y, Z, R; + + for (j = 0; j < NUM_SHARKS; j++) { + if (j != i) { + X = sharks[j].x - sharks[i].x; + Y = sharks[j].y - sharks[i].y; + Z = sharks[j].z - sharks[i].z; + + R = sqrt(X * X + Y * Y + Z * Z); + + avoid = 1.0; + thetal = sharks[i].theta; + + if (R < SHARKSIZE) { + if (Z > 0.0) { + sharks[i].theta -= avoid; + } else { + sharks[i].theta += avoid; + } + } + sharks[i].dtheta += (sharks[i].theta - thetal); + } + } +} diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/whale.c b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/whale.c new file mode 100644 index 000000000..828640ad0 --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/whale.c @@ -0,0 +1,1798 @@ +/** + * (c) Copyright 1993, 1994, Silicon Graphics, Inc. + * ALL RIGHTS RESERVED + * Permission to use, copy, modify, and distribute this software for + * any purpose and without fee is hereby granted, provided that the above + * copyright notice appear in all copies and that both the copyright notice + * and this permission notice appear in supporting documentation, and that + * the name of Silicon Graphics, Inc. not be used in advertising + * or publicity pertaining to distribution of the software without specific, + * written prior permission. + * + * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS" + * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR + * FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON + * GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT, + * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY + * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, + * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF + * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC. HAS BEEN + * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE + * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE. + * + * US Government Users Restricted Rights + * Use, duplication, or disclosure by the Government is subject to + * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph + * (c)(1)(ii) of the Rights in Technical Data and Computer Software + * clause at DFARS 252.227-7013 and/or in similar or successor + * clauses in the FAR or the DOD or NASA FAR Supplement. + * Unpublished-- rights reserved under the copyright laws of the + * United States. Contractor/manufacturer is Silicon Graphics, + * Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311. + * + * OpenGL(TM) is a trademark of Silicon Graphics, Inc. + */ +#include +#include +#include "atlantis.h" +/* *INDENT-OFF* */ +static float N001[3] = {0.019249 ,0.011340 ,-0.999750}; +static float N002[3] = {-0.132579 ,0.954547 ,0.266952}; +static float N003[3] = {-0.196061 ,0.980392 ,-0.019778}; +static float N004[3] = {0.695461 ,0.604704 ,0.388158}; +static float N005[3] = {0.870600 ,0.425754 ,0.246557}; +static float N006[3] = {-0.881191 ,0.392012 ,0.264251}; +static float N008[3] = {-0.341437 ,0.887477 ,0.309523}; +static float N009[3] = {0.124035 ,-0.992278 ,0.000000}; +static float N010[3] = {0.242536 ,0.000000 ,-0.970143}; +static float N011[3] = {0.588172 ,0.000000 ,0.808736}; +static float N012[3] = {0.929824 ,-0.340623 ,-0.139298}; +static float N013[3] = {0.954183 ,0.267108 ,-0.134865}; +static float N014[3] = {0.495127 ,0.855436 ,-0.151914}; +static float N015[3] = {-0.390199 ,0.906569 ,-0.160867}; +static float N016[3] = {-0.923605 ,0.354581 ,-0.145692}; +static float N017[3] = {-0.955796 ,-0.260667 ,-0.136036}; +static float N018[3] = {-0.501283 ,-0.853462 ,-0.142540}; +static float N019[3] = {0.405300 ,-0.901974 ,-0.148913}; +static float N020[3] = {0.909913 ,-0.392746 ,-0.133451}; +static float N021[3] = {0.936494 ,0.331147 ,-0.115414}; +static float N022[3] = {0.600131 ,0.793724 ,-0.099222}; +static float N023[3] = {-0.231556 ,0.968361 ,-0.093053}; +static float N024[3] = {-0.844369 ,0.525330 ,-0.105211}; +static float N025[3] = {-0.982725 ,-0.136329 ,-0.125164}; +static float N026[3] = {-0.560844 ,-0.822654 ,-0.093241}; +static float N027[3] = {0.263884 ,-0.959981 ,-0.093817}; +static float N028[3] = {0.842057 ,-0.525192 ,-0.122938}; +static float N029[3] = {0.921620 ,0.367565 ,-0.124546}; +static float N030[3] = {0.613927 ,0.784109 ,-0.090918}; +static float N031[3] = {-0.448754 ,0.888261 ,-0.098037}; +static float N032[3] = {-0.891865 ,0.434376 ,-0.126077}; +static float N033[3] = {-0.881447 ,-0.448017 ,-0.149437}; +static float N034[3] = {-0.345647 ,-0.922057 ,-0.174183}; +static float N035[3] = {0.307998 ,-0.941371 ,-0.137688}; +static float N036[3] = {0.806316 ,-0.574647 ,-0.140124}; +static float N037[3] = {0.961346 ,0.233646 ,-0.145681}; +static float N038[3] = {0.488451 ,0.865586 ,-0.110351}; +static float N039[3] = {-0.374290 ,0.921953 ,-0.099553}; +static float N040[3] = {-0.928504 ,0.344533 ,-0.138485}; +static float N041[3] = {-0.918419 ,-0.371792 ,-0.135189}; +static float N042[3] = {-0.520666 ,-0.833704 ,-0.183968}; +static float N043[3] = {0.339204 ,-0.920273 ,-0.195036}; +static float N044[3] = {0.921475 ,-0.387382 ,-0.028636}; +static float N045[3] = {0.842465 ,0.533335 ,-0.076204}; +static float N046[3] = {0.380110 ,0.924939 ,0.002073}; +static float N047[3] = {-0.276128 ,0.961073 ,-0.009579}; +static float N048[3] = {-0.879684 ,0.473001 ,-0.049250}; +static float N049[3] = {-0.947184 ,-0.317614 ,-0.044321}; +static float N050[3] = {-0.642059 ,-0.764933 ,-0.051363}; +static float N051[3] = {0.466794 ,-0.880921 ,-0.077990}; +static float N052[3] = {0.898509 ,-0.432277 ,0.076279}; +static float N053[3] = {0.938985 ,0.328141 ,0.103109}; +static float N054[3] = {0.442420 ,0.895745 ,0.043647}; +static float N055[3] = {-0.255163 ,0.966723 ,0.018407}; +static float N056[3] = {-0.833769 ,0.540650 ,0.111924}; +static float N057[3] = {-0.953653 ,-0.289939 ,0.080507}; +static float N058[3] = {-0.672357 ,-0.730524 ,0.119461}; +static float N059[3] = {0.522249 ,-0.846652 ,0.102157}; +static float N060[3] = {0.885868 ,-0.427631 ,0.179914}; +static float N062[3] = {0.648942 ,0.743116 ,0.163255}; +static float N063[3] = {-0.578967 ,0.807730 ,0.111219}; +static float N065[3] = {-0.909864 ,-0.352202 ,0.219321}; +static float N066[3] = {-0.502541 ,-0.818090 ,0.279610}; +static float N067[3] = {0.322919 ,-0.915358 ,0.240504}; +static float N068[3] = {0.242536 ,0.000000 ,-0.970143}; +static float N069[3] = {0.000000 ,1.000000 ,0.000000}; +static float N070[3] = {0.000000 ,1.000000 ,0.000000}; +static float N071[3] = {0.000000 ,1.000000 ,0.000000}; +static float N072[3] = {0.000000 ,1.000000 ,0.000000}; +static float N073[3] = {0.000000 ,1.000000 ,0.000000}; +static float N074[3] = {0.000000 ,1.000000 ,0.000000}; +static float N075[3] = {0.031220 ,0.999025 ,-0.031220}; +static float N076[3] = {0.000000 ,1.000000 ,0.000000}; +static float N077[3] = {0.446821 ,0.893642 ,0.041889}; +static float N078[3] = {0.863035 ,-0.100980 ,0.494949}; +static float N079[3] = {0.585597 ,-0.808215 ,0.062174}; +static float N080[3] = {0.000000 ,1.000000 ,0.000000}; +static float N081[3] = {1.000000 ,0.000000 ,0.000000}; +static float N082[3] = {0.000000 ,1.000000 ,0.000000}; +static float N083[3] = {-1.000000 ,0.000000 ,0.000000}; +static float N084[3] = {-0.478893 ,0.837129 ,-0.264343}; +static float N085[3] = {0.000000 ,1.000000 ,0.000000}; +static float N086[3] = {0.763909 ,0.539455 ,-0.354163}; +static float N087[3] = {0.446821 ,0.893642 ,0.041889}; +static float N088[3] = {0.385134 ,-0.908288 ,0.163352}; +static float N089[3] = {-0.605952 ,0.779253 ,-0.159961}; +static float N090[3] = {0.000000 ,1.000000 ,0.000000}; +static float N091[3] = {0.000000 ,1.000000 ,0.000000}; +static float N092[3] = {0.000000 ,1.000000 ,0.000000}; +static float N093[3] = {0.000000 ,1.000000 ,0.000000}; +static float N094[3] = {1.000000 ,0.000000 ,0.000000}; +static float N095[3] = {-1.000000 ,0.000000 ,0.000000}; +static float N096[3] = {0.644444 ,-0.621516 ,0.445433}; +static float N097[3] = {-0.760896 ,-0.474416 ,0.442681}; +static float N098[3] = {0.636888 ,-0.464314 ,0.615456}; +static float N099[3] = {-0.710295 ,0.647038 ,0.277168}; +static float N100[3] = {0.009604 ,0.993655 ,0.112063}; +static float iP001[3] = {18.74, 13.19, 3.76}; +static float P001[3] = {18.74, 13.19, 3.76}; +static float P002[3] = {0.00, 390.42, 10292.57}; +static float P003[3] = {55.80, 622.31, 8254.35}; +static float P004[3] = {20.80, 247.66, 10652.13}; +static float P005[3] = {487.51, 198.05, 9350.78}; +static float P006[3] = {-457.61, 199.04, 9353.01}; +static float P008[3] = {-34.67, 247.64, 10663.71}; +static float iP009[3] = {97.46, 67.63, 593.82}; +static float iP010[3] = {-84.33, 67.63, 588.18}; +static float iP011[3] = {118.69, 8.98, -66.91}; +static float P009[3] = {97.46, 67.63, 593.82}; +static float P010[3] = {-84.33, 67.63, 588.18}; +static float P011[3] = {118.69, 8.98, -66.91}; +static float iP012[3] = {156.48, -31.95, 924.54}; +static float iP013[3] = {162.00, 110.22, 924.54}; +static float iP014[3] = {88.16, 221.65, 924.54}; +static float iP015[3] = {-65.21, 231.16, 924.54}; +static float iP016[3] = {-156.48, 121.97, 924.54}; +static float iP017[3] = {-162.00, -23.93, 924.54}; +static float iP018[3] = {-88.16, -139.10, 924.54}; +static float iP019[3] = {65.21, -148.61, 924.54}; +static float iP020[3] = {246.87, -98.73, 1783.04}; +static float iP021[3] = {253.17, 127.76, 1783.04}; +static float iP022[3] = {132.34, 270.77, 1783.04}; +static float iP023[3] = {-97.88, 285.04, 1783.04}; +static float iP024[3] = {-222.97, 139.80, 1783.04}; +static float iP025[3] = {-225.29, -86.68, 1783.04}; +static float iP026[3] = {-108.44, -224.15, 1783.04}; +static float iP027[3] = {97.88, -221.56, 1783.04}; +static float iP028[3] = {410.55, -200.66, 3213.87}; +static float iP029[3] = {432.19, 148.42, 3213.87}; +static float iP030[3] = {200.66, 410.55, 3213.87}; +static float iP031[3] = {-148.42, 432.19, 3213.87}; +static float iP032[3] = {-407.48, 171.88, 3213.87}; +static float iP033[3] = {-432.19, -148.42, 3213.87}; +static float iP034[3] = {-148.88, -309.74, 3213.87}; +static float iP035[3] = {156.38, -320.17, 3213.87}; +static float iP036[3] = {523.39, -303.81, 4424.57}; +static float iP037[3] = {574.66, 276.84, 4424.57}; +static float iP038[3] = {243.05, 492.50, 4424.57}; +static float iP039[3] = {-191.23, 520.13, 4424.57}; +static float iP040[3] = {-523.39, 304.01, 4424.57}; +static float iP041[3] = {-574.66, -231.83, 4424.57}; +static float iP042[3] = {-266.95, -578.17, 4424.57}; +static float iP043[3] = {211.14, -579.67, 4424.57}; +static float iP044[3] = {680.57, -370.27, 5943.46}; +static float iP045[3] = {834.01, 363.09, 5943.46}; +static float iP046[3] = {371.29, 614.13, 5943.46}; +static float iP047[3] = {-291.43, 621.86, 5943.46}; +static float iP048[3] = {-784.13, 362.60, 5943.46}; +static float iP049[3] = {-743.29, -325.82, 5943.46}; +static float iP050[3] = {-383.24, -804.77, 5943.46}; +static float iP051[3] = {283.47, -846.09, 5943.46}; +static float P012[3] = {156.48, -31.95, 924.54}; +static float P013[3] = {162.00, 110.22, 924.54}; +static float P014[3] = {88.16, 221.65, 924.54}; +static float P015[3] = {-65.21, 231.16, 924.54}; +static float P016[3] = {-156.48, 121.97, 924.54}; +static float P017[3] = {-162.00, -23.93, 924.54}; +static float P018[3] = {-88.16, -139.10, 924.54}; +static float P019[3] = {65.21, -148.61, 924.54}; +static float P020[3] = {246.87, -98.73, 1783.04}; +static float P021[3] = {253.17, 127.76, 1783.04}; +static float P022[3] = {132.34, 270.77, 1783.04}; +static float P023[3] = {-97.88, 285.04, 1783.04}; +static float P024[3] = {-222.97, 139.80, 1783.04}; +static float P025[3] = {-225.29, -86.68, 1783.04}; +static float P026[3] = {-108.44, -224.15, 1783.04}; +static float P027[3] = {97.88, -221.56, 1783.04}; +static float P028[3] = {410.55, -200.66, 3213.87}; +static float P029[3] = {432.19, 148.42, 3213.87}; +static float P030[3] = {200.66, 410.55, 3213.87}; +static float P031[3] = {-148.42, 432.19, 3213.87}; +static float P032[3] = {-407.48, 171.88, 3213.87}; +static float P033[3] = {-432.19, -148.42, 3213.87}; +static float P034[3] = {-148.88, -309.74, 3213.87}; +static float P035[3] = {156.38, -320.17, 3213.87}; +static float P036[3] = {523.39, -303.81, 4424.57}; +static float P037[3] = {574.66, 276.84, 4424.57}; +static float P038[3] = {243.05, 492.50, 4424.57}; +static float P039[3] = {-191.23, 520.13, 4424.57}; +static float P040[3] = {-523.39, 304.01, 4424.57}; +static float P041[3] = {-574.66, -231.83, 4424.57}; +static float P042[3] = {-266.95, -578.17, 4424.57}; +static float P043[3] = {211.14, -579.67, 4424.57}; +static float P044[3] = {680.57, -370.27, 5943.46}; +static float P045[3] = {834.01, 363.09, 5943.46}; +static float P046[3] = {371.29, 614.13, 5943.46}; +static float P047[3] = {-291.43, 621.86, 5943.46}; +static float P048[3] = {-784.13, 362.60, 5943.46}; +static float P049[3] = {-743.29, -325.82, 5943.46}; +static float P050[3] = {-383.24, -804.77, 5943.46}; +static float P051[3] = {283.47, -846.09, 5943.46}; +static float P052[3] = {599.09, -332.24, 7902.59}; +static float P053[3] = {735.48, 306.26, 7911.92}; +static float P054[3] = {321.55, 558.53, 7902.59}; +static float P055[3] = {-260.54, 559.84, 7902.59}; +static float P056[3] = {-698.66, 320.83, 7902.59}; +static float P057[3] = {-643.29, -299.16, 7902.59}; +static float P058[3] = {-341.47, -719.30, 7902.59}; +static float P059[3] = {252.57, -756.12, 7902.59}; +static float P060[3] = {458.39, -265.31, 9355.44}; +static float P062[3] = {224.04, 438.98, 9364.77}; +static float P063[3] = {-165.71, 441.27, 9355.44}; +static float P065[3] = {-473.99, -219.71, 9355.44}; +static float P066[3] = {-211.97, -479.87, 9355.44}; +static float P067[3] = {192.86, -504.03, 9355.44}; +static float iP068[3] = {-112.44, 9.25, -64.42}; +static float iP069[3] = {1155.63, 0.00, -182.46}; +static float iP070[3] = {-1143.13, 0.00, -181.54}; +static float iP071[3] = {1424.23, 0.00, -322.09}; +static float iP072[3] = {-1368.01, 0.00, -310.38}; +static float iP073[3] = {1255.57, 2.31, 114.05}; +static float iP074[3] = {-1149.38, 0.00, 117.12}; +static float iP075[3] = {718.36, 0.00, 433.36}; +static float iP076[3] = {-655.90, 0.00, 433.36}; +static float P068[3] = {-112.44, 9.25, -64.42}; +static float P069[3] = {1155.63, 0.00, -182.46}; +static float P070[3] = {-1143.13, 0.00, -181.54}; +static float P071[3] = {1424.23, 0.00, -322.09}; +static float P072[3] = {-1368.01, 0.00, -310.38}; +static float P073[3] = {1255.57, 2.31, 114.05}; +static float P074[3] = {-1149.38, 0.00, 117.12}; +static float P075[3] = {718.36, 0.00, 433.36}; +static float P076[3] = {-655.90, 0.00, 433.36}; +static float P077[3] = {1058.00, -2.66, 7923.51}; +static float P078[3] = {-1016.51, -15.47, 7902.87}; +static float P079[3] = {-1363.99, -484.50, 7593.38}; +static float P080[3] = {1478.09, -861.47, 7098.12}; +static float P081[3] = {1338.06, -284.68, 7024.15}; +static float P082[3] = {-1545.51, -860.64, 7106.60}; +static float P083[3] = {1063.19, -70.46, 7466.60}; +static float P084[3] = {-1369.18, -288.11, 7015.34}; +static float P085[3] = {1348.44, -482.50, 7591.41}; +static float P086[3] = {-1015.45, -96.80, 7474.86}; +static float P087[3] = {731.04, 148.38, 7682.58}; +static float P088[3] = {-697.03, 151.82, 7668.81}; +static float P089[3] = {-686.82, 157.09, 7922.29}; +static float P090[3] = {724.73, 147.75, 7931.39}; +static float iP091[3] = {0.00, 327.10, 2346.55}; +static float iP092[3] = {0.00, 552.28, 2311.31}; +static float iP093[3] = {0.00, 721.16, 2166.41}; +static float iP094[3] = {0.00, 693.42, 2388.80}; +static float iP095[3] = {0.00, 389.44, 2859.97}; +static float P091[3] = {0.00, 327.10, 2346.55}; +static float P092[3] = {0.00, 552.28, 2311.31}; +static float P093[3] = {0.00, 721.16, 2166.41}; +static float P094[3] = {0.00, 693.42, 2388.80}; +static float P095[3] = {0.00, 389.44, 2859.97}; +static float iP096[3] = {222.02, -183.67, 10266.89}; +static float iP097[3] = {-128.90, -182.70, 10266.89}; +static float iP098[3] = {41.04, 88.31, 10659.36}; +static float iP099[3] = {-48.73, 88.30, 10659.36}; +static float P096[3] = {222.02, -183.67, 10266.89}; +static float P097[3] = {-128.90, -182.70, 10266.89}; +static float P098[3] = {41.04, 88.31, 10659.36}; +static float P099[3] = {-48.73, 88.30, 10659.36}; +static float P100[3] = {0.00, 603.42, 9340.68}; +static float P104[3] = {-9.86, 567.62, 7858.65}; +static float P105[3] = {31.96, 565.27, 7908.46}; +static float P106[3] = {22.75, 568.13, 7782.83}; +static float P107[3] = {58.93, 568.42, 7775.94}; +static float P108[3] = {55.91, 565.59, 7905.86}; +static float P109[3] = {99.21, 566.00, 7858.65}; +static float P110[3] = {-498.83, 148.14, 9135.10}; +static float P111[3] = {-495.46, 133.24, 9158.48}; +static float P112[3] = {-490.82, 146.23, 9182.76}; +static float P113[3] = {-489.55, 174.11, 9183.66}; +static float P114[3] = {-492.92, 189.00, 9160.28}; +static float P115[3] = {-497.56, 176.02, 9136.00}; +static float P116[3] = {526.54, 169.68, 9137.70}; +static float P117[3] = {523.49, 184.85, 9161.42}; +static float P118[3] = {518.56, 171.78, 9186.06}; +static float P119[3] = {516.68, 143.53, 9186.98}; +static float P120[3] = {519.73, 128.36, 9163.26}; +static float P121[3] = {524.66, 141.43, 9138.62}; +/* *INDENT-ON* */ + +void +Whale001(void) +{ + + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N068); + glVertex3fv(P068); + glNormal3fv(N010); + glVertex3fv(P010); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N068); + glVertex3fv(P068); + glNormal3fv(N076); + glVertex3fv(P076); + glNormal3fv(N010); + glVertex3fv(P010); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N068); + glVertex3fv(P068); + glNormal3fv(N070); + glVertex3fv(P070); + glNormal3fv(N076); + glVertex3fv(P076); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N076); + glVertex3fv(P076); + glNormal3fv(N070); + glVertex3fv(P070); + glNormal3fv(N074); + glVertex3fv(P074); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N070); + glVertex3fv(P070); + glNormal3fv(N072); + glVertex3fv(P072); + glNormal3fv(N074); + glVertex3fv(P074); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N072); + glVertex3fv(P072); + glNormal3fv(N070); + glVertex3fv(P070); + glNormal3fv(N074); + glVertex3fv(P074); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N074); + glVertex3fv(P074); + glNormal3fv(N070); + glVertex3fv(P070); + glNormal3fv(N076); + glVertex3fv(P076); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N070); + glVertex3fv(P070); + glNormal3fv(N068); + glVertex3fv(P068); + glNormal3fv(N076); + glVertex3fv(P076); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N076); + glVertex3fv(P076); + glNormal3fv(N068); + glVertex3fv(P068); + glNormal3fv(N010); + glVertex3fv(P010); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N068); + glVertex3fv(P068); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N010); + glVertex3fv(P010); + glEnd(); +} + +void +Whale002(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N009); + glVertex3fv(P009); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N075); + glVertex3fv(P075); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N009); + glVertex3fv(P009); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N069); + glVertex3fv(P069); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N075); + glVertex3fv(P075); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N069); + glVertex3fv(P069); + glNormal3fv(N075); + glVertex3fv(P075); + glNormal3fv(N073); + glVertex3fv(P073); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N071); + glVertex3fv(P071); + glNormal3fv(N069); + glVertex3fv(P069); + glNormal3fv(N073); + glVertex3fv(P073); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N009); + glVertex3fv(P009); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N009); + glVertex3fv(P009); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N075); + glVertex3fv(P075); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N069); + glVertex3fv(P069); + glNormal3fv(N075); + glVertex3fv(P075); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N069); + glVertex3fv(P069); + glNormal3fv(N073); + glVertex3fv(P073); + glNormal3fv(N075); + glVertex3fv(P075); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N069); + glVertex3fv(P069); + glNormal3fv(N071); + glVertex3fv(P071); + glNormal3fv(N073); + glVertex3fv(P073); + glEnd(); +} + +void +Whale003(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N019); + glVertex3fv(P019); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N012); + glVertex3fv(P012); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N018); + glVertex3fv(P018); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N016); + glVertex3fv(P016); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N012); + glVertex3fv(P012); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N015); + glVertex3fv(P015); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N013); + glVertex3fv(P013); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N014); + glVertex3fv(P014); + glEnd(); +} + +void +Whale004(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N022); + glVertex3fv(P022); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N023); + glVertex3fv(P023); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N024); + glVertex3fv(P024); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N025); + glVertex3fv(P025); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N021); + glVertex3fv(P021); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N012); + glVertex3fv(P012); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N020); + glVertex3fv(P020); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N026); + glVertex3fv(P026); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N012); + glVertex3fv(P012); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N027); + glVertex3fv(P027); + glEnd(); +} + +void +Whale005(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N030); + glVertex3fv(P030); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N030); + glVertex3fv(P030); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N031); + glVertex3fv(P031); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N031); + glVertex3fv(P031); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N032); + glVertex3fv(P032); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N032); + glVertex3fv(P032); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N028); + glVertex3fv(P028); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N028); + glVertex3fv(P028); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N035); + glVertex3fv(P035); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N033); + glVertex3fv(P033); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N034); + glVertex3fv(P034); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N034); + glVertex3fv(P034); + glEnd(); +} + +void +Whale006(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N092); + glVertex3fv(P092); + glNormal3fv(N093); + glVertex3fv(P093); + glNormal3fv(N094); + glVertex3fv(P094); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N093); + glVertex3fv(P093); + glNormal3fv(N092); + glVertex3fv(P092); + glNormal3fv(N094); + glVertex3fv(P094); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N092); + glVertex3fv(P092); + glNormal3fv(N091); + glVertex3fv(P091); + glNormal3fv(N095); + glVertex3fv(P095); + glNormal3fv(N094); + glVertex3fv(P094); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N091); + glVertex3fv(P091); + glNormal3fv(N092); + glVertex3fv(P092); + glNormal3fv(N094); + glVertex3fv(P094); + glNormal3fv(N095); + glVertex3fv(P095); + glEnd(); +} + +void +Whale007(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N038); + glVertex3fv(P038); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N038); + glVertex3fv(P038); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N037); + glVertex3fv(P037); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N037); + glVertex3fv(P037); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N036); + glVertex3fv(P036); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N036); + glVertex3fv(P036); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N043); + glVertex3fv(P043); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N034); + glVertex3fv(P034); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N043); + glVertex3fv(P043); + glNormal3fv(N042); + glVertex3fv(P042); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N034); + glVertex3fv(P034); + glNormal3fv(N042); + glVertex3fv(P042); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N041); + glVertex3fv(P041); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N039); + glVertex3fv(P039); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N040); + glVertex3fv(P040); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N040); + glVertex3fv(P040); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N041); + glVertex3fv(P041); + glEnd(); +} + +void +Whale008(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N043); + glVertex3fv(P043); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N050); + glVertex3fv(P050); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N043); + glVertex3fv(P043); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N051); + glVertex3fv(P051); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N044); + glVertex3fv(P044); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N050); + glVertex3fv(P050); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N049); + glVertex3fv(P049); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N044); + glVertex3fv(P044); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N045); + glVertex3fv(P045); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N049); + glVertex3fv(P049); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N048); + glVertex3fv(P048); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N048); + glVertex3fv(P048); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N047); + glVertex3fv(P047); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N045); + glVertex3fv(P045); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N045); + glVertex3fv(P045); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N046); + glVertex3fv(P046); + glEnd(); +} + +void +Whale009(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N058); + glVertex3fv(P058); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N059); + glVertex3fv(P059); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N052); + glVertex3fv(P052); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N045); + glVertex3fv(P045); + glNormal3fv(N053); + glVertex3fv(P053); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N053); + glVertex3fv(P053); + glNormal3fv(N052); + glVertex3fv(P052); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N058); + glVertex3fv(P058); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N057); + glVertex3fv(P057); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N057); + glVertex3fv(P057); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N057); + glVertex3fv(P057); + glNormal3fv(N056); + glVertex3fv(P056); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N056); + glVertex3fv(P056); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N055); + glVertex3fv(P055); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N045); + glVertex3fv(P045); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N053); + glVertex3fv(P053); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N054); + glVertex3fv(P054); + glNormal3fv(N053); + glVertex3fv(P053); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N055); + glVertex3fv(P055); + glNormal3fv(N054); + glVertex3fv(P054); + glEnd(); +} + +void +Whale010(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N080); + glVertex3fv(P080); + glNormal3fv(N081); + glVertex3fv(P081); + glNormal3fv(N085); + glVertex3fv(P085); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N081); + glVertex3fv(P081); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N085); + glVertex3fv(P085); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N085); + glVertex3fv(P085); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N077); + glVertex3fv(P077); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N087); + glVertex3fv(P087); + glNormal3fv(N077); + glVertex3fv(P077); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N077); + glVertex3fv(P077); + glNormal3fv(N087); + glVertex3fv(P087); + glNormal3fv(N090); + glVertex3fv(P090); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N081); + glVertex3fv(P081); + glNormal3fv(N080); + glVertex3fv(P080); + glNormal3fv(N085); + glVertex3fv(P085); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N081); + glVertex3fv(P081); + glNormal3fv(N085); + glVertex3fv(P085); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N085); + glVertex3fv(P085); + glNormal3fv(N077); + glVertex3fv(P077); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N087); + glVertex3fv(P087); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N077); + glVertex3fv(P077); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N087); + glVertex3fv(P087); + glNormal3fv(N077); + glVertex3fv(P077); + glNormal3fv(N090); + glVertex3fv(P090); + glEnd(); +} + +void +Whale011(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N082); + glVertex3fv(P082); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N079); + glVertex3fv(P079); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N079); + glVertex3fv(P079); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N079); + glVertex3fv(P079); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N078); + glVertex3fv(P078); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N088); + glVertex3fv(P088); + glNormal3fv(N078); + glVertex3fv(P078); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N078); + glVertex3fv(P078); + glNormal3fv(N088); + glVertex3fv(P088); + glNormal3fv(N089); + glVertex3fv(P089); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N088); + glVertex3fv(P088); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N089); + glVertex3fv(P089); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N089); + glVertex3fv(P089); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N078); + glVertex3fv(P078); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N078); + glVertex3fv(P078); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N078); + glVertex3fv(P078); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N079); + glVertex3fv(P079); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N082); + glVertex3fv(P082); + glNormal3fv(N079); + glVertex3fv(P079); + glEnd(); +} + +void +Whale012(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N067); + glVertex3fv(P067); + glNormal3fv(N066); + glVertex3fv(P066); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N052); + glVertex3fv(P052); + glNormal3fv(N060); + glVertex3fv(P060); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N067); + glVertex3fv(P067); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N065); + glVertex3fv(P065); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N057); + glVertex3fv(P057); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N057); + glVertex3fv(P057); + glNormal3fv(N065); + glVertex3fv(P065); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N006); + glVertex3fv(P006); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N063); + glVertex3fv(P063); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N055); + glVertex3fv(P055); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N054); + glVertex3fv(P054); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N005); + glVertex3fv(P005); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N054); + glVertex3fv(P054); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N053); + glVertex3fv(P053); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N053); + glVertex3fv(P053); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N060); + glVertex3fv(P060); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N053); + glVertex3fv(P053); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N052); + glVertex3fv(P052); + glEnd(); +} + +void +Whale013(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N067); + glVertex3fv(P067); + glNormal3fv(N096); + glVertex3fv(P096); + glNormal3fv(N097); + glVertex3fv(P097); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N097); + glVertex3fv(P097); + glNormal3fv(N096); + glVertex3fv(P096); + glNormal3fv(N098); + glVertex3fv(P098); + glNormal3fv(N099); + glVertex3fv(P099); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N097); + glVertex3fv(P097); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N067); + glVertex3fv(P067); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N096); + glVertex3fv(P096); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N096); + glVertex3fv(P096); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N096); + glVertex3fv(P096); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N098); + glVertex3fv(P098); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N097); + glVertex3fv(P097); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N097); + glVertex3fv(P097); + glNormal3fv(N099); + glVertex3fv(P099); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P005); + glVertex3fv(P006); + glVertex3fv(P099); + glVertex3fv(P098); + glEnd(); +} + +void +Whale014(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N004); + glVertex3fv(P004); + glNormal3fv(N005); + glVertex3fv(P005); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P006); + glVertex3fv(P005); + glVertex3fv(P004); + glVertex3fv(P008); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N002); + glVertex3fv(P002); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N008); + glVertex3fv(P008); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N008); + glVertex3fv(P008); + glNormal3fv(N004); + glVertex3fv(P004); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N004); + glVertex3fv(P004); + glEnd(); +} + +void +Whale015(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N055); + glVertex3fv(P055); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N054); + glVertex3fv(P054); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N055); + glVertex3fv(P055); + glNormal3fv(N063); + glVertex3fv(P063); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N100); + glVertex3fv(P100); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N054); + glVertex3fv(P054); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N054); + glVertex3fv(P054); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N062); + glVertex3fv(P062); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N002); + glVertex3fv(P002); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N062); + glVertex3fv(P062); + glEnd(); +} + +void +Whale016(void) +{ + glBegin(GL_POLYGON); + glVertex3fv(P104); + glVertex3fv(P105); + glVertex3fv(P106); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P107); + glVertex3fv(P108); + glVertex3fv(P109); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P110); + glVertex3fv(P111); + glVertex3fv(P112); + glVertex3fv(P113); + glVertex3fv(P114); + glVertex3fv(P115); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P116); + glVertex3fv(P117); + glVertex3fv(P118); + glVertex3fv(P119); + glVertex3fv(P120); + glVertex3fv(P121); + glEnd(); +} + +void +DrawWhale(fishRec * fish) +{ + float seg0, seg1, seg2, seg3, seg4, seg5, seg6, seg7; + float pitch, thrash, chomp; + + fish->htail = (int) (fish->htail - (int) (5.0 * fish->v)) % 360; + + thrash = 70.0 * fish->v; + + seg0 = 1.5 * thrash * sin((fish->htail) * RRAD); + seg1 = 2.5 * thrash * sin((fish->htail + 10.0) * RRAD); + seg2 = 3.7 * thrash * sin((fish->htail + 15.0) * RRAD); + seg3 = 4.8 * thrash * sin((fish->htail + 23.0) * RRAD); + seg4 = 6.0 * thrash * sin((fish->htail + 28.0) * RRAD); + seg5 = 6.5 * thrash * sin((fish->htail + 35.0) * RRAD); + seg6 = 6.5 * thrash * sin((fish->htail + 40.0) * RRAD); + seg7 = 6.5 * thrash * sin((fish->htail + 55.0) * RRAD); + + pitch = fish->v * sin((fish->htail - 160.0) * RRAD); + + chomp = 0.0; + if (fish->v > 2.0) { + chomp = -(fish->v - 2.0) * 200.0; + } + P012[1] = iP012[1] + seg5; + P013[1] = iP013[1] + seg5; + P014[1] = iP014[1] + seg5; + P015[1] = iP015[1] + seg5; + P016[1] = iP016[1] + seg5; + P017[1] = iP017[1] + seg5; + P018[1] = iP018[1] + seg5; + P019[1] = iP019[1] + seg5; + + P020[1] = iP020[1] + seg4; + P021[1] = iP021[1] + seg4; + P022[1] = iP022[1] + seg4; + P023[1] = iP023[1] + seg4; + P024[1] = iP024[1] + seg4; + P025[1] = iP025[1] + seg4; + P026[1] = iP026[1] + seg4; + P027[1] = iP027[1] + seg4; + + P028[1] = iP028[1] + seg2; + P029[1] = iP029[1] + seg2; + P030[1] = iP030[1] + seg2; + P031[1] = iP031[1] + seg2; + P032[1] = iP032[1] + seg2; + P033[1] = iP033[1] + seg2; + P034[1] = iP034[1] + seg2; + P035[1] = iP035[1] + seg2; + + P036[1] = iP036[1] + seg1; + P037[1] = iP037[1] + seg1; + P038[1] = iP038[1] + seg1; + P039[1] = iP039[1] + seg1; + P040[1] = iP040[1] + seg1; + P041[1] = iP041[1] + seg1; + P042[1] = iP042[1] + seg1; + P043[1] = iP043[1] + seg1; + + P044[1] = iP044[1] + seg0; + P045[1] = iP045[1] + seg0; + P046[1] = iP046[1] + seg0; + P047[1] = iP047[1] + seg0; + P048[1] = iP048[1] + seg0; + P049[1] = iP049[1] + seg0; + P050[1] = iP050[1] + seg0; + P051[1] = iP051[1] + seg0; + + P009[1] = iP009[1] + seg6; + P010[1] = iP010[1] + seg6; + P075[1] = iP075[1] + seg6; + P076[1] = iP076[1] + seg6; + + P001[1] = iP001[1] + seg7; + P011[1] = iP011[1] + seg7; + P068[1] = iP068[1] + seg7; + P069[1] = iP069[1] + seg7; + P070[1] = iP070[1] + seg7; + P071[1] = iP071[1] + seg7; + P072[1] = iP072[1] + seg7; + P073[1] = iP073[1] + seg7; + P074[1] = iP074[1] + seg7; + + P091[1] = iP091[1] + seg3 * 1.1; + P092[1] = iP092[1] + seg3; + P093[1] = iP093[1] + seg3; + P094[1] = iP094[1] + seg3; + P095[1] = iP095[1] + seg3 * 0.9; + + P099[1] = iP099[1] + chomp; + P098[1] = iP098[1] + chomp; + P097[1] = iP097[1] + chomp; + P096[1] = iP096[1] + chomp; + + glPushMatrix(); + + glRotatef(pitch, 1.0, 0.0, 0.0); + + glTranslatef(0.0, 0.0, 8000.0); + + glRotatef(180.0, 0.0, 1.0, 0.0); + + glScalef(3.0, 3.0, 3.0); + + glEnable(GL_CULL_FACE); + + Whale001(); + Whale002(); + Whale003(); + Whale004(); + Whale005(); + Whale006(); + Whale007(); + Whale008(); + Whale009(); + Whale010(); + Whale011(); + Whale012(); + Whale013(); + Whale014(); + Whale015(); + Whale016(); + + glDisable(GL_CULL_FACE); + + glPopMatrix(); +} diff --git a/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/main.c b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/main.c new file mode 100644 index 000000000..b7794b3b6 --- /dev/null +++ b/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/main.c @@ -0,0 +1,179 @@ + +/* Simple program: Create a blank window, wait for keypress, quit. + + Please see the SDL documentation for details on using the SDL API: + /Developer/Documentation/SDL/docs.html +*/ + +#include +#include +#include +#include + +#include "SDL.h" + +extern void Atlantis_Init (); +extern void Atlantis_Reshape (int w, int h); +extern void Atlantis_Animate (); +extern void Atlantis_Display (); + +static SDL_Surface *gScreen; + +static void initAttributes () +{ + // Setup attributes we want for the OpenGL context + + int value; + + // Don't set color bit sizes (SDL_GL_RED_SIZE, etc) + // Mac OS X will always use 8-8-8-8 ARGB for 32-bit screens and + // 5-5-5 RGB for 16-bit screens + + // Request a 16-bit depth buffer (without this, there is no depth buffer) + value = 16; + SDL_GL_SetAttribute (SDL_GL_DEPTH_SIZE, value); + + + // Request double-buffered OpenGL + // The fact that windows are double-buffered on Mac OS X has no effect + // on OpenGL double buffering. + value = 1; + SDL_GL_SetAttribute (SDL_GL_DOUBLEBUFFER, value); +} + +static void printAttributes () +{ + // Print out attributes of the context we created + int nAttr; + int i; + + int attr[] = { SDL_GL_RED_SIZE, SDL_GL_BLUE_SIZE, SDL_GL_GREEN_SIZE, + SDL_GL_ALPHA_SIZE, SDL_GL_BUFFER_SIZE, SDL_GL_DEPTH_SIZE }; + + char *desc[] = { "Red size: %d bits\n", "Blue size: %d bits\n", "Green size: %d bits\n", + "Alpha size: %d bits\n", "Color buffer size: %d bits\n", + "Depth bufer size: %d bits\n" }; + + nAttr = sizeof(attr) / sizeof(int); + + for (i = 0; i < nAttr; i++) { + + int value; + SDL_GL_GetAttribute (attr[i], &value); + printf (desc[i], value); + } +} + +static void createSurface (int fullscreen) +{ + Uint32 flags = 0; + + flags = SDL_OPENGL; + if (fullscreen) + flags |= SDL_FULLSCREEN; + + // Create window + gScreen = SDL_SetVideoMode (640, 480, 0, flags); + if (gScreen == NULL) { + + fprintf (stderr, "Couldn't set 640x480 OpenGL video mode: %s\n", + SDL_GetError()); + SDL_Quit(); + exit(2); + } +} + +static void initGL () +{ + Atlantis_Init (); + Atlantis_Reshape (gScreen->w, gScreen->h); +} + +static void drawGL () +{ + Atlantis_Animate (); + Atlantis_Display (); +} + +static void mainLoop () +{ + SDL_Event event; + int done = 0; + int fps = 24; + int delay = 1000/fps; + int thenTicks = -1; + int nowTicks; + + while ( !done ) { + + /* Check for events */ + while ( SDL_PollEvent (&event) ) { + switch (event.type) { + + case SDL_MOUSEMOTION: + break; + case SDL_MOUSEBUTTONDOWN: + break; + case SDL_KEYDOWN: + /* Any keypress quits the app... */ + case SDL_QUIT: + done = 1; + break; + default: + break; + } + } + + // Draw at 24 hz + // This approach is not normally recommended - it is better to + // use time-based animation and run as fast as possible + drawGL (); + SDL_GL_SwapBuffers (); + + // Time how long each draw-swap-delay cycle takes + // and adjust delay to get closer to target framerate + if (thenTicks > 0) { + nowTicks = SDL_GetTicks (); + delay += (1000/fps - (nowTicks-thenTicks)); + thenTicks = nowTicks; + if (delay < 0) + delay = 1000/fps; + } + else { + thenTicks = SDL_GetTicks (); + } + + SDL_Delay (delay); + } +} + +int main(int argc, char *argv[]) +{ + // Init SDL video subsystem + if ( SDL_Init (SDL_INIT_VIDEO) < 0 ) { + + fprintf(stderr, "Couldn't initialize SDL: %s\n", + SDL_GetError()); + exit(1); + } + + // Set GL context attributes + initAttributes (); + + // Create GL context + createSurface (0); + + // Get GL context attributes + printAttributes (); + + // Init GL state + initGL (); + + // Draw, get events... + mainLoop (); + + // Cleanup + SDL_Quit(); + + return 0; +} diff --git a/Xcode/TemplatesForXcodeTiger/SDL Application/English.lproj/InfoPlist.strings b/Xcode/TemplatesForXcodeTiger/SDL Application/English.lproj/InfoPlist.strings new file mode 100755 index 000000000..e61245767 Binary files /dev/null and b/Xcode/TemplatesForXcodeTiger/SDL Application/English.lproj/InfoPlist.strings differ diff --git a/Xcode/TemplatesForXcodeTiger/SDL Application/Info.plist b/Xcode/TemplatesForXcodeTiger/SDL Application/Info.plist new file mode 100644 index 000000000..c678d1145 --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL Application/Info.plist @@ -0,0 +1,28 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIconFile + + CFBundleIdentifier + com.yourcompany.«PROJECTNAMEASXML» + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + APPL + CFBundleSignature + ???? + CFBundleVersion + 1.0 + NSMainNibFile + SDLMain + NSPrincipalClass + NSApplication + + diff --git a/Xcode/TemplatesForXcodeTiger/SDL Application/SDLApp.xcodeproj/TemplateInfo.plist b/Xcode/TemplatesForXcodeTiger/SDL Application/SDLApp.xcodeproj/TemplateInfo.plist new file mode 100644 index 000000000..d9ca45493 --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL Application/SDLApp.xcodeproj/TemplateInfo.plist @@ -0,0 +1,12 @@ +{ + FilesToRename = { + "SDLApp_Prefix.pch" = "ÇPROJECTNAMEÈ_Prefix.pch"; + }; + FilesToMacroExpand = ( + "ÇPROJECTNAMEÈ_Prefix.pch", + "Info.plist", + "English.lproj/InfoPlist.strings", + "main.c", + ); + Description = "This project builds an SDL-based application."; +} diff --git a/Xcode/TemplatesForXcodeTiger/SDL Application/SDLApp.xcodeproj/project.pbxproj b/Xcode/TemplatesForXcodeTiger/SDL Application/SDLApp.xcodeproj/project.pbxproj new file mode 100644 index 000000000..ccac45981 --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL Application/SDLApp.xcodeproj/project.pbxproj @@ -0,0 +1,324 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 42; + objects = { + +/* Begin PBXBuildFile section */ + 002F39FA09D0881F00EBEB88 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F39F909D0881F00EBEB88 /* SDL.framework */; }; + 002F3A0009D0884600EBEB88 /* SDL.framework in Copy Frameworks into .app bundle */ = {isa = PBXBuildFile; fileRef = 002F39F909D0881F00EBEB88 /* SDL.framework */; }; + 002F3A2E09D0888800EBEB88 /* SDLMain.m in Sources */ = {isa = PBXBuildFile; fileRef = 002F3A2C09D0888800EBEB88 /* SDLMain.m */; }; + 002F3A3F09D088BA00EBEB88 /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F3A3E09D088BA00EBEB88 /* main.c */; }; + 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; }; + 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXBuildStyle section */ + 4A9504CCFFE6A4B311CA0CBA /* Debug */ = { + isa = PBXBuildStyle; + buildSettings = { + }; + name = Debug; + }; + 4A9504CDFFE6A4B311CA0CBA /* Release */ = { + isa = PBXBuildStyle; + buildSettings = { + }; + name = Release; + }; +/* End PBXBuildStyle section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 002F39FD09D0883400EBEB88 /* Copy Frameworks into .app bundle */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + 002F3A0009D0884600EBEB88 /* SDL.framework in Copy Frameworks into .app bundle */, + ); + name = "Copy Frameworks into .app bundle"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 002F39F909D0881F00EBEB88 /* SDL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL.framework; path = /Library/Frameworks/SDL.framework; sourceTree = ""; }; + 002F3A2B09D0888800EBEB88 /* SDLMain.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDLMain.h; sourceTree = SOURCE_ROOT; }; + 002F3A2C09D0888800EBEB88 /* SDLMain.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = SDLMain.m; sourceTree = SOURCE_ROOT; }; + 002F3A3E09D088BA00EBEB88 /* main.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = main.c; sourceTree = SOURCE_ROOT; }; + 089C165DFE840E0CC02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = ""; }; + 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = ""; }; + 29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = ""; }; + 29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = ""; }; + 32CA4F630368D1EE00C91783 /* «PROJECTNAME»_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file; path = "«PROJECTNAME»_Prefix.pch"; sourceTree = ""; }; + 8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + 8D1107320486CEB800E47090 /* «PROJECTNAME».app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "«PROJECTNAME».app"; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 8D11072E0486CEB800E47090 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F39FA09D0881F00EBEB88 /* SDL.framework in Frameworks */, + 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 080E96DDFE201D6D7F000001 /* Classes */ = { + isa = PBXGroup; + children = ( + 002F3A2B09D0888800EBEB88 /* SDLMain.h */, + 002F3A2C09D0888800EBEB88 /* SDLMain.m */, + ); + name = Classes; + sourceTree = ""; + }; + 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */ = { + isa = PBXGroup; + children = ( + 002F39F909D0881F00EBEB88 /* SDL.framework */, + 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */, + ); + name = "Linked Frameworks"; + sourceTree = ""; + }; + 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */ = { + isa = PBXGroup; + children = ( + 29B97324FDCFA39411CA2CEA /* AppKit.framework */, + 29B97325FDCFA39411CA2CEA /* Foundation.framework */, + ); + name = "Other Frameworks"; + sourceTree = ""; + }; + 19C28FACFE9D520D11CA2CBB /* Products */ = { + isa = PBXGroup; + children = ( + 8D1107320486CEB800E47090 /* «PROJECTNAME».app */, + ); + name = Products; + sourceTree = ""; + }; + 29B97314FDCFA39411CA2CEA /* «PROJECTNAMEASXML» */ = { + isa = PBXGroup; + children = ( + 080E96DDFE201D6D7F000001 /* Classes */, + 29B97315FDCFA39411CA2CEA /* Other Sources */, + 29B97317FDCFA39411CA2CEA /* Resources */, + 29B97323FDCFA39411CA2CEA /* Frameworks */, + 19C28FACFE9D520D11CA2CBB /* Products */, + ); + name = "«PROJECTNAMEASXML»"; + sourceTree = ""; + }; + 29B97315FDCFA39411CA2CEA /* Other Sources */ = { + isa = PBXGroup; + children = ( + 32CA4F630368D1EE00C91783 /* «PROJECTNAME»_Prefix.pch */, + 002F3A3E09D088BA00EBEB88 /* main.c */, + ); + name = "Other Sources"; + sourceTree = ""; + }; + 29B97317FDCFA39411CA2CEA /* Resources */ = { + isa = PBXGroup; + children = ( + 8D1107310486CEB800E47090 /* Info.plist */, + 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */, + ); + name = Resources; + sourceTree = ""; + }; + 29B97323FDCFA39411CA2CEA /* Frameworks */ = { + isa = PBXGroup; + children = ( + 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */, + 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */, + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 8D1107260486CEB800E47090 /* «PROJECTNAME» */ = { + isa = PBXNativeTarget; + buildConfigurationList = C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "«PROJECTNAME»" */; + buildPhases = ( + 8D1107290486CEB800E47090 /* Resources */, + 8D11072C0486CEB800E47090 /* Sources */, + 8D11072E0486CEB800E47090 /* Frameworks */, + 002F39FD09D0883400EBEB88 /* Copy Frameworks into .app bundle */, + ); + buildRules = ( + ); + buildSettings = { + }; + dependencies = ( + ); + name = "«PROJECTNAME»"; + productInstallPath = "$(HOME)/Applications"; + productName = "«PROJECTNAME»"; + productReference = 8D1107320486CEB800E47090 /* «PROJECTNAME».app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 29B97313FDCFA39411CA2CEA /* Project object */ = { + isa = PBXProject; + buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "SDLApp" */; + buildSettings = { + }; + buildStyles = ( + 4A9504CCFFE6A4B311CA0CBA /* Debug */, + 4A9504CDFFE6A4B311CA0CBA /* Release */, + ); + hasScannedForEncodings = 1; + mainGroup = 29B97314FDCFA39411CA2CEA /* «PROJECTNAMEASXML» */; + projectDirPath = ""; + targets = ( + 8D1107260486CEB800E47090 /* «PROJECTNAME» */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 8D1107290486CEB800E47090 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 8D11072C0486CEB800E47090 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F3A2E09D0888800EBEB88 /* SDLMain.m in Sources */, + 002F3A3F09D088BA00EBEB88 /* main.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXVariantGroup section */ + 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + 089C165DFE840E0CC02AAC07 /* English */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + C01FCF4B08A954540054247B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_FIX_AND_CONTINUE = YES; + GCC_MODEL_TUNING = G5; + GCC_OPTIMIZATION_LEVEL = 0; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(HOME)/Applications"; + PRODUCT_NAME = "«PROJECTNAME»"; + WRAPPER_EXTENSION = app; + ZERO_LINK = YES; + }; + name = Debug; + }; + C01FCF4C08A954540054247B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = ( + ppc, + i386, + ); + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + GCC_MODEL_TUNING = G5; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(HOME)/Applications"; + PRODUCT_NAME = "«PROJECTNAME»"; + WRAPPER_EXTENSION = app; + }; + name = Release; + }; + C01FCF4F08A954540054247B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks", + /Library/Frameworks, + "$(FRAMEWORK_SEARCH_PATHS)", + ); + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks/SDL.framework/Headers", + /Library/Frameworks/SDL.framework/Headers, + "$(HEADER_SEARCH_PATHS)", + ); + PREBINDING = NO; + SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; + }; + name = Debug; + }; + C01FCF5008A954540054247B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks", + /Library/Frameworks, + "$(FRAMEWORK_SEARCH_PATHS)", + ); + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks/SDL.framework/Headers", + /Library/Frameworks/SDL.framework/Headers, + "$(HEADER_SEARCH_PATHS)", + ); + PREBINDING = NO; + SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "«PROJECTNAME»" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01FCF4B08A954540054247B /* Debug */, + C01FCF4C08A954540054247B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + C01FCF4E08A954540054247B /* Build configuration list for PBXProject "SDLApp" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01FCF4F08A954540054247B /* Debug */, + C01FCF5008A954540054247B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 29B97313FDCFA39411CA2CEA /* Project object */; +} diff --git a/Xcode/TemplatesForXcodeTiger/SDL Application/SDLApp_Prefix.pch b/Xcode/TemplatesForXcodeTiger/SDL Application/SDLApp_Prefix.pch new file mode 100644 index 000000000..00095074a --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL Application/SDLApp_Prefix.pch @@ -0,0 +1,9 @@ +// +// Prefix header for all source files of the 'ÇPROJECTNAMEÈ' target in the 'ÇPROJECTNAMEÈ' project +// + +#include "SDL.h" + +#ifdef __OBJC__ + #import +#endif diff --git a/Xcode/TemplatesForXcodeTiger/SDL Application/SDLMain.h b/Xcode/TemplatesForXcodeTiger/SDL Application/SDLMain.h new file mode 100644 index 000000000..c56d90cbe --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL Application/SDLMain.h @@ -0,0 +1,16 @@ +/* SDLMain.m - main entry point for our Cocoa-ized SDL app + Initial Version: Darrell Walisser + Non-NIB-Code & other changes: Max Horn + + Feel free to customize this file to suit your needs +*/ + +#ifndef _SDLMain_h_ +#define _SDLMain_h_ + +#import + +@interface SDLMain : NSObject +@end + +#endif /* _SDLMain_h_ */ diff --git a/Xcode/TemplatesForXcodeTiger/SDL Application/SDLMain.m b/Xcode/TemplatesForXcodeTiger/SDL Application/SDLMain.m new file mode 100644 index 000000000..b065a2009 --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL Application/SDLMain.m @@ -0,0 +1,383 @@ +/* SDLMain.m - main entry point for our Cocoa-ized SDL app + Initial Version: Darrell Walisser + Non-NIB-Code & other changes: Max Horn + + Feel free to customize this file to suit your needs +*/ + +#include "SDL.h" +#include "SDLMain.h" +#include /* for MAXPATHLEN */ +#include + +/* For some reaon, Apple removed setAppleMenu from the headers in 10.4, + but the method still is there and works. To avoid warnings, we declare + it ourselves here. */ +@interface NSApplication(SDL_Missing_Methods) +- (void)setAppleMenu:(NSMenu *)menu; +@end + +/* Use this flag to determine whether we use SDLMain.nib or not */ +#define SDL_USE_NIB_FILE 0 + +/* Use this flag to determine whether we use CPS (docking) or not */ +#define SDL_USE_CPS 1 +#ifdef SDL_USE_CPS +/* Portions of CPS.h */ +typedef struct CPSProcessSerNum +{ + UInt32 lo; + UInt32 hi; +} CPSProcessSerNum; + +extern OSErr CPSGetCurrentProcess( CPSProcessSerNum *psn); +extern OSErr CPSEnableForegroundOperation( CPSProcessSerNum *psn, UInt32 _arg2, UInt32 _arg3, UInt32 _arg4, UInt32 _arg5); +extern OSErr CPSSetFrontProcess( CPSProcessSerNum *psn); + +#endif /* SDL_USE_CPS */ + +static int gArgc; +static char **gArgv; +static BOOL gFinderLaunch; +static BOOL gCalledAppMainline = FALSE; + +static NSString *getApplicationName(void) +{ + const NSDictionary *dict; + NSString *appName = 0; + + /* Determine the application name */ + dict = (const NSDictionary *)CFBundleGetInfoDictionary(CFBundleGetMainBundle()); + if (dict) + appName = [dict objectForKey: @"CFBundleName"]; + + if (![appName length]) + appName = [[NSProcessInfo processInfo] processName]; + + return appName; +} + +#if SDL_USE_NIB_FILE +/* A helper category for NSString */ +@interface NSString (ReplaceSubString) +- (NSString *)stringByReplacingRange:(NSRange)aRange with:(NSString *)aString; +@end +#endif + +@interface SDLApplication : NSApplication +@end + +@implementation SDLApplication +/* Invoked from the Quit menu item */ +- (void)terminate:(id)sender +{ + /* Post a SDL_QUIT event */ + SDL_Event event; + event.type = SDL_QUIT; + SDL_PushEvent(&event); +} +@end + +/* The main class of the application, the application's delegate */ +@implementation SDLMain + +/* Set the working directory to the .app's parent directory */ +- (void) setupWorkingDirectory:(BOOL)shouldChdir +{ + if (shouldChdir) + { + char parentdir[MAXPATHLEN]; + CFURLRef url = CFBundleCopyBundleURL(CFBundleGetMainBundle()); + CFURLRef url2 = CFURLCreateCopyDeletingLastPathComponent(0, url); + if (CFURLGetFileSystemRepresentation(url2, 1, (UInt8 *)parentdir, MAXPATHLEN)) { + chdir(parentdir); /* chdir to the binary app's parent */ + } + CFRelease(url); + CFRelease(url2); + } +} + +#if SDL_USE_NIB_FILE + +/* Fix menu to contain the real app name instead of "SDL App" */ +- (void)fixMenu:(NSMenu *)aMenu withAppName:(NSString *)appName +{ + NSRange aRange; + NSEnumerator *enumerator; + NSMenuItem *menuItem; + + aRange = [[aMenu title] rangeOfString:@"SDL App"]; + if (aRange.length != 0) + [aMenu setTitle: [[aMenu title] stringByReplacingRange:aRange with:appName]]; + + enumerator = [[aMenu itemArray] objectEnumerator]; + while ((menuItem = [enumerator nextObject])) + { + aRange = [[menuItem title] rangeOfString:@"SDL App"]; + if (aRange.length != 0) + [menuItem setTitle: [[menuItem title] stringByReplacingRange:aRange with:appName]]; + if ([menuItem hasSubmenu]) + [self fixMenu:[menuItem submenu] withAppName:appName]; + } + [ aMenu sizeToFit ]; +} + +#else + +static void setApplicationMenu(void) +{ + /* warning: this code is very odd */ + NSMenu *appleMenu; + NSMenuItem *menuItem; + NSString *title; + NSString *appName; + + appName = getApplicationName(); + appleMenu = [[NSMenu alloc] initWithTitle:@""]; + + /* Add menu items */ + title = [@"About " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""]; + + [appleMenu addItem:[NSMenuItem separatorItem]]; + + title = [@"Hide " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(hide:) keyEquivalent:@"h"]; + + menuItem = (NSMenuItem *)[appleMenu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"]; + [menuItem setKeyEquivalentModifierMask:(NSAlternateKeyMask|NSCommandKeyMask)]; + + [appleMenu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""]; + + [appleMenu addItem:[NSMenuItem separatorItem]]; + + title = [@"Quit " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(terminate:) keyEquivalent:@"q"]; + + + /* Put menu into the menubar */ + menuItem = [[NSMenuItem alloc] initWithTitle:@"" action:nil keyEquivalent:@""]; + [menuItem setSubmenu:appleMenu]; + [[NSApp mainMenu] addItem:menuItem]; + + /* Tell the application object that this is now the application menu */ + [NSApp setAppleMenu:appleMenu]; + + /* Finally give up our references to the objects */ + [appleMenu release]; + [menuItem release]; +} + +/* Create a window menu */ +static void setupWindowMenu(void) +{ + NSMenu *windowMenu; + NSMenuItem *windowMenuItem; + NSMenuItem *menuItem; + + windowMenu = [[NSMenu alloc] initWithTitle:@"Window"]; + + /* "Minimize" item */ + menuItem = [[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"]; + [windowMenu addItem:menuItem]; + [menuItem release]; + + /* Put menu into the menubar */ + windowMenuItem = [[NSMenuItem alloc] initWithTitle:@"Window" action:nil keyEquivalent:@""]; + [windowMenuItem setSubmenu:windowMenu]; + [[NSApp mainMenu] addItem:windowMenuItem]; + + /* Tell the application object that this is now the window menu */ + [NSApp setWindowsMenu:windowMenu]; + + /* Finally give up our references to the objects */ + [windowMenu release]; + [windowMenuItem release]; +} + +/* Replacement for NSApplicationMain */ +static void CustomApplicationMain (int argc, char **argv) +{ + NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; + SDLMain *sdlMain; + + /* Ensure the application object is initialised */ + [SDLApplication sharedApplication]; + +#ifdef SDL_USE_CPS + { + CPSProcessSerNum PSN; + /* Tell the dock about us */ + if (!CPSGetCurrentProcess(&PSN)) + if (!CPSEnableForegroundOperation(&PSN,0x03,0x3C,0x2C,0x1103)) + if (!CPSSetFrontProcess(&PSN)) + [SDLApplication sharedApplication]; + } +#endif /* SDL_USE_CPS */ + + /* Set up the menubar */ + [NSApp setMainMenu:[[NSMenu alloc] init]]; + setApplicationMenu(); + setupWindowMenu(); + + /* Create SDLMain and make it the app delegate */ + sdlMain = [[SDLMain alloc] init]; + [NSApp setDelegate:sdlMain]; + + /* Start the main event loop */ + [NSApp run]; + + [sdlMain release]; + [pool release]; +} + +#endif + + +/* + * Catch document open requests...this lets us notice files when the app + * was launched by double-clicking a document, or when a document was + * dragged/dropped on the app's icon. You need to have a + * CFBundleDocumentsType section in your Info.plist to get this message, + * apparently. + * + * Files are added to gArgv, so to the app, they'll look like command line + * arguments. Previously, apps launched from the finder had nothing but + * an argv[0]. + * + * This message may be received multiple times to open several docs on launch. + * + * This message is ignored once the app's mainline has been called. + */ +- (BOOL)application:(NSApplication *)theApplication openFile:(NSString *)filename +{ + const char *temparg; + size_t arglen; + char *arg; + char **newargv; + + if (!gFinderLaunch) /* MacOS is passing command line args. */ + return FALSE; + + if (gCalledAppMainline) /* app has started, ignore this document. */ + return FALSE; + + temparg = [filename UTF8String]; + arglen = SDL_strlen(temparg) + 1; + arg = (char *) SDL_malloc(arglen); + if (arg == NULL) + return FALSE; + + newargv = (char **) realloc(gArgv, sizeof (char *) * (gArgc + 2)); + if (newargv == NULL) + { + SDL_free(arg); + return FALSE; + } + gArgv = newargv; + + SDL_strlcpy(arg, temparg, arglen); + gArgv[gArgc++] = arg; + gArgv[gArgc] = NULL; + return TRUE; +} + + +/* Called when the internal event loop has just started running */ +- (void) applicationDidFinishLaunching: (NSNotification *) note +{ + int status; + + /* Set the working directory to the .app's parent directory */ + [self setupWorkingDirectory:gFinderLaunch]; + +#if SDL_USE_NIB_FILE + /* Set the main menu to contain the real app name instead of "SDL App" */ + [self fixMenu:[NSApp mainMenu] withAppName:getApplicationName()]; +#endif + + /* Hand off to main application code */ + gCalledAppMainline = TRUE; + status = SDL_main (gArgc, gArgv); + + /* We're done, thank you for playing */ + exit(status); +} +@end + + +@implementation NSString (ReplaceSubString) + +- (NSString *)stringByReplacingRange:(NSRange)aRange with:(NSString *)aString +{ + unsigned int bufferSize; + unsigned int selfLen = [self length]; + unsigned int aStringLen = [aString length]; + unichar *buffer; + NSRange localRange; + NSString *result; + + bufferSize = selfLen + aStringLen - aRange.length; + buffer = (unichar *)NSAllocateMemoryPages(bufferSize*sizeof(unichar)); + + /* Get first part into buffer */ + localRange.location = 0; + localRange.length = aRange.location; + [self getCharacters:buffer range:localRange]; + + /* Get middle part into buffer */ + localRange.location = 0; + localRange.length = aStringLen; + [aString getCharacters:(buffer+aRange.location) range:localRange]; + + /* Get last part into buffer */ + localRange.location = aRange.location + aRange.length; + localRange.length = selfLen - localRange.location; + [self getCharacters:(buffer+aRange.location+aStringLen) range:localRange]; + + /* Build output string */ + result = [NSString stringWithCharacters:buffer length:bufferSize]; + + NSDeallocateMemoryPages(buffer, bufferSize); + + return result; +} + +@end + + + +#ifdef main +# undef main +#endif + + +/* Main entry point to executable - should *not* be SDL_main! */ +int main (int argc, char **argv) +{ + /* Copy the arguments into a global variable */ + /* This is passed if we are launched by double-clicking */ + if ( argc >= 2 && strncmp (argv[1], "-psn", 4) == 0 ) { + gArgv = (char **) SDL_malloc(sizeof (char *) * 2); + gArgv[0] = argv[0]; + gArgv[1] = NULL; + gArgc = 1; + gFinderLaunch = YES; + } else { + int i; + gArgc = argc; + gArgv = (char **) SDL_malloc(sizeof (char *) * (argc+1)); + for (i = 0; i <= argc; i++) + gArgv[i] = argv[i]; + gFinderLaunch = NO; + } + +#if SDL_USE_NIB_FILE + [SDLApplication poseAsClass:[NSApplication class]]; + NSApplicationMain (argc, argv); +#else + CustomApplicationMain (argc, argv); +#endif + return 0; +} + diff --git a/Xcode/TemplatesForXcodeTiger/SDL Application/main.c b/Xcode/TemplatesForXcodeTiger/SDL Application/main.c new file mode 100644 index 000000000..7115de989 --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL Application/main.c @@ -0,0 +1,65 @@ + +/* Simple program: Create a blank window, wait for keypress, quit. + + Please see the SDL documentation for details on using the SDL API: + /Developer/Documentation/SDL/docs.html +*/ + +#include +#include +#include +#include + +#include "SDL.h" + +int main(int argc, char *argv[]) +{ + Uint32 initflags = SDL_INIT_VIDEO; /* See documentation for details */ + SDL_Surface *screen; + Uint8 video_bpp = 0; + Uint32 videoflags = SDL_SWSURFACE; + int done; + SDL_Event event; + + /* Initialize the SDL library */ + if ( SDL_Init(initflags) < 0 ) { + fprintf(stderr, "Couldn't initialize SDL: %s\n", + SDL_GetError()); + exit(1); + } + + /* Set 640x480 video mode */ + screen=SDL_SetVideoMode(640,480, video_bpp, videoflags); + if (screen == NULL) { + fprintf(stderr, "Couldn't set 640x480x%d video mode: %s\n", + video_bpp, SDL_GetError()); + SDL_Quit(); + exit(2); + } + + done = 0; + while ( !done ) { + + /* Check for events */ + while ( SDL_PollEvent(&event) ) { + switch (event.type) { + + case SDL_MOUSEMOTION: + break; + case SDL_MOUSEBUTTONDOWN: + break; + case SDL_KEYDOWN: + /* Any keypress quits the app... */ + case SDL_QUIT: + done = 1; + break; + default: + break; + } + } + } + + /* Clean up the SDL library */ + SDL_Quit(); + return(0); +} diff --git a/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/English.lproj/InfoPlist.strings b/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/English.lproj/InfoPlist.strings new file mode 100755 index 000000000..e61245767 Binary files /dev/null and b/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/English.lproj/InfoPlist.strings differ diff --git a/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/English.lproj/SDLMain.nib/classes.nib b/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/English.lproj/SDLMain.nib/classes.nib new file mode 100644 index 000000000..799eaaddd --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/English.lproj/SDLMain.nib/classes.nib @@ -0,0 +1,19 @@ +{ + IBClasses = ( + {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; }, + { + ACTIONS = { + help = id; + newGame = id; + openGame = id; + prefsMenu = id; + saveGame = id; + saveGameAs = id; + }; + CLASS = SDLMain; + LANGUAGE = ObjC; + SUPERCLASS = NSObject; + } + ); + IBVersion = 1; +} \ No newline at end of file diff --git a/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/English.lproj/SDLMain.nib/info.nib b/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/English.lproj/SDLMain.nib/info.nib new file mode 100644 index 000000000..1d6fb7e01 --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/English.lproj/SDLMain.nib/info.nib @@ -0,0 +1,21 @@ + + + + + IBDocumentLocation + 62 117 356 240 0 0 1152 848 + IBEditorPositions + + 29 + 62 362 195 44 0 0 1152 848 + + IBFramework Version + 291.0 + IBOpenObjects + + 29 + + IBSystem Version + 6L60 + + diff --git a/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/English.lproj/SDLMain.nib/objects.nib b/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/English.lproj/SDLMain.nib/objects.nib new file mode 100644 index 000000000..637801528 Binary files /dev/null and b/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/English.lproj/SDLMain.nib/objects.nib differ diff --git a/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/Info.plist b/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/Info.plist new file mode 100644 index 000000000..c678d1145 --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/Info.plist @@ -0,0 +1,28 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIconFile + + CFBundleIdentifier + com.yourcompany.«PROJECTNAMEASXML» + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + APPL + CFBundleSignature + ???? + CFBundleVersion + 1.0 + NSMainNibFile + SDLMain + NSPrincipalClass + NSApplication + + diff --git a/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/SDLApp_Prefix.pch b/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/SDLApp_Prefix.pch new file mode 100644 index 000000000..00095074a --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/SDLApp_Prefix.pch @@ -0,0 +1,9 @@ +// +// Prefix header for all source files of the 'ÇPROJECTNAMEÈ' target in the 'ÇPROJECTNAMEÈ' project +// + +#include "SDL.h" + +#ifdef __OBJC__ + #import +#endif diff --git a/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/SDLCocoaApp.xcodeproj/TemplateInfo.plist b/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/SDLCocoaApp.xcodeproj/TemplateInfo.plist new file mode 100644 index 000000000..1dcbea207 --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/SDLCocoaApp.xcodeproj/TemplateInfo.plist @@ -0,0 +1,12 @@ +{ + FilesToRename = { + "SDLApp_Prefix.pch" = "ÇPROJECTNAMEÈ_Prefix.pch"; + }; + FilesToMacroExpand = ( + "ÇPROJECTNAMEÈ_Prefix.pch", + "Info.plist", + "English.lproj/InfoPlist.strings", + "main.c", + ); + Description = "This project builds an SDL-based application with Cocoa menus."; +} diff --git a/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/SDLCocoaApp.xcodeproj/project.pbxproj b/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/SDLCocoaApp.xcodeproj/project.pbxproj new file mode 100644 index 000000000..58596625b --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/SDLCocoaApp.xcodeproj/project.pbxproj @@ -0,0 +1,336 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 42; + objects = { + +/* Begin PBXBuildFile section */ + 002F39FA09D0881F00EBEB88 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F39F909D0881F00EBEB88 /* SDL.framework */; }; + 002F3A0009D0884600EBEB88 /* SDL.framework in Copy Frameworks into .app bundle */ = {isa = PBXBuildFile; fileRef = 002F39F909D0881F00EBEB88 /* SDL.framework */; }; + 002F3A2E09D0888800EBEB88 /* SDLMain.m in Sources */ = {isa = PBXBuildFile; fileRef = 002F3A2C09D0888800EBEB88 /* SDLMain.m */; }; + 002F3A3F09D088BA00EBEB88 /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F3A3E09D088BA00EBEB88 /* main.c */; }; + 002F3AF109D08F1000EBEB88 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 002F3AEF09D08F1000EBEB88 /* SDLMain.nib */; }; + 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; }; + 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXBuildStyle section */ + 4A9504CCFFE6A4B311CA0CBA /* Debug */ = { + isa = PBXBuildStyle; + buildSettings = { + }; + name = Debug; + }; + 4A9504CDFFE6A4B311CA0CBA /* Release */ = { + isa = PBXBuildStyle; + buildSettings = { + }; + name = Release; + }; +/* End PBXBuildStyle section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 002F39FD09D0883400EBEB88 /* Copy Frameworks into .app bundle */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + 002F3A0009D0884600EBEB88 /* SDL.framework in Copy Frameworks into .app bundle */, + ); + name = "Copy Frameworks into .app bundle"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 002F39F909D0881F00EBEB88 /* SDL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL.framework; path = /Library/Frameworks/SDL.framework; sourceTree = ""; }; + 002F3A2B09D0888800EBEB88 /* SDLMain.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDLMain.h; sourceTree = SOURCE_ROOT; }; + 002F3A2C09D0888800EBEB88 /* SDLMain.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = SDLMain.m; sourceTree = SOURCE_ROOT; }; + 002F3A3E09D088BA00EBEB88 /* main.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = main.c; sourceTree = SOURCE_ROOT; }; + 002F3AF009D08F1000EBEB88 /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/SDLMain.nib; sourceTree = ""; }; + 089C165DFE840E0CC02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = ""; }; + 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = ""; }; + 29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = ""; }; + 29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = ""; }; + 32CA4F630368D1EE00C91783 /* «PROJECTNAME»_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file; path = "«PROJECTNAME»_Prefix.pch"; sourceTree = ""; }; + 8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + 8D1107320486CEB800E47090 /* «PROJECTNAME».app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "«PROJECTNAME».app"; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 8D11072E0486CEB800E47090 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F39FA09D0881F00EBEB88 /* SDL.framework in Frameworks */, + 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 080E96DDFE201D6D7F000001 /* Classes */ = { + isa = PBXGroup; + children = ( + 002F3A2B09D0888800EBEB88 /* SDLMain.h */, + 002F3A2C09D0888800EBEB88 /* SDLMain.m */, + ); + name = Classes; + sourceTree = ""; + }; + 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */ = { + isa = PBXGroup; + children = ( + 002F39F909D0881F00EBEB88 /* SDL.framework */, + 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */, + ); + name = "Linked Frameworks"; + sourceTree = ""; + }; + 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */ = { + isa = PBXGroup; + children = ( + 29B97324FDCFA39411CA2CEA /* AppKit.framework */, + 29B97325FDCFA39411CA2CEA /* Foundation.framework */, + ); + name = "Other Frameworks"; + sourceTree = ""; + }; + 19C28FACFE9D520D11CA2CBB /* Products */ = { + isa = PBXGroup; + children = ( + 8D1107320486CEB800E47090 /* «PROJECTNAME».app */, + ); + name = Products; + sourceTree = ""; + }; + 29B97314FDCFA39411CA2CEA /* «PROJECTNAMEASXML» */ = { + isa = PBXGroup; + children = ( + 080E96DDFE201D6D7F000001 /* Classes */, + 29B97315FDCFA39411CA2CEA /* Other Sources */, + 29B97317FDCFA39411CA2CEA /* Resources */, + 29B97323FDCFA39411CA2CEA /* Frameworks */, + 19C28FACFE9D520D11CA2CBB /* Products */, + ); + name = "«PROJECTNAMEASXML»"; + sourceTree = ""; + }; + 29B97315FDCFA39411CA2CEA /* Other Sources */ = { + isa = PBXGroup; + children = ( + 32CA4F630368D1EE00C91783 /* «PROJECTNAME»_Prefix.pch */, + 002F3A3E09D088BA00EBEB88 /* main.c */, + ); + name = "Other Sources"; + sourceTree = ""; + }; + 29B97317FDCFA39411CA2CEA /* Resources */ = { + isa = PBXGroup; + children = ( + 8D1107310486CEB800E47090 /* Info.plist */, + 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */, + 002F3AEF09D08F1000EBEB88 /* SDLMain.nib */, + ); + name = Resources; + sourceTree = ""; + }; + 29B97323FDCFA39411CA2CEA /* Frameworks */ = { + isa = PBXGroup; + children = ( + 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */, + 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */, + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 8D1107260486CEB800E47090 /* «PROJECTNAME» */ = { + isa = PBXNativeTarget; + buildConfigurationList = C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "«PROJECTNAME»" */; + buildPhases = ( + 8D1107290486CEB800E47090 /* Resources */, + 8D11072C0486CEB800E47090 /* Sources */, + 8D11072E0486CEB800E47090 /* Frameworks */, + 002F39FD09D0883400EBEB88 /* Copy Frameworks into .app bundle */, + ); + buildRules = ( + ); + buildSettings = { + }; + dependencies = ( + ); + name = "«PROJECTNAME»"; + productInstallPath = "$(HOME)/Applications"; + productName = "«PROJECTNAME»"; + productReference = 8D1107320486CEB800E47090 /* «PROJECTNAME».app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 29B97313FDCFA39411CA2CEA /* Project object */ = { + isa = PBXProject; + buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "SDLCocoaApp" */; + buildSettings = { + }; + buildStyles = ( + 4A9504CCFFE6A4B311CA0CBA /* Debug */, + 4A9504CDFFE6A4B311CA0CBA /* Release */, + ); + hasScannedForEncodings = 1; + mainGroup = 29B97314FDCFA39411CA2CEA /* «PROJECTNAMEASXML» */; + projectDirPath = ""; + targets = ( + 8D1107260486CEB800E47090 /* «PROJECTNAME» */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 8D1107290486CEB800E47090 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */, + 002F3AF109D08F1000EBEB88 /* SDLMain.nib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 8D11072C0486CEB800E47090 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F3A2E09D0888800EBEB88 /* SDLMain.m in Sources */, + 002F3A3F09D088BA00EBEB88 /* main.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXVariantGroup section */ + 002F3AEF09D08F1000EBEB88 /* SDLMain.nib */ = { + isa = PBXVariantGroup; + children = ( + 002F3AF009D08F1000EBEB88 /* English */, + ); + name = SDLMain.nib; + sourceTree = ""; + }; + 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + 089C165DFE840E0CC02AAC07 /* English */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + C01FCF4B08A954540054247B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_FIX_AND_CONTINUE = YES; + GCC_MODEL_TUNING = G5; + GCC_OPTIMIZATION_LEVEL = 0; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(HOME)/Applications"; + PRODUCT_NAME = "«PROJECTNAME»"; + WRAPPER_EXTENSION = app; + ZERO_LINK = YES; + }; + name = Debug; + }; + C01FCF4C08A954540054247B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = ( + ppc, + i386, + ); + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + GCC_MODEL_TUNING = G5; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(HOME)/Applications"; + PRODUCT_NAME = "«PROJECTNAME»"; + WRAPPER_EXTENSION = app; + }; + name = Release; + }; + C01FCF4F08A954540054247B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks", + /Library/Frameworks, + "$(FRAMEWORK_SEARCH_PATHS)", + ); + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks/SDL.framework/Headers", + /Library/Frameworks/SDL.framework/Headers, + "$(HEADER_SEARCH_PATHS)", + ); + PREBINDING = NO; + SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; + }; + name = Debug; + }; + C01FCF5008A954540054247B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks", + /Library/Frameworks, + "$(FRAMEWORK_SEARCH_PATHS)", + ); + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks/SDL.framework/Headers", + /Library/Frameworks/SDL.framework/Headers, + "$(HEADER_SEARCH_PATHS)", + ); + PREBINDING = NO; + SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "«PROJECTNAME»" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01FCF4B08A954540054247B /* Debug */, + C01FCF4C08A954540054247B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + C01FCF4E08A954540054247B /* Build configuration list for PBXProject "SDLCocoaApp" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01FCF4F08A954540054247B /* Debug */, + C01FCF5008A954540054247B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 29B97313FDCFA39411CA2CEA /* Project object */; +} diff --git a/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/SDLMain.h b/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/SDLMain.h new file mode 100644 index 000000000..c56d90cbe --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/SDLMain.h @@ -0,0 +1,16 @@ +/* SDLMain.m - main entry point for our Cocoa-ized SDL app + Initial Version: Darrell Walisser + Non-NIB-Code & other changes: Max Horn + + Feel free to customize this file to suit your needs +*/ + +#ifndef _SDLMain_h_ +#define _SDLMain_h_ + +#import + +@interface SDLMain : NSObject +@end + +#endif /* _SDLMain_h_ */ diff --git a/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/SDLMain.m b/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/SDLMain.m new file mode 100644 index 000000000..b065a2009 --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/SDLMain.m @@ -0,0 +1,383 @@ +/* SDLMain.m - main entry point for our Cocoa-ized SDL app + Initial Version: Darrell Walisser + Non-NIB-Code & other changes: Max Horn + + Feel free to customize this file to suit your needs +*/ + +#include "SDL.h" +#include "SDLMain.h" +#include /* for MAXPATHLEN */ +#include + +/* For some reaon, Apple removed setAppleMenu from the headers in 10.4, + but the method still is there and works. To avoid warnings, we declare + it ourselves here. */ +@interface NSApplication(SDL_Missing_Methods) +- (void)setAppleMenu:(NSMenu *)menu; +@end + +/* Use this flag to determine whether we use SDLMain.nib or not */ +#define SDL_USE_NIB_FILE 0 + +/* Use this flag to determine whether we use CPS (docking) or not */ +#define SDL_USE_CPS 1 +#ifdef SDL_USE_CPS +/* Portions of CPS.h */ +typedef struct CPSProcessSerNum +{ + UInt32 lo; + UInt32 hi; +} CPSProcessSerNum; + +extern OSErr CPSGetCurrentProcess( CPSProcessSerNum *psn); +extern OSErr CPSEnableForegroundOperation( CPSProcessSerNum *psn, UInt32 _arg2, UInt32 _arg3, UInt32 _arg4, UInt32 _arg5); +extern OSErr CPSSetFrontProcess( CPSProcessSerNum *psn); + +#endif /* SDL_USE_CPS */ + +static int gArgc; +static char **gArgv; +static BOOL gFinderLaunch; +static BOOL gCalledAppMainline = FALSE; + +static NSString *getApplicationName(void) +{ + const NSDictionary *dict; + NSString *appName = 0; + + /* Determine the application name */ + dict = (const NSDictionary *)CFBundleGetInfoDictionary(CFBundleGetMainBundle()); + if (dict) + appName = [dict objectForKey: @"CFBundleName"]; + + if (![appName length]) + appName = [[NSProcessInfo processInfo] processName]; + + return appName; +} + +#if SDL_USE_NIB_FILE +/* A helper category for NSString */ +@interface NSString (ReplaceSubString) +- (NSString *)stringByReplacingRange:(NSRange)aRange with:(NSString *)aString; +@end +#endif + +@interface SDLApplication : NSApplication +@end + +@implementation SDLApplication +/* Invoked from the Quit menu item */ +- (void)terminate:(id)sender +{ + /* Post a SDL_QUIT event */ + SDL_Event event; + event.type = SDL_QUIT; + SDL_PushEvent(&event); +} +@end + +/* The main class of the application, the application's delegate */ +@implementation SDLMain + +/* Set the working directory to the .app's parent directory */ +- (void) setupWorkingDirectory:(BOOL)shouldChdir +{ + if (shouldChdir) + { + char parentdir[MAXPATHLEN]; + CFURLRef url = CFBundleCopyBundleURL(CFBundleGetMainBundle()); + CFURLRef url2 = CFURLCreateCopyDeletingLastPathComponent(0, url); + if (CFURLGetFileSystemRepresentation(url2, 1, (UInt8 *)parentdir, MAXPATHLEN)) { + chdir(parentdir); /* chdir to the binary app's parent */ + } + CFRelease(url); + CFRelease(url2); + } +} + +#if SDL_USE_NIB_FILE + +/* Fix menu to contain the real app name instead of "SDL App" */ +- (void)fixMenu:(NSMenu *)aMenu withAppName:(NSString *)appName +{ + NSRange aRange; + NSEnumerator *enumerator; + NSMenuItem *menuItem; + + aRange = [[aMenu title] rangeOfString:@"SDL App"]; + if (aRange.length != 0) + [aMenu setTitle: [[aMenu title] stringByReplacingRange:aRange with:appName]]; + + enumerator = [[aMenu itemArray] objectEnumerator]; + while ((menuItem = [enumerator nextObject])) + { + aRange = [[menuItem title] rangeOfString:@"SDL App"]; + if (aRange.length != 0) + [menuItem setTitle: [[menuItem title] stringByReplacingRange:aRange with:appName]]; + if ([menuItem hasSubmenu]) + [self fixMenu:[menuItem submenu] withAppName:appName]; + } + [ aMenu sizeToFit ]; +} + +#else + +static void setApplicationMenu(void) +{ + /* warning: this code is very odd */ + NSMenu *appleMenu; + NSMenuItem *menuItem; + NSString *title; + NSString *appName; + + appName = getApplicationName(); + appleMenu = [[NSMenu alloc] initWithTitle:@""]; + + /* Add menu items */ + title = [@"About " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""]; + + [appleMenu addItem:[NSMenuItem separatorItem]]; + + title = [@"Hide " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(hide:) keyEquivalent:@"h"]; + + menuItem = (NSMenuItem *)[appleMenu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"]; + [menuItem setKeyEquivalentModifierMask:(NSAlternateKeyMask|NSCommandKeyMask)]; + + [appleMenu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""]; + + [appleMenu addItem:[NSMenuItem separatorItem]]; + + title = [@"Quit " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(terminate:) keyEquivalent:@"q"]; + + + /* Put menu into the menubar */ + menuItem = [[NSMenuItem alloc] initWithTitle:@"" action:nil keyEquivalent:@""]; + [menuItem setSubmenu:appleMenu]; + [[NSApp mainMenu] addItem:menuItem]; + + /* Tell the application object that this is now the application menu */ + [NSApp setAppleMenu:appleMenu]; + + /* Finally give up our references to the objects */ + [appleMenu release]; + [menuItem release]; +} + +/* Create a window menu */ +static void setupWindowMenu(void) +{ + NSMenu *windowMenu; + NSMenuItem *windowMenuItem; + NSMenuItem *menuItem; + + windowMenu = [[NSMenu alloc] initWithTitle:@"Window"]; + + /* "Minimize" item */ + menuItem = [[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"]; + [windowMenu addItem:menuItem]; + [menuItem release]; + + /* Put menu into the menubar */ + windowMenuItem = [[NSMenuItem alloc] initWithTitle:@"Window" action:nil keyEquivalent:@""]; + [windowMenuItem setSubmenu:windowMenu]; + [[NSApp mainMenu] addItem:windowMenuItem]; + + /* Tell the application object that this is now the window menu */ + [NSApp setWindowsMenu:windowMenu]; + + /* Finally give up our references to the objects */ + [windowMenu release]; + [windowMenuItem release]; +} + +/* Replacement for NSApplicationMain */ +static void CustomApplicationMain (int argc, char **argv) +{ + NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; + SDLMain *sdlMain; + + /* Ensure the application object is initialised */ + [SDLApplication sharedApplication]; + +#ifdef SDL_USE_CPS + { + CPSProcessSerNum PSN; + /* Tell the dock about us */ + if (!CPSGetCurrentProcess(&PSN)) + if (!CPSEnableForegroundOperation(&PSN,0x03,0x3C,0x2C,0x1103)) + if (!CPSSetFrontProcess(&PSN)) + [SDLApplication sharedApplication]; + } +#endif /* SDL_USE_CPS */ + + /* Set up the menubar */ + [NSApp setMainMenu:[[NSMenu alloc] init]]; + setApplicationMenu(); + setupWindowMenu(); + + /* Create SDLMain and make it the app delegate */ + sdlMain = [[SDLMain alloc] init]; + [NSApp setDelegate:sdlMain]; + + /* Start the main event loop */ + [NSApp run]; + + [sdlMain release]; + [pool release]; +} + +#endif + + +/* + * Catch document open requests...this lets us notice files when the app + * was launched by double-clicking a document, or when a document was + * dragged/dropped on the app's icon. You need to have a + * CFBundleDocumentsType section in your Info.plist to get this message, + * apparently. + * + * Files are added to gArgv, so to the app, they'll look like command line + * arguments. Previously, apps launched from the finder had nothing but + * an argv[0]. + * + * This message may be received multiple times to open several docs on launch. + * + * This message is ignored once the app's mainline has been called. + */ +- (BOOL)application:(NSApplication *)theApplication openFile:(NSString *)filename +{ + const char *temparg; + size_t arglen; + char *arg; + char **newargv; + + if (!gFinderLaunch) /* MacOS is passing command line args. */ + return FALSE; + + if (gCalledAppMainline) /* app has started, ignore this document. */ + return FALSE; + + temparg = [filename UTF8String]; + arglen = SDL_strlen(temparg) + 1; + arg = (char *) SDL_malloc(arglen); + if (arg == NULL) + return FALSE; + + newargv = (char **) realloc(gArgv, sizeof (char *) * (gArgc + 2)); + if (newargv == NULL) + { + SDL_free(arg); + return FALSE; + } + gArgv = newargv; + + SDL_strlcpy(arg, temparg, arglen); + gArgv[gArgc++] = arg; + gArgv[gArgc] = NULL; + return TRUE; +} + + +/* Called when the internal event loop has just started running */ +- (void) applicationDidFinishLaunching: (NSNotification *) note +{ + int status; + + /* Set the working directory to the .app's parent directory */ + [self setupWorkingDirectory:gFinderLaunch]; + +#if SDL_USE_NIB_FILE + /* Set the main menu to contain the real app name instead of "SDL App" */ + [self fixMenu:[NSApp mainMenu] withAppName:getApplicationName()]; +#endif + + /* Hand off to main application code */ + gCalledAppMainline = TRUE; + status = SDL_main (gArgc, gArgv); + + /* We're done, thank you for playing */ + exit(status); +} +@end + + +@implementation NSString (ReplaceSubString) + +- (NSString *)stringByReplacingRange:(NSRange)aRange with:(NSString *)aString +{ + unsigned int bufferSize; + unsigned int selfLen = [self length]; + unsigned int aStringLen = [aString length]; + unichar *buffer; + NSRange localRange; + NSString *result; + + bufferSize = selfLen + aStringLen - aRange.length; + buffer = (unichar *)NSAllocateMemoryPages(bufferSize*sizeof(unichar)); + + /* Get first part into buffer */ + localRange.location = 0; + localRange.length = aRange.location; + [self getCharacters:buffer range:localRange]; + + /* Get middle part into buffer */ + localRange.location = 0; + localRange.length = aStringLen; + [aString getCharacters:(buffer+aRange.location) range:localRange]; + + /* Get last part into buffer */ + localRange.location = aRange.location + aRange.length; + localRange.length = selfLen - localRange.location; + [self getCharacters:(buffer+aRange.location+aStringLen) range:localRange]; + + /* Build output string */ + result = [NSString stringWithCharacters:buffer length:bufferSize]; + + NSDeallocateMemoryPages(buffer, bufferSize); + + return result; +} + +@end + + + +#ifdef main +# undef main +#endif + + +/* Main entry point to executable - should *not* be SDL_main! */ +int main (int argc, char **argv) +{ + /* Copy the arguments into a global variable */ + /* This is passed if we are launched by double-clicking */ + if ( argc >= 2 && strncmp (argv[1], "-psn", 4) == 0 ) { + gArgv = (char **) SDL_malloc(sizeof (char *) * 2); + gArgv[0] = argv[0]; + gArgv[1] = NULL; + gArgc = 1; + gFinderLaunch = YES; + } else { + int i; + gArgc = argc; + gArgv = (char **) SDL_malloc(sizeof (char *) * (argc+1)); + for (i = 0; i <= argc; i++) + gArgv[i] = argv[i]; + gFinderLaunch = NO; + } + +#if SDL_USE_NIB_FILE + [SDLApplication poseAsClass:[NSApplication class]]; + NSApplicationMain (argc, argv); +#else + CustomApplicationMain (argc, argv); +#endif + return 0; +} + diff --git a/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/main.c b/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/main.c new file mode 100644 index 000000000..7115de989 --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/main.c @@ -0,0 +1,65 @@ + +/* Simple program: Create a blank window, wait for keypress, quit. + + Please see the SDL documentation for details on using the SDL API: + /Developer/Documentation/SDL/docs.html +*/ + +#include +#include +#include +#include + +#include "SDL.h" + +int main(int argc, char *argv[]) +{ + Uint32 initflags = SDL_INIT_VIDEO; /* See documentation for details */ + SDL_Surface *screen; + Uint8 video_bpp = 0; + Uint32 videoflags = SDL_SWSURFACE; + int done; + SDL_Event event; + + /* Initialize the SDL library */ + if ( SDL_Init(initflags) < 0 ) { + fprintf(stderr, "Couldn't initialize SDL: %s\n", + SDL_GetError()); + exit(1); + } + + /* Set 640x480 video mode */ + screen=SDL_SetVideoMode(640,480, video_bpp, videoflags); + if (screen == NULL) { + fprintf(stderr, "Couldn't set 640x480x%d video mode: %s\n", + video_bpp, SDL_GetError()); + SDL_Quit(); + exit(2); + } + + done = 0; + while ( !done ) { + + /* Check for events */ + while ( SDL_PollEvent(&event) ) { + switch (event.type) { + + case SDL_MOUSEMOTION: + break; + case SDL_MOUSEBUTTONDOWN: + break; + case SDL_KEYDOWN: + /* Any keypress quits the app... */ + case SDL_QUIT: + done = 1; + break; + default: + break; + } + } + } + + /* Clean up the SDL library */ + SDL_Quit(); + return(0); +} diff --git a/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/English.lproj/InfoPlist.strings b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/English.lproj/InfoPlist.strings new file mode 100755 index 000000000..e61245767 Binary files /dev/null and b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/English.lproj/InfoPlist.strings differ diff --git a/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/Info.plist b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/Info.plist new file mode 100644 index 000000000..c678d1145 --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/Info.plist @@ -0,0 +1,28 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIconFile + + CFBundleIdentifier + com.yourcompany.«PROJECTNAMEASXML» + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + APPL + CFBundleSignature + ???? + CFBundleVersion + 1.0 + NSMainNibFile + SDLMain + NSPrincipalClass + NSApplication + + diff --git a/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/SDLApp_Prefix.pch b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/SDLApp_Prefix.pch new file mode 100644 index 000000000..00095074a --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/SDLApp_Prefix.pch @@ -0,0 +1,9 @@ +// +// Prefix header for all source files of the 'ÇPROJECTNAMEÈ' target in the 'ÇPROJECTNAMEÈ' project +// + +#include "SDL.h" + +#ifdef __OBJC__ + #import +#endif diff --git a/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/SDLMain.h b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/SDLMain.h new file mode 100644 index 000000000..c56d90cbe --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/SDLMain.h @@ -0,0 +1,16 @@ +/* SDLMain.m - main entry point for our Cocoa-ized SDL app + Initial Version: Darrell Walisser + Non-NIB-Code & other changes: Max Horn + + Feel free to customize this file to suit your needs +*/ + +#ifndef _SDLMain_h_ +#define _SDLMain_h_ + +#import + +@interface SDLMain : NSObject +@end + +#endif /* _SDLMain_h_ */ diff --git a/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/SDLMain.m b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/SDLMain.m new file mode 100644 index 000000000..b065a2009 --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/SDLMain.m @@ -0,0 +1,383 @@ +/* SDLMain.m - main entry point for our Cocoa-ized SDL app + Initial Version: Darrell Walisser + Non-NIB-Code & other changes: Max Horn + + Feel free to customize this file to suit your needs +*/ + +#include "SDL.h" +#include "SDLMain.h" +#include /* for MAXPATHLEN */ +#include + +/* For some reaon, Apple removed setAppleMenu from the headers in 10.4, + but the method still is there and works. To avoid warnings, we declare + it ourselves here. */ +@interface NSApplication(SDL_Missing_Methods) +- (void)setAppleMenu:(NSMenu *)menu; +@end + +/* Use this flag to determine whether we use SDLMain.nib or not */ +#define SDL_USE_NIB_FILE 0 + +/* Use this flag to determine whether we use CPS (docking) or not */ +#define SDL_USE_CPS 1 +#ifdef SDL_USE_CPS +/* Portions of CPS.h */ +typedef struct CPSProcessSerNum +{ + UInt32 lo; + UInt32 hi; +} CPSProcessSerNum; + +extern OSErr CPSGetCurrentProcess( CPSProcessSerNum *psn); +extern OSErr CPSEnableForegroundOperation( CPSProcessSerNum *psn, UInt32 _arg2, UInt32 _arg3, UInt32 _arg4, UInt32 _arg5); +extern OSErr CPSSetFrontProcess( CPSProcessSerNum *psn); + +#endif /* SDL_USE_CPS */ + +static int gArgc; +static char **gArgv; +static BOOL gFinderLaunch; +static BOOL gCalledAppMainline = FALSE; + +static NSString *getApplicationName(void) +{ + const NSDictionary *dict; + NSString *appName = 0; + + /* Determine the application name */ + dict = (const NSDictionary *)CFBundleGetInfoDictionary(CFBundleGetMainBundle()); + if (dict) + appName = [dict objectForKey: @"CFBundleName"]; + + if (![appName length]) + appName = [[NSProcessInfo processInfo] processName]; + + return appName; +} + +#if SDL_USE_NIB_FILE +/* A helper category for NSString */ +@interface NSString (ReplaceSubString) +- (NSString *)stringByReplacingRange:(NSRange)aRange with:(NSString *)aString; +@end +#endif + +@interface SDLApplication : NSApplication +@end + +@implementation SDLApplication +/* Invoked from the Quit menu item */ +- (void)terminate:(id)sender +{ + /* Post a SDL_QUIT event */ + SDL_Event event; + event.type = SDL_QUIT; + SDL_PushEvent(&event); +} +@end + +/* The main class of the application, the application's delegate */ +@implementation SDLMain + +/* Set the working directory to the .app's parent directory */ +- (void) setupWorkingDirectory:(BOOL)shouldChdir +{ + if (shouldChdir) + { + char parentdir[MAXPATHLEN]; + CFURLRef url = CFBundleCopyBundleURL(CFBundleGetMainBundle()); + CFURLRef url2 = CFURLCreateCopyDeletingLastPathComponent(0, url); + if (CFURLGetFileSystemRepresentation(url2, 1, (UInt8 *)parentdir, MAXPATHLEN)) { + chdir(parentdir); /* chdir to the binary app's parent */ + } + CFRelease(url); + CFRelease(url2); + } +} + +#if SDL_USE_NIB_FILE + +/* Fix menu to contain the real app name instead of "SDL App" */ +- (void)fixMenu:(NSMenu *)aMenu withAppName:(NSString *)appName +{ + NSRange aRange; + NSEnumerator *enumerator; + NSMenuItem *menuItem; + + aRange = [[aMenu title] rangeOfString:@"SDL App"]; + if (aRange.length != 0) + [aMenu setTitle: [[aMenu title] stringByReplacingRange:aRange with:appName]]; + + enumerator = [[aMenu itemArray] objectEnumerator]; + while ((menuItem = [enumerator nextObject])) + { + aRange = [[menuItem title] rangeOfString:@"SDL App"]; + if (aRange.length != 0) + [menuItem setTitle: [[menuItem title] stringByReplacingRange:aRange with:appName]]; + if ([menuItem hasSubmenu]) + [self fixMenu:[menuItem submenu] withAppName:appName]; + } + [ aMenu sizeToFit ]; +} + +#else + +static void setApplicationMenu(void) +{ + /* warning: this code is very odd */ + NSMenu *appleMenu; + NSMenuItem *menuItem; + NSString *title; + NSString *appName; + + appName = getApplicationName(); + appleMenu = [[NSMenu alloc] initWithTitle:@""]; + + /* Add menu items */ + title = [@"About " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""]; + + [appleMenu addItem:[NSMenuItem separatorItem]]; + + title = [@"Hide " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(hide:) keyEquivalent:@"h"]; + + menuItem = (NSMenuItem *)[appleMenu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"]; + [menuItem setKeyEquivalentModifierMask:(NSAlternateKeyMask|NSCommandKeyMask)]; + + [appleMenu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""]; + + [appleMenu addItem:[NSMenuItem separatorItem]]; + + title = [@"Quit " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(terminate:) keyEquivalent:@"q"]; + + + /* Put menu into the menubar */ + menuItem = [[NSMenuItem alloc] initWithTitle:@"" action:nil keyEquivalent:@""]; + [menuItem setSubmenu:appleMenu]; + [[NSApp mainMenu] addItem:menuItem]; + + /* Tell the application object that this is now the application menu */ + [NSApp setAppleMenu:appleMenu]; + + /* Finally give up our references to the objects */ + [appleMenu release]; + [menuItem release]; +} + +/* Create a window menu */ +static void setupWindowMenu(void) +{ + NSMenu *windowMenu; + NSMenuItem *windowMenuItem; + NSMenuItem *menuItem; + + windowMenu = [[NSMenu alloc] initWithTitle:@"Window"]; + + /* "Minimize" item */ + menuItem = [[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"]; + [windowMenu addItem:menuItem]; + [menuItem release]; + + /* Put menu into the menubar */ + windowMenuItem = [[NSMenuItem alloc] initWithTitle:@"Window" action:nil keyEquivalent:@""]; + [windowMenuItem setSubmenu:windowMenu]; + [[NSApp mainMenu] addItem:windowMenuItem]; + + /* Tell the application object that this is now the window menu */ + [NSApp setWindowsMenu:windowMenu]; + + /* Finally give up our references to the objects */ + [windowMenu release]; + [windowMenuItem release]; +} + +/* Replacement for NSApplicationMain */ +static void CustomApplicationMain (int argc, char **argv) +{ + NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; + SDLMain *sdlMain; + + /* Ensure the application object is initialised */ + [SDLApplication sharedApplication]; + +#ifdef SDL_USE_CPS + { + CPSProcessSerNum PSN; + /* Tell the dock about us */ + if (!CPSGetCurrentProcess(&PSN)) + if (!CPSEnableForegroundOperation(&PSN,0x03,0x3C,0x2C,0x1103)) + if (!CPSSetFrontProcess(&PSN)) + [SDLApplication sharedApplication]; + } +#endif /* SDL_USE_CPS */ + + /* Set up the menubar */ + [NSApp setMainMenu:[[NSMenu alloc] init]]; + setApplicationMenu(); + setupWindowMenu(); + + /* Create SDLMain and make it the app delegate */ + sdlMain = [[SDLMain alloc] init]; + [NSApp setDelegate:sdlMain]; + + /* Start the main event loop */ + [NSApp run]; + + [sdlMain release]; + [pool release]; +} + +#endif + + +/* + * Catch document open requests...this lets us notice files when the app + * was launched by double-clicking a document, or when a document was + * dragged/dropped on the app's icon. You need to have a + * CFBundleDocumentsType section in your Info.plist to get this message, + * apparently. + * + * Files are added to gArgv, so to the app, they'll look like command line + * arguments. Previously, apps launched from the finder had nothing but + * an argv[0]. + * + * This message may be received multiple times to open several docs on launch. + * + * This message is ignored once the app's mainline has been called. + */ +- (BOOL)application:(NSApplication *)theApplication openFile:(NSString *)filename +{ + const char *temparg; + size_t arglen; + char *arg; + char **newargv; + + if (!gFinderLaunch) /* MacOS is passing command line args. */ + return FALSE; + + if (gCalledAppMainline) /* app has started, ignore this document. */ + return FALSE; + + temparg = [filename UTF8String]; + arglen = SDL_strlen(temparg) + 1; + arg = (char *) SDL_malloc(arglen); + if (arg == NULL) + return FALSE; + + newargv = (char **) realloc(gArgv, sizeof (char *) * (gArgc + 2)); + if (newargv == NULL) + { + SDL_free(arg); + return FALSE; + } + gArgv = newargv; + + SDL_strlcpy(arg, temparg, arglen); + gArgv[gArgc++] = arg; + gArgv[gArgc] = NULL; + return TRUE; +} + + +/* Called when the internal event loop has just started running */ +- (void) applicationDidFinishLaunching: (NSNotification *) note +{ + int status; + + /* Set the working directory to the .app's parent directory */ + [self setupWorkingDirectory:gFinderLaunch]; + +#if SDL_USE_NIB_FILE + /* Set the main menu to contain the real app name instead of "SDL App" */ + [self fixMenu:[NSApp mainMenu] withAppName:getApplicationName()]; +#endif + + /* Hand off to main application code */ + gCalledAppMainline = TRUE; + status = SDL_main (gArgc, gArgv); + + /* We're done, thank you for playing */ + exit(status); +} +@end + + +@implementation NSString (ReplaceSubString) + +- (NSString *)stringByReplacingRange:(NSRange)aRange with:(NSString *)aString +{ + unsigned int bufferSize; + unsigned int selfLen = [self length]; + unsigned int aStringLen = [aString length]; + unichar *buffer; + NSRange localRange; + NSString *result; + + bufferSize = selfLen + aStringLen - aRange.length; + buffer = (unichar *)NSAllocateMemoryPages(bufferSize*sizeof(unichar)); + + /* Get first part into buffer */ + localRange.location = 0; + localRange.length = aRange.location; + [self getCharacters:buffer range:localRange]; + + /* Get middle part into buffer */ + localRange.location = 0; + localRange.length = aStringLen; + [aString getCharacters:(buffer+aRange.location) range:localRange]; + + /* Get last part into buffer */ + localRange.location = aRange.location + aRange.length; + localRange.length = selfLen - localRange.location; + [self getCharacters:(buffer+aRange.location+aStringLen) range:localRange]; + + /* Build output string */ + result = [NSString stringWithCharacters:buffer length:bufferSize]; + + NSDeallocateMemoryPages(buffer, bufferSize); + + return result; +} + +@end + + + +#ifdef main +# undef main +#endif + + +/* Main entry point to executable - should *not* be SDL_main! */ +int main (int argc, char **argv) +{ + /* Copy the arguments into a global variable */ + /* This is passed if we are launched by double-clicking */ + if ( argc >= 2 && strncmp (argv[1], "-psn", 4) == 0 ) { + gArgv = (char **) SDL_malloc(sizeof (char *) * 2); + gArgv[0] = argv[0]; + gArgv[1] = NULL; + gArgc = 1; + gFinderLaunch = YES; + } else { + int i; + gArgc = argc; + gArgv = (char **) SDL_malloc(sizeof (char *) * (argc+1)); + for (i = 0; i <= argc; i++) + gArgv[i] = argv[i]; + gFinderLaunch = NO; + } + +#if SDL_USE_NIB_FILE + [SDLApplication poseAsClass:[NSApplication class]]; + NSApplicationMain (argc, argv); +#else + CustomApplicationMain (argc, argv); +#endif + return 0; +} + diff --git a/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/SDLOpenGLApp.xcodeproj/TemplateInfo.plist b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/SDLOpenGLApp.xcodeproj/TemplateInfo.plist new file mode 100644 index 000000000..ba87745fc --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/SDLOpenGLApp.xcodeproj/TemplateInfo.plist @@ -0,0 +1,12 @@ +{ + FilesToRename = { + "SDLApp_Prefix.pch" = "ÇPROJECTNAMEÈ_Prefix.pch"; + }; + FilesToMacroExpand = ( + "ÇPROJECTNAMEÈ_Prefix.pch", + "Info.plist", + "English.lproj/InfoPlist.strings", + "main.c", + ); + Description = "This project builds an SDL-based application that uses OpenGL."; +} diff --git a/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/SDLOpenGLApp.xcodeproj/project.pbxproj b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/SDLOpenGLApp.xcodeproj/project.pbxproj new file mode 100644 index 000000000..6995ccbf7 --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/SDLOpenGLApp.xcodeproj/project.pbxproj @@ -0,0 +1,362 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 42; + objects = { + +/* Begin PBXBuildFile section */ + 002F39FA09D0881F00EBEB88 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F39F909D0881F00EBEB88 /* SDL.framework */; }; + 002F3A0009D0884600EBEB88 /* SDL.framework in Copy Frameworks into .app bundle */ = {isa = PBXBuildFile; fileRef = 002F39F909D0881F00EBEB88 /* SDL.framework */; }; + 002F3A2E09D0888800EBEB88 /* SDLMain.m in Sources */ = {isa = PBXBuildFile; fileRef = 002F3A2C09D0888800EBEB88 /* SDLMain.m */; }; + 002F3A3F09D088BA00EBEB88 /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F3A3E09D088BA00EBEB88 /* main.c */; }; + 002F3BFA09D0938900EBEB88 /* atlantis.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F3BF409D0938900EBEB88 /* atlantis.c */; }; + 002F3BFC09D0938900EBEB88 /* dolphin.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F3BF609D0938900EBEB88 /* dolphin.c */; }; + 002F3BFD09D0938900EBEB88 /* shark.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F3BF709D0938900EBEB88 /* shark.c */; }; + 002F3BFE09D0938900EBEB88 /* swim.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F3BF809D0938900EBEB88 /* swim.c */; }; + 002F3BFF09D0938900EBEB88 /* whale.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F3BF909D0938900EBEB88 /* whale.c */; }; + 002F3C0109D093BD00EBEB88 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F3C0009D093BD00EBEB88 /* OpenGL.framework */; }; + 002F3C6109D0951E00EBEB88 /* GLUT.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F3C6009D0951E00EBEB88 /* GLUT.framework */; }; + 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; }; + 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXBuildStyle section */ + 4A9504CCFFE6A4B311CA0CBA /* Debug */ = { + isa = PBXBuildStyle; + buildSettings = { + }; + name = Debug; + }; + 4A9504CDFFE6A4B311CA0CBA /* Release */ = { + isa = PBXBuildStyle; + buildSettings = { + }; + name = Release; + }; +/* End PBXBuildStyle section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 002F39FD09D0883400EBEB88 /* Copy Frameworks into .app bundle */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + 002F3A0009D0884600EBEB88 /* SDL.framework in Copy Frameworks into .app bundle */, + ); + name = "Copy Frameworks into .app bundle"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 002F39F909D0881F00EBEB88 /* SDL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL.framework; path = /Library/Frameworks/SDL.framework; sourceTree = ""; }; + 002F3A2B09D0888800EBEB88 /* SDLMain.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SDLMain.h; sourceTree = SOURCE_ROOT; }; + 002F3A2C09D0888800EBEB88 /* SDLMain.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = SDLMain.m; sourceTree = SOURCE_ROOT; }; + 002F3A3E09D088BA00EBEB88 /* main.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = main.c; sourceTree = SOURCE_ROOT; }; + 002F3BF409D0938900EBEB88 /* atlantis.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = atlantis.c; path = atlantis/atlantis.c; sourceTree = SOURCE_ROOT; }; + 002F3BF509D0938900EBEB88 /* atlantis.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = atlantis.h; path = atlantis/atlantis.h; sourceTree = SOURCE_ROOT; }; + 002F3BF609D0938900EBEB88 /* dolphin.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = dolphin.c; path = atlantis/dolphin.c; sourceTree = SOURCE_ROOT; }; + 002F3BF709D0938900EBEB88 /* shark.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = shark.c; path = atlantis/shark.c; sourceTree = SOURCE_ROOT; }; + 002F3BF809D0938900EBEB88 /* swim.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = swim.c; path = atlantis/swim.c; sourceTree = SOURCE_ROOT; }; + 002F3BF909D0938900EBEB88 /* whale.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = whale.c; path = atlantis/whale.c; sourceTree = SOURCE_ROOT; }; + 002F3C0009D093BD00EBEB88 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = /System/Library/Frameworks/OpenGL.framework; sourceTree = ""; }; + 002F3C6009D0951E00EBEB88 /* GLUT.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLUT.framework; path = ../../../../../../../../../../System/Library/Frameworks/GLUT.framework; sourceTree = SOURCE_ROOT; }; + 089C165DFE840E0CC02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = ""; }; + 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = ""; }; + 29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = ""; }; + 29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = ""; }; + 32CA4F630368D1EE00C91783 /* «PROJECTNAME»_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file; path = "«PROJECTNAME»_Prefix.pch"; sourceTree = ""; }; + 8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + 8D1107320486CEB800E47090 /* «PROJECTNAME».app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "«PROJECTNAME».app"; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 8D11072E0486CEB800E47090 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F39FA09D0881F00EBEB88 /* SDL.framework in Frameworks */, + 002F3C6109D0951E00EBEB88 /* GLUT.framework in Frameworks */, + 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */, + 002F3C0109D093BD00EBEB88 /* OpenGL.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 002F3BF309D0937800EBEB88 /* atlantis */ = { + isa = PBXGroup; + children = ( + 002F3BF409D0938900EBEB88 /* atlantis.c */, + 002F3BF509D0938900EBEB88 /* atlantis.h */, + 002F3BF609D0938900EBEB88 /* dolphin.c */, + 002F3BF709D0938900EBEB88 /* shark.c */, + 002F3BF809D0938900EBEB88 /* swim.c */, + 002F3BF909D0938900EBEB88 /* whale.c */, + ); + name = atlantis; + sourceTree = ""; + }; + 080E96DDFE201D6D7F000001 /* Classes */ = { + isa = PBXGroup; + children = ( + 002F3A2B09D0888800EBEB88 /* SDLMain.h */, + 002F3A2C09D0888800EBEB88 /* SDLMain.m */, + ); + name = Classes; + sourceTree = ""; + }; + 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */ = { + isa = PBXGroup; + children = ( + 002F39F909D0881F00EBEB88 /* SDL.framework */, + 002F3C6009D0951E00EBEB88 /* GLUT.framework */, + 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */, + 002F3C0009D093BD00EBEB88 /* OpenGL.framework */, + ); + name = "Linked Frameworks"; + sourceTree = ""; + }; + 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */ = { + isa = PBXGroup; + children = ( + 29B97324FDCFA39411CA2CEA /* AppKit.framework */, + 29B97325FDCFA39411CA2CEA /* Foundation.framework */, + ); + name = "Other Frameworks"; + sourceTree = ""; + }; + 19C28FACFE9D520D11CA2CBB /* Products */ = { + isa = PBXGroup; + children = ( + 8D1107320486CEB800E47090 /* «PROJECTNAME».app */, + ); + name = Products; + sourceTree = ""; + }; + 29B97314FDCFA39411CA2CEA /* «PROJECTNAMEASXML» */ = { + isa = PBXGroup; + children = ( + 080E96DDFE201D6D7F000001 /* Classes */, + 29B97315FDCFA39411CA2CEA /* Other Sources */, + 29B97317FDCFA39411CA2CEA /* Resources */, + 29B97323FDCFA39411CA2CEA /* Frameworks */, + 19C28FACFE9D520D11CA2CBB /* Products */, + ); + name = "«PROJECTNAMEASXML»"; + sourceTree = ""; + }; + 29B97315FDCFA39411CA2CEA /* Other Sources */ = { + isa = PBXGroup; + children = ( + 002F3BF309D0937800EBEB88 /* atlantis */, + 32CA4F630368D1EE00C91783 /* «PROJECTNAME»_Prefix.pch */, + 002F3A3E09D088BA00EBEB88 /* main.c */, + ); + name = "Other Sources"; + sourceTree = ""; + }; + 29B97317FDCFA39411CA2CEA /* Resources */ = { + isa = PBXGroup; + children = ( + 8D1107310486CEB800E47090 /* Info.plist */, + 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */, + ); + name = Resources; + sourceTree = ""; + }; + 29B97323FDCFA39411CA2CEA /* Frameworks */ = { + isa = PBXGroup; + children = ( + 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */, + 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */, + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 8D1107260486CEB800E47090 /* «PROJECTNAME» */ = { + isa = PBXNativeTarget; + buildConfigurationList = C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "«PROJECTNAME»" */; + buildPhases = ( + 8D1107290486CEB800E47090 /* Resources */, + 8D11072C0486CEB800E47090 /* Sources */, + 8D11072E0486CEB800E47090 /* Frameworks */, + 002F39FD09D0883400EBEB88 /* Copy Frameworks into .app bundle */, + ); + buildRules = ( + ); + buildSettings = { + }; + dependencies = ( + ); + name = "«PROJECTNAME»"; + productInstallPath = "$(HOME)/Applications"; + productName = "«PROJECTNAME»"; + productReference = 8D1107320486CEB800E47090 /* «PROJECTNAME».app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 29B97313FDCFA39411CA2CEA /* Project object */ = { + isa = PBXProject; + buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "SDLOpenGLApp" */; + buildSettings = { + }; + buildStyles = ( + 4A9504CCFFE6A4B311CA0CBA /* Debug */, + 4A9504CDFFE6A4B311CA0CBA /* Release */, + ); + hasScannedForEncodings = 1; + mainGroup = 29B97314FDCFA39411CA2CEA /* «PROJECTNAMEASXML» */; + projectDirPath = ""; + targets = ( + 8D1107260486CEB800E47090 /* «PROJECTNAME» */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 8D1107290486CEB800E47090 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 8D11072C0486CEB800E47090 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F3A2E09D0888800EBEB88 /* SDLMain.m in Sources */, + 002F3A3F09D088BA00EBEB88 /* main.c in Sources */, + 002F3BFA09D0938900EBEB88 /* atlantis.c in Sources */, + 002F3BFC09D0938900EBEB88 /* dolphin.c in Sources */, + 002F3BFD09D0938900EBEB88 /* shark.c in Sources */, + 002F3BFE09D0938900EBEB88 /* swim.c in Sources */, + 002F3BFF09D0938900EBEB88 /* whale.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXVariantGroup section */ + 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + 089C165DFE840E0CC02AAC07 /* English */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + C01FCF4B08A954540054247B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_FIX_AND_CONTINUE = YES; + GCC_MODEL_TUNING = G5; + GCC_OPTIMIZATION_LEVEL = 0; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(HOME)/Applications"; + PRODUCT_NAME = "«PROJECTNAME»"; + WRAPPER_EXTENSION = app; + ZERO_LINK = YES; + }; + name = Debug; + }; + C01FCF4C08A954540054247B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = ( + ppc, + i386, + ); + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + GCC_MODEL_TUNING = G5; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(HOME)/Applications"; + PRODUCT_NAME = "«PROJECTNAME»"; + WRAPPER_EXTENSION = app; + }; + name = Release; + }; + C01FCF4F08A954540054247B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks", + /Library/Frameworks, + "$(FRAMEWORK_SEARCH_PATHS)", + ); + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks/SDL.framework/Headers", + /Library/Frameworks/SDL.framework/Headers, + "$(HEADER_SEARCH_PATHS)", + ); + PREBINDING = NO; + SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; + }; + name = Debug; + }; + C01FCF5008A954540054247B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks", + /Library/Frameworks, + "$(FRAMEWORK_SEARCH_PATHS)", + ); + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "$(HOME)/Library/Frameworks/SDL.framework/Headers", + /Library/Frameworks/SDL.framework/Headers, + "$(HEADER_SEARCH_PATHS)", + ); + PREBINDING = NO; + SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "«PROJECTNAME»" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01FCF4B08A954540054247B /* Debug */, + C01FCF4C08A954540054247B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + C01FCF4E08A954540054247B /* Build configuration list for PBXProject "SDLOpenGLApp" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01FCF4F08A954540054247B /* Debug */, + C01FCF5008A954540054247B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 29B97313FDCFA39411CA2CEA /* Project object */; +} diff --git a/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/atlantis.c b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/atlantis.c new file mode 100644 index 000000000..4efdf6ce8 --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/atlantis.c @@ -0,0 +1,459 @@ + +/* Copyright (c) Mark J. Kilgard, 1994. */ + +/** + * (c) Copyright 1993, 1994, Silicon Graphics, Inc. + * ALL RIGHTS RESERVED + * Permission to use, copy, modify, and distribute this software for + * any purpose and without fee is hereby granted, provided that the above + * copyright notice appear in all copies and that both the copyright notice + * and this permission notice appear in supporting documentation, and that + * the name of Silicon Graphics, Inc. not be used in advertising + * or publicity pertaining to distribution of the software without specific, + * written prior permission. + * + * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS" + * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR + * FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON + * GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT, + * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY + * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, + * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF + * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC. HAS BEEN + * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE + * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE. + * + * US Government Users Restricted Rights + * Use, duplication, or disclosure by the Government is subject to + * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph + * (c)(1)(ii) of the Rights in Technical Data and Computer Software + * clause at DFARS 252.227-7013 and/or in similar or successor + * clauses in the FAR or the DOD or NASA FAR Supplement. + * Unpublished-- rights reserved under the copyright laws of the + * United States. Contractor/manufacturer is Silicon Graphics, + * Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311. + * + * OpenGL(TM) is a trademark of Silicon Graphics, Inc. + */ +#include +#include +#include +#include +#include +#include +#include "atlantis.h" + +fishRec sharks[NUM_SHARKS]; +fishRec momWhale; +fishRec babyWhale; +fishRec dolph; + +GLboolean Timing = GL_TRUE; + +int w_win = 640; +int h_win = 480; +GLint count = 0; +GLenum StrMode = GL_VENDOR; + +GLboolean moving; + +static double mtime(void) +{ + struct timeval tk_time; + struct timezone tz; + + gettimeofday(&tk_time, &tz); + + return 4294.967296 * tk_time.tv_sec + 0.000001 * tk_time.tv_usec; +} + +static double filter(double in, double *save) +{ + static double k1 = 0.9; + static double k2 = 0.05; + + save[3] = in; + save[1] = save[0]*k1 + k2*(save[3] + save[2]); + + save[0]=save[1]; + save[2]=save[3]; + + return(save[1]); +} + +void DrawStr(const char *str) +{ + GLint i = 0; + + if(!str) return; + + while(str[i]) + { + glutBitmapCharacter(GLUT_BITMAP_HELVETICA_12, str[i]); + i++; + } +} + +void +InitFishs(void) +{ + int i; + + for (i = 0; i < NUM_SHARKS; i++) { + sharks[i].x = 70000.0 + rand() % 6000; + sharks[i].y = rand() % 6000; + sharks[i].z = rand() % 6000; + sharks[i].psi = rand() % 360 - 180.0; + sharks[i].v = 1.0; + } + + dolph.x = 30000.0; + dolph.y = 0.0; + dolph.z = 6000.0; + dolph.psi = 90.0; + dolph.theta = 0.0; + dolph.v = 3.0; + + momWhale.x = 70000.0; + momWhale.y = 0.0; + momWhale.z = 0.0; + momWhale.psi = 90.0; + momWhale.theta = 0.0; + momWhale.v = 3.0; + + babyWhale.x = 60000.0; + babyWhale.y = -2000.0; + babyWhale.z = -2000.0; + babyWhale.psi = 90.0; + babyWhale.theta = 0.0; + babyWhale.v = 3.0; +} + +void +Atlantis_Init(void) +{ + static float ambient[] = {0.2, 0.2, 0.2, 1.0}; + static float diffuse[] = {1.0, 1.0, 1.0, 1.0}; + static float position[] = {0.0, 1.0, 0.0, 0.0}; + static float mat_shininess[] = {90.0}; + static float mat_specular[] = {0.8, 0.8, 0.8, 1.0}; + static float mat_diffuse[] = {0.46, 0.66, 0.795, 1.0}; + static float mat_ambient[] = {0.3, 0.4, 0.5, 1.0}; + static float lmodel_ambient[] = {0.4, 0.4, 0.4, 1.0}; + static float lmodel_localviewer[] = {0.0}; + //GLfloat map1[4] = {0.0, 0.0, 0.0, 0.0}; + //GLfloat map2[4] = {0.0, 0.0, 0.0, 0.0}; + static float fog_color[] = {0.0, 0.5, 0.9, 1.0}; + + glFrontFace(GL_CCW); + + glDepthFunc(GL_LESS); + glEnable(GL_DEPTH_TEST); + + glLightfv(GL_LIGHT0, GL_AMBIENT, ambient); + glLightfv(GL_LIGHT0, GL_DIFFUSE, diffuse); + glLightfv(GL_LIGHT0, GL_POSITION, position); + glLightModelfv(GL_LIGHT_MODEL_AMBIENT, lmodel_ambient); + glLightModelfv(GL_LIGHT_MODEL_LOCAL_VIEWER, lmodel_localviewer); + glEnable(GL_LIGHTING); + glEnable(GL_LIGHT0); + + glMaterialfv(GL_FRONT_AND_BACK, GL_SHININESS, mat_shininess); + glMaterialfv(GL_FRONT_AND_BACK, GL_SPECULAR, mat_specular); + glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE, mat_diffuse); + glMaterialfv(GL_FRONT_AND_BACK, GL_AMBIENT, mat_ambient); + + InitFishs(); + + glEnable(GL_FOG); + glFogi(GL_FOG_MODE, GL_EXP); + glFogf(GL_FOG_DENSITY, 0.0000025); + glFogfv(GL_FOG_COLOR, fog_color); + + glClearColor(0.0, 0.5, 0.9, 1.0); +} + +void +Atlantis_Reshape(int width, int height) +{ + w_win = width; + h_win = height; + + glViewport(0, 0, width, height); + + glMatrixMode(GL_PROJECTION); + glLoadIdentity(); + gluPerspective(60.0, (GLfloat) width / (GLfloat) height, 20000.0, 300000.0); + glMatrixMode(GL_MODELVIEW); +} + +void +Atlantis_Animate(void) +{ + int i; + + for (i = 0; i < NUM_SHARKS; i++) { + SharkPilot(&sharks[i]); + SharkMiss(i); + } + WhalePilot(&dolph); + dolph.phi++; + //glutPostRedisplay(); + WhalePilot(&momWhale); + momWhale.phi++; + WhalePilot(&babyWhale); + babyWhale.phi++; +} + +void +Atlantis_Key(unsigned char key, int x, int y) +{ + switch (key) { + case 't': + Timing = !Timing; + break; + case ' ': + switch(StrMode) + { + case GL_EXTENSIONS: + StrMode = GL_VENDOR; + break; + case GL_VENDOR: + StrMode = GL_RENDERER; + break; + case GL_RENDERER: + StrMode = GL_VERSION; + break; + case GL_VERSION: + StrMode = GL_EXTENSIONS; + break; + } + break; + case 27: /* Esc will quit */ + exit(1); + break; + case 's': /* "s" start animation */ + moving = GL_TRUE; + //glutIdleFunc(Animate); + break; + case 'a': /* "a" stop animation */ + moving = GL_FALSE; + //glutIdleFunc(NULL); + break; + case '.': /* "." will advance frame */ + if (!moving) { + Atlantis_Animate(); + } + } +} +/* +void Display(void) +{ + static float P123[3] = {-448.94, -203.14, 9499.60}; + static float P124[3] = {-442.64, -185.20, 9528.07}; + static float P125[3] = {-441.07, -148.05, 9528.07}; + static float P126[3] = {-443.43, -128.84, 9499.60}; + static float P127[3] = {-456.87, -146.78, 9466.67}; + static float P128[3] = {-453.68, -183.93, 9466.67}; + + glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); + + glPushMatrix(); + FishTransform(&dolph); + DrawDolphin(&dolph); + glPopMatrix(); + + glutSwapBuffers(); +} +*/ + +void +Atlantis_Display(void) +{ + int i; + static double th[4] = {0.0, 0.0, 0.0, 0.0}; + static double t1 = 0.0, t2 = 0.0, t; + char num_str[128]; + + t1 = t2; + + glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); + + for (i = 0; i < NUM_SHARKS; i++) { + glPushMatrix(); + FishTransform(&sharks[i]); + DrawShark(&sharks[i]); + glPopMatrix(); + } + + glPushMatrix(); + FishTransform(&dolph); + DrawDolphin(&dolph); + glPopMatrix(); + + glPushMatrix(); + FishTransform(&momWhale); + DrawWhale(&momWhale); + glPopMatrix(); + + glPushMatrix(); + FishTransform(&babyWhale); + glScalef(0.45, 0.45, 0.3); + DrawWhale(&babyWhale); + glPopMatrix(); + + if(Timing) + { + t2 = mtime(); + t = t2 - t1; + if(t > 0.0001) t = 1.0 / t; + + glDisable(GL_LIGHTING); + //glDisable(GL_DEPTH_TEST); + + glColor3f(1.0, 0.0, 0.0); + + glMatrixMode (GL_PROJECTION); + glPushMatrix(); + glLoadIdentity(); + glOrtho(0, w_win, 0, h_win, -10.0, 10.0); + + glRasterPos2f(5.0, 5.0); + + switch(StrMode) + { + case GL_VENDOR: + sprintf(num_str, "%0.2f Hz, %dx%d, VENDOR: ", filter(t, th), w_win, h_win); + DrawStr(num_str); + DrawStr(glGetString(GL_VENDOR)); + break; + case GL_RENDERER: + sprintf(num_str, "%0.2f Hz, %dx%d, RENDERER: ", filter(t, th), w_win, h_win); + DrawStr(num_str); + DrawStr(glGetString(GL_RENDERER)); + break; + case GL_VERSION: + sprintf(num_str, "%0.2f Hz, %dx%d, VERSION: ", filter(t, th), w_win, h_win); + DrawStr(num_str); + DrawStr(glGetString(GL_VERSION)); + break; + case GL_EXTENSIONS: + sprintf(num_str, "%0.2f Hz, %dx%d, EXTENSIONS: ", filter(t, th), w_win, h_win); + DrawStr(num_str); + DrawStr(glGetString(GL_EXTENSIONS)); + break; + } + + glPopMatrix(); + glMatrixMode(GL_MODELVIEW); + + glEnable(GL_LIGHTING); + //glEnable(GL_DEPTH_TEST); + } + + count++; + + glutSwapBuffers(); +} + +/* +void +Visible(int state) +{ + if (state == GLUT_VISIBLE) { + if (moving) + glutIdleFunc(Animate); + } else { + if (moving) + glutIdleFunc(NULL); + } +} + + +void +timingSelect(int value) +{ + switch(value) + { + case 1: + StrMode = GL_VENDOR; + break; + case 2: + StrMode = GL_RENDERER; + break; + case 3: + StrMode = GL_VERSION; + break; + case 4: + StrMode = GL_EXTENSIONS; + break; + } +} + +void +menuSelect(int value) +{ + switch (value) { + case 1: + moving = GL_TRUE; + glutIdleFunc(Animate); + break; + case 2: + moving = GL_FALSE; + glutIdleFunc(NULL); + break; + case 4: + exit(0); + break; + } +} + +int +main(int argc, char **argv) +{ + GLboolean fullscreen = GL_FALSE; + GLint time_menu; + + srand(0); + + glutInit(&argc, argv); + if (argc > 1 && !strcmp(argv[1], "-w")) + fullscreen = GL_FALSE; + + //glutInitDisplayMode(GLUT_RGBA | GLUT_DOUBLE | GLUT_DEPTH); + glutInitDisplayString("rgba double depth=24"); + if (fullscreen) { + glutGameModeString("1024x768:32"); + glutEnterGameMode(); + } else { + glutInitWindowSize(320, 240); + glutCreateWindow("Atlantis Timing"); + } + Init(); + glutDisplayFunc(Display); + glutReshapeFunc(Reshape); + glutKeyboardFunc(Key); + moving = GL_TRUE; +glutIdleFunc(Animate); + glutVisibilityFunc(Visible); + + time_menu = glutCreateMenu(timingSelect); + glutAddMenuEntry("GL_VENDOR", 1); + glutAddMenuEntry("GL_RENDERER", 2); + glutAddMenuEntry("GL_VERSION", 3); + glutAddMenuEntry("GL_EXTENSIONS", 4); + + glutCreateMenu(menuSelect); + glutAddMenuEntry("Start motion", 1); + glutAddMenuEntry("Stop motion", 2); + glutAddSubMenu("Timing Mode", time_menu); + glutAddMenuEntry("Quit", 4); + + //glutAttachMenu(GLUT_RIGHT_BUTTON); + glutAttachMenu(GLUT_RIGHT_BUTTON); + glutMainLoop(); + return 0; // ANSI C requires main to return int. +} +*/ \ No newline at end of file diff --git a/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/atlantis.h b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/atlantis.h new file mode 100644 index 000000000..6ccf2d5f0 --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/atlantis.h @@ -0,0 +1,65 @@ +/** + * (c) Copyright 1993, 1994, Silicon Graphics, Inc. + * ALL RIGHTS RESERVED + * Permission to use, copy, modify, and distribute this software for + * any purpose and without fee is hereby granted, provided that the above + * copyright notice appear in all copies and that both the copyright notice + * and this permission notice appear in supporting documentation, and that + * the name of Silicon Graphics, Inc. not be used in advertising + * or publicity pertaining to distribution of the software without specific, + * written prior permission. + * + * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS" + * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR + * FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON + * GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT, + * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY + * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, + * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF + * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC. HAS BEEN + * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE + * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE. + * + * US Government Users Restricted Rights + * Use, duplication, or disclosure by the Government is subject to + * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph + * (c)(1)(ii) of the Rights in Technical Data and Computer Software + * clause at DFARS 252.227-7013 and/or in similar or successor + * clauses in the FAR or the DOD or NASA FAR Supplement. + * Unpublished-- rights reserved under the copyright laws of the + * United States. Contractor/manufacturer is Silicon Graphics, + * Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311. + * + * OpenGL(TM) is a trademark of Silicon Graphics, Inc. + */ +#define RAD 57.295 +#define RRAD 0.01745 + +#define NUM_SHARKS 4 +#define SHARKSIZE 6000 +#define SHARKSPEED 100.0 + +#define WHALESPEED 250.0 + +typedef struct _fishRec { + float x, y, z, phi, theta, psi, v; + float xt, yt, zt; + float htail, vtail; + float dtheta; + int spurt, attack; +} fishRec; + +extern fishRec sharks[NUM_SHARKS]; +extern fishRec momWhale; +extern fishRec babyWhale; +extern fishRec dolph; + +extern void FishTransform(fishRec *); +extern void WhalePilot(fishRec *); +extern void SharkPilot(fishRec *); +extern void SharkMiss(int); +extern void DrawWhale(fishRec *); +extern void DrawShark(fishRec *); +extern void DrawDolphin(fishRec *); diff --git a/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/dolphin.c b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/dolphin.c new file mode 100644 index 000000000..9fba3ba98 --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/dolphin.c @@ -0,0 +1,1934 @@ +/** + * (c) Copyright 1993, 1994, Silicon Graphics, Inc. + * ALL RIGHTS RESERVED + * Permission to use, copy, modify, and distribute this software for + * any purpose and without fee is hereby granted, provided that the above + * copyright notice appear in all copies and that both the copyright notice + * and this permission notice appear in supporting documentation, and that + * the name of Silicon Graphics, Inc. not be used in advertising + * or publicity pertaining to distribution of the software without specific, + * written prior permission. + * + * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS" + * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR + * FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON + * GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT, + * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY + * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, + * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF + * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC. HAS BEEN + * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE + * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE. + * + * US Government Users Restricted Rights + * Use, duplication, or disclosure by the Government is subject to + * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph + * (c)(1)(ii) of the Rights in Technical Data and Computer Software + * clause at DFARS 252.227-7013 and/or in similar or successor + * clauses in the FAR or the DOD or NASA FAR Supplement. + * Unpublished-- rights reserved under the copyright laws of the + * United States. Contractor/manufacturer is Silicon Graphics, + * Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311. + * + * OpenGL(TM) is a trademark of Silicon Graphics, Inc. + */ +#include +#include +#include "atlantis.h" +/* *INDENT-OFF* */ +static float N001[3] = {-0.005937 ,-0.101998 ,-0.994767}; +static float N002[3] = {0.936780 ,-0.200803 ,0.286569}; +static float N003[3] = {-0.233062 ,0.972058 ,0.028007}; +static float N005[3] = {0.898117 ,0.360171 ,0.252315}; +static float N006[3] = {-0.915437 ,0.348456 ,0.201378}; +static float N007[3] = {0.602263 ,-0.777527 ,0.180920}; +static float N008[3] = {-0.906912 ,-0.412015 ,0.088061}; +static float N012[3] = {0.884408 ,-0.429417 ,-0.182821}; +static float N013[3] = {0.921121 ,0.311084 ,-0.234016}; +static float N014[3] = {0.382635 ,0.877882 ,-0.287948}; +static float N015[3] = {-0.380046 ,0.888166 ,-0.258316}; +static float N016[3] = {-0.891515 ,0.392238 ,-0.226607}; +static float N017[3] = {-0.901419 ,-0.382002 ,-0.203763}; +static float N018[3] = {-0.367225 ,-0.911091 ,-0.187243}; +static float N019[3] = {0.339539 ,-0.924846 ,-0.171388}; +static float N020[3] = {0.914706 ,-0.378617 ,-0.141290}; +static float N021[3] = {0.950662 ,0.262713 ,-0.164994}; +static float N022[3] = {0.546359 ,0.801460 ,-0.243218}; +static float N023[3] = {-0.315796 ,0.917068 ,-0.243431}; +static float N024[3] = {-0.825687 ,0.532277 ,-0.186875}; +static float N025[3] = {-0.974763 ,-0.155232 ,-0.160435}; +static float N026[3] = {-0.560596 ,-0.816658 ,-0.137119}; +static float N027[3] = {0.380210 ,-0.910817 ,-0.160786}; +static float N028[3] = {0.923772 ,-0.358322 ,-0.135093}; +static float N029[3] = {0.951202 ,0.275053 ,-0.139859}; +static float N030[3] = {0.686099 ,0.702548 ,-0.188932}; +static float N031[3] = {-0.521865 ,0.826719 ,-0.210220}; +static float N032[3] = {-0.923820 ,0.346739 ,-0.162258}; +static float N033[3] = {-0.902095 ,-0.409995 ,-0.134646}; +static float N034[3] = {-0.509115 ,-0.848498 ,-0.144404}; +static float N035[3] = {0.456469 ,-0.880293 ,-0.129305}; +static float N036[3] = {0.873401 ,-0.475489 ,-0.105266}; +static float N037[3] = {0.970825 ,0.179861 ,-0.158584}; +static float N038[3] = {0.675609 ,0.714187 ,-0.183004}; +static float N039[3] = {-0.523574 ,0.830212 ,-0.191360}; +static float N040[3] = {-0.958895 ,0.230808 ,-0.165071}; +static float N041[3] = {-0.918285 ,-0.376803 ,-0.121542}; +static float N042[3] = {-0.622467 ,-0.774167 ,-0.114888}; +static float N043[3] = {0.404497 ,-0.908807 ,-0.102231}; +static float N044[3] = {0.930538 ,-0.365155 ,-0.027588}; +static float N045[3] = {0.921920 ,0.374157 ,-0.100345}; +static float N046[3] = {0.507346 ,0.860739 ,0.041562}; +static float N047[3] = {-0.394646 ,0.918815 ,-0.005730}; +static float N048[3] = {-0.925411 ,0.373024 ,-0.066837}; +static float N049[3] = {-0.945337 ,-0.322309 ,-0.049551}; +static float N050[3] = {-0.660437 ,-0.750557 ,-0.022072}; +static float N051[3] = {0.488835 ,-0.871950 ,-0.027261}; +static float N052[3] = {0.902599 ,-0.421397 ,0.087969}; +static float N053[3] = {0.938636 ,0.322606 ,0.122020}; +static float N054[3] = {0.484605 ,0.871078 ,0.079878}; +static float N055[3] = {-0.353607 ,0.931559 ,0.084619}; +static float N056[3] = {-0.867759 ,0.478564 ,0.134054}; +static float N057[3] = {-0.951583 ,-0.296030 ,0.082794}; +static float N058[3] = {-0.672355 ,-0.730209 ,0.121384}; +static float N059[3] = {0.528336 ,-0.842452 ,0.105525}; +static float N060[3] = {0.786913 ,-0.564760 ,0.248627}; +static float N062[3] = {0.622098 ,0.765230 ,0.165584}; +static float N063[3] = {-0.631711 ,0.767816 ,0.106773}; +static float N064[3] = {-0.687886 ,0.606351 ,0.398938}; +static float N065[3] = {-0.946327 ,-0.281623 ,0.158598}; +static float N066[3] = {-0.509549 ,-0.860437 ,0.002776}; +static float N067[3] = {0.462594 ,-0.876692 ,0.131977}; +static float N071[3] = {0.000000 ,1.000000 ,0.000000}; +static float N077[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N078[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N079[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N080[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N081[3] = {-0.571197 ,0.816173 ,0.087152}; +static float N082[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N083[3] = {-0.571197 ,0.816173 ,0.087152}; +static float N084[3] = {-0.571197 ,0.816173 ,0.087152}; +static float N085[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N086[3] = {-0.571197 ,0.816173 ,0.087152}; +static float N087[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N088[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N089[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N090[3] = {-0.880770 ,0.461448 ,0.106351}; +static float N091[3] = {0.000000 ,1.000000 ,0.000000}; +static float N092[3] = {0.000000 ,1.000000 ,0.000000}; +static float N093[3] = {0.000000 ,1.000000 ,0.000000}; +static float N094[3] = {1.000000 ,0.000000 ,0.000000}; +static float N095[3] = {-1.000000 ,0.000000 ,0.000000}; +static float N097[3] = {-0.697296 ,0.702881 ,0.140491}; +static float N098[3] = {0.918864 ,0.340821 ,0.198819}; +static float N099[3] = {-0.932737 ,0.201195 ,0.299202}; +static float N100[3] = {0.029517 ,0.981679 ,0.188244}; +static float N102[3] = {0.813521 ,-0.204936 ,0.544229}; +static float N110[3] = {-0.781480 ,-0.384779 ,0.491155}; +static float N111[3] = {-0.722243 ,0.384927 ,0.574627}; +static float N112[3] = {-0.752278 ,0.502679 ,0.425901}; +static float N113[3] = {0.547257 ,0.367910 ,0.751766}; +static float N114[3] = {0.725949 ,-0.232568 ,0.647233}; +static float N115[3] = {-0.747182 ,-0.660786 ,0.071280}; +static float N116[3] = {0.931519 ,0.200748 ,0.303270}; +static float N117[3] = {-0.828928 ,0.313757 ,0.463071}; +static float N118[3] = {0.902554 ,-0.370967 ,0.218587}; +static float N119[3] = {-0.879257 ,-0.441851 ,0.177973}; +static float N120[3] = {0.642327 ,0.611901 ,0.461512}; +static float N121[3] = {0.964817 ,-0.202322 ,0.167910}; +static float N122[3] = {0.000000 ,1.000000 ,0.000000}; +static float P001[3] = {5.68, -300.95, 1324.70}; +static float P002[3] = {338.69, -219.63, 9677.03}; +static float P003[3] = {12.18, 474.59, 9138.14}; +static float P005[3] = {487.51, 198.05, 9350.78}; +static float P006[3] = {-457.61, 68.74, 9427.85}; +static float P007[3] = {156.52, -266.72, 10311.68}; +static float P008[3] = {-185.56, -266.51, 10310.47}; +static float P009[3] = {124.39, -261.46, 1942.34}; +static float P010[3] = {-130.05, -261.46, 1946.03}; +static float P011[3] = {141.07, -320.11, 1239.38}; +static float P012[3] = {156.48, -360.12, 2073.41}; +static float P013[3] = {162.00, -175.88, 2064.44}; +static float P014[3] = {88.16, -87.72, 2064.02}; +static float P015[3] = {-65.21, -96.13, 2064.02}; +static float P016[3] = {-156.48, -180.96, 2064.44}; +static float P017[3] = {-162.00, -368.93, 2082.39}; +static float P018[3] = {-88.16, -439.22, 2082.39}; +static float P019[3] = {65.21, -440.32, 2083.39}; +static float P020[3] = {246.87, -356.02, 2576.95}; +static float P021[3] = {253.17, -111.15, 2567.15}; +static float P022[3] = {132.34, 51.41, 2559.84}; +static float P023[3] = {-97.88, 40.44, 2567.15}; +static float P024[3] = {-222.97, -117.49, 2567.15}; +static float P025[3] = {-252.22, -371.53, 2569.92}; +static float P026[3] = {-108.44, -518.19, 2586.75}; +static float P027[3] = {97.88, -524.79, 2586.75}; +static float P028[3] = {370.03, -421.19, 3419.70}; +static float P029[3] = {351.15, -16.98, 3423.17}; +static float P030[3] = {200.66, 248.46, 3430.37}; +static float P031[3] = {-148.42, 235.02, 3417.91}; +static float P032[3] = {-360.21, -30.27, 3416.84}; +static float P033[3] = {-357.90, -414.89, 3407.04}; +static float P034[3] = {-148.88, -631.35, 3409.90}; +static float P035[3] = {156.38, -632.59, 3419.70}; +static float P036[3] = {462.61, -469.21, 4431.51}; +static float P037[3] = {466.60, 102.25, 4434.98}; +static float P038[3] = {243.05, 474.34, 4562.02}; +static float P039[3] = {-191.23, 474.40, 4554.42}; +static float P040[3] = {-476.12, 111.05, 4451.11}; +static float P041[3] = {-473.36, -470.74, 4444.78}; +static float P042[3] = {-266.95, -748.41, 4447.78}; +static float P043[3] = {211.14, -749.91, 4429.73}; +static float P044[3] = {680.57, -370.27, 5943.46}; +static float P045[3] = {834.01, 363.09, 6360.63}; +static float P046[3] = {371.29, 804.51, 6486.26}; +static float P047[3] = {-291.43, 797.22, 6494.28}; +static float P048[3] = {-784.13, 370.75, 6378.01}; +static float P049[3] = {-743.29, -325.82, 5943.46}; +static float P050[3] = {-383.24, -804.77, 5943.46}; +static float P051[3] = {283.47, -846.09, 5943.46}; +static float iP001[3] = {5.68, -300.95, 1324.70}; +static float iP009[3] = {124.39, -261.46, 1942.34}; +static float iP010[3] = {-130.05, -261.46, 1946.03}; +static float iP011[3] = {141.07, -320.11, 1239.38}; +static float iP012[3] = {156.48, -360.12, 2073.41}; +static float iP013[3] = {162.00, -175.88, 2064.44}; +static float iP014[3] = {88.16, -87.72, 2064.02}; +static float iP015[3] = {-65.21, -96.13, 2064.02}; +static float iP016[3] = {-156.48, -180.96, 2064.44}; +static float iP017[3] = {-162.00, -368.93, 2082.39}; +static float iP018[3] = {-88.16, -439.22, 2082.39}; +static float iP019[3] = {65.21, -440.32, 2083.39}; +static float iP020[3] = {246.87, -356.02, 2576.95}; +static float iP021[3] = {253.17, -111.15, 2567.15}; +static float iP022[3] = {132.34, 51.41, 2559.84}; +static float iP023[3] = {-97.88, 40.44, 2567.15}; +static float iP024[3] = {-222.97, -117.49, 2567.15}; +static float iP025[3] = {-252.22, -371.53, 2569.92}; +static float iP026[3] = {-108.44, -518.19, 2586.75}; +static float iP027[3] = {97.88, -524.79, 2586.75}; +static float iP028[3] = {370.03, -421.19, 3419.70}; +static float iP029[3] = {351.15, -16.98, 3423.17}; +static float iP030[3] = {200.66, 248.46, 3430.37}; +static float iP031[3] = {-148.42, 235.02, 3417.91}; +static float iP032[3] = {-360.21, -30.27, 3416.84}; +static float iP033[3] = {-357.90, -414.89, 3407.04}; +static float iP034[3] = {-148.88, -631.35, 3409.90}; +static float iP035[3] = {156.38, -632.59, 3419.70}; +static float iP036[3] = {462.61, -469.21, 4431.51}; +static float iP037[3] = {466.60, 102.25, 4434.98}; +static float iP038[3] = {243.05, 474.34, 4562.02}; +static float iP039[3] = {-191.23, 474.40, 4554.42}; +static float iP040[3] = {-476.12, 111.05, 4451.11}; +static float iP041[3] = {-473.36, -470.74, 4444.78}; +static float iP042[3] = {-266.95, -748.41, 4447.78}; +static float iP043[3] = {211.14, -749.91, 4429.73}; +static float iP044[3] = {680.57, -370.27, 5943.46}; +static float iP045[3] = {834.01, 363.09, 6360.63}; +static float iP046[3] = {371.29, 804.51, 6486.26}; +static float iP047[3] = {-291.43, 797.22, 6494.28}; +static float iP048[3] = {-784.13, 370.75, 6378.01}; +static float iP049[3] = {-743.29, -325.82, 5943.46}; +static float iP050[3] = {-383.24, -804.77, 5943.46}; +static float iP051[3] = {283.47, -846.09, 5943.46}; +static float P052[3] = {599.09, -300.15, 7894.03}; +static float P053[3] = {735.48, 306.26, 7911.92}; +static float P054[3] = {246.22, 558.53, 8460.50}; +static float P055[3] = {-230.41, 559.84, 8473.23}; +static float P056[3] = {-698.66, 320.83, 7902.59}; +static float P057[3] = {-643.29, -299.16, 7902.59}; +static float P058[3] = {-341.47, -719.30, 7902.59}; +static float P059[3] = {252.57, -756.12, 7902.59}; +static float P060[3] = {458.39, -265.31, 9355.44}; +static float P062[3] = {224.04, 338.75, 9450.30}; +static float P063[3] = {-165.71, 341.04, 9462.35}; +static float P064[3] = {-298.11, 110.13, 10180.37}; +static float P065[3] = {-473.99, -219.71, 9355.44}; +static float P066[3] = {-211.97, -479.87, 9355.44}; +static float P067[3] = {192.86, -491.45, 9348.73}; +static float P068[3] = {-136.29, -319.84, 1228.73}; +static float P069[3] = {1111.17, -314.14, 1314.19}; +static float P070[3] = {-1167.34, -321.61, 1319.45}; +static float P071[3] = {1404.86, -306.66, 1235.45}; +static float P072[3] = {-1409.73, -314.14, 1247.66}; +static float P073[3] = {1254.01, -296.87, 1544.58}; +static float P074[3] = {-1262.09, -291.70, 1504.26}; +static float P075[3] = {965.71, -269.26, 1742.65}; +static float P076[3] = {-900.97, -276.74, 1726.07}; +static float iP068[3] = {-136.29, -319.84, 1228.73}; +static float iP069[3] = {1111.17, -314.14, 1314.19}; +static float iP070[3] = {-1167.34, -321.61, 1319.45}; +static float iP071[3] = {1404.86, -306.66, 1235.45}; +static float iP072[3] = {-1409.73, -314.14, 1247.66}; +static float iP073[3] = {1254.01, -296.87, 1544.58}; +static float iP074[3] = {-1262.09, -291.70, 1504.26}; +static float iP075[3] = {965.71, -269.26, 1742.65}; +static float iP076[3] = {-900.97, -276.74, 1726.07}; +static float P077[3] = {1058.00, -448.81, 8194.66}; +static float P078[3] = {-1016.51, -456.43, 8190.62}; +static float P079[3] = {-1515.96, -676.45, 7754.93}; +static float P080[3] = {1856.75, -830.34, 7296.56}; +static float P081[3] = {1472.16, -497.38, 7399.68}; +static float P082[3] = {-1775.26, -829.51, 7298.46}; +static float P083[3] = {911.09, -252.51, 7510.99}; +static float P084[3] = {-1451.94, -495.62, 7384.30}; +static float P085[3] = {1598.75, -669.26, 7769.90}; +static float P086[3] = {-836.53, -250.08, 7463.25}; +static float P087[3] = {722.87, -158.18, 8006.41}; +static float P088[3] = {-688.86, -162.28, 7993.89}; +static float P089[3] = {-626.92, -185.30, 8364.98}; +static float P090[3] = {647.72, -189.46, 8354.99}; +static float P091[3] = {0.00, 835.01, 5555.62}; +static float P092[3] = {0.00, 1350.18, 5220.86}; +static float P093[3] = {0.00, 1422.94, 5285.27}; +static float P094[3] = {0.00, 1296.75, 5650.19}; +static float P095[3] = {0.00, 795.63, 6493.88}; +static float iP091[3] = {0.00, 835.01, 5555.62}; +static float iP092[3] = {0.00, 1350.18, 5220.86}; +static float iP093[3] = {0.00, 1422.94, 5285.27}; +static float iP094[3] = {0.00, 1296.75, 5650.19}; +static float iP095[3] = {0.00, 795.63, 6493.88}; +static float P097[3] = {-194.91, -357.14, 10313.32}; +static float P098[3] = {135.35, -357.66, 10307.94}; +static float iP097[3] = {-194.91, -357.14, 10313.32}; +static float iP098[3] = {135.35, -357.66, 10307.94}; +static float P099[3] = {-380.53, -221.14, 9677.98}; +static float P100[3] = {0.00, 412.99, 9629.33}; +static float P102[3] = {59.51, -412.55, 10677.58}; +static float iP102[3] = {59.51, -412.55, 10677.58}; +static float P103[3] = {6.50, 484.74, 9009.94}; +static float P105[3] = {-41.86, 476.51, 9078.17}; +static float P108[3] = {49.20, 476.83, 9078.24}; +static float P110[3] = {-187.62, -410.04, 10674.12}; +static float iP110[3] = {-187.62, -410.04, 10674.12}; +static float P111[3] = {-184.25, -318.70, 10723.88}; +static float iP111[3] = {-184.25, -318.70, 10723.88}; +static float P112[3] = {-179.61, -142.81, 10670.26}; +static float P113[3] = {57.43, -147.94, 10675.26}; +static float P114[3] = {54.06, -218.90, 10712.44}; +static float P115[3] = {-186.35, -212.09, 10713.76}; +static float P116[3] = {205.90, -84.61, 10275.97}; +static float P117[3] = {-230.96, -83.26, 10280.09}; +static float iP118[3] = {216.78, -509.17, 10098.94}; +static float iP119[3] = {-313.21, -510.79, 10102.62}; +static float P118[3] = {216.78, -509.17, 10098.94}; +static float P119[3] = {-313.21, -510.79, 10102.62}; +static float P120[3] = {217.95, 96.34, 10161.62}; +static float P121[3] = {71.99, -319.74, 10717.70}; +static float iP121[3] = {71.99, -319.74, 10717.70}; +static float P122[3] = {0.00, 602.74, 5375.84}; +static float iP122[3] = {0.00, 602.74, 5375.84}; +static float P123[3] = {-448.94, -203.14, 9499.60}; +static float P124[3] = {-442.64, -185.20, 9528.07}; +static float P125[3] = {-441.07, -148.05, 9528.07}; +static float P126[3] = {-443.43, -128.84, 9499.60}; +static float P127[3] = {-456.87, -146.78, 9466.67}; +static float P128[3] = {-453.68, -183.93, 9466.67}; +static float P129[3] = {428.43, -124.08, 9503.03}; +static float P130[3] = {419.73, -142.14, 9534.56}; +static float P131[3] = {419.92, -179.96, 9534.56}; +static float P132[3] = {431.20, -199.73, 9505.26}; +static float P133[3] = {442.28, -181.67, 9475.96}; +static float P134[3] = {442.08, -143.84, 9475.96}; +/* *INDENT-ON* */ + +void +Dolphin001(void) +{ + glNormal3fv(N071); + glBegin(GL_POLYGON); + glVertex3fv(P001); + glVertex3fv(P068); + glVertex3fv(P010); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P068); + glVertex3fv(P076); + glVertex3fv(P010); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P068); + glVertex3fv(P070); + glVertex3fv(P076); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P076); + glVertex3fv(P070); + glVertex3fv(P074); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P070); + glVertex3fv(P072); + glVertex3fv(P074); + glEnd(); + glNormal3fv(N119); + glBegin(GL_POLYGON); + glVertex3fv(P072); + glVertex3fv(P070); + glVertex3fv(P074); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P074); + glVertex3fv(P070); + glVertex3fv(P076); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P070); + glVertex3fv(P068); + glVertex3fv(P076); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P076); + glVertex3fv(P068); + glVertex3fv(P010); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P068); + glVertex3fv(P001); + glVertex3fv(P010); + glEnd(); +} + +void +Dolphin002(void) +{ + glNormal3fv(N071); + glBegin(GL_POLYGON); + glVertex3fv(P011); + glVertex3fv(P001); + glVertex3fv(P009); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P075); + glVertex3fv(P011); + glVertex3fv(P009); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P069); + glVertex3fv(P011); + glVertex3fv(P075); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P069); + glVertex3fv(P075); + glVertex3fv(P073); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P071); + glVertex3fv(P069); + glVertex3fv(P073); + glEnd(); + glNormal3fv(N119); + glBegin(GL_POLYGON); + glVertex3fv(P001); + glVertex3fv(P011); + glVertex3fv(P009); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P009); + glVertex3fv(P011); + glVertex3fv(P075); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P011); + glVertex3fv(P069); + glVertex3fv(P075); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P069); + glVertex3fv(P073); + glVertex3fv(P075); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P069); + glVertex3fv(P071); + glVertex3fv(P073); + glEnd(); +} + +void +Dolphin003(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N019); + glVertex3fv(P019); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N012); + glVertex3fv(P012); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N018); + glVertex3fv(P018); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N016); + glVertex3fv(P016); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N012); + glVertex3fv(P012); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N015); + glVertex3fv(P015); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N013); + glVertex3fv(P013); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N014); + glVertex3fv(P014); + glEnd(); +} + +void +Dolphin004(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N022); + glVertex3fv(P022); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N023); + glVertex3fv(P023); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N024); + glVertex3fv(P024); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N025); + glVertex3fv(P025); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N021); + glVertex3fv(P021); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N012); + glVertex3fv(P012); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N020); + glVertex3fv(P020); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N026); + glVertex3fv(P026); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N012); + glVertex3fv(P012); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N027); + glVertex3fv(P027); + glEnd(); +} + +void +Dolphin005(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N030); + glVertex3fv(P030); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N030); + glVertex3fv(P030); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N031); + glVertex3fv(P031); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N031); + glVertex3fv(P031); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N032); + glVertex3fv(P032); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N032); + glVertex3fv(P032); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N028); + glVertex3fv(P028); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N028); + glVertex3fv(P028); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N035); + glVertex3fv(P035); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N033); + glVertex3fv(P033); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N034); + glVertex3fv(P034); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N034); + glVertex3fv(P034); + glEnd(); +} + +void +Dolphin006(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N092); + glVertex3fv(P092); + glNormal3fv(N093); + glVertex3fv(P093); + glNormal3fv(N094); + glVertex3fv(P094); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N093); + glVertex3fv(P093); + glNormal3fv(N092); + glVertex3fv(P092); + glNormal3fv(N094); + glVertex3fv(P094); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N092); + glVertex3fv(P092); + glNormal3fv(N091); + glVertex3fv(P091); + glNormal3fv(N095); + glVertex3fv(P095); + glNormal3fv(N094); + glVertex3fv(P094); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N091); + glVertex3fv(P091); + glNormal3fv(N092); + glVertex3fv(P092); + glNormal3fv(N094); + glVertex3fv(P094); + glNormal3fv(N095); + glVertex3fv(P095); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N122); + glVertex3fv(P122); + glNormal3fv(N095); + glVertex3fv(P095); + glNormal3fv(N091); + glVertex3fv(P091); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N122); + glVertex3fv(P122); + glNormal3fv(N091); + glVertex3fv(P091); + glNormal3fv(N095); + glVertex3fv(P095); + glEnd(); +} + +void +Dolphin007(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N038); + glVertex3fv(P038); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N038); + glVertex3fv(P038); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N037); + glVertex3fv(P037); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N037); + glVertex3fv(P037); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N036); + glVertex3fv(P036); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N036); + glVertex3fv(P036); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N043); + glVertex3fv(P043); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N034); + glVertex3fv(P034); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N043); + glVertex3fv(P043); + glNormal3fv(N042); + glVertex3fv(P042); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N034); + glVertex3fv(P034); + glNormal3fv(N042); + glVertex3fv(P042); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N041); + glVertex3fv(P041); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N039); + glVertex3fv(P039); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N040); + glVertex3fv(P040); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N040); + glVertex3fv(P040); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N041); + glVertex3fv(P041); + glEnd(); +} + +void +Dolphin008(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N043); + glVertex3fv(P043); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N050); + glVertex3fv(P050); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N043); + glVertex3fv(P043); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N051); + glVertex3fv(P051); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N044); + glVertex3fv(P044); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N050); + glVertex3fv(P050); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N049); + glVertex3fv(P049); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N044); + glVertex3fv(P044); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N045); + glVertex3fv(P045); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N049); + glVertex3fv(P049); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N048); + glVertex3fv(P048); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N048); + glVertex3fv(P048); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N047); + glVertex3fv(P047); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N045); + glVertex3fv(P045); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N045); + glVertex3fv(P045); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N046); + glVertex3fv(P046); + glEnd(); +} + +void +Dolphin009(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N058); + glVertex3fv(P058); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N059); + glVertex3fv(P059); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N052); + glVertex3fv(P052); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N045); + glVertex3fv(P045); + glNormal3fv(N053); + glVertex3fv(P053); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N053); + glVertex3fv(P053); + glNormal3fv(N052); + glVertex3fv(P052); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N058); + glVertex3fv(P058); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N057); + glVertex3fv(P057); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N057); + glVertex3fv(P057); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N057); + glVertex3fv(P057); + glNormal3fv(N056); + glVertex3fv(P056); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N056); + glVertex3fv(P056); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N055); + glVertex3fv(P055); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N045); + glVertex3fv(P045); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N053); + glVertex3fv(P053); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N054); + glVertex3fv(P054); + glNormal3fv(N053); + glVertex3fv(P053); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N055); + glVertex3fv(P055); + glNormal3fv(N054); + glVertex3fv(P054); + glEnd(); +} + +void +Dolphin010(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N080); + glVertex3fv(P080); + glNormal3fv(N081); + glVertex3fv(P081); + glNormal3fv(N085); + glVertex3fv(P085); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N081); + glVertex3fv(P081); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N085); + glVertex3fv(P085); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N085); + glVertex3fv(P085); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N077); + glVertex3fv(P077); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N087); + glVertex3fv(P087); + glNormal3fv(N077); + glVertex3fv(P077); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N077); + glVertex3fv(P077); + glNormal3fv(N087); + glVertex3fv(P087); + glNormal3fv(N090); + glVertex3fv(P090); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N081); + glVertex3fv(P081); + glNormal3fv(N080); + glVertex3fv(P080); + glNormal3fv(N085); + glVertex3fv(P085); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N081); + glVertex3fv(P081); + glNormal3fv(N085); + glVertex3fv(P085); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N085); + glVertex3fv(P085); + glNormal3fv(N077); + glVertex3fv(P077); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N087); + glVertex3fv(P087); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N077); + glVertex3fv(P077); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N087); + glVertex3fv(P087); + glNormal3fv(N077); + glVertex3fv(P077); + glNormal3fv(N090); + glVertex3fv(P090); + glEnd(); +} + +void +Dolphin011(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N082); + glVertex3fv(P082); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N079); + glVertex3fv(P079); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N079); + glVertex3fv(P079); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N079); + glVertex3fv(P079); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N078); + glVertex3fv(P078); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N088); + glVertex3fv(P088); + glNormal3fv(N078); + glVertex3fv(P078); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N078); + glVertex3fv(P078); + glNormal3fv(N088); + glVertex3fv(P088); + glNormal3fv(N089); + glVertex3fv(P089); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N088); + glVertex3fv(P088); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N089); + glVertex3fv(P089); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N089); + glVertex3fv(P089); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N078); + glVertex3fv(P078); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N078); + glVertex3fv(P078); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N078); + glVertex3fv(P078); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N079); + glVertex3fv(P079); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N082); + glVertex3fv(P082); + glNormal3fv(N079); + glVertex3fv(P079); + glEnd(); +} + +void +Dolphin012(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N067); + glVertex3fv(P067); + glNormal3fv(N066); + glVertex3fv(P066); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N052); + glVertex3fv(P052); + glNormal3fv(N060); + glVertex3fv(P060); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N067); + glVertex3fv(P067); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N065); + glVertex3fv(P065); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N057); + glVertex3fv(P057); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N057); + glVertex3fv(P057); + glNormal3fv(N065); + glVertex3fv(P065); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N006); + glVertex3fv(P006); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N063); + glVertex3fv(P063); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N055); + glVertex3fv(P055); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N054); + glVertex3fv(P054); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N005); + glVertex3fv(P005); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N054); + glVertex3fv(P054); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N053); + glVertex3fv(P053); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N052); + glVertex3fv(P052); + glNormal3fv(N053); + glVertex3fv(P053); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N060); + glVertex3fv(P060); + glEnd(); +} + +void +Dolphin013(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N116); + glVertex3fv(P116); + glNormal3fv(N117); + glVertex3fv(P117); + glNormal3fv(N112); + glVertex3fv(P112); + glNormal3fv(N113); + glVertex3fv(P113); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N114); + glVertex3fv(P114); + glNormal3fv(N113); + glVertex3fv(P113); + glNormal3fv(N112); + glVertex3fv(P112); + glNormal3fv(N115); + glVertex3fv(P115); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N114); + glVertex3fv(P114); + glNormal3fv(N116); + glVertex3fv(P116); + glNormal3fv(N113); + glVertex3fv(P113); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N114); + glVertex3fv(P114); + glNormal3fv(N007); + glVertex3fv(P007); + glNormal3fv(N116); + glVertex3fv(P116); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N007); + glVertex3fv(P007); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N116); + glVertex3fv(P116); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P002); + glVertex3fv(P007); + glVertex3fv(P008); + glVertex3fv(P099); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P007); + glVertex3fv(P114); + glVertex3fv(P115); + glVertex3fv(P008); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N117); + glVertex3fv(P117); + glNormal3fv(N099); + glVertex3fv(P099); + glNormal3fv(N008); + glVertex3fv(P008); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N117); + glVertex3fv(P117); + glNormal3fv(N008); + glVertex3fv(P008); + glNormal3fv(N112); + glVertex3fv(P112); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N112); + glVertex3fv(P112); + glNormal3fv(N008); + glVertex3fv(P008); + glNormal3fv(N115); + glVertex3fv(P115); + glEnd(); +} + +void +Dolphin014(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N111); + glVertex3fv(P111); + glNormal3fv(N110); + glVertex3fv(P110); + glNormal3fv(N102); + glVertex3fv(P102); + glNormal3fv(N121); + glVertex3fv(P121); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N111); + glVertex3fv(P111); + glNormal3fv(N097); + glVertex3fv(P097); + glNormal3fv(N110); + glVertex3fv(P110); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N097); + glVertex3fv(P097); + glNormal3fv(N119); + glVertex3fv(P119); + glNormal3fv(N110); + glVertex3fv(P110); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N097); + glVertex3fv(P097); + glNormal3fv(N099); + glVertex3fv(P099); + glNormal3fv(N119); + glVertex3fv(P119); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N099); + glVertex3fv(P099); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N119); + glVertex3fv(P119); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N119); + glVertex3fv(P119); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P098); + glVertex3fv(P097); + glVertex3fv(P111); + glVertex3fv(P121); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P002); + glVertex3fv(P099); + glVertex3fv(P097); + glVertex3fv(P098); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N110); + glVertex3fv(P110); + glNormal3fv(N119); + glVertex3fv(P119); + glNormal3fv(N118); + glVertex3fv(P118); + glNormal3fv(N102); + glVertex3fv(P102); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N119); + glVertex3fv(P119); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N067); + glVertex3fv(P067); + glNormal3fv(N118); + glVertex3fv(P118); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N067); + glVertex3fv(P067); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N002); + glVertex3fv(P002); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N067); + glVertex3fv(P067); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N118); + glVertex3fv(P118); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N118); + glVertex3fv(P118); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N098); + glVertex3fv(P098); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N118); + glVertex3fv(P118); + glNormal3fv(N098); + glVertex3fv(P098); + glNormal3fv(N102); + glVertex3fv(P102); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N102); + glVertex3fv(P102); + glNormal3fv(N098); + glVertex3fv(P098); + glNormal3fv(N121); + glVertex3fv(P121); + glEnd(); +} + +void +Dolphin015(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N055); + glVertex3fv(P055); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N054); + glVertex3fv(P054); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N055); + glVertex3fv(P055); + glNormal3fv(N063); + glVertex3fv(P063); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N100); + glVertex3fv(P100); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N054); + glVertex3fv(P054); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N054); + glVertex3fv(P054); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N062); + glVertex3fv(P062); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N064); + glVertex3fv(P064); + glNormal3fv(N120); + glVertex3fv(P120); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N064); + glVertex3fv(P064); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N064); + glVertex3fv(P064); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N064); + glVertex3fv(P064); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N099); + glVertex3fv(P099); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N064); + glVertex3fv(P064); + glNormal3fv(N099); + glVertex3fv(P099); + glNormal3fv(N117); + glVertex3fv(P117); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N120); + glVertex3fv(P120); + glNormal3fv(N064); + glVertex3fv(P064); + glNormal3fv(N117); + glVertex3fv(P117); + glNormal3fv(N116); + glVertex3fv(P116); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N099); + glVertex3fv(P099); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N120); + glVertex3fv(P120); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N120); + glVertex3fv(P120); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N120); + glVertex3fv(P120); + glNormal3fv(N002); + glVertex3fv(P002); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N120); + glVertex3fv(P120); + glNormal3fv(N116); + glVertex3fv(P116); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N002); + glVertex3fv(P002); + glEnd(); +} + +void +Dolphin016(void) +{ + + glDisable(GL_DEPTH_TEST); + glBegin(GL_POLYGON); + glVertex3fv(P123); + glVertex3fv(P124); + glVertex3fv(P125); + glVertex3fv(P126); + glVertex3fv(P127); + glVertex3fv(P128); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P129); + glVertex3fv(P130); + glVertex3fv(P131); + glVertex3fv(P132); + glVertex3fv(P133); + glVertex3fv(P134); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P103); + glVertex3fv(P105); + glVertex3fv(P108); + glEnd(); + glEnable(GL_DEPTH_TEST); +} + +void +DrawDolphin(fishRec * fish) +{ + float seg0, seg1, seg2, seg3, seg4, seg5, seg6, seg7; + float pitch, thrash, chomp; + + fish->htail = (int) (fish->htail - (int) (10.0 * fish->v)) % 360; + + thrash = 70.0 * fish->v; + + seg0 = 1.0 * thrash * sin((fish->htail) * RRAD); + seg3 = 1.0 * thrash * sin((fish->htail) * RRAD); + seg1 = 2.0 * thrash * sin((fish->htail + 4.0) * RRAD); + seg2 = 3.0 * thrash * sin((fish->htail + 6.0) * RRAD); + seg4 = 4.0 * thrash * sin((fish->htail + 10.0) * RRAD); + seg5 = 4.5 * thrash * sin((fish->htail + 15.0) * RRAD); + seg6 = 5.0 * thrash * sin((fish->htail + 20.0) * RRAD); + seg7 = 6.0 * thrash * sin((fish->htail + 30.0) * RRAD); + + pitch = fish->v * sin((fish->htail + 180.0) * RRAD); + + if (fish->v > 2.0) { + chomp = -(fish->v - 2.0) * 200.0; + } + chomp = 100.0; + + P012[1] = iP012[1] + seg5; + P013[1] = iP013[1] + seg5; + P014[1] = iP014[1] + seg5; + P015[1] = iP015[1] + seg5; + P016[1] = iP016[1] + seg5; + P017[1] = iP017[1] + seg5; + P018[1] = iP018[1] + seg5; + P019[1] = iP019[1] + seg5; + + P020[1] = iP020[1] + seg4; + P021[1] = iP021[1] + seg4; + P022[1] = iP022[1] + seg4; + P023[1] = iP023[1] + seg4; + P024[1] = iP024[1] + seg4; + P025[1] = iP025[1] + seg4; + P026[1] = iP026[1] + seg4; + P027[1] = iP027[1] + seg4; + + P028[1] = iP028[1] + seg2; + P029[1] = iP029[1] + seg2; + P030[1] = iP030[1] + seg2; + P031[1] = iP031[1] + seg2; + P032[1] = iP032[1] + seg2; + P033[1] = iP033[1] + seg2; + P034[1] = iP034[1] + seg2; + P035[1] = iP035[1] + seg2; + + P036[1] = iP036[1] + seg1; + P037[1] = iP037[1] + seg1; + P038[1] = iP038[1] + seg1; + P039[1] = iP039[1] + seg1; + P040[1] = iP040[1] + seg1; + P041[1] = iP041[1] + seg1; + P042[1] = iP042[1] + seg1; + P043[1] = iP043[1] + seg1; + + P044[1] = iP044[1] + seg0; + P045[1] = iP045[1] + seg0; + P046[1] = iP046[1] + seg0; + P047[1] = iP047[1] + seg0; + P048[1] = iP048[1] + seg0; + P049[1] = iP049[1] + seg0; + P050[1] = iP050[1] + seg0; + P051[1] = iP051[1] + seg0; + + P009[1] = iP009[1] + seg6; + P010[1] = iP010[1] + seg6; + P075[1] = iP075[1] + seg6; + P076[1] = iP076[1] + seg6; + + P001[1] = iP001[1] + seg7; + P011[1] = iP011[1] + seg7; + P068[1] = iP068[1] + seg7; + P069[1] = iP069[1] + seg7; + P070[1] = iP070[1] + seg7; + P071[1] = iP071[1] + seg7; + P072[1] = iP072[1] + seg7; + P073[1] = iP073[1] + seg7; + P074[1] = iP074[1] + seg7; + + P091[1] = iP091[1] + seg3; + P092[1] = iP092[1] + seg3; + P093[1] = iP093[1] + seg3; + P094[1] = iP094[1] + seg3; + P095[1] = iP095[1] + seg3; + P122[1] = iP122[1] + seg3 * 1.5; + + P097[1] = iP097[1] + chomp; + P098[1] = iP098[1] + chomp; + P102[1] = iP102[1] + chomp; + P110[1] = iP110[1] + chomp; + P111[1] = iP111[1] + chomp; + P121[1] = iP121[1] + chomp; + P118[1] = iP118[1] + chomp; + P119[1] = iP119[1] + chomp; + + glPushMatrix(); + + glRotatef(pitch, 1.0, 0.0, 0.0); + + glTranslatef(0.0, 0.0, 7000.0); + + glRotatef(180.0, 0.0, 1.0, 0.0); + + glEnable(GL_CULL_FACE); + Dolphin014(); + Dolphin010(); + Dolphin009(); + Dolphin012(); + Dolphin013(); + Dolphin006(); + Dolphin002(); + Dolphin001(); + Dolphin003(); + Dolphin015(); + Dolphin004(); + Dolphin005(); + Dolphin007(); + Dolphin008(); + Dolphin011(); + Dolphin016(); + glDisable(GL_CULL_FACE); + + glPopMatrix(); +} diff --git a/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/shark.c b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/shark.c new file mode 100644 index 000000000..9c847dbaf --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/shark.c @@ -0,0 +1,1308 @@ +/** + * (c) Copyright 1993, 1994, Silicon Graphics, Inc. + * ALL RIGHTS RESERVED + * Permission to use, copy, modify, and distribute this software for + * any purpose and without fee is hereby granted, provided that the above + * copyright notice appear in all copies and that both the copyright notice + * and this permission notice appear in supporting documentation, and that + * the name of Silicon Graphics, Inc. not be used in advertising + * or publicity pertaining to distribution of the software without specific, + * written prior permission. + * + * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS" + * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR + * FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON + * GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT, + * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY + * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, + * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF + * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC. HAS BEEN + * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE + * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE. + * + * US Government Users Restricted Rights + * Use, duplication, or disclosure by the Government is subject to + * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph + * (c)(1)(ii) of the Rights in Technical Data and Computer Software + * clause at DFARS 252.227-7013 and/or in similar or successor + * clauses in the FAR or the DOD or NASA FAR Supplement. + * Unpublished-- rights reserved under the copyright laws of the + * United States. Contractor/manufacturer is Silicon Graphics, + * Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311. + * + * OpenGL(TM) is a trademark of Silicon Graphics, Inc. + */ +#include +#include +#include "atlantis.h" +/* *INDENT-OFF* */ +static float N002[3] = {0.000077 ,-0.020611 ,0.999788}; +static float N003[3] = {0.961425 ,0.258729 ,-0.093390}; +static float N004[3] = {0.510811 ,-0.769633 ,-0.383063}; +static float N005[3] = {0.400123 ,0.855734 ,-0.328055}; +static float N006[3] = {-0.770715 ,0.610204 ,-0.183440}; +static float N007[3] = {-0.915597 ,-0.373345 ,-0.149316}; +static float N008[3] = {-0.972788 ,0.208921 ,-0.100179}; +static float N009[3] = {-0.939713 ,-0.312268 ,-0.139383}; +static float N010[3] = {-0.624138 ,-0.741047 ,-0.247589}; +static float N011[3] = {0.591434 ,-0.768401 ,-0.244471}; +static float N012[3] = {0.935152 ,-0.328495 ,-0.132598}; +static float N013[3] = {0.997102 ,0.074243 ,-0.016593}; +static float N014[3] = {0.969995 ,0.241712 ,-0.026186}; +static float N015[3] = {0.844539 ,0.502628 ,-0.184714}; +static float N016[3] = {-0.906608 ,0.386308 ,-0.169787}; +static float N017[3] = {-0.970016 ,0.241698 ,-0.025516}; +static float N018[3] = {-0.998652 ,0.050493 ,-0.012045}; +static float N019[3] = {-0.942685 ,-0.333051 ,-0.020556}; +static float N020[3] = {-0.660944 ,-0.750276 ,0.015480}; +static float N021[3] = {0.503549 ,-0.862908 ,-0.042749}; +static float N022[3] = {0.953202 ,-0.302092 ,-0.012089}; +static float N023[3] = {0.998738 ,0.023574 ,0.044344}; +static float N024[3] = {0.979297 ,0.193272 ,0.060202}; +static float N025[3] = {0.798300 ,0.464885 ,0.382883}; +static float N026[3] = {-0.756590 ,0.452403 ,0.472126}; +static float N027[3] = {-0.953855 ,0.293003 ,0.065651}; +static float N028[3] = {-0.998033 ,0.040292 ,0.048028}; +static float N029[3] = {-0.977079 ,-0.204288 ,0.059858}; +static float N030[3] = {-0.729117 ,-0.675304 ,0.111140}; +static float N031[3] = {0.598361 ,-0.792753 ,0.116221}; +static float N032[3] = {0.965192 ,-0.252991 ,0.066332}; +static float N033[3] = {0.998201 ,-0.002790 ,0.059892}; +static float N034[3] = {0.978657 ,0.193135 ,0.070207}; +static float N035[3] = {0.718815 ,0.680392 ,0.142733}; +static float N036[3] = {-0.383096 ,0.906212 ,0.178936}; +static float N037[3] = {-0.952831 ,0.292590 ,0.080647}; +static float N038[3] = {-0.997680 ,0.032417 ,0.059861}; +static float N039[3] = {-0.982629 ,-0.169881 ,0.074700}; +static float N040[3] = {-0.695424 ,-0.703466 ,0.146700}; +static float N041[3] = {0.359323 ,-0.915531 ,0.180805}; +static float N042[3] = {0.943356 ,-0.319387 ,0.089842}; +static float N043[3] = {0.998272 ,-0.032435 ,0.048993}; +static float N044[3] = {0.978997 ,0.193205 ,0.065084}; +static float N045[3] = {0.872144 ,0.470094 ,-0.135565}; +static float N046[3] = {-0.664282 ,0.737945 ,-0.119027}; +static float N047[3] = {-0.954508 ,0.288570 ,0.075107}; +static float N048[3] = {-0.998273 ,0.032406 ,0.048993}; +static float N049[3] = {-0.979908 ,-0.193579 ,0.048038}; +static float N050[3] = {-0.858736 ,-0.507202 ,-0.072938}; +static float N051[3] = {0.643545 ,-0.763887 ,-0.048237}; +static float N052[3] = {0.955580 ,-0.288954 ,0.058068}; +static float N058[3] = {0.000050 ,0.793007 ,-0.609213}; +static float N059[3] = {0.913510 ,0.235418 ,-0.331779}; +static float N060[3] = {-0.807970 ,0.495000 ,-0.319625}; +static float N061[3] = {0.000000 ,0.784687 ,-0.619892}; +static float N062[3] = {0.000000 ,-1.000000 ,0.000000}; +static float N063[3] = {0.000000 ,1.000000 ,0.000000}; +static float N064[3] = {0.000000 ,1.000000 ,0.000000}; +static float N065[3] = {0.000000 ,1.000000 ,0.000000}; +static float N066[3] = {-0.055784 ,0.257059 ,0.964784}; +static float N069[3] = {-0.000505 ,-0.929775 ,-0.368127}; +static float N070[3] = {0.000000 ,1.000000 ,0.000000}; +static float P002[3] = {0.00, -36.59, 5687.72}; +static float P003[3] = {90.00, 114.73, 724.38}; +static float P004[3] = {58.24, -146.84, 262.35}; +static float P005[3] = {27.81, 231.52, 510.43}; +static float P006[3] = {-27.81, 230.43, 509.76}; +static float P007[3] = {-46.09, -146.83, 265.84}; +static float P008[3] = {-90.00, 103.84, 718.53}; +static float P009[3] = {-131.10, -165.92, 834.85}; +static float P010[3] = {-27.81, -285.31, 500.00}; +static float P011[3] = {27.81, -285.32, 500.00}; +static float P012[3] = {147.96, -170.89, 845.50}; +static float P013[3] = {180.00, 0.00, 2000.00}; +static float P014[3] = {145.62, 352.67, 2000.00}; +static float P015[3] = {55.62, 570.63, 2000.00}; +static float P016[3] = {-55.62, 570.64, 2000.00}; +static float P017[3] = {-145.62, 352.68, 2000.00}; +static float P018[3] = {-180.00, 0.01, 2000.00}; +static float P019[3] = {-178.20, -352.66, 2001.61}; +static float P020[3] = {-55.63, -570.63, 2000.00}; +static float P021[3] = {55.62, -570.64, 2000.00}; +static float P022[3] = {179.91, -352.69, 1998.39}; +static float P023[3] = {150.00, 0.00, 3000.00}; +static float P024[3] = {121.35, 293.89, 3000.00}; +static float P025[3] = {46.35, 502.93, 2883.09}; +static float P026[3] = {-46.35, 497.45, 2877.24}; +static float P027[3] = {-121.35, 293.90, 3000.00}; +static float P028[3] = {-150.00, 0.00, 3000.00}; +static float P029[3] = {-152.21, -304.84, 2858.68}; +static float P030[3] = {-46.36, -475.52, 3000.00}; +static float P031[3] = {46.35, -475.53, 3000.00}; +static float P032[3] = {155.64, -304.87, 2863.50}; +static float P033[3] = {90.00, 0.00, 4000.00}; +static float P034[3] = {72.81, 176.33, 4000.00}; +static float P035[3] = {27.81, 285.32, 4000.00}; +static float P036[3] = {-27.81, 285.32, 4000.00}; +static float P037[3] = {-72.81, 176.34, 4000.00}; +static float P038[3] = {-90.00, 0.00, 4000.00}; +static float P039[3] = {-72.81, -176.33, 4000.00}; +static float P040[3] = {-27.81, -285.31, 4000.00}; +static float P041[3] = {27.81, -285.32, 4000.00}; +static float P042[3] = {72.81, -176.34, 4000.00}; +static float P043[3] = {30.00, 0.00, 5000.00}; +static float P044[3] = {24.27, 58.78, 5000.00}; +static float P045[3] = {9.27, 95.11, 5000.00}; +static float P046[3] = {-9.27, 95.11, 5000.00}; +static float P047[3] = {-24.27, 58.78, 5000.00}; +static float P048[3] = {-30.00, 0.00, 5000.00}; +static float P049[3] = {-24.27, -58.78, 5000.00}; +static float P050[3] = {-9.27, -95.10, 5000.00}; +static float P051[3] = {9.27, -95.11, 5000.00}; +static float P052[3] = {24.27, -58.78, 5000.00}; +static float P058[3] = {0.00, 1212.72, 2703.08}; +static float P059[3] = {50.36, 0.00, 108.14}; +static float P060[3] = {-22.18, 0.00, 108.14}; +static float P061[3] = {0.00, 1181.61, 6344.65}; +static float P062[3] = {516.45, -887.08, 2535.45}; +static float P063[3] = {-545.69, -879.31, 2555.63}; +static float P064[3] = {618.89, -1005.64, 2988.32}; +static float P065[3] = {-635.37, -1014.79, 2938.68}; +static float P066[3] = {0.00, 1374.43, 3064.18}; +static float P069[3] = {0.00, -418.25, 5765.04}; +static float P070[3] = {0.00, 1266.91, 6629.60}; +static float P071[3] = {-139.12, -124.96, 997.98}; +static float P072[3] = {-139.24, -110.18, 1020.68}; +static float P073[3] = {-137.33, -94.52, 1022.63}; +static float P074[3] = {-137.03, -79.91, 996.89}; +static float P075[3] = {-135.21, -91.48, 969.14}; +static float P076[3] = {-135.39, -110.87, 968.76}; +static float P077[3] = {150.23, -78.44, 995.53}; +static float P078[3] = {152.79, -92.76, 1018.46}; +static float P079[3] = {154.19, -110.20, 1020.55}; +static float P080[3] = {151.33, -124.15, 993.77}; +static float P081[3] = {150.49, -111.19, 969.86}; +static float P082[3] = {150.79, -92.41, 969.70}; +static float iP002[3] = {0.00, -36.59, 5687.72}; +static float iP004[3] = {58.24, -146.84, 262.35}; +static float iP007[3] = {-46.09, -146.83, 265.84}; +static float iP010[3] = {-27.81, -285.31, 500.00}; +static float iP011[3] = {27.81, -285.32, 500.00}; +static float iP023[3] = {150.00, 0.00, 3000.00}; +static float iP024[3] = {121.35, 293.89, 3000.00}; +static float iP025[3] = {46.35, 502.93, 2883.09}; +static float iP026[3] = {-46.35, 497.45, 2877.24}; +static float iP027[3] = {-121.35, 293.90, 3000.00}; +static float iP028[3] = {-150.00, 0.00, 3000.00}; +static float iP029[3] = {-121.35, -304.84, 2853.86}; +static float iP030[3] = {-46.36, -475.52, 3000.00}; +static float iP031[3] = {46.35, -475.53, 3000.00}; +static float iP032[3] = {121.35, -304.87, 2853.86}; +static float iP033[3] = {90.00, 0.00, 4000.00}; +static float iP034[3] = {72.81, 176.33, 4000.00}; +static float iP035[3] = {27.81, 285.32, 4000.00}; +static float iP036[3] = {-27.81, 285.32, 4000.00}; +static float iP037[3] = {-72.81, 176.34, 4000.00}; +static float iP038[3] = {-90.00, 0.00, 4000.00}; +static float iP039[3] = {-72.81, -176.33, 4000.00}; +static float iP040[3] = {-27.81, -285.31, 4000.00}; +static float iP041[3] = {27.81, -285.32, 4000.00}; +static float iP042[3] = {72.81, -176.34, 4000.00}; +static float iP043[3] = {30.00, 0.00, 5000.00}; +static float iP044[3] = {24.27, 58.78, 5000.00}; +static float iP045[3] = {9.27, 95.11, 5000.00}; +static float iP046[3] = {-9.27, 95.11, 5000.00}; +static float iP047[3] = {-24.27, 58.78, 5000.00}; +static float iP048[3] = {-30.00, 0.00, 5000.00}; +static float iP049[3] = {-24.27, -58.78, 5000.00}; +static float iP050[3] = {-9.27, -95.10, 5000.00}; +static float iP051[3] = {9.27, -95.11, 5000.00}; +static float iP052[3] = {24.27, -58.78, 5000.00}; +static float iP061[3] = {0.00, 1181.61, 6344.65}; +static float iP069[3] = {0.00, -418.25, 5765.04}; +static float iP070[3] = {0.00, 1266.91, 6629.60}; +/* *INDENT-ON* */ + +void +Fish001(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N006); + glVertex3fv(P006); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N016); + glVertex3fv(P016); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N008); + glVertex3fv(P008); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N008); + glVertex3fv(P008); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N008); + glVertex3fv(P008); + glNormal3fv(N017); + glVertex3fv(P017); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N008); + glVertex3fv(P008); + glNormal3fv(N018); + glVertex3fv(P018); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N008); + glVertex3fv(P008); + glNormal3fv(N009); + glVertex3fv(P009); + glNormal3fv(N018); + glVertex3fv(P018); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N008); + glVertex3fv(P008); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N009); + glVertex3fv(P009); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N007); + glVertex3fv(P007); + glNormal3fv(N010); + glVertex3fv(P010); + glNormal3fv(N009); + glVertex3fv(P009); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N009); + glVertex3fv(P009); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N018); + glVertex3fv(P018); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N009); + glVertex3fv(P009); + glNormal3fv(N010); + glVertex3fv(P010); + glNormal3fv(N019); + glVertex3fv(P019); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N010); + glVertex3fv(P010); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N019); + glVertex3fv(P019); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N010); + glVertex3fv(P010); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N020); + glVertex3fv(P020); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N004); + glVertex3fv(P004); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N010); + glVertex3fv(P010); + glNormal3fv(N007); + glVertex3fv(P007); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N004); + glVertex3fv(P004); + glNormal3fv(N012); + glVertex3fv(P012); + glNormal3fv(N011); + glVertex3fv(P011); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N012); + glVertex3fv(P012); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N011); + glVertex3fv(P011); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N021); + glVertex3fv(P021); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N015); + glVertex3fv(P015); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N003); + glVertex3fv(P003); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N059); + glVertex3fv(P059); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N003); + glVertex3fv(P003); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N012); + glVertex3fv(P012); + glNormal3fv(N059); + glVertex3fv(P059); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N012); + glVertex3fv(P012); + glNormal3fv(N003); + glVertex3fv(P003); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N012); + glVertex3fv(P012); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P071); + glVertex3fv(P072); + glVertex3fv(P073); + glVertex3fv(P074); + glVertex3fv(P075); + glVertex3fv(P076); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P077); + glVertex3fv(P078); + glVertex3fv(P079); + glVertex3fv(P080); + glVertex3fv(P081); + glVertex3fv(P082); + glEnd(); +} + +void +Fish002(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N023); + glVertex3fv(P023); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N024); + glVertex3fv(P024); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N026); + glVertex3fv(P026); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N027); + glVertex3fv(P027); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N030); + glVertex3fv(P030); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N022); + glVertex3fv(P022); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N032); + glVertex3fv(P032); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N031); + glVertex3fv(P031); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N021); + glVertex3fv(P021); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N028); + glVertex3fv(P028); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N030); + glVertex3fv(P030); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); +} + +void +Fish003(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N042); + glVertex3fv(P042); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N041); + glVertex3fv(P041); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N034); + glVertex3fv(P034); + glNormal3fv(N033); + glVertex3fv(P033); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N034); + glVertex3fv(P034); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N040); + glVertex3fv(P040); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N035); + glVertex3fv(P035); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N036); + glVertex3fv(P036); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N037); + glVertex3fv(P037); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N038); + glVertex3fv(P038); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N039); + glVertex3fv(P039); + glEnd(); +} + +void +Fish004(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N050); + glVertex3fv(P050); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N052); + glVertex3fv(P052); + glNormal3fv(N051); + glVertex3fv(P051); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N043); + glVertex3fv(P043); + glNormal3fv(N052); + glVertex3fv(P052); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N034); + glVertex3fv(P034); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N043); + glVertex3fv(P043); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N034); + glVertex3fv(P034); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N045); + glVertex3fv(P045); + glNormal3fv(N044); + glVertex3fv(P044); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N045); + glVertex3fv(P045); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N046); + glVertex3fv(P046); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N047); + glVertex3fv(P047); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N048); + glVertex3fv(P048); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N049); + glVertex3fv(P049); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N070); + glVertex3fv(P070); + glNormal3fv(N061); + glVertex3fv(P061); + glNormal3fv(N002); + glVertex3fv(P002); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N061); + glVertex3fv(P061); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N002); + glVertex3fv(P002); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N045); + glVertex3fv(P045); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N061); + glVertex3fv(P061); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N061); + glVertex3fv(P061); + glNormal3fv(N070); + glVertex3fv(P070); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N045); + glVertex3fv(P045); + glNormal3fv(N061); + glVertex3fv(P061); + glEnd(); +} + +void +Fish005(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N045); + glVertex3fv(P045); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N043); + glVertex3fv(P043); + glNormal3fv(N044); + glVertex3fv(P044); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N052); + glVertex3fv(P052); + glNormal3fv(N043); + glVertex3fv(P043); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N052); + glVertex3fv(P052); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N047); + glVertex3fv(P047); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N048); + glVertex3fv(P048); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N049); + glVertex3fv(P049); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N050); + glVertex3fv(P050); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N069); + glVertex3fv(P069); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N069); + glVertex3fv(P069); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N069); + glVertex3fv(P069); + glNormal3fv(N002); + glVertex3fv(P002); + glEnd(); +} + +void +Fish006(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N026); + glVertex3fv(P026); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N025); + glVertex3fv(P025); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N026); + glVertex3fv(P026); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N016); + glVertex3fv(P016); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N066); + glVertex3fv(P066); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N016); + glVertex3fv(P016); + glEnd(); +} + +void +Fish007(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N032); + glVertex3fv(P032); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N064); + glVertex3fv(P064); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N032); + glVertex3fv(P032); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N064); + glVertex3fv(P064); + glNormal3fv(N032); + glVertex3fv(P032); + glEnd(); +} + +void +Fish008(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N065); + glVertex3fv(P065); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); +} + +void +Fish009(void) +{ + glBegin(GL_POLYGON); + glVertex3fv(P059); + glVertex3fv(P012); + glVertex3fv(P009); + glVertex3fv(P060); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P012); + glVertex3fv(P004); + glVertex3fv(P007); + glVertex3fv(P009); + glEnd(); +} + +void +Fish_1(void) +{ + Fish004(); + Fish005(); + Fish003(); + Fish007(); + Fish006(); + Fish002(); + Fish008(); + Fish009(); + Fish001(); +} + +void +Fish_2(void) +{ + Fish005(); + Fish004(); + Fish003(); + Fish008(); + Fish006(); + Fish002(); + Fish007(); + Fish009(); + Fish001(); +} + +void +Fish_3(void) +{ + Fish005(); + Fish004(); + Fish007(); + Fish003(); + Fish002(); + Fish008(); + Fish009(); + Fish001(); + Fish006(); +} + +void +Fish_4(void) +{ + Fish005(); + Fish004(); + Fish008(); + Fish003(); + Fish002(); + Fish007(); + Fish009(); + Fish001(); + Fish006(); +} + +void +Fish_5(void) +{ + Fish009(); + Fish006(); + Fish007(); + Fish001(); + Fish002(); + Fish003(); + Fish008(); + Fish004(); + Fish005(); +} + +void +Fish_6(void) +{ + Fish009(); + Fish006(); + Fish008(); + Fish001(); + Fish002(); + Fish007(); + Fish003(); + Fish004(); + Fish005(); +} + +void +Fish_7(void) +{ + Fish009(); + Fish001(); + Fish007(); + Fish005(); + Fish002(); + Fish008(); + Fish003(); + Fish004(); + Fish006(); +} + +void +Fish_8(void) +{ + Fish009(); + Fish008(); + Fish001(); + Fish002(); + Fish007(); + Fish003(); + Fish005(); + Fish004(); + Fish006(); +} + +void +DrawShark(fishRec * fish) +{ + float mat[4][4]; + int n; + float seg1, seg2, seg3, seg4, segup; + float thrash, chomp; + + fish->htail = (int) (fish->htail - (int) (5.0 * fish->v)) % 360; + + thrash = 50.0 * fish->v; + + seg1 = 0.6 * thrash * sin(fish->htail * RRAD); + seg2 = 1.8 * thrash * sin((fish->htail + 45.0) * RRAD); + seg3 = 3.0 * thrash * sin((fish->htail + 90.0) * RRAD); + seg4 = 4.0 * thrash * sin((fish->htail + 110.0) * RRAD); + + chomp = 0.0; + if (fish->v > 2.0) { + chomp = -(fish->v - 2.0) * 200.0; + } + P004[1] = iP004[1] + chomp; + P007[1] = iP007[1] + chomp; + P010[1] = iP010[1] + chomp; + P011[1] = iP011[1] + chomp; + + P023[0] = iP023[0] + seg1; + P024[0] = iP024[0] + seg1; + P025[0] = iP025[0] + seg1; + P026[0] = iP026[0] + seg1; + P027[0] = iP027[0] + seg1; + P028[0] = iP028[0] + seg1; + P029[0] = iP029[0] + seg1; + P030[0] = iP030[0] + seg1; + P031[0] = iP031[0] + seg1; + P032[0] = iP032[0] + seg1; + P033[0] = iP033[0] + seg2; + P034[0] = iP034[0] + seg2; + P035[0] = iP035[0] + seg2; + P036[0] = iP036[0] + seg2; + P037[0] = iP037[0] + seg2; + P038[0] = iP038[0] + seg2; + P039[0] = iP039[0] + seg2; + P040[0] = iP040[0] + seg2; + P041[0] = iP041[0] + seg2; + P042[0] = iP042[0] + seg2; + P043[0] = iP043[0] + seg3; + P044[0] = iP044[0] + seg3; + P045[0] = iP045[0] + seg3; + P046[0] = iP046[0] + seg3; + P047[0] = iP047[0] + seg3; + P048[0] = iP048[0] + seg3; + P049[0] = iP049[0] + seg3; + P050[0] = iP050[0] + seg3; + P051[0] = iP051[0] + seg3; + P052[0] = iP052[0] + seg3; + P002[0] = iP002[0] + seg4; + P061[0] = iP061[0] + seg4; + P069[0] = iP069[0] + seg4; + P070[0] = iP070[0] + seg4; + + fish->vtail += ((fish->dtheta - fish->vtail) * 0.1); + + if (fish->vtail > 0.5) { + fish->vtail = 0.5; + } else if (fish->vtail < -0.5) { + fish->vtail = -0.5; + } + segup = thrash * fish->vtail; + + P023[1] = iP023[1] + segup; + P024[1] = iP024[1] + segup; + P025[1] = iP025[1] + segup; + P026[1] = iP026[1] + segup; + P027[1] = iP027[1] + segup; + P028[1] = iP028[1] + segup; + P029[1] = iP029[1] + segup; + P030[1] = iP030[1] + segup; + P031[1] = iP031[1] + segup; + P032[1] = iP032[1] + segup; + P033[1] = iP033[1] + segup * 5.0; + P034[1] = iP034[1] + segup * 5.0; + P035[1] = iP035[1] + segup * 5.0; + P036[1] = iP036[1] + segup * 5.0; + P037[1] = iP037[1] + segup * 5.0; + P038[1] = iP038[1] + segup * 5.0; + P039[1] = iP039[1] + segup * 5.0; + P040[1] = iP040[1] + segup * 5.0; + P041[1] = iP041[1] + segup * 5.0; + P042[1] = iP042[1] + segup * 5.0; + P043[1] = iP043[1] + segup * 12.0; + P044[1] = iP044[1] + segup * 12.0; + P045[1] = iP045[1] + segup * 12.0; + P046[1] = iP046[1] + segup * 12.0; + P047[1] = iP047[1] + segup * 12.0; + P048[1] = iP048[1] + segup * 12.0; + P049[1] = iP049[1] + segup * 12.0; + P050[1] = iP050[1] + segup * 12.0; + P051[1] = iP051[1] + segup * 12.0; + P052[1] = iP052[1] + segup * 12.0; + P002[1] = iP002[1] + segup * 17.0; + P061[1] = iP061[1] + segup * 17.0; + P069[1] = iP069[1] + segup * 17.0; + P070[1] = iP070[1] + segup * 17.0; + + glPushMatrix(); + + glTranslatef(0.0, 0.0, -3000.0); + + glGetFloatv(GL_MODELVIEW_MATRIX, &mat[0][0]); + n = 0; + if (mat[0][2] >= 0.0) { + n += 1; + } + if (mat[1][2] >= 0.0) { + n += 2; + } + if (mat[2][2] >= 0.0) { + n += 4; + } + glScalef(2.0, 1.0, 1.0); + + glEnable(GL_CULL_FACE); + switch (n) { + case 0: + Fish_1(); + break; + case 1: + Fish_2(); + break; + case 2: + Fish_3(); + break; + case 3: + Fish_4(); + break; + case 4: + Fish_5(); + break; + case 5: + Fish_6(); + break; + case 6: + Fish_7(); + break; + case 7: + Fish_8(); + break; + } + glDisable(GL_CULL_FACE); + + glPopMatrix(); +} diff --git a/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/swim.c b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/swim.c new file mode 100644 index 000000000..cac7b6095 --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/swim.c @@ -0,0 +1,188 @@ +/** + * (c) Copyright 1993, 1994, Silicon Graphics, Inc. + * ALL RIGHTS RESERVED + * Permission to use, copy, modify, and distribute this software for + * any purpose and without fee is hereby granted, provided that the above + * copyright notice appear in all copies and that both the copyright notice + * and this permission notice appear in supporting documentation, and that + * the name of Silicon Graphics, Inc. not be used in advertising + * or publicity pertaining to distribution of the software without specific, + * written prior permission. + * + * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS" + * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR + * FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON + * GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT, + * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY + * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, + * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF + * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC. HAS BEEN + * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE + * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE. + * + * US Government Users Restricted Rights + * Use, duplication, or disclosure by the Government is subject to + * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph + * (c)(1)(ii) of the Rights in Technical Data and Computer Software + * clause at DFARS 252.227-7013 and/or in similar or successor + * clauses in the FAR or the DOD or NASA FAR Supplement. + * Unpublished-- rights reserved under the copyright laws of the + * United States. Contractor/manufacturer is Silicon Graphics, + * Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311. + * + * OpenGL(TM) is a trademark of Silicon Graphics, Inc. + */ +#include +#include /* For rand(). */ +#include +#include "atlantis.h" + +void +FishTransform(fishRec * fish) +{ + + glTranslatef(fish->y, fish->z, -fish->x); + glRotatef(-fish->psi, 0.0, 1.0, 0.0); + glRotatef(fish->theta, 1.0, 0.0, 0.0); + glRotatef(-fish->phi, 0.0, 0.0, 1.0); +} + +void +WhalePilot(fishRec * fish) +{ + + fish->phi = -20.0; + fish->theta = 0.0; + fish->psi -= 0.5; + + fish->x += WHALESPEED * fish->v * cos(fish->psi / RAD) * cos(fish->theta / RAD); + fish->y += WHALESPEED * fish->v * sin(fish->psi / RAD) * cos(fish->theta / RAD); + fish->z += WHALESPEED * fish->v * sin(fish->theta / RAD); +} + +void +SharkPilot(fishRec * fish) +{ + static int sign = 1; + float X, Y, Z, tpsi, ttheta, thetal; + + fish->xt = 60000.0; + fish->yt = 0.0; + fish->zt = 0.0; + + X = fish->xt - fish->x; + Y = fish->yt - fish->y; + Z = fish->zt - fish->z; + + thetal = fish->theta; + + ttheta = RAD * atan(Z / (sqrt(X * X + Y * Y))); + + if (ttheta > fish->theta + 0.25) { + fish->theta += 0.5; + } else if (ttheta < fish->theta - 0.25) { + fish->theta -= 0.5; + } + if (fish->theta > 90.0) { + fish->theta = 90.0; + } + if (fish->theta < -90.0) { + fish->theta = -90.0; + } + fish->dtheta = fish->theta - thetal; + + tpsi = RAD * atan2(Y, X); + + fish->attack = 0; + + if (fabs(tpsi - fish->psi) < 10.0) { + fish->attack = 1; + } else if (fabs(tpsi - fish->psi) < 45.0) { + if (fish->psi > tpsi) { + fish->psi -= 0.5; + if (fish->psi < -180.0) { + fish->psi += 360.0; + } + } else if (fish->psi < tpsi) { + fish->psi += 0.5; + if (fish->psi > 180.0) { + fish->psi -= 360.0; + } + } + } else { + if (rand() % 100 > 98) { + sign = 1 - sign; + } + fish->psi += sign; + if (fish->psi > 180.0) { + fish->psi -= 360.0; + } + if (fish->psi < -180.0) { + fish->psi += 360.0; + } + } + + if (fish->attack) { + if (fish->v < 1.1) { + fish->spurt = 1; + } + if (fish->spurt) { + fish->v += 0.2; + } + if (fish->v > 5.0) { + fish->spurt = 0; + } + if ((fish->v > 1.0) && (!fish->spurt)) { + fish->v -= 0.2; + } + } else { + if (!(rand() % 400) && (!fish->spurt)) { + fish->spurt = 1; + } + if (fish->spurt) { + fish->v += 0.05; + } + if (fish->v > 3.0) { + fish->spurt = 0; + } + if ((fish->v > 1.0) && (!fish->spurt)) { + fish->v -= 0.05; + } + } + + fish->x += SHARKSPEED * fish->v * cos(fish->psi / RAD) * cos(fish->theta / RAD); + fish->y += SHARKSPEED * fish->v * sin(fish->psi / RAD) * cos(fish->theta / RAD); + fish->z += SHARKSPEED * fish->v * sin(fish->theta / RAD); +} + +void +SharkMiss(int i) +{ + int j; + float avoid, thetal; + float X, Y, Z, R; + + for (j = 0; j < NUM_SHARKS; j++) { + if (j != i) { + X = sharks[j].x - sharks[i].x; + Y = sharks[j].y - sharks[i].y; + Z = sharks[j].z - sharks[i].z; + + R = sqrt(X * X + Y * Y + Z * Z); + + avoid = 1.0; + thetal = sharks[i].theta; + + if (R < SHARKSIZE) { + if (Z > 0.0) { + sharks[i].theta -= avoid; + } else { + sharks[i].theta += avoid; + } + } + sharks[i].dtheta += (sharks[i].theta - thetal); + } + } +} diff --git a/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/whale.c b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/whale.c new file mode 100644 index 000000000..828640ad0 --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/whale.c @@ -0,0 +1,1798 @@ +/** + * (c) Copyright 1993, 1994, Silicon Graphics, Inc. + * ALL RIGHTS RESERVED + * Permission to use, copy, modify, and distribute this software for + * any purpose and without fee is hereby granted, provided that the above + * copyright notice appear in all copies and that both the copyright notice + * and this permission notice appear in supporting documentation, and that + * the name of Silicon Graphics, Inc. not be used in advertising + * or publicity pertaining to distribution of the software without specific, + * written prior permission. + * + * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS" + * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR + * FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON + * GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT, + * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY + * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION, + * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF + * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC. HAS BEEN + * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE + * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE. + * + * US Government Users Restricted Rights + * Use, duplication, or disclosure by the Government is subject to + * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph + * (c)(1)(ii) of the Rights in Technical Data and Computer Software + * clause at DFARS 252.227-7013 and/or in similar or successor + * clauses in the FAR or the DOD or NASA FAR Supplement. + * Unpublished-- rights reserved under the copyright laws of the + * United States. Contractor/manufacturer is Silicon Graphics, + * Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311. + * + * OpenGL(TM) is a trademark of Silicon Graphics, Inc. + */ +#include +#include +#include "atlantis.h" +/* *INDENT-OFF* */ +static float N001[3] = {0.019249 ,0.011340 ,-0.999750}; +static float N002[3] = {-0.132579 ,0.954547 ,0.266952}; +static float N003[3] = {-0.196061 ,0.980392 ,-0.019778}; +static float N004[3] = {0.695461 ,0.604704 ,0.388158}; +static float N005[3] = {0.870600 ,0.425754 ,0.246557}; +static float N006[3] = {-0.881191 ,0.392012 ,0.264251}; +static float N008[3] = {-0.341437 ,0.887477 ,0.309523}; +static float N009[3] = {0.124035 ,-0.992278 ,0.000000}; +static float N010[3] = {0.242536 ,0.000000 ,-0.970143}; +static float N011[3] = {0.588172 ,0.000000 ,0.808736}; +static float N012[3] = {0.929824 ,-0.340623 ,-0.139298}; +static float N013[3] = {0.954183 ,0.267108 ,-0.134865}; +static float N014[3] = {0.495127 ,0.855436 ,-0.151914}; +static float N015[3] = {-0.390199 ,0.906569 ,-0.160867}; +static float N016[3] = {-0.923605 ,0.354581 ,-0.145692}; +static float N017[3] = {-0.955796 ,-0.260667 ,-0.136036}; +static float N018[3] = {-0.501283 ,-0.853462 ,-0.142540}; +static float N019[3] = {0.405300 ,-0.901974 ,-0.148913}; +static float N020[3] = {0.909913 ,-0.392746 ,-0.133451}; +static float N021[3] = {0.936494 ,0.331147 ,-0.115414}; +static float N022[3] = {0.600131 ,0.793724 ,-0.099222}; +static float N023[3] = {-0.231556 ,0.968361 ,-0.093053}; +static float N024[3] = {-0.844369 ,0.525330 ,-0.105211}; +static float N025[3] = {-0.982725 ,-0.136329 ,-0.125164}; +static float N026[3] = {-0.560844 ,-0.822654 ,-0.093241}; +static float N027[3] = {0.263884 ,-0.959981 ,-0.093817}; +static float N028[3] = {0.842057 ,-0.525192 ,-0.122938}; +static float N029[3] = {0.921620 ,0.367565 ,-0.124546}; +static float N030[3] = {0.613927 ,0.784109 ,-0.090918}; +static float N031[3] = {-0.448754 ,0.888261 ,-0.098037}; +static float N032[3] = {-0.891865 ,0.434376 ,-0.126077}; +static float N033[3] = {-0.881447 ,-0.448017 ,-0.149437}; +static float N034[3] = {-0.345647 ,-0.922057 ,-0.174183}; +static float N035[3] = {0.307998 ,-0.941371 ,-0.137688}; +static float N036[3] = {0.806316 ,-0.574647 ,-0.140124}; +static float N037[3] = {0.961346 ,0.233646 ,-0.145681}; +static float N038[3] = {0.488451 ,0.865586 ,-0.110351}; +static float N039[3] = {-0.374290 ,0.921953 ,-0.099553}; +static float N040[3] = {-0.928504 ,0.344533 ,-0.138485}; +static float N041[3] = {-0.918419 ,-0.371792 ,-0.135189}; +static float N042[3] = {-0.520666 ,-0.833704 ,-0.183968}; +static float N043[3] = {0.339204 ,-0.920273 ,-0.195036}; +static float N044[3] = {0.921475 ,-0.387382 ,-0.028636}; +static float N045[3] = {0.842465 ,0.533335 ,-0.076204}; +static float N046[3] = {0.380110 ,0.924939 ,0.002073}; +static float N047[3] = {-0.276128 ,0.961073 ,-0.009579}; +static float N048[3] = {-0.879684 ,0.473001 ,-0.049250}; +static float N049[3] = {-0.947184 ,-0.317614 ,-0.044321}; +static float N050[3] = {-0.642059 ,-0.764933 ,-0.051363}; +static float N051[3] = {0.466794 ,-0.880921 ,-0.077990}; +static float N052[3] = {0.898509 ,-0.432277 ,0.076279}; +static float N053[3] = {0.938985 ,0.328141 ,0.103109}; +static float N054[3] = {0.442420 ,0.895745 ,0.043647}; +static float N055[3] = {-0.255163 ,0.966723 ,0.018407}; +static float N056[3] = {-0.833769 ,0.540650 ,0.111924}; +static float N057[3] = {-0.953653 ,-0.289939 ,0.080507}; +static float N058[3] = {-0.672357 ,-0.730524 ,0.119461}; +static float N059[3] = {0.522249 ,-0.846652 ,0.102157}; +static float N060[3] = {0.885868 ,-0.427631 ,0.179914}; +static float N062[3] = {0.648942 ,0.743116 ,0.163255}; +static float N063[3] = {-0.578967 ,0.807730 ,0.111219}; +static float N065[3] = {-0.909864 ,-0.352202 ,0.219321}; +static float N066[3] = {-0.502541 ,-0.818090 ,0.279610}; +static float N067[3] = {0.322919 ,-0.915358 ,0.240504}; +static float N068[3] = {0.242536 ,0.000000 ,-0.970143}; +static float N069[3] = {0.000000 ,1.000000 ,0.000000}; +static float N070[3] = {0.000000 ,1.000000 ,0.000000}; +static float N071[3] = {0.000000 ,1.000000 ,0.000000}; +static float N072[3] = {0.000000 ,1.000000 ,0.000000}; +static float N073[3] = {0.000000 ,1.000000 ,0.000000}; +static float N074[3] = {0.000000 ,1.000000 ,0.000000}; +static float N075[3] = {0.031220 ,0.999025 ,-0.031220}; +static float N076[3] = {0.000000 ,1.000000 ,0.000000}; +static float N077[3] = {0.446821 ,0.893642 ,0.041889}; +static float N078[3] = {0.863035 ,-0.100980 ,0.494949}; +static float N079[3] = {0.585597 ,-0.808215 ,0.062174}; +static float N080[3] = {0.000000 ,1.000000 ,0.000000}; +static float N081[3] = {1.000000 ,0.000000 ,0.000000}; +static float N082[3] = {0.000000 ,1.000000 ,0.000000}; +static float N083[3] = {-1.000000 ,0.000000 ,0.000000}; +static float N084[3] = {-0.478893 ,0.837129 ,-0.264343}; +static float N085[3] = {0.000000 ,1.000000 ,0.000000}; +static float N086[3] = {0.763909 ,0.539455 ,-0.354163}; +static float N087[3] = {0.446821 ,0.893642 ,0.041889}; +static float N088[3] = {0.385134 ,-0.908288 ,0.163352}; +static float N089[3] = {-0.605952 ,0.779253 ,-0.159961}; +static float N090[3] = {0.000000 ,1.000000 ,0.000000}; +static float N091[3] = {0.000000 ,1.000000 ,0.000000}; +static float N092[3] = {0.000000 ,1.000000 ,0.000000}; +static float N093[3] = {0.000000 ,1.000000 ,0.000000}; +static float N094[3] = {1.000000 ,0.000000 ,0.000000}; +static float N095[3] = {-1.000000 ,0.000000 ,0.000000}; +static float N096[3] = {0.644444 ,-0.621516 ,0.445433}; +static float N097[3] = {-0.760896 ,-0.474416 ,0.442681}; +static float N098[3] = {0.636888 ,-0.464314 ,0.615456}; +static float N099[3] = {-0.710295 ,0.647038 ,0.277168}; +static float N100[3] = {0.009604 ,0.993655 ,0.112063}; +static float iP001[3] = {18.74, 13.19, 3.76}; +static float P001[3] = {18.74, 13.19, 3.76}; +static float P002[3] = {0.00, 390.42, 10292.57}; +static float P003[3] = {55.80, 622.31, 8254.35}; +static float P004[3] = {20.80, 247.66, 10652.13}; +static float P005[3] = {487.51, 198.05, 9350.78}; +static float P006[3] = {-457.61, 199.04, 9353.01}; +static float P008[3] = {-34.67, 247.64, 10663.71}; +static float iP009[3] = {97.46, 67.63, 593.82}; +static float iP010[3] = {-84.33, 67.63, 588.18}; +static float iP011[3] = {118.69, 8.98, -66.91}; +static float P009[3] = {97.46, 67.63, 593.82}; +static float P010[3] = {-84.33, 67.63, 588.18}; +static float P011[3] = {118.69, 8.98, -66.91}; +static float iP012[3] = {156.48, -31.95, 924.54}; +static float iP013[3] = {162.00, 110.22, 924.54}; +static float iP014[3] = {88.16, 221.65, 924.54}; +static float iP015[3] = {-65.21, 231.16, 924.54}; +static float iP016[3] = {-156.48, 121.97, 924.54}; +static float iP017[3] = {-162.00, -23.93, 924.54}; +static float iP018[3] = {-88.16, -139.10, 924.54}; +static float iP019[3] = {65.21, -148.61, 924.54}; +static float iP020[3] = {246.87, -98.73, 1783.04}; +static float iP021[3] = {253.17, 127.76, 1783.04}; +static float iP022[3] = {132.34, 270.77, 1783.04}; +static float iP023[3] = {-97.88, 285.04, 1783.04}; +static float iP024[3] = {-222.97, 139.80, 1783.04}; +static float iP025[3] = {-225.29, -86.68, 1783.04}; +static float iP026[3] = {-108.44, -224.15, 1783.04}; +static float iP027[3] = {97.88, -221.56, 1783.04}; +static float iP028[3] = {410.55, -200.66, 3213.87}; +static float iP029[3] = {432.19, 148.42, 3213.87}; +static float iP030[3] = {200.66, 410.55, 3213.87}; +static float iP031[3] = {-148.42, 432.19, 3213.87}; +static float iP032[3] = {-407.48, 171.88, 3213.87}; +static float iP033[3] = {-432.19, -148.42, 3213.87}; +static float iP034[3] = {-148.88, -309.74, 3213.87}; +static float iP035[3] = {156.38, -320.17, 3213.87}; +static float iP036[3] = {523.39, -303.81, 4424.57}; +static float iP037[3] = {574.66, 276.84, 4424.57}; +static float iP038[3] = {243.05, 492.50, 4424.57}; +static float iP039[3] = {-191.23, 520.13, 4424.57}; +static float iP040[3] = {-523.39, 304.01, 4424.57}; +static float iP041[3] = {-574.66, -231.83, 4424.57}; +static float iP042[3] = {-266.95, -578.17, 4424.57}; +static float iP043[3] = {211.14, -579.67, 4424.57}; +static float iP044[3] = {680.57, -370.27, 5943.46}; +static float iP045[3] = {834.01, 363.09, 5943.46}; +static float iP046[3] = {371.29, 614.13, 5943.46}; +static float iP047[3] = {-291.43, 621.86, 5943.46}; +static float iP048[3] = {-784.13, 362.60, 5943.46}; +static float iP049[3] = {-743.29, -325.82, 5943.46}; +static float iP050[3] = {-383.24, -804.77, 5943.46}; +static float iP051[3] = {283.47, -846.09, 5943.46}; +static float P012[3] = {156.48, -31.95, 924.54}; +static float P013[3] = {162.00, 110.22, 924.54}; +static float P014[3] = {88.16, 221.65, 924.54}; +static float P015[3] = {-65.21, 231.16, 924.54}; +static float P016[3] = {-156.48, 121.97, 924.54}; +static float P017[3] = {-162.00, -23.93, 924.54}; +static float P018[3] = {-88.16, -139.10, 924.54}; +static float P019[3] = {65.21, -148.61, 924.54}; +static float P020[3] = {246.87, -98.73, 1783.04}; +static float P021[3] = {253.17, 127.76, 1783.04}; +static float P022[3] = {132.34, 270.77, 1783.04}; +static float P023[3] = {-97.88, 285.04, 1783.04}; +static float P024[3] = {-222.97, 139.80, 1783.04}; +static float P025[3] = {-225.29, -86.68, 1783.04}; +static float P026[3] = {-108.44, -224.15, 1783.04}; +static float P027[3] = {97.88, -221.56, 1783.04}; +static float P028[3] = {410.55, -200.66, 3213.87}; +static float P029[3] = {432.19, 148.42, 3213.87}; +static float P030[3] = {200.66, 410.55, 3213.87}; +static float P031[3] = {-148.42, 432.19, 3213.87}; +static float P032[3] = {-407.48, 171.88, 3213.87}; +static float P033[3] = {-432.19, -148.42, 3213.87}; +static float P034[3] = {-148.88, -309.74, 3213.87}; +static float P035[3] = {156.38, -320.17, 3213.87}; +static float P036[3] = {523.39, -303.81, 4424.57}; +static float P037[3] = {574.66, 276.84, 4424.57}; +static float P038[3] = {243.05, 492.50, 4424.57}; +static float P039[3] = {-191.23, 520.13, 4424.57}; +static float P040[3] = {-523.39, 304.01, 4424.57}; +static float P041[3] = {-574.66, -231.83, 4424.57}; +static float P042[3] = {-266.95, -578.17, 4424.57}; +static float P043[3] = {211.14, -579.67, 4424.57}; +static float P044[3] = {680.57, -370.27, 5943.46}; +static float P045[3] = {834.01, 363.09, 5943.46}; +static float P046[3] = {371.29, 614.13, 5943.46}; +static float P047[3] = {-291.43, 621.86, 5943.46}; +static float P048[3] = {-784.13, 362.60, 5943.46}; +static float P049[3] = {-743.29, -325.82, 5943.46}; +static float P050[3] = {-383.24, -804.77, 5943.46}; +static float P051[3] = {283.47, -846.09, 5943.46}; +static float P052[3] = {599.09, -332.24, 7902.59}; +static float P053[3] = {735.48, 306.26, 7911.92}; +static float P054[3] = {321.55, 558.53, 7902.59}; +static float P055[3] = {-260.54, 559.84, 7902.59}; +static float P056[3] = {-698.66, 320.83, 7902.59}; +static float P057[3] = {-643.29, -299.16, 7902.59}; +static float P058[3] = {-341.47, -719.30, 7902.59}; +static float P059[3] = {252.57, -756.12, 7902.59}; +static float P060[3] = {458.39, -265.31, 9355.44}; +static float P062[3] = {224.04, 438.98, 9364.77}; +static float P063[3] = {-165.71, 441.27, 9355.44}; +static float P065[3] = {-473.99, -219.71, 9355.44}; +static float P066[3] = {-211.97, -479.87, 9355.44}; +static float P067[3] = {192.86, -504.03, 9355.44}; +static float iP068[3] = {-112.44, 9.25, -64.42}; +static float iP069[3] = {1155.63, 0.00, -182.46}; +static float iP070[3] = {-1143.13, 0.00, -181.54}; +static float iP071[3] = {1424.23, 0.00, -322.09}; +static float iP072[3] = {-1368.01, 0.00, -310.38}; +static float iP073[3] = {1255.57, 2.31, 114.05}; +static float iP074[3] = {-1149.38, 0.00, 117.12}; +static float iP075[3] = {718.36, 0.00, 433.36}; +static float iP076[3] = {-655.90, 0.00, 433.36}; +static float P068[3] = {-112.44, 9.25, -64.42}; +static float P069[3] = {1155.63, 0.00, -182.46}; +static float P070[3] = {-1143.13, 0.00, -181.54}; +static float P071[3] = {1424.23, 0.00, -322.09}; +static float P072[3] = {-1368.01, 0.00, -310.38}; +static float P073[3] = {1255.57, 2.31, 114.05}; +static float P074[3] = {-1149.38, 0.00, 117.12}; +static float P075[3] = {718.36, 0.00, 433.36}; +static float P076[3] = {-655.90, 0.00, 433.36}; +static float P077[3] = {1058.00, -2.66, 7923.51}; +static float P078[3] = {-1016.51, -15.47, 7902.87}; +static float P079[3] = {-1363.99, -484.50, 7593.38}; +static float P080[3] = {1478.09, -861.47, 7098.12}; +static float P081[3] = {1338.06, -284.68, 7024.15}; +static float P082[3] = {-1545.51, -860.64, 7106.60}; +static float P083[3] = {1063.19, -70.46, 7466.60}; +static float P084[3] = {-1369.18, -288.11, 7015.34}; +static float P085[3] = {1348.44, -482.50, 7591.41}; +static float P086[3] = {-1015.45, -96.80, 7474.86}; +static float P087[3] = {731.04, 148.38, 7682.58}; +static float P088[3] = {-697.03, 151.82, 7668.81}; +static float P089[3] = {-686.82, 157.09, 7922.29}; +static float P090[3] = {724.73, 147.75, 7931.39}; +static float iP091[3] = {0.00, 327.10, 2346.55}; +static float iP092[3] = {0.00, 552.28, 2311.31}; +static float iP093[3] = {0.00, 721.16, 2166.41}; +static float iP094[3] = {0.00, 693.42, 2388.80}; +static float iP095[3] = {0.00, 389.44, 2859.97}; +static float P091[3] = {0.00, 327.10, 2346.55}; +static float P092[3] = {0.00, 552.28, 2311.31}; +static float P093[3] = {0.00, 721.16, 2166.41}; +static float P094[3] = {0.00, 693.42, 2388.80}; +static float P095[3] = {0.00, 389.44, 2859.97}; +static float iP096[3] = {222.02, -183.67, 10266.89}; +static float iP097[3] = {-128.90, -182.70, 10266.89}; +static float iP098[3] = {41.04, 88.31, 10659.36}; +static float iP099[3] = {-48.73, 88.30, 10659.36}; +static float P096[3] = {222.02, -183.67, 10266.89}; +static float P097[3] = {-128.90, -182.70, 10266.89}; +static float P098[3] = {41.04, 88.31, 10659.36}; +static float P099[3] = {-48.73, 88.30, 10659.36}; +static float P100[3] = {0.00, 603.42, 9340.68}; +static float P104[3] = {-9.86, 567.62, 7858.65}; +static float P105[3] = {31.96, 565.27, 7908.46}; +static float P106[3] = {22.75, 568.13, 7782.83}; +static float P107[3] = {58.93, 568.42, 7775.94}; +static float P108[3] = {55.91, 565.59, 7905.86}; +static float P109[3] = {99.21, 566.00, 7858.65}; +static float P110[3] = {-498.83, 148.14, 9135.10}; +static float P111[3] = {-495.46, 133.24, 9158.48}; +static float P112[3] = {-490.82, 146.23, 9182.76}; +static float P113[3] = {-489.55, 174.11, 9183.66}; +static float P114[3] = {-492.92, 189.00, 9160.28}; +static float P115[3] = {-497.56, 176.02, 9136.00}; +static float P116[3] = {526.54, 169.68, 9137.70}; +static float P117[3] = {523.49, 184.85, 9161.42}; +static float P118[3] = {518.56, 171.78, 9186.06}; +static float P119[3] = {516.68, 143.53, 9186.98}; +static float P120[3] = {519.73, 128.36, 9163.26}; +static float P121[3] = {524.66, 141.43, 9138.62}; +/* *INDENT-ON* */ + +void +Whale001(void) +{ + + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N068); + glVertex3fv(P068); + glNormal3fv(N010); + glVertex3fv(P010); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N068); + glVertex3fv(P068); + glNormal3fv(N076); + glVertex3fv(P076); + glNormal3fv(N010); + glVertex3fv(P010); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N068); + glVertex3fv(P068); + glNormal3fv(N070); + glVertex3fv(P070); + glNormal3fv(N076); + glVertex3fv(P076); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N076); + glVertex3fv(P076); + glNormal3fv(N070); + glVertex3fv(P070); + glNormal3fv(N074); + glVertex3fv(P074); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N070); + glVertex3fv(P070); + glNormal3fv(N072); + glVertex3fv(P072); + glNormal3fv(N074); + glVertex3fv(P074); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N072); + glVertex3fv(P072); + glNormal3fv(N070); + glVertex3fv(P070); + glNormal3fv(N074); + glVertex3fv(P074); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N074); + glVertex3fv(P074); + glNormal3fv(N070); + glVertex3fv(P070); + glNormal3fv(N076); + glVertex3fv(P076); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N070); + glVertex3fv(P070); + glNormal3fv(N068); + glVertex3fv(P068); + glNormal3fv(N076); + glVertex3fv(P076); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N076); + glVertex3fv(P076); + glNormal3fv(N068); + glVertex3fv(P068); + glNormal3fv(N010); + glVertex3fv(P010); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N068); + glVertex3fv(P068); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N010); + glVertex3fv(P010); + glEnd(); +} + +void +Whale002(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N009); + glVertex3fv(P009); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N075); + glVertex3fv(P075); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N009); + glVertex3fv(P009); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N069); + glVertex3fv(P069); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N075); + glVertex3fv(P075); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N069); + glVertex3fv(P069); + glNormal3fv(N075); + glVertex3fv(P075); + glNormal3fv(N073); + glVertex3fv(P073); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N071); + glVertex3fv(P071); + glNormal3fv(N069); + glVertex3fv(P069); + glNormal3fv(N073); + glVertex3fv(P073); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N009); + glVertex3fv(P009); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N009); + glVertex3fv(P009); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N075); + glVertex3fv(P075); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N011); + glVertex3fv(P011); + glNormal3fv(N069); + glVertex3fv(P069); + glNormal3fv(N075); + glVertex3fv(P075); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N069); + glVertex3fv(P069); + glNormal3fv(N073); + glVertex3fv(P073); + glNormal3fv(N075); + glVertex3fv(P075); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N069); + glVertex3fv(P069); + glNormal3fv(N071); + glVertex3fv(P071); + glNormal3fv(N073); + glVertex3fv(P073); + glEnd(); +} + +void +Whale003(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N019); + glVertex3fv(P019); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N012); + glVertex3fv(P012); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N018); + glVertex3fv(P018); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N016); + glVertex3fv(P016); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N012); + glVertex3fv(P012); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N015); + glVertex3fv(P015); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N013); + glVertex3fv(P013); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N001); + glVertex3fv(P001); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N014); + glVertex3fv(P014); + glEnd(); +} + +void +Whale004(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N022); + glVertex3fv(P022); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N015); + glVertex3fv(P015); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N023); + glVertex3fv(P023); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N016); + glVertex3fv(P016); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N024); + glVertex3fv(P024); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N017); + glVertex3fv(P017); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N025); + glVertex3fv(P025); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N014); + glVertex3fv(P014); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N021); + glVertex3fv(P021); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N012); + glVertex3fv(P012); + glNormal3fv(N013); + glVertex3fv(P013); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N020); + glVertex3fv(P020); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N018); + glVertex3fv(P018); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N026); + glVertex3fv(P026); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N019); + glVertex3fv(P019); + glNormal3fv(N012); + glVertex3fv(P012); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N027); + glVertex3fv(P027); + glEnd(); +} + +void +Whale005(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N030); + glVertex3fv(P030); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N022); + glVertex3fv(P022); + glNormal3fv(N030); + glVertex3fv(P030); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N023); + glVertex3fv(P023); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N031); + glVertex3fv(P031); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N031); + glVertex3fv(P031); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N024); + glVertex3fv(P024); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N032); + glVertex3fv(P032); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N032); + glVertex3fv(P032); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N021); + glVertex3fv(P021); + glNormal3fv(N029); + glVertex3fv(P029); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N028); + glVertex3fv(P028); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N020); + glVertex3fv(P020); + glNormal3fv(N028); + glVertex3fv(P028); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N035); + glVertex3fv(P035); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N025); + glVertex3fv(P025); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N033); + glVertex3fv(P033); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N034); + glVertex3fv(P034); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N026); + glVertex3fv(P026); + glNormal3fv(N027); + glVertex3fv(P027); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N034); + glVertex3fv(P034); + glEnd(); +} + +void +Whale006(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N092); + glVertex3fv(P092); + glNormal3fv(N093); + glVertex3fv(P093); + glNormal3fv(N094); + glVertex3fv(P094); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N093); + glVertex3fv(P093); + glNormal3fv(N092); + glVertex3fv(P092); + glNormal3fv(N094); + glVertex3fv(P094); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N092); + glVertex3fv(P092); + glNormal3fv(N091); + glVertex3fv(P091); + glNormal3fv(N095); + glVertex3fv(P095); + glNormal3fv(N094); + glVertex3fv(P094); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N091); + glVertex3fv(P091); + glNormal3fv(N092); + glVertex3fv(P092); + glNormal3fv(N094); + glVertex3fv(P094); + glNormal3fv(N095); + glVertex3fv(P095); + glEnd(); +} + +void +Whale007(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N038); + glVertex3fv(P038); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N030); + glVertex3fv(P030); + glNormal3fv(N038); + glVertex3fv(P038); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N037); + glVertex3fv(P037); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N029); + glVertex3fv(P029); + glNormal3fv(N037); + glVertex3fv(P037); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N036); + glVertex3fv(P036); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N028); + glVertex3fv(P028); + glNormal3fv(N036); + glVertex3fv(P036); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N043); + glVertex3fv(P043); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N034); + glVertex3fv(P034); + glNormal3fv(N035); + glVertex3fv(P035); + glNormal3fv(N043); + glVertex3fv(P043); + glNormal3fv(N042); + glVertex3fv(P042); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N034); + glVertex3fv(P034); + glNormal3fv(N042); + glVertex3fv(P042); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N041); + glVertex3fv(P041); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N031); + glVertex3fv(P031); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N039); + glVertex3fv(P039); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N040); + glVertex3fv(P040); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N032); + glVertex3fv(P032); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N040); + glVertex3fv(P040); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N033); + glVertex3fv(P033); + glNormal3fv(N041); + glVertex3fv(P041); + glEnd(); +} + +void +Whale008(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N043); + glVertex3fv(P043); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N050); + glVertex3fv(P050); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N043); + glVertex3fv(P043); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N051); + glVertex3fv(P051); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N044); + glVertex3fv(P044); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N042); + glVertex3fv(P042); + glNormal3fv(N050); + glVertex3fv(P050); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N049); + glVertex3fv(P049); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N036); + glVertex3fv(P036); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N044); + glVertex3fv(P044); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N045); + glVertex3fv(P045); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N041); + glVertex3fv(P041); + glNormal3fv(N049); + glVertex3fv(P049); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N048); + glVertex3fv(P048); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N040); + glVertex3fv(P040); + glNormal3fv(N048); + glVertex3fv(P048); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N047); + glVertex3fv(P047); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N037); + glVertex3fv(P037); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N045); + glVertex3fv(P045); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N045); + glVertex3fv(P045); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N038); + glVertex3fv(P038); + glNormal3fv(N039); + glVertex3fv(P039); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N046); + glVertex3fv(P046); + glEnd(); +} + +void +Whale009(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N058); + glVertex3fv(P058); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N051); + glVertex3fv(P051); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N059); + glVertex3fv(P059); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N052); + glVertex3fv(P052); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N045); + glVertex3fv(P045); + glNormal3fv(N053); + glVertex3fv(P053); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N044); + glVertex3fv(P044); + glNormal3fv(N053); + glVertex3fv(P053); + glNormal3fv(N052); + glVertex3fv(P052); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N050); + glVertex3fv(P050); + glNormal3fv(N058); + glVertex3fv(P058); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N057); + glVertex3fv(P057); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N049); + glVertex3fv(P049); + glNormal3fv(N057); + glVertex3fv(P057); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N057); + glVertex3fv(P057); + glNormal3fv(N056); + glVertex3fv(P056); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N048); + glVertex3fv(P048); + glNormal3fv(N056); + glVertex3fv(P056); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N055); + glVertex3fv(P055); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N045); + glVertex3fv(P045); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N053); + glVertex3fv(P053); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N054); + glVertex3fv(P054); + glNormal3fv(N053); + glVertex3fv(P053); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N046); + glVertex3fv(P046); + glNormal3fv(N047); + glVertex3fv(P047); + glNormal3fv(N055); + glVertex3fv(P055); + glNormal3fv(N054); + glVertex3fv(P054); + glEnd(); +} + +void +Whale010(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N080); + glVertex3fv(P080); + glNormal3fv(N081); + glVertex3fv(P081); + glNormal3fv(N085); + glVertex3fv(P085); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N081); + glVertex3fv(P081); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N085); + glVertex3fv(P085); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N085); + glVertex3fv(P085); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N077); + glVertex3fv(P077); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N087); + glVertex3fv(P087); + glNormal3fv(N077); + glVertex3fv(P077); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N077); + glVertex3fv(P077); + glNormal3fv(N087); + glVertex3fv(P087); + glNormal3fv(N090); + glVertex3fv(P090); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N081); + glVertex3fv(P081); + glNormal3fv(N080); + glVertex3fv(P080); + glNormal3fv(N085); + glVertex3fv(P085); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N081); + glVertex3fv(P081); + glNormal3fv(N085); + glVertex3fv(P085); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N085); + glVertex3fv(P085); + glNormal3fv(N077); + glVertex3fv(P077); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N087); + glVertex3fv(P087); + glNormal3fv(N083); + glVertex3fv(P083); + glNormal3fv(N077); + glVertex3fv(P077); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N087); + glVertex3fv(P087); + glNormal3fv(N077); + glVertex3fv(P077); + glNormal3fv(N090); + glVertex3fv(P090); + glEnd(); +} + +void +Whale011(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N082); + glVertex3fv(P082); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N079); + glVertex3fv(P079); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N079); + glVertex3fv(P079); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N079); + glVertex3fv(P079); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N078); + glVertex3fv(P078); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N088); + glVertex3fv(P088); + glNormal3fv(N078); + glVertex3fv(P078); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N078); + glVertex3fv(P078); + glNormal3fv(N088); + glVertex3fv(P088); + glNormal3fv(N089); + glVertex3fv(P089); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N088); + glVertex3fv(P088); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N089); + glVertex3fv(P089); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N089); + glVertex3fv(P089); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N078); + glVertex3fv(P078); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N086); + glVertex3fv(P086); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N078); + glVertex3fv(P078); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N078); + glVertex3fv(P078); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N079); + glVertex3fv(P079); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N084); + glVertex3fv(P084); + glNormal3fv(N082); + glVertex3fv(P082); + glNormal3fv(N079); + glVertex3fv(P079); + glEnd(); +} + +void +Whale012(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N067); + glVertex3fv(P067); + glNormal3fv(N066); + glVertex3fv(P066); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N052); + glVertex3fv(P052); + glNormal3fv(N060); + glVertex3fv(P060); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N059); + glVertex3fv(P059); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N067); + glVertex3fv(P067); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N065); + glVertex3fv(P065); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N058); + glVertex3fv(P058); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N057); + glVertex3fv(P057); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N057); + glVertex3fv(P057); + glNormal3fv(N065); + glVertex3fv(P065); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N006); + glVertex3fv(P006); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N063); + glVertex3fv(P063); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N056); + glVertex3fv(P056); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N055); + glVertex3fv(P055); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N054); + glVertex3fv(P054); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N005); + glVertex3fv(P005); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N054); + glVertex3fv(P054); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N053); + glVertex3fv(P053); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N053); + glVertex3fv(P053); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N060); + glVertex3fv(P060); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N053); + glVertex3fv(P053); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N052); + glVertex3fv(P052); + glEnd(); +} + +void +Whale013(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N067); + glVertex3fv(P067); + glNormal3fv(N096); + glVertex3fv(P096); + glNormal3fv(N097); + glVertex3fv(P097); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N097); + glVertex3fv(P097); + glNormal3fv(N096); + glVertex3fv(P096); + glNormal3fv(N098); + glVertex3fv(P098); + glNormal3fv(N099); + glVertex3fv(P099); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N066); + glVertex3fv(P066); + glNormal3fv(N097); + glVertex3fv(P097); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N067); + glVertex3fv(P067); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N096); + glVertex3fv(P096); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N060); + glVertex3fv(P060); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N096); + glVertex3fv(P096); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N096); + glVertex3fv(P096); + glNormal3fv(N005); + glVertex3fv(P005); + glNormal3fv(N098); + glVertex3fv(P098); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N065); + glVertex3fv(P065); + glNormal3fv(N097); + glVertex3fv(P097); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N097); + glVertex3fv(P097); + glNormal3fv(N099); + glVertex3fv(P099); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P005); + glVertex3fv(P006); + glVertex3fv(P099); + glVertex3fv(P098); + glEnd(); +} + +void +Whale014(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N004); + glVertex3fv(P004); + glNormal3fv(N005); + glVertex3fv(P005); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P006); + glVertex3fv(P005); + glVertex3fv(P004); + glVertex3fv(P008); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N002); + glVertex3fv(P002); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N006); + glVertex3fv(P006); + glNormal3fv(N008); + glVertex3fv(P008); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N008); + glVertex3fv(P008); + glNormal3fv(N004); + glVertex3fv(P004); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N062); + glVertex3fv(P062); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N004); + glVertex3fv(P004); + glEnd(); +} + +void +Whale015(void) +{ + glBegin(GL_POLYGON); + glNormal3fv(N055); + glVertex3fv(P055); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N054); + glVertex3fv(P054); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N055); + glVertex3fv(P055); + glNormal3fv(N063); + glVertex3fv(P063); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N100); + glVertex3fv(P100); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N003); + glVertex3fv(P003); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N054); + glVertex3fv(P054); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N054); + glVertex3fv(P054); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N062); + glVertex3fv(P062); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N063); + glVertex3fv(P063); + glNormal3fv(N002); + glVertex3fv(P002); + glEnd(); + glBegin(GL_POLYGON); + glNormal3fv(N100); + glVertex3fv(P100); + glNormal3fv(N002); + glVertex3fv(P002); + glNormal3fv(N062); + glVertex3fv(P062); + glEnd(); +} + +void +Whale016(void) +{ + glBegin(GL_POLYGON); + glVertex3fv(P104); + glVertex3fv(P105); + glVertex3fv(P106); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P107); + glVertex3fv(P108); + glVertex3fv(P109); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P110); + glVertex3fv(P111); + glVertex3fv(P112); + glVertex3fv(P113); + glVertex3fv(P114); + glVertex3fv(P115); + glEnd(); + glBegin(GL_POLYGON); + glVertex3fv(P116); + glVertex3fv(P117); + glVertex3fv(P118); + glVertex3fv(P119); + glVertex3fv(P120); + glVertex3fv(P121); + glEnd(); +} + +void +DrawWhale(fishRec * fish) +{ + float seg0, seg1, seg2, seg3, seg4, seg5, seg6, seg7; + float pitch, thrash, chomp; + + fish->htail = (int) (fish->htail - (int) (5.0 * fish->v)) % 360; + + thrash = 70.0 * fish->v; + + seg0 = 1.5 * thrash * sin((fish->htail) * RRAD); + seg1 = 2.5 * thrash * sin((fish->htail + 10.0) * RRAD); + seg2 = 3.7 * thrash * sin((fish->htail + 15.0) * RRAD); + seg3 = 4.8 * thrash * sin((fish->htail + 23.0) * RRAD); + seg4 = 6.0 * thrash * sin((fish->htail + 28.0) * RRAD); + seg5 = 6.5 * thrash * sin((fish->htail + 35.0) * RRAD); + seg6 = 6.5 * thrash * sin((fish->htail + 40.0) * RRAD); + seg7 = 6.5 * thrash * sin((fish->htail + 55.0) * RRAD); + + pitch = fish->v * sin((fish->htail - 160.0) * RRAD); + + chomp = 0.0; + if (fish->v > 2.0) { + chomp = -(fish->v - 2.0) * 200.0; + } + P012[1] = iP012[1] + seg5; + P013[1] = iP013[1] + seg5; + P014[1] = iP014[1] + seg5; + P015[1] = iP015[1] + seg5; + P016[1] = iP016[1] + seg5; + P017[1] = iP017[1] + seg5; + P018[1] = iP018[1] + seg5; + P019[1] = iP019[1] + seg5; + + P020[1] = iP020[1] + seg4; + P021[1] = iP021[1] + seg4; + P022[1] = iP022[1] + seg4; + P023[1] = iP023[1] + seg4; + P024[1] = iP024[1] + seg4; + P025[1] = iP025[1] + seg4; + P026[1] = iP026[1] + seg4; + P027[1] = iP027[1] + seg4; + + P028[1] = iP028[1] + seg2; + P029[1] = iP029[1] + seg2; + P030[1] = iP030[1] + seg2; + P031[1] = iP031[1] + seg2; + P032[1] = iP032[1] + seg2; + P033[1] = iP033[1] + seg2; + P034[1] = iP034[1] + seg2; + P035[1] = iP035[1] + seg2; + + P036[1] = iP036[1] + seg1; + P037[1] = iP037[1] + seg1; + P038[1] = iP038[1] + seg1; + P039[1] = iP039[1] + seg1; + P040[1] = iP040[1] + seg1; + P041[1] = iP041[1] + seg1; + P042[1] = iP042[1] + seg1; + P043[1] = iP043[1] + seg1; + + P044[1] = iP044[1] + seg0; + P045[1] = iP045[1] + seg0; + P046[1] = iP046[1] + seg0; + P047[1] = iP047[1] + seg0; + P048[1] = iP048[1] + seg0; + P049[1] = iP049[1] + seg0; + P050[1] = iP050[1] + seg0; + P051[1] = iP051[1] + seg0; + + P009[1] = iP009[1] + seg6; + P010[1] = iP010[1] + seg6; + P075[1] = iP075[1] + seg6; + P076[1] = iP076[1] + seg6; + + P001[1] = iP001[1] + seg7; + P011[1] = iP011[1] + seg7; + P068[1] = iP068[1] + seg7; + P069[1] = iP069[1] + seg7; + P070[1] = iP070[1] + seg7; + P071[1] = iP071[1] + seg7; + P072[1] = iP072[1] + seg7; + P073[1] = iP073[1] + seg7; + P074[1] = iP074[1] + seg7; + + P091[1] = iP091[1] + seg3 * 1.1; + P092[1] = iP092[1] + seg3; + P093[1] = iP093[1] + seg3; + P094[1] = iP094[1] + seg3; + P095[1] = iP095[1] + seg3 * 0.9; + + P099[1] = iP099[1] + chomp; + P098[1] = iP098[1] + chomp; + P097[1] = iP097[1] + chomp; + P096[1] = iP096[1] + chomp; + + glPushMatrix(); + + glRotatef(pitch, 1.0, 0.0, 0.0); + + glTranslatef(0.0, 0.0, 8000.0); + + glRotatef(180.0, 0.0, 1.0, 0.0); + + glScalef(3.0, 3.0, 3.0); + + glEnable(GL_CULL_FACE); + + Whale001(); + Whale002(); + Whale003(); + Whale004(); + Whale005(); + Whale006(); + Whale007(); + Whale008(); + Whale009(); + Whale010(); + Whale011(); + Whale012(); + Whale013(); + Whale014(); + Whale015(); + Whale016(); + + glDisable(GL_CULL_FACE); + + glPopMatrix(); +} diff --git a/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/main.c b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/main.c new file mode 100644 index 000000000..b7794b3b6 --- /dev/null +++ b/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/main.c @@ -0,0 +1,179 @@ + +/* Simple program: Create a blank window, wait for keypress, quit. + + Please see the SDL documentation for details on using the SDL API: + /Developer/Documentation/SDL/docs.html +*/ + +#include +#include +#include +#include + +#include "SDL.h" + +extern void Atlantis_Init (); +extern void Atlantis_Reshape (int w, int h); +extern void Atlantis_Animate (); +extern void Atlantis_Display (); + +static SDL_Surface *gScreen; + +static void initAttributes () +{ + // Setup attributes we want for the OpenGL context + + int value; + + // Don't set color bit sizes (SDL_GL_RED_SIZE, etc) + // Mac OS X will always use 8-8-8-8 ARGB for 32-bit screens and + // 5-5-5 RGB for 16-bit screens + + // Request a 16-bit depth buffer (without this, there is no depth buffer) + value = 16; + SDL_GL_SetAttribute (SDL_GL_DEPTH_SIZE, value); + + + // Request double-buffered OpenGL + // The fact that windows are double-buffered on Mac OS X has no effect + // on OpenGL double buffering. + value = 1; + SDL_GL_SetAttribute (SDL_GL_DOUBLEBUFFER, value); +} + +static void printAttributes () +{ + // Print out attributes of the context we created + int nAttr; + int i; + + int attr[] = { SDL_GL_RED_SIZE, SDL_GL_BLUE_SIZE, SDL_GL_GREEN_SIZE, + SDL_GL_ALPHA_SIZE, SDL_GL_BUFFER_SIZE, SDL_GL_DEPTH_SIZE }; + + char *desc[] = { "Red size: %d bits\n", "Blue size: %d bits\n", "Green size: %d bits\n", + "Alpha size: %d bits\n", "Color buffer size: %d bits\n", + "Depth bufer size: %d bits\n" }; + + nAttr = sizeof(attr) / sizeof(int); + + for (i = 0; i < nAttr; i++) { + + int value; + SDL_GL_GetAttribute (attr[i], &value); + printf (desc[i], value); + } +} + +static void createSurface (int fullscreen) +{ + Uint32 flags = 0; + + flags = SDL_OPENGL; + if (fullscreen) + flags |= SDL_FULLSCREEN; + + // Create window + gScreen = SDL_SetVideoMode (640, 480, 0, flags); + if (gScreen == NULL) { + + fprintf (stderr, "Couldn't set 640x480 OpenGL video mode: %s\n", + SDL_GetError()); + SDL_Quit(); + exit(2); + } +} + +static void initGL () +{ + Atlantis_Init (); + Atlantis_Reshape (gScreen->w, gScreen->h); +} + +static void drawGL () +{ + Atlantis_Animate (); + Atlantis_Display (); +} + +static void mainLoop () +{ + SDL_Event event; + int done = 0; + int fps = 24; + int delay = 1000/fps; + int thenTicks = -1; + int nowTicks; + + while ( !done ) { + + /* Check for events */ + while ( SDL_PollEvent (&event) ) { + switch (event.type) { + + case SDL_MOUSEMOTION: + break; + case SDL_MOUSEBUTTONDOWN: + break; + case SDL_KEYDOWN: + /* Any keypress quits the app... */ + case SDL_QUIT: + done = 1; + break; + default: + break; + } + } + + // Draw at 24 hz + // This approach is not normally recommended - it is better to + // use time-based animation and run as fast as possible + drawGL (); + SDL_GL_SwapBuffers (); + + // Time how long each draw-swap-delay cycle takes + // and adjust delay to get closer to target framerate + if (thenTicks > 0) { + nowTicks = SDL_GetTicks (); + delay += (1000/fps - (nowTicks-thenTicks)); + thenTicks = nowTicks; + if (delay < 0) + delay = 1000/fps; + } + else { + thenTicks = SDL_GetTicks (); + } + + SDL_Delay (delay); + } +} + +int main(int argc, char *argv[]) +{ + // Init SDL video subsystem + if ( SDL_Init (SDL_INIT_VIDEO) < 0 ) { + + fprintf(stderr, "Couldn't initialize SDL: %s\n", + SDL_GetError()); + exit(1); + } + + // Set GL context attributes + initAttributes (); + + // Create GL context + createSurface (0); + + // Get GL context attributes + printAttributes (); + + // Init GL state + initGL (); + + // Draw, get events... + mainLoop (); + + // Cleanup + SDL_Quit(); + + return 0; +} diff --git a/Xcode/XcodeDocSet/Doxyfile b/Xcode/XcodeDocSet/Doxyfile new file mode 100644 index 000000000..34e12280e --- /dev/null +++ b/Xcode/XcodeDocSet/Doxyfile @@ -0,0 +1,1558 @@ +# Doxyfile 1.6.1 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project +# +# All text after a hash (#) is considered a comment and will be ignored +# The format is: +# TAG = value [value, ...] +# For lists items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (" ") + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# http://www.gnu.org/software/libiconv for the list of possible encodings. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded +# by quotes) that should identify the project. + +PROJECT_NAME = SDL + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or +# if some version control system is used. + +PROJECT_NUMBER = 1.2.14 + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location +# where doxygen was started. If left blank the current directory will be used. + +OUTPUT_DIRECTORY = + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create +# 4096 sub-directories (in 2 levels) under the output directory of each output +# format and will distribute the generated files over these directories. +# Enabling this option can be useful when feeding doxygen a huge amount of +# source files, where putting all generated files in the same directory would +# otherwise cause performance problems for the file system. + +CREATE_SUBDIRS = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, +# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, +# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English +# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, +# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak, +# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). +# Set to NO to disable this. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator +# that is used to form the text in various listings. Each string +# in this list, if found as the leading text of the brief description, will be +# stripped from the text and the result after processing the whole list, is +# used as the annotated text. Otherwise, the brief description is used as-is. +# If left blank, the following values are used ("$name" is automatically +# replaced with the name of the entity): "The $name class" "The $name widget" +# "The $name file" "is" "provides" "specifies" "contains" +# "represents" "a" "an" "the" + +ABBREVIATE_BRIEF = "The $name class" \ + "The $name widget" \ + "The $name file" \ + is \ + provides \ + specifies \ + contains \ + represents \ + a \ + an \ + the + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set +# to NO the shortest path that makes the file name unique will be used. + +FULL_PATH_NAMES = NO + +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user-defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the +# path to strip. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of +# the path mentioned in the documentation of a class, which tells +# the reader which header file to include in order to use a class. +# If left blank only the name of the header file containing the class +# definition is used. Otherwise one should specify the include paths that +# are normally passed to the compiler using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful is your file systems +# doesn't support long names like on DOS, Mac, or CD-ROM. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like regular Qt-style comments +# (thus requiring an explicit @brief command for a brief description.) + +JAVADOC_AUTOBRIEF = YES + +# If the QT_AUTOBRIEF tag is set to YES then Doxygen will +# interpret the first line (until the first dot) of a Qt-style +# comment as the brief description. If set to NO, the comments +# will behave just like regular Qt-style comments (thus requiring +# an explicit \brief command for a brief description.) + +QT_AUTOBRIEF = YES + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen +# treat a multi-line C++ special comment block (i.e. a block of //! or /// +# comments) as a brief description. This used to be the default behaviour. +# The new default is to treat a multi-line C++ comment block as a detailed +# description. Set this tag to YES if you prefer the old behaviour instead. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it +# re-implements. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce +# a new page for each member. If set to NO, the documentation of a member will +# be part of the file/class/namespace that contains it. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# Doxygen uses this value to replace tabs by spaces in code fragments. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user-defined paragraph with heading "Side Effects:". +# You can put \n's in the value part of an alias to insert newlines. + +ALIASES = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C +# sources only. Doxygen will then generate output that is more tailored for C. +# For instance, some of the names that are used will be different. The list +# of all members will be omitted, etc. + +OPTIMIZE_OUTPUT_FOR_C = YES + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java +# sources only. Doxygen will then generate output that is more tailored for +# Java. For instance, namespaces will be presented as packages, qualified +# scopes will look different, etc. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources only. Doxygen will then generate output that is more tailored for +# Fortran. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for +# VHDL. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it parses. +# With this tag you can assign which parser to use for a given extension. +# Doxygen has a built-in mapping, but you can override or extend it using this tag. +# The format is ext=language, where ext is a file extension, and language is one of +# the parsers supported by doxygen: IDL, Java, Javascript, C#, C, C++, D, PHP, +# Objective-C, Python, Fortran, VHDL, C, C++. For instance to make doxygen treat +# .inc files as Fortran files (default is PHP), and .f files as C (default is Fortran), +# use: inc=Fortran f=C. Note that for custom extensions you also need to set +# FILE_PATTERNS otherwise the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should +# set this tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. +# func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. +# Doxygen will parse them like normal C++ but will assume all classes use public +# instead of private inheritance when no explicit protection keyword is present. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate getter +# and setter methods for a property. Setting this option to YES (the default) +# will make doxygen to replace the get and set methods by a property in the +# documentation. This will only work if the methods are indeed getting or +# setting a simple type. If this is not the case, or you want to show the +# methods anyway, you should set this option to NO. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES (the default) to allow class member groups of +# the same type (for instance a group of public functions) to be put as a +# subgroup of that type (e.g. under the Public Functions section). Set it to +# NO to prevent subgrouping. Alternatively, this can be done per class using +# the \nosubgrouping command. + +SUBGROUPING = YES + +# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum +# is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically +# be useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. + +TYPEDEF_HIDES_STRUCT = YES + +# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to +# determine which symbols to keep in memory and which to flush to disk. +# When the cache is full, less often used symbols will be written to disk. +# For small to medium size projects (<1000 input files) the default value is +# probably good enough. For larger projects a too small cache size can cause +# doxygen to be busy swapping symbols to and from disk most of the time +# causing a significant performance penality. +# If the system has enough physical memory increasing the cache will improve the +# performance by keeping more symbols in memory. Note that the value works on +# a logarithmic scale so increasing the size by one will rougly double the +# memory usage. The cache size is given by this formula: +# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, +# corresponding to a cache size of 2^16 = 65536 symbols + +SYMBOL_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless +# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# will be included in the documentation. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file +# will be included in the documentation. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. +# If set to NO only classes defined in header files are included. + +EXTRACT_LOCAL_CLASSES = NO + +# This flag is only useful for Objective-C code. When set to YES local +# methods, which are defined in the implementation section but not in +# the interface are included in the documentation. +# If set to NO (the default) only methods in the interface are included. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base +# name of the file that contains the anonymous namespace. By default +# anonymous namespace are hidden. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. +# This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these classes will be included in the various +# overviews. This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +# friend (class|struct|union) declarations. +# If set to NO (the default) these declarations will be included in the +# documentation. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +# documentation blocks found inside the body of a function. +# If set to NO (the default) these blocks will be appended to the +# function's detailed documentation block. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. +# Set it to YES to include the internal documentation. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the +# documentation. If set to YES the scope will be hidden. + +HIDE_SCOPE_NAMES = YES + +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put a list of the files that are included by a file in the documentation +# of that file. + +SHOW_INCLUDE_FILES = YES + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# is inserted in the documentation for inline members. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in +# declaration order. + +SORT_MEMBER_DOCS = NO + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the +# brief documentation of file, namespace and class members alphabetically +# by member name. If set to NO (the default) the members will appear in +# declaration order. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen +# will sort the (brief and detailed) documentation of class members so that +# constructors and destructors are listed first. If set to NO (the default) +# the constructors will appear in the respective orders defined by +# SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. +# This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO +# and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the +# hierarchy of group names into alphabetical order. If set to NO (the default) +# the group names will appear in their defined order. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be +# sorted by fully-qualified names, including namespaces. If set to +# NO (the default), the class list will be sorted only by class name, +# not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the +# alphabetical list. + +SORT_BY_SCOPE_NAME = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo +# commands in the documentation. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test +# commands in the documentation. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug +# commands in the documentation. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or +# disable (NO) the deprecated list. This list is created by putting +# \deprecated commands in the documentation. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional +# documentation sections, marked by \if sectionname ... \endif. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or define consists of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and defines in the +# documentation can be controlled using \showinitializer or \hideinitializer +# command in the documentation regardless of this setting. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the +# list will mention the files that were used to generate the documentation. + +SHOW_USED_FILES = YES + +# If the sources in your project are distributed over multiple directories +# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy +# in the documentation. The default is NO. + +SHOW_DIRECTORIES = NO + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. +# This will remove the Files entry from the Quick Index and from the +# Folder Tree View (if specified). The default is YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the +# Namespaces page. This will remove the Namespaces entry from the Quick Index +# and from the Folder Tree View (if specified). The default is YES. + +SHOW_NAMESPACES = NO + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command , where is the value of +# the FILE_VERSION_FILTER tag, and is the name of an input file +# provided by doxygen. Whatever the program writes to standard output +# is used as the file version. See the manual for examples. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed by +# doxygen. The layout file controls the global structure of the generated output files +# in an output format independent way. The create the layout file that represents +# doxygen's defaults, run doxygen with the -l option. You can optionally specify a +# file name after the option, if omitted DoxygenLayout.xml will be used as the name +# of the layout file. + +LAYOUT_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated +# by doxygen. Possible values are YES and NO. If left blank NO is used. + +QUIET = YES + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank +# NO is used. + +WARNINGS = YES + +# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings +# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. + +WARN_IF_UNDOCUMENTED = YES + +# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some +# parameters in a documented function, or documenting parameters that +# don't exist or using markup commands wrongly. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be abled to get warnings for +# functions that are documented, but have no documentation for their parameters +# or return value. If set to NO (the default) doxygen will only warn about +# wrong or incomplete parameter documentation, but not about the absence of +# documentation. + +WARN_NO_PARAMDOC = YES + +# The WARN_FORMAT tag determines the format of the warning messages that +# doxygen can produce. The string should contain the $file, $line, and $text +# tags, which will be replaced by the file and line number from which the +# warning originated and the warning text. Optionally the format may contain +# $version, which will be replaced by the version of the file (if it could +# be obtained via FILE_VERSION_FILTER) + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning +# and error messages should be written. If left blank the output is written +# to stderr. + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag can be used to specify the files and/or directories that contain +# documented source files. You may enter file names like "myfile.cpp" or +# directories like "/usr/src/myproject". Separate the files or directories +# with spaces. + +INPUT = ../../include + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is +# also the default input encoding. Doxygen uses libiconv (or the iconv built +# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for +# the list of possible encodings. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx +# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 + +FILE_PATTERNS = *.c \ + *.cc \ + *.cxx \ + *.cpp \ + *.c++ \ + *.d \ + *.java \ + *.ii \ + *.ixx \ + *.ipp \ + *.i++ \ + *.inl \ + *.h \ + *.hh \ + *.hxx \ + *.hpp \ + *.h++ \ + *.idl \ + *.odl \ + *.cs \ + *.php \ + *.php3 \ + *.inc \ + *.m \ + *.mm \ + *.dox \ + *.py \ + *.f90 \ + *.f \ + *.vhd \ + *.vhdl + +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. +# If left blank NO is used. + +RECURSIVE = NO + +# The EXCLUDE tag can be used to specify files and/or directories that should +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used select whether or not files or +# directories that are symbolic links (a Unix filesystem feature) are excluded +# from the input. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. Note that the wildcards are matched +# against the file with absolute path, so to exclude all test directories +# for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or +# directories that contain example code fragments that are included (see +# the \include command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank all files are included. + +EXAMPLE_PATTERNS = * + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude +# commands irrespective of the value of the RECURSIVE tag. +# Possible values are YES and NO. If left blank NO is used. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see +# the \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command , where +# is the value of the INPUT_FILTER tag, and is the name of an +# input file. Doxygen will then use the output that the filter program writes +# to standard output. If FILTER_PATTERNS is specified, this tag will be +# ignored. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: +# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further +# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER +# is applied to all files. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source +# files to browse (i.e. when SOURCE_BROWSER is set to YES). + +FILTER_SOURCE_FILES = NO + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will +# be generated. Documented entities will be cross-referenced with these sources. +# Note: To get rid of all source code in the generated output, make sure also +# VERBATIM_HEADERS is set to NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body +# of functions and classes directly in the documentation. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code +# fragments. Normal C and C++ comments will always remain visible. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES +# then for each documented function all documented +# functions referencing it will be listed. + +REFERENCED_BY_RELATION = YES + +# If the REFERENCES_RELATION tag is set to YES +# then for each documented function all documented entities +# called/used by that function will be listed. + +REFERENCES_RELATION = YES + +# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) +# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from +# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will +# link to the source code. Otherwise they will link to the documentation. + +REFERENCES_LINK_SOURCE = YES + +# If the USE_HTAGS tag is set to YES then the references to source code +# will point to the HTML generated by the htags(1) tool instead of doxygen +# built-in source browser. The htags tool is part of GNU's global source +# tagging system (see http://www.gnu.org/software/global/global.html). You +# will need version 4.8.6 or higher. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen +# will generate a verbatim copy of the header file for each class for +# which an include is specified. Set to NO to disable this. + +VERBATIM_HEADERS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index +# of all compounds will be generated. Enable this if the project +# contains a lot of classes, structs, unions or interfaces. + +ALPHABETICAL_INDEX = YES + +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# in which this list will be split (can be a number in the range [1..20]) + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all +# classes will be put under the same header in the alphabetical index. +# The IGNORE_PREFIX tag can be used to specify one or more prefixes that +# should be ignored while generating the index headers. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# generate HTML output. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `html' will be used as the default path. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank +# doxygen will generate files with .html extension. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a +# standard header. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a +# standard footer. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading +# style sheet that is used by each HTML page. It can be used to +# fine-tune the look of the HTML output. If the tag is left blank doxygen +# will generate a default style sheet. Note that doxygen will try to copy +# the style sheet file to the HTML output directory, so don't put your own +# stylesheet in the HTML output directory as well, or it will be erased! + +HTML_STYLESHEET = + +# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, +# files or namespaces will be aligned in HTML using tables. If set to +# NO a bullet list will be used. + +HTML_ALIGN_MEMBERS = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. For this to work a browser that supports +# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox +# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). + +HTML_DYNAMIC_SECTIONS = NO + +# If the GENERATE_DOCSET tag is set to YES, additional index files +# will be generated that can be used as input for Apple's Xcode 3 +# integrated development environment, introduced with OSX 10.5 (Leopard). +# To create a documentation set, doxygen will generate a Makefile in the +# HTML output directory. Running make will produce the docset in that +# directory and running "make install" will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find +# it at startup. +# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html for more information. + +GENERATE_DOCSET = YES + +# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the +# feed. A documentation feed provides an umbrella under which multiple +# documentation sets from a single provider (such as a company or product suite) +# can be grouped. + +DOCSET_FEEDNAME = "Doxygen generated docs for SDL" + +# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that +# should uniquely identify the documentation set bundle. This should be a +# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen +# will append .docset to the name. + +DOCSET_BUNDLE_ID = org.libsdl.sdl + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) +# of the generated HTML documentation. + +GENERATE_HTMLHELP = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can +# be used to specify the file name of the resulting .chm file. You +# can add a path in front of the file if the result should not be +# written to the html output directory. + +CHM_FILE = SDL.chm + +# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can +# be used to specify the location (absolute path including file name) of +# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run +# the HTML help compiler on the generated index.hhp. + +HHC_LOCATION = "C:/Program Files/HTML Help Workshop/hhc.exe" + +# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag +# controls if a separate .chi index file is generated (YES) or that +# it should be included in the master .chm file (NO). + +GENERATE_CHI = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING +# is used to encode HtmlHelp index (hhk), content (hhc) and project file +# content. + +CHM_INDEX_ENCODING = + +# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag +# controls whether a binary table of contents is generated (YES) or a +# normal table of contents (NO) in the .chm file. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members +# to the contents of the HTML help documentation and to the tree view. + +TOC_EXPAND = YES + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and QHP_VIRTUAL_FOLDER +# are set, an additional index file will be generated that can be used as input for +# Qt's qhelpgenerator to generate a Qt Compressed Help (.qch) of the generated +# HTML documentation. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can +# be used to specify the file name of the resulting .qch file. +# The path specified is relative to the HTML output folder. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#namespace + +QHP_NAMESPACE = + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#virtual-folders + +QHP_VIRTUAL_FOLDER = doc + +# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to add. +# For more information please see +# http://doc.trolltech.com/qthelpproject.html#custom-filters + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the custom filter to add.For more information please see +# Qt Help Project / Custom Filters. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this project's +# filter section matches. +# Qt Help Project / Filter Attributes. + +QHP_SECT_FILTER_ATTRS = + +# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can +# be used to specify the location of Qt's qhelpgenerator. +# If non-empty doxygen will try to run qhelpgenerator on the generated +# .qhp file. + +QHG_LOCATION = + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index at +# top of each HTML page. The value NO (the default) enables the index and +# the value YES disables it. + +DISABLE_INDEX = NO + +# This tag can be used to set the number of enum values (range [1..20]) +# that doxygen will group on one line in the generated HTML documentation. + +ENUM_VALUES_PER_LINE = 4 + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. +# If the tag value is set to YES, a side panel will be generated +# containing a tree-like index structure (just like the one that +# is generated for HTML Help). For this to work a browser that supports +# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). +# Windows users are probably better off using the HTML help feature. + +GENERATE_TREEVIEW = NO + +# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories, +# and Class Hierarchy pages using a tree view instead of an ordered list. + +USE_INLINE_TREES = NO + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be +# used to set the initial width (in pixels) of the frame in which the tree +# is shown. + +TREEVIEW_WIDTH = 250 + +# Use this tag to change the font size of Latex formulas included +# as images in the HTML documentation. The default is 10. Note that +# when you change the font size after a successful doxygen run you need +# to manually remove any form_*.png images from the HTML output directory +# to force them to be regenerated. + +FORMULA_FONTSIZE = 10 + +# When the SEARCHENGINE tag is enable doxygen will generate a search box +# for the HTML output. The underlying search engine uses javascript +# and DHTML and should work on any modern browser. Note that when using +# HTML help (GENERATE_HTMLHELP) or Qt help (GENERATE_QHP) +# there is already a search function so this one should typically +# be disabled. + +SEARCHENGINE = NO + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# generate Latex output. + +GENERATE_LATEX = NO + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `latex' will be used as the default path. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. If left blank `latex' will be used as the default command name. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to +# generate index for LaTeX. If left blank `makeindex' will be used as the +# default command name. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact +# LaTeX documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, a4wide, letter, legal and +# executive. If left blank a4wide will be used. + +PAPER_TYPE = a4wide + +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# packages that should be included in the LaTeX output. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for +# the generated latex document. The header should contain everything until +# the first chapter. If it is left blank doxygen will generate a +# standard header. Notice: only use this tag if you know what you are doing! + +LATEX_HEADER = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). The pdf file will +# contain links (just like the HTML output) instead of page references +# This makes the output suitable for online browsing using a pdf viewer. + +PDF_HYPERLINKS = YES + +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a +# higher quality PDF documentation. + +USE_PDFLATEX = YES + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. +# command to the generated LaTeX files. This will instruct LaTeX to keep +# running if errors occur, instead of asking the user for help. +# This option is also used when generating formulas in HTML. + +LATEX_BATCHMODE = NO + +# If LATEX_HIDE_INDICES is set to YES then doxygen will not +# include the index chapters (such as File Index, Compound Index, etc.) +# in the output. + +LATEX_HIDE_INDICES = NO + +# If LATEX_SOURCE_CODE is set to YES then doxygen will include +# source code with syntax highlighting in the LaTeX output. +# Note that which sources are shown also depends on other settings +# such as SOURCE_BROWSER. + +LATEX_SOURCE_CODE = NO + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output +# The RTF output is optimized for Word 97 and may not look very pretty with +# other RTF readers or editors. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `rtf' will be used as the default path. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES Doxygen generates more compact +# RTF documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated +# will contain hyperlink fields. The RTF file will +# contain links (just like the HTML output) instead of page references. +# This makes the output suitable for online browsing using WORD or other +# programs which support those fields. +# Note: wordpad (write) and others do not support links. + +RTF_HYPERLINKS = NO + +# Load stylesheet definitions from file. Syntax is similar to doxygen's +# config file, i.e. a series of assignments. You only have to provide +# replacements, missing definitions are set to their default value. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an rtf document. +# Syntax is similar to doxygen's config file. + +RTF_EXTENSIONS_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# generate man pages + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `man' will be used as the default path. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to +# the generated man pages (default is the subroutine's section .3) + +MAN_EXTENSION = .3 + +# If the MAN_LINKS tag is set to YES and Doxygen generates man output, +# then it will generate one additional man file for each entity +# documented in the real man page(s). These additional files +# only source the real man page, but without them the man command +# would be unable to find the correct page. The default is NO. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES Doxygen will +# generate an XML file that captures the structure of +# the code including all documentation. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `xml' will be used as the default path. + +XML_OUTPUT = xml + +# The XML_SCHEMA tag can be used to specify an XML schema, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_SCHEMA = + +# The XML_DTD tag can be used to specify an XML DTD, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_DTD = + +# If the XML_PROGRAMLISTING tag is set to YES Doxygen will +# dump the program listings (including syntax highlighting +# and cross-referencing information) to the XML output. Note that +# enabling this will significantly increase the size of the XML output. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental +# and incomplete at the moment. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES Doxygen will +# generate a Perl module file that captures the structure of +# the code including all documentation. Note that this +# feature is still experimental and incomplete at the +# moment. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES Doxygen will generate +# the necessary Makefile rules, Perl scripts and LaTeX code to be able +# to generate PDF and DVI output from the Perl module output. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be +# nicely formatted so it can be parsed by a human reader. This is useful +# if you want to understand what is going on. On the other hand, if this +# tag is set to NO the size of the Perl module output will be much smaller +# and Perl will parse it just the same. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file +# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. +# This is useful so different doxyrules.make files included by the same +# Makefile don't overwrite each other's variables. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include +# files. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled +# way by setting EXPAND_ONLY_PREDEF to YES. + +MACRO_EXPANSION = YES + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES +# then the macro expansion is limited to the macros specified with the +# PREDEFINED and EXPAND_AS_DEFINED tags. + +EXPAND_ONLY_PREDEF = YES + +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# in the INCLUDE_PATH (see below) will be search if a #include is found. + +SEARCH_INCLUDES = NO + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by +# the preprocessor. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will +# be used. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that +# are defined before the preprocessor is started (similar to the -D option of +# gcc). The argument of the tag is a list of macros of the form: name +# or name=definition (no spaces). If the definition and the = are +# omitted =1 is assumed. To prevent a macro definition from being +# undefined via #undef or recursively expanded use the := operator +# instead of the = operator. + +PREDEFINED = + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then +# this tag can be used to specify a list of macro names that should be expanded. +# The macro definition that is found in the sources will be used. +# Use the PREDEFINED tag if you want to use a different macro definition. + +EXPAND_AS_DEFINED = DECLSPEC \ + SDLCALL + +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then +# doxygen's preprocessor will remove all function-like macros that are alone +# on a line, have an all uppercase name, and do not end with a semicolon. Such +# function macros are typically used for boiler-plate code, and will confuse +# the parser if not removed. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES option can be used to specify one or more tagfiles. +# Optionally an initial location of the external documentation +# can be added for each tagfile. The format of a tag file without +# this location is as follows: +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where "loc1" and "loc2" can be relative or absolute paths or +# URLs. If a location is present for each tag, the installdox tool +# does not have to be run to correct the links. +# Note that each tag file must have a unique name +# (where the name does NOT include the path) +# If a tag file is not located in the directory in which doxygen +# is run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create +# a tag file that is based on the input files it reads. + +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes +# will be listed. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will +# be listed. + +EXTERNAL_GROUPS = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of `which perl'). + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base +# or super classes. Setting the tag to NO turns the diagrams off. Note that +# this option is superseded by the HAVE_DOT option below. This is only a +# fallback. It is recommended to install and use dot, since it yields more +# powerful graphs. + +CLASS_DIAGRAMS = NO + +# You can define message sequence charts within doxygen comments using the \msc +# command. Doxygen will then run the mscgen tool (see +# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the +# documentation. The MSCGEN_PATH tag allows you to specify the directory where +# the mscgen tool resides. If left empty the tool is assumed to be found in the +# default search path. + +MSCGEN_PATH = + +# If set to YES, the inheritance and collaboration graphs will hide +# inheritance and usage relations if the target is undocumented +# or is not a class. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz, a graph visualization +# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# have no effect if this option is set to NO (the default) + +HAVE_DOT = NO + +# By default doxygen will write a font called FreeSans.ttf to the output +# directory and reference it in all dot files that doxygen generates. This +# font does not include all possible unicode characters however, so when you need +# these (or just want a differently looking font) you can specify the font name +# using DOT_FONTNAME. You need need to make sure dot is able to find the font, +# which can be done by putting it in a standard location or by setting the +# DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory +# containing the font. + +DOT_FONTNAME = FreeSans + +# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. +# The default size is 10pt. + +DOT_FONTSIZE = 10 + +# By default doxygen will tell dot to use the output directory to look for the +# FreeSans.ttf font (which doxygen will put there itself). If you specify a +# different font using DOT_FONTNAME you can set the path where dot +# can find it using this tag. + +DOT_FONTPATH = + +# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect inheritance relations. Setting this tag to YES will force the +# the CLASS_DIAGRAMS tag to NO. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect implementation dependencies (inheritance, containment, and +# class references variables) of the class with other documented classes. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for groups, showing the direct groups dependencies + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. + +UML_LOOK = NO + +# If set to YES, the inheritance and collaboration graphs will show the +# relations between templates and their instances. + +TEMPLATE_RELATIONS = NO + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# tags are set to YES then doxygen will generate a graph for each documented +# file showing the direct and indirect include dependencies of the file with +# other documented files. + +INCLUDE_GRAPH = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or +# indirectly include this file. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH and HAVE_DOT options are set to YES then +# doxygen will generate a call dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable call graphs +# for selected functions only using the \callgraph command. + +CALL_GRAPH = NO + +# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then +# doxygen will generate a caller dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable caller +# graphs for selected functions only using the \callergraph command. + +CALLER_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# will graphical hierarchy of all classes instead of a textual one. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES +# then doxygen will show the dependencies a directory has on other directories +# in a graphical way. The dependency relations are determined by the #include +# relations between the files in the directories. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. Possible values are png, jpg, or gif +# If left blank png will be used. + +DOT_IMAGE_FORMAT = png + +# The tag DOT_PATH can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. + +DOT_PATH = /Applications/Graphviz.app/Contents/MacOS + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the +# \dotfile command). + +DOTFILE_DIRS = + +# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of +# nodes that will be shown in the graph. If the number of nodes in a graph +# becomes larger than this value, doxygen will truncate the graph, which is +# visualized by representing a node as a red box. Note that doxygen if the +# number of direct children of the root node in a graph is already larger than +# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note +# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. + +DOT_GRAPH_MAX_NODES = 67 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the +# graphs generated by dot. A depth value of 3 means that only nodes reachable +# from the root by following a path via at most 3 edges will be shown. Nodes +# that lay further from the root node will be omitted. Note that setting this +# option to 1 or 2 may greatly reduce the computation time needed for large +# code bases. Also note that the size of a graph can be further restricted by +# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. + +MAX_DOT_GRAPH_DEPTH = 2 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, because dot on Windows does not +# seem to support this out of the box. Warning: Depending on the platform used, +# enabling this option may lead to badly anti-aliased labels on the edges of +# a graph (i.e. they become hard to read). + +DOT_TRANSPARENT = NO + +# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) +# support this, this feature is disabled by default. + +DOT_MULTI_TARGETS = NO + +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and +# arrows in the dot generated graphs. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermediate dot files that are used to generate +# the various graphs. + +DOT_CLEANUP = YES diff --git a/Xcode/mkxcode.csh b/Xcode/mkxcode.csh new file mode 100755 index 000000000..caf6481cb --- /dev/null +++ b/Xcode/mkxcode.csh @@ -0,0 +1,20 @@ +#!/bin/csh + +### +## This script creates "Xcode.tar.gz" in the parent directory +### + +# remove build products +rm -rf SDL/build +rm -rf SDLTest/build + +# remove Finder info files +find . -name ".DS_Store" -exec rm "{}" ";" + +# remove user project prefs +find . -name "*.pbxuser*" -exec rm "{}" ";" +find . -name "*.mode*" -exec rm "{}" ";" +find . -name "*.perspective*" -exec rm "{}" ";" + +# create the archive +(cd .. && gnutar -zcvf Xcode.tar.gz Xcode) diff --git a/Xcode/package b/Xcode/package new file mode 100755 index 000000000..6e6b5707c --- /dev/null +++ b/Xcode/package @@ -0,0 +1,272 @@ +#! /bin/csh -ef + +set prog = `/usr/bin/basename $0` +set usage = "Usage: $prog [-f] root-dir info-file [tiff-file] [-d dest-dir] [-r resource-dir] [-traditional | -gnutar]" +set noglob + +if (-x /usr/bin/mkbom) then + set mkbom=/usr/bin/mkbom + set lsbom=/usr/bin/lsbom +else + set mkbom=/usr/etc/mkbom + set lsbom=/usr/etc/lsbom +endif + +if (-x /usr/bin/awk) then + set awk=/usr/bin/awk +else + set awk=/bin/awk +endif + +set gnutar=/usr/bin/gnutar +set tar=/usr/bin/tar +set pax=/bin/pax + +# gather parameters +if ($#argv == 0) then + echo $usage + exit(1) +endif + +while ( $#argv > 0 ) + switch ( $argv[1] ) + case -d: + if ( $?destDir ) then + echo ${prog}: dest-dir parameter already set to ${destDir}. + echo $usage + exit(1) + else if ( $#argv < 2 ) then + echo ${prog}: -d option requires destination directory. + echo $usage + exit(1) + else + set destDir = $argv[2] + shift; shift + breaksw + endif + case -f: + if ( $?rootDir ) then + echo ${prog}: root-dir parameter already set to ${rootDir}. + echo $usage + exit(1) + else if ( $#argv < 2 ) then + echo ${prog}: -f option requires package root directory. + echo $usage + exit(1) + else + set rootDir = $argv[2] + set fflag + shift; shift + breaksw + endif + case -r: + if ( $?resDir ) then + echo ${prog}: resource-dir parameter already set to ${resDir}. + echo $usage + exit(1) + else if ( $#argv < 2 ) then + echo ${prog}: -r option requires package resource directory. + echo $usage + exit(1) + else + set resDir = $argv[2] + shift; shift + breaksw + endif + case -traditional: + set usetar + unset usegnutar + unset usepax + breaksw + case -gnutar: + set usegnutar + unset usepax + unset usetar + case -B: + # We got long file names, better use bigtar instead + #set archiver = /NextAdmin/Installer.app/Resources/installer_bigtar + echo 2>&1 ${prog}: -B flag is no longer relevant. + shift + breaksw + case -*: + echo ${prog}: Unknown option: $argv[1] + echo $usage + exit(1) + case *.info: + if ( $?info ) then + echo ${prog}: info-file parameter already set to ${info}. + echo $usage + exit(1) + else + set info = "$argv[1]" + shift + breaksw + endif + case *.tiff: + if ( $?tiff ) then + echo ${prog}: tiff-file parameter already set to ${tiff}. + echo $usage + exit(1) + else + set tiff = "$argv[1]" + shift + breaksw + endif + default: + if ( $?rootDir ) then + echo ${prog}: unrecognized parameter: $argv[1] + echo $usage + exit(1) + else + set rootDir = "$argv[1]" + shift + breaksw + endif + endsw +end + +# check for mandatory parameters +if ( ! $?rootDir ) then + echo ${prog}: missing root-dir parameter. + echo $usage + exit(1) +else if ( ! $?info) then + echo ${prog}: missing info-file parameter. + echo $usage + exit(1) +endif + +# destDir gets default value if unset on command line +if ( $?destDir ) then + /bin/mkdir -p $destDir +else + set destDir = . +endif + +# derive the root name for the package from the root name of the info file +set root = `/usr/bin/basename $info .info` + +# create package directory +set pkg = ${destDir}/${root}.pkg +echo Generating Installer package $pkg ... +if ( -e $pkg ) /bin/rm -rf $pkg +/bin/mkdir -p -m 755 $pkg + +# (gnu)tar/pax and compress root directory to package archive +echo -n " creating package archive ... " +if ( $?fflag ) then + set pkgTop = ${rootDir:t} + set parent = ${rootDir:h} + if ( "$parent" == "$pkgTop" ) set parent = "." +else + set parent = $rootDir + set pkgTop = . +endif +if ( $?usetar ) then + set pkgArchive = $pkg/$root.tar.Z + (cd $parent; $tar -w $pkgTop) | /usr/bin/compress -f -c > $pkgArchive +else if ( $?usegnutar ) then + set pkgArchive = $pkg/$root.tar.gz + (cd $parent; $gnutar zcf $pkgArchive $pkgTop) +else + set pkgArchive = $pkg/$root.pax.gz + (cd $parent; $pax -w -z -x cpio $pkgTop) > $pkgArchive +endif +/bin/chmod 444 $pkgArchive +echo done. + +# copy info file to package +set pkgInfo = $pkg/$root.info +echo -n " copying ${info:t} ... " +/bin/cp $info $pkgInfo +/bin/chmod 444 $pkgInfo +echo done. + +# copy tiff file to package +if ( $?tiff ) then + set pkgTiff = $pkg/$root.tiff + echo -n " copying ${tiff:t} ... " + /bin/cp $tiff $pkgTiff + /bin/chmod 444 $pkgTiff + echo done. +endif + +# copy resources to package +if ( $?resDir ) then + echo -n " copying ${resDir:t} ... " + + # don't want to see push/pop output + pushd $resDir > /dev/null + # get lists of resources. We'll want to change + # permissions on just these things later. + set directoriesInResDir = `find . -type d` + set filesInResDir = `find . -type f` + popd > /dev/null + + # copy the resource directory contents into the package directory + foreach resFile (`ls $resDir`) + cp -r $resDir/$resFile $pkg + end + + pushd $pkg > /dev/null + # Change all directories to +r+x, except the package + # directory itself + foreach resFileItem ($directoriesInResDir) + if ( $resFileItem != "." ) then + chmod 555 $resFileItem + endif + end + # change all flat files to read only + foreach resFileItem ($filesInResDir) + chmod 444 $resFileItem + end + popd > /dev/null + + echo done. +endif + +# generate bom file +set pkgBom = $pkg/$root.bom +echo -n " generating bom file ... " +/bin/rm -f $pkgBom +if ( $?fflag ) then + $mkbom $parent $pkgBom >& /dev/null +else + $mkbom $rootDir $pkgBom >& /dev/null +endif +/bin/chmod 444 $pkgArchive +echo done. + +# generate sizes file +set pkgSizes = $pkg/$root.sizes +echo -n " generating sizes file ... " + +# compute number of files in package +set numFiles = `$lsbom -s $pkgBom | /usr/bin/wc -l` + +# compute package size when compressed +@ compressedSize = `/usr/bin/du -k -s $pkg | $awk '{print $1}'` +@ compressedSize += 3 # add 1KB each for sizes, location, status files + +@ infoSize = `/bin/ls -s $pkgInfo | $awk '{print $1}'` +@ bomSize = `/bin/ls -s $pkgBom | $awk '{print $1}'` +if ( $?tiff ) then + @ tiffSize = `/bin/ls -s $pkgTiff | $awk '{print $1}'` +else + @ tiffSize = 0 +endif + +@ installedSize = `/usr/bin/du -k -s $rootDir | $awk '{print $1}'` +@ installedSize += $infoSize + $bomSize + $tiffSize + 3 + +# echo size parameters to sizes file +echo NumFiles $numFiles > $pkgSizes +echo InstalledSize $installedSize >> $pkgSizes +echo CompressedSize $compressedSize >> $pkgSizes +echo done. +echo " ... finished generating $pkg." + +exit(0) + +# end package + diff --git a/Xcode/stationary.csh b/Xcode/stationary.csh new file mode 100755 index 000000000..ba5a38551 --- /dev/null +++ b/Xcode/stationary.csh @@ -0,0 +1,25 @@ +#!/bin/csh + +### +## This script installs the stationary +### + +sudo -v -p "Please enter the administrator password: " + +# project templates +sudo /Developer/Tools/CpMac -r "Project Stationary/SDL Application" "/Developer/ProjectBuilder Extras/Project Templates/Application/" + +sudo /Developer/Tools/CpMac -r "Project Stationary/SDL Cocoa Application" "/Developer/ProjectBuilder Extras/Project Templates/Application/" + +sudo /Developer/Tools/CpMac -r "Project Stationary/SDL Custom Cocoa Application" "/Developer/ProjectBuilder Extras/Project Templates/Application/" + +sudo /Developer/Tools/CpMac -r "Project Stationary/SDL OpenGL Application" "/Developer/ProjectBuilder Extras/Project Templates/Application/" + + +# target templates +sudo mkdir -p "/Developer/ProjectBuilder Extras/Target Templates/SDL" + +sudo /Developer/Tools/CpMac -r "Project Stationary/Application.trgttmpl" "/Developer/ProjectBuilder Extras/Target Templates/SDL" + + + diff --git a/Xcode/uninstall.csh b/Xcode/uninstall.csh new file mode 100755 index 000000000..aab8d790f --- /dev/null +++ b/Xcode/uninstall.csh @@ -0,0 +1,32 @@ +#!/bin/csh + +### +## This script removes the Developer SDL package +### + +setenv HOME_DIR ~ + +sudo -v -p "Enter administrator password to remove SDL: " + +sudo rm -rf "$HOME_DIR/Library/Frameworks/SDL.framework" + +# will only remove the Frameworks dir if empty (since we put it there) +sudo rmdir "$HOME_DIR/Library/Frameworks" + +sudo rm -r "$HOME_DIR/Readme SDL Developer.txt" +sudo rm -r "/Developer/Documentation/SDL" +sudo rm -r "/Developer/Documentation/ManPages/man3/SDL"* +sudo rm -r "/Developer/ProjectBuilder Extras/Project Templates/Application/SDL Application" +sudo rm -r "/Developer/ProjectBuilder Extras/Project Templates/Application/SDL Cocoa Application" +sudo rm -r "/Developer/ProjectBuilder Extras/Project Templates/Application/SDL Custom Cocoa Application" +sudo rm -r "/Developer/ProjectBuilder Extras/Project Templates/Application/SDL OpenGL Application" +sudo rm -r "/Developer/ProjectBuilder Extras/Target Templates/SDL" +sudo rm -r "/Library/Receipts/SDL-devel.pkg" + +# rebuild apropos database +sudo /usr/libexec/makewhatis + +unsetenv HOME_DIR + + + diff --git a/acinclude.m4 b/acinclude.m4 deleted file mode 100644 index c408be4be..000000000 --- a/acinclude.m4 +++ /dev/null @@ -1,6724 +0,0 @@ -############################################################################## -dnl Configure Paths for Alsa -dnl Some modifications by Richard Boulton -dnl Christopher Lansdown -dnl Jaroslav Kysela -dnl Last modification: alsa.m4,v 1.23 2004/01/16 18:14:22 tiwai Exp -dnl AM_PATH_ALSA([MINIMUM-VERSION [, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) -dnl Test for libasound, and define ALSA_CFLAGS and ALSA_LIBS as appropriate. -dnl enables arguments --with-alsa-prefix= -dnl --with-alsa-enc-prefix= -dnl --disable-alsatest -dnl -dnl For backwards compatibility, if ACTION_IF_NOT_FOUND is not specified, -dnl and the alsa libraries are not found, a fatal AC_MSG_ERROR() will result. -dnl -AC_DEFUN([AM_PATH_ALSA], -[dnl Save the original CFLAGS, LDFLAGS, and LIBS -alsa_save_CFLAGS="$CFLAGS" -alsa_save_LDFLAGS="$LDFLAGS" -alsa_save_LIBS="$LIBS" -alsa_found=yes - -dnl -dnl Get the cflags and libraries for alsa -dnl -AC_ARG_WITH(alsa-prefix, -[ --with-alsa-prefix=PFX Prefix where Alsa library is installed(optional)], -[alsa_prefix="$withval"], [alsa_prefix=""]) - -AC_ARG_WITH(alsa-inc-prefix, -[ --with-alsa-inc-prefix=PFX Prefix where include libraries are (optional)], -[alsa_inc_prefix="$withval"], [alsa_inc_prefix=""]) - -dnl FIXME: this is not yet implemented -AC_ARG_ENABLE(alsatest, -[ --disable-alsatest Do not try to compile and run a test Alsa program], -[enable_alsatest="$enableval"], -[enable_alsatest=yes]) - -dnl Add any special include directories -AC_MSG_CHECKING(for ALSA CFLAGS) -if test "$alsa_inc_prefix" != "" ; then - ALSA_CFLAGS="$ALSA_CFLAGS -I$alsa_inc_prefix" - CFLAGS="$CFLAGS -I$alsa_inc_prefix" -fi -AC_MSG_RESULT($ALSA_CFLAGS) - -dnl add any special lib dirs -AC_MSG_CHECKING(for ALSA LDFLAGS) -if test "$alsa_prefix" != "" ; then - ALSA_LIBS="$ALSA_LIBS -L$alsa_prefix" - LDFLAGS="$LDFLAGS $ALSA_LIBS" -fi - -dnl add the alsa library -ALSA_LIBS="$ALSA_LIBS -lasound -lm -ldl -lpthread" -LIBS=`echo $LIBS | sed 's/-lm//'` -LIBS=`echo $LIBS | sed 's/-ldl//'` -LIBS=`echo $LIBS | sed 's/-lpthread//'` -LIBS=`echo $LIBS | sed 's/ //'` -LIBS="$ALSA_LIBS $LIBS" -AC_MSG_RESULT($ALSA_LIBS) - -dnl Check for a working version of libasound that is of the right version. -min_alsa_version=ifelse([$1], ,0.1.1,$1) -AC_MSG_CHECKING(for libasound headers version >= $min_alsa_version) -no_alsa="" - alsa_min_major_version=`echo $min_alsa_version | \ - sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` - alsa_min_minor_version=`echo $min_alsa_version | \ - sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` - alsa_min_micro_version=`echo $min_alsa_version | \ - sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` - -AC_LANG_SAVE -AC_LANG_C -AC_TRY_COMPILE([ -#include -], [ -/* ensure backward compatibility */ -#if !defined(SND_LIB_MAJOR) && defined(SOUNDLIB_VERSION_MAJOR) -#define SND_LIB_MAJOR SOUNDLIB_VERSION_MAJOR -#endif -#if !defined(SND_LIB_MINOR) && defined(SOUNDLIB_VERSION_MINOR) -#define SND_LIB_MINOR SOUNDLIB_VERSION_MINOR -#endif -#if !defined(SND_LIB_SUBMINOR) && defined(SOUNDLIB_VERSION_SUBMINOR) -#define SND_LIB_SUBMINOR SOUNDLIB_VERSION_SUBMINOR -#endif - -# if(SND_LIB_MAJOR > $alsa_min_major_version) - exit(0); -# else -# if(SND_LIB_MAJOR < $alsa_min_major_version) -# error not present -# endif - -# if(SND_LIB_MINOR > $alsa_min_minor_version) - exit(0); -# else -# if(SND_LIB_MINOR < $alsa_min_minor_version) -# error not present -# endif - -# if(SND_LIB_SUBMINOR < $alsa_min_micro_version) -# error not present -# endif -# endif -# endif -exit(0); -], - [AC_MSG_RESULT(found.)], - [AC_MSG_RESULT(not present.) - ifelse([$3], , [AC_MSG_ERROR(Sufficiently new version of libasound not found.)]) - alsa_found=no] -) -AC_LANG_RESTORE - -dnl Now that we know that we have the right version, let's see if we have the library and not just the headers. -if test "x$enable_alsatest" = "xyes"; then -AC_CHECK_LIB([asound], [snd_ctl_open],, - [ifelse([$3], , [AC_MSG_ERROR(No linkable libasound was found.)]) - alsa_found=no] -) -fi - -if test "x$alsa_found" = "xyes" ; then - ifelse([$2], , :, [$2]) - LIBS=`echo $LIBS | sed 's/-lasound//g'` - LIBS=`echo $LIBS | sed 's/ //'` - LIBS="-lasound $LIBS" -fi -if test "x$alsa_found" = "xno" ; then - ifelse([$3], , :, [$3]) - CFLAGS="$alsa_save_CFLAGS" - LDFLAGS="$alsa_save_LDFLAGS" - LIBS="$alsa_save_LIBS" - ALSA_CFLAGS="" - ALSA_LIBS="" -fi - -dnl That should be it. Now just export out symbols: -AC_SUBST(ALSA_CFLAGS) -AC_SUBST(ALSA_LIBS) -]) - -############################################################################## -# -# --- esd.m4 --- -# -# Configure paths for ESD -# Manish Singh 98-9-30 -# stolen back from Frank Belew -# stolen from Manish Singh -# Shamelessly stolen from Owen Taylor - -dnl AM_PATH_ESD([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) -dnl Test for ESD, and define ESD_CFLAGS and ESD_LIBS -dnl -AC_DEFUN([AM_PATH_ESD], -[dnl -dnl Get the cflags and libraries from the esd-config script -dnl -AC_ARG_WITH(esd-prefix,[ --with-esd-prefix=PFX Prefix where ESD is installed (optional)], - esd_prefix="$withval", esd_prefix="") -AC_ARG_WITH(esd-exec-prefix,[ --with-esd-exec-prefix=PFX Exec prefix where ESD is installed (optional)], - esd_exec_prefix="$withval", esd_exec_prefix="") -AC_ARG_ENABLE(esdtest, [ --disable-esdtest Do not try to compile and run a test ESD program], - , enable_esdtest=yes) - - if test x$esd_exec_prefix != x ; then - esd_args="$esd_args --exec-prefix=$esd_exec_prefix" - if test x${ESD_CONFIG+set} != xset ; then - ESD_CONFIG=$esd_exec_prefix/bin/esd-config - fi - fi - if test x$esd_prefix != x ; then - esd_args="$esd_args --prefix=$esd_prefix" - if test x${ESD_CONFIG+set} != xset ; then - ESD_CONFIG=$esd_prefix/bin/esd-config - fi - fi - - AC_PATH_PROG(ESD_CONFIG, esd-config, no) - min_esd_version=ifelse([$1], ,0.2.7,$1) - AC_MSG_CHECKING(for ESD - version >= $min_esd_version) - no_esd="" - if test "$ESD_CONFIG" = "no" ; then - no_esd=yes - else - ESD_CFLAGS=`$ESD_CONFIG $esdconf_args --cflags` - ESD_LIBS=`$ESD_CONFIG $esdconf_args --libs` - - esd_major_version=`$ESD_CONFIG $esd_args --version | \ - sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` - esd_minor_version=`$ESD_CONFIG $esd_args --version | \ - sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` - esd_micro_version=`$ESD_CONFIG $esd_config_args --version | \ - sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` - if test "x$enable_esdtest" = "xyes" ; then - ac_save_CFLAGS="$CFLAGS" - ac_save_LIBS="$LIBS" - CFLAGS="$CFLAGS $ESD_CFLAGS" - LIBS="$LIBS $ESD_LIBS" -dnl -dnl Now check if the installed ESD is sufficiently new. (Also sanity -dnl checks the results of esd-config to some extent -dnl - rm -f conf.esdtest - AC_TRY_RUN([ -#include -#include -#include -#include - -char* -my_strdup (char *str) -{ - char *new_str; - - if (str) - { - new_str = malloc ((strlen (str) + 1) * sizeof(char)); - strcpy (new_str, str); - } - else - new_str = NULL; - - return new_str; -} - -int main () -{ - int major, minor, micro; - char *tmp_version; - - system ("touch conf.esdtest"); - - /* HP/UX 9 (%@#!) writes to sscanf strings */ - tmp_version = my_strdup("$min_esd_version"); - if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) { - printf("%s, bad version string\n", "$min_esd_version"); - exit(1); - } - - if (($esd_major_version > major) || - (($esd_major_version == major) && ($esd_minor_version > minor)) || - (($esd_major_version == major) && ($esd_minor_version == minor) && ($esd_micro_version >= micro))) - { - return 0; - } - else - { - printf("\n*** 'esd-config --version' returned %d.%d.%d, but the minimum version\n", $esd_major_version, $esd_minor_version, $esd_micro_version); - printf("*** of ESD required is %d.%d.%d. If esd-config is correct, then it is\n", major, minor, micro); - printf("*** best to upgrade to the required version.\n"); - printf("*** If esd-config was wrong, set the environment variable ESD_CONFIG\n"); - printf("*** to point to the correct copy of esd-config, and remove the file\n"); - printf("*** config.cache before re-running configure\n"); - return 1; - } -} - -],, no_esd=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"]) - CFLAGS="$ac_save_CFLAGS" - LIBS="$ac_save_LIBS" - fi - fi - if test "x$no_esd" = x ; then - AC_MSG_RESULT(yes) - ifelse([$2], , :, [$2]) - else - AC_MSG_RESULT(no) - if test "$ESD_CONFIG" = "no" ; then - echo "*** The esd-config script installed by ESD could not be found" - echo "*** If ESD was installed in PREFIX, make sure PREFIX/bin is in" - echo "*** your path, or set the ESD_CONFIG environment variable to the" - echo "*** full path to esd-config." - else - if test -f conf.esdtest ; then - : - else - echo "*** Could not run ESD test program, checking why..." - CFLAGS="$CFLAGS $ESD_CFLAGS" - LIBS="$LIBS $ESD_LIBS" - AC_TRY_LINK([ -#include -#include -], [ return 0; ], - [ echo "*** The test program compiled, but did not run. This usually means" - echo "*** that the run-time linker is not finding ESD or finding the wrong" - echo "*** version of ESD. If it is not finding ESD, you'll need to set your" - echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" - echo "*** to the installed location Also, make sure you have run ldconfig if that" - echo "*** is required on your system" - echo "***" - echo "*** If you have an old version installed, it is best to remove it, although" - echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"], - [ echo "*** The test program failed to compile or link. See the file config.log for the" - echo "*** exact error that occured. This usually means ESD was incorrectly installed" - echo "*** or that you have moved ESD since it was installed. In the latter case, you" - echo "*** may want to edit the esd-config script: $ESD_CONFIG" ]) - CFLAGS="$ac_save_CFLAGS" - LIBS="$ac_save_LIBS" - fi - fi - ESD_CFLAGS="" - ESD_LIBS="" - ifelse([$3], , :, [$3]) - fi - AC_SUBST(ESD_CFLAGS) - AC_SUBST(ESD_LIBS) - rm -f conf.esdtest -]) - -############################################################################## -# Based on libtool-1.5.22 -# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- -## Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005 -## Free Software Foundation, Inc. -## Originally by Gordon Matzigkeit , 1996 -## -## This file is free software; the Free Software Foundation gives -## unlimited permission to copy and/or distribute it, with or without -## modifications, as long as this notice is preserved. - -# serial 48 AC_PROG_LIBTOOL - - -# AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) -# ----------------------------------------------------------- -# If this macro is not defined by Autoconf, define it here. -m4_ifdef([AC_PROVIDE_IFELSE], - [], - [m4_define([AC_PROVIDE_IFELSE], - [m4_ifdef([AC_PROVIDE_$1], - [$2], [$3])])]) - - -# AC_PROG_LIBTOOL -# --------------- -AC_DEFUN([AC_PROG_LIBTOOL], -[AC_REQUIRE([_AC_PROG_LIBTOOL])dnl -dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX -dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX. - AC_PROVIDE_IFELSE([AC_PROG_CXX], - [AC_LIBTOOL_CXX], - [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX - ])]) -dnl And a similar setup for Fortran 77 support - AC_PROVIDE_IFELSE([AC_PROG_F77], - [AC_LIBTOOL_F77], - [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77 -])]) - -dnl Quote A][M_PROG_GCJ so that aclocal doesn't bring it in needlessly. -dnl If either AC_PROG_GCJ or A][M_PROG_GCJ have already been expanded, run -dnl AC_LIBTOOL_GCJ immediately, otherwise, hook it in at the end of both. - AC_PROVIDE_IFELSE([AC_PROG_GCJ], - [AC_LIBTOOL_GCJ], - [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], - [AC_LIBTOOL_GCJ], - [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ], - [AC_LIBTOOL_GCJ], - [ifdef([AC_PROG_GCJ], - [define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[AC_LIBTOOL_GCJ])]) - ifdef([A][M_PROG_GCJ], - [define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[AC_LIBTOOL_GCJ])]) - ifdef([LT_AC_PROG_GCJ], - [define([LT_AC_PROG_GCJ], - defn([LT_AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])])]) -])])# AC_PROG_LIBTOOL - - -# _AC_PROG_LIBTOOL -# ---------------- -AC_DEFUN([_AC_PROG_LIBTOOL], -[AC_REQUIRE([AC_LIBTOOL_SETUP])dnl -AC_BEFORE([$0],[AC_LIBTOOL_CXX])dnl -AC_BEFORE([$0],[AC_LIBTOOL_F77])dnl -AC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl - -# This can be used to rebuild libtool when needed -LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" - -# Always use our own libtool. -LIBTOOL='$(SHELL) $(top_builddir)/libtool' -AC_SUBST(LIBTOOL)dnl - -# Prevent multiple expansion -define([AC_PROG_LIBTOOL], []) -])# _AC_PROG_LIBTOOL - - -# AC_LIBTOOL_SETUP -# ---------------- -AC_DEFUN([AC_LIBTOOL_SETUP], -[AC_PREREQ(2.50)dnl -AC_REQUIRE([AC_ENABLE_SHARED])dnl -AC_REQUIRE([AC_ENABLE_STATIC])dnl -AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl -AC_REQUIRE([AC_CANONICAL_HOST])dnl -AC_REQUIRE([AC_CANONICAL_BUILD])dnl -AC_REQUIRE([AC_PROG_CC])dnl -AC_REQUIRE([AC_PROG_LD])dnl -AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl -AC_REQUIRE([AC_PROG_NM])dnl - -AC_REQUIRE([AC_PROG_LN_S])dnl -AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl -# Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! -AC_REQUIRE([AC_OBJEXT])dnl -AC_REQUIRE([AC_EXEEXT])dnl -dnl - -AC_LIBTOOL_SYS_MAX_CMD_LEN -AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE -AC_LIBTOOL_OBJDIR - -AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl -_LT_AC_PROG_ECHO_BACKSLASH - -case $host_os in -aix3*) - # AIX sometimes has problems with the GCC collect2 program. For some - # reason, if we set the COLLECT_NAMES environment variable, the problems - # vanish in a puff of smoke. - if test "X${COLLECT_NAMES+set}" != Xset; then - COLLECT_NAMES= - export COLLECT_NAMES - fi - ;; -esac - -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -Xsed='sed -e 1s/^X//' -[sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g'] - -# Same as above, but do not quote variable references. -[double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g'] - -# Sed substitution to delay expansion of an escaped shell variable in a -# double_quote_subst'ed string. -delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' - -# Sed substitution to avoid accidental globbing in evaled expressions -no_glob_subst='s/\*/\\\*/g' - -# Constants: -rm="rm -f" - -# Global variables: -default_ofile=libtool -can_build_shared=yes - -# All known linkers require a `.a' archive for static linking (except MSVC, -# which needs '.lib'). -libext=a -ltmain="$ac_aux_dir/ltmain.sh" -ofile="$default_ofile" -with_gnu_ld="$lt_cv_prog_gnu_ld" - -AC_CHECK_TOOL(AR, ar, false) -AC_CHECK_TOOL(RANLIB, ranlib, :) -AC_CHECK_TOOL(STRIP, strip, :) - -old_CC="$CC" -old_CFLAGS="$CFLAGS" - -# Set sane defaults for various variables -test -z "$AR" && AR=ar -test -z "$AR_FLAGS" && AR_FLAGS=cru -test -z "$AS" && AS=as -test -z "$CC" && CC=cc -test -z "$LTCC" && LTCC=$CC -test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS -test -z "$DLLTOOL" && DLLTOOL=dlltool -test -z "$LD" && LD=ld -test -z "$LN_S" && LN_S="ln -s" -test -z "$MAGIC_CMD" && MAGIC_CMD=file -test -z "$NM" && NM=nm -test -z "$SED" && SED=sed -test -z "$OBJDUMP" && OBJDUMP=objdump -test -z "$RANLIB" && RANLIB=: -test -z "$STRIP" && STRIP=: -test -z "$ac_objext" && ac_objext=o - -# Determine commands to create old-style static archives. -old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs' -old_postinstall_cmds='chmod 644 $oldlib' -old_postuninstall_cmds= - -if test -n "$RANLIB"; then - case $host_os in - openbsd*) - old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" - ;; - *) - old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" - ;; - esac - old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" -fi - -_LT_CC_BASENAME([$compiler]) - -# Only perform the check for file, if the check method requires it -case $deplibs_check_method in -file_magic*) - if test "$file_magic_cmd" = '$MAGIC_CMD'; then - AC_PATH_MAGIC - fi - ;; -esac - -AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no) -AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], -enable_win32_dll=yes, enable_win32_dll=no) - -AC_ARG_ENABLE([libtool-lock], - [AC_HELP_STRING([--disable-libtool-lock], - [avoid locking (might break parallel builds)])]) -test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes - -AC_ARG_WITH([pic], - [AC_HELP_STRING([--with-pic], - [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], - [pic_mode="$withval"], - [pic_mode=default]) -test -z "$pic_mode" && pic_mode=default - -# Use C for the default configuration in the libtool script -tagname= -AC_LIBTOOL_LANG_C_CONFIG -_LT_AC_TAGCONFIG -])# AC_LIBTOOL_SETUP - - -# _LT_AC_SYS_COMPILER -# ------------------- -AC_DEFUN([_LT_AC_SYS_COMPILER], -[AC_REQUIRE([AC_PROG_CC])dnl - -# If no C compiler was specified, use CC. -LTCC=${LTCC-"$CC"} - -# If no C compiler flags were specified, use CFLAGS. -LTCFLAGS=${LTCFLAGS-"$CFLAGS"} - -# Allow CC to be a program name with arguments. -compiler=$CC -])# _LT_AC_SYS_COMPILER - - -# _LT_CC_BASENAME(CC) -# ------------------- -# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. -AC_DEFUN([_LT_CC_BASENAME], -[for cc_temp in $1""; do - case $cc_temp in - compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; - distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` -]) - - -# _LT_COMPILER_BOILERPLATE -# ------------------------ -# Check for compiler boilerplate output or warnings with -# the simple compiler test code. -AC_DEFUN([_LT_COMPILER_BOILERPLATE], -[ac_outfile=conftest.$ac_objext -printf "$lt_simple_compile_test_code" >conftest.$ac_ext -eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_compiler_boilerplate=`cat conftest.err` -$rm conftest* -])# _LT_COMPILER_BOILERPLATE - - -# _LT_LINKER_BOILERPLATE -# ---------------------- -# Check for linker boilerplate output or warnings with -# the simple link test code. -AC_DEFUN([_LT_LINKER_BOILERPLATE], -[ac_outfile=conftest.$ac_objext -printf "$lt_simple_link_test_code" >conftest.$ac_ext -eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err -_lt_linker_boilerplate=`cat conftest.err` -$rm conftest* -])# _LT_LINKER_BOILERPLATE - - -# _LT_AC_SYS_LIBPATH_AIX -# ---------------------- -# Links a minimal program and checks the executable -# for the system default hardcoded library path. In most cases, -# this is /usr/lib:/lib, but when the MPI compilers are used -# the location of the communication and MPI libs are included too. -# If we don't find anything, use the default library path according -# to the aix ld manual. -AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX], -[AC_LINK_IFELSE(AC_LANG_PROGRAM,[ -aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } -}'` -# Check for a 64-bit object if we didn't find anything. -if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } -}'`; fi],[]) -if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi -])# _LT_AC_SYS_LIBPATH_AIX - - -# _LT_AC_SHELL_INIT(ARG) -# ---------------------- -AC_DEFUN([_LT_AC_SHELL_INIT], -[ifdef([AC_DIVERSION_NOTICE], - [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)], - [AC_DIVERT_PUSH(NOTICE)]) -$1 -AC_DIVERT_POP -])# _LT_AC_SHELL_INIT - - -# _LT_AC_PROG_ECHO_BACKSLASH -# -------------------------- -# Add some code to the start of the generated configure script which -# will find an echo command which doesn't interpret backslashes. -AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH], -[_LT_AC_SHELL_INIT([ -# Check that we are running under the correct shell. -SHELL=${CONFIG_SHELL-/bin/sh} - -case X$ECHO in -X*--fallback-echo) - # Remove one level of quotation (which was required for Make). - ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','` - ;; -esac - -echo=${ECHO-echo} -if test "X[$]1" = X--no-reexec; then - # Discard the --no-reexec flag, and continue. - shift -elif test "X[$]1" = X--fallback-echo; then - # Avoid inline document here, it may be left over - : -elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then - # Yippee, $echo works! - : -else - # Restart under the correct shell. - exec $SHELL "[$]0" --no-reexec ${1+"[$]@"} -fi - -if test "X[$]1" = X--fallback-echo; then - # used as fallback echo - shift - cat </dev/null 2>&1 && unset CDPATH - -if test -z "$ECHO"; then -if test "X${echo_test_string+set}" != Xset; then -# find a string as large as possible, as long as the shell can cope with it - for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do - # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... - if (echo_test_string=`eval $cmd`) 2>/dev/null && - echo_test_string=`eval $cmd` && - (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null - then - break - fi - done -fi - -if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && - echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - : -else - # The Solaris, AIX, and Digital Unix default echo programs unquote - # backslashes. This makes it impossible to quote backslashes using - # echo "$something" | sed 's/\\/\\\\/g' - # - # So, first we look for a working echo in the user's PATH. - - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - for dir in $PATH /usr/ucb; do - IFS="$lt_save_ifs" - if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && - test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && - echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - echo="$dir/echo" - break - fi - done - IFS="$lt_save_ifs" - - if test "X$echo" = Xecho; then - # We didn't find a better echo, so look for alternatives. - if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && - echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - # This shell has a builtin print -r that does the trick. - echo='print -r' - elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && - test "X$CONFIG_SHELL" != X/bin/ksh; then - # If we have ksh, try running configure again with it. - ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} - export ORIGINAL_CONFIG_SHELL - CONFIG_SHELL=/bin/ksh - export CONFIG_SHELL - exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"} - else - # Try using printf. - echo='printf %s\n' - if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && - echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - # Cool, printf works - : - elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && - test "X$echo_testing_string" = 'X\t' && - echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL - export CONFIG_SHELL - SHELL="$CONFIG_SHELL" - export SHELL - echo="$CONFIG_SHELL [$]0 --fallback-echo" - elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && - test "X$echo_testing_string" = 'X\t' && - echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - echo="$CONFIG_SHELL [$]0 --fallback-echo" - else - # maybe with a smaller string... - prev=: - - for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do - if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null - then - break - fi - prev="$cmd" - done - - if test "$prev" != 'sed 50q "[$]0"'; then - echo_test_string=`eval $prev` - export echo_test_string - exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"} - else - # Oops. We lost completely, so just stick with echo. - echo=echo - fi - fi - fi - fi -fi -fi - -# Copy echo and quote the copy suitably for passing to libtool from -# the Makefile, instead of quoting the original, which is used later. -ECHO=$echo -if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then - ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo" -fi - -AC_SUBST(ECHO) -])])# _LT_AC_PROG_ECHO_BACKSLASH - - -# _LT_AC_LOCK -# ----------- -AC_DEFUN([_LT_AC_LOCK], -[AC_ARG_ENABLE([libtool-lock], - [AC_HELP_STRING([--disable-libtool-lock], - [avoid locking (might break parallel builds)])]) -test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes - -# Some flags need to be propagated to the compiler or linker for good -# libtool support. -case $host in -ia64-*-hpux*) - # Find out which ABI we are using. - echo 'int i;' > conftest.$ac_ext - if AC_TRY_EVAL(ac_compile); then - case `/usr/bin/file conftest.$ac_objext` in - *ELF-32*) - HPUX_IA64_MODE="32" - ;; - *ELF-64*) - HPUX_IA64_MODE="64" - ;; - esac - fi - rm -rf conftest* - ;; -*-*-irix6*) - # Find out which ABI we are using. - echo '[#]line __oline__ "configure"' > conftest.$ac_ext - if AC_TRY_EVAL(ac_compile); then - if test "$lt_cv_prog_gnu_ld" = yes; then - case `/usr/bin/file conftest.$ac_objext` in - *32-bit*) - LD="${LD-ld} -melf32bsmip" - ;; - *N32*) - LD="${LD-ld} -melf32bmipn32" - ;; - *64-bit*) - LD="${LD-ld} -melf64bmip" - ;; - esac - else - case `/usr/bin/file conftest.$ac_objext` in - *32-bit*) - LD="${LD-ld} -32" - ;; - *N32*) - LD="${LD-ld} -n32" - ;; - *64-bit*) - LD="${LD-ld} -64" - ;; - esac - fi - fi - rm -rf conftest* - ;; - -x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*) - # Find out which ABI we are using. - echo 'int i;' > conftest.$ac_ext - if AC_TRY_EVAL(ac_compile); then - case `/usr/bin/file conftest.o` in - *32-bit*) - case $host in - x86_64-*linux*) - LD="${LD-ld} -m elf_i386" - ;; - ppc64-*linux*|powerpc64-*linux*) - LD="${LD-ld} -m elf32ppclinux" - ;; - s390x-*linux*) - LD="${LD-ld} -m elf_s390" - ;; - sparc64-*linux*) - LD="${LD-ld} -m elf32_sparc" - ;; - esac - ;; - *64-bit*) - case $host in - x86_64-*linux*) - LD="${LD-ld} -m elf_x86_64" - ;; - ppc*-*linux*|powerpc*-*linux*) - LD="${LD-ld} -m elf64ppc" - ;; - s390*-*linux*) - LD="${LD-ld} -m elf64_s390" - ;; - sparc*-*linux*) - LD="${LD-ld} -m elf64_sparc" - ;; - esac - ;; - esac - fi - rm -rf conftest* - ;; - -*-*-sco3.2v5*) - # On SCO OpenServer 5, we need -belf to get full-featured binaries. - SAVE_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS -belf" - AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, - [AC_LANG_PUSH(C) - AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) - AC_LANG_POP]) - if test x"$lt_cv_cc_needs_belf" != x"yes"; then - # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf - CFLAGS="$SAVE_CFLAGS" - fi - ;; -sparc*-*solaris*) - # Find out which ABI we are using. - echo 'int i;' > conftest.$ac_ext - if AC_TRY_EVAL(ac_compile); then - case `/usr/bin/file conftest.o` in - *64-bit*) - case $lt_cv_prog_gnu_ld in - yes*) LD="${LD-ld} -m elf64_sparc" ;; - *) LD="${LD-ld} -64" ;; - esac - ;; - esac - fi - rm -rf conftest* - ;; - -AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], -[*-*-cygwin* | *-*-mingw* | *-*-pw32*) - AC_CHECK_TOOL(DLLTOOL, dlltool, false) - AC_CHECK_TOOL(AS, as, false) - AC_CHECK_TOOL(OBJDUMP, objdump, false) - ;; - ]) -esac - -need_locks="$enable_libtool_lock" - -])# _LT_AC_LOCK - - -# AC_LIBTOOL_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, -# [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) -# ---------------------------------------------------------------- -# Check whether the given compiler option works -AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], -[AC_REQUIRE([LT_AC_PROG_SED]) -AC_CACHE_CHECK([$1], [$2], - [$2=no - ifelse([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) - printf "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="$3" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - # The option is referenced via a variable to avoid confusing sed. - lt_compile=`echo "$ac_compile" | $SED \ - -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:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) - (eval "$lt_compile" 2>conftest.err) - ac_status=$? - cat conftest.err >&AS_MESSAGE_LOG_FD - echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD - 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. - $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then - $2=yes - fi - fi - $rm conftest* -]) - -if test x"[$]$2" = xyes; then - ifelse([$5], , :, [$5]) -else - ifelse([$6], , :, [$6]) -fi -])# AC_LIBTOOL_COMPILER_OPTION - - -# AC_LIBTOOL_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, -# [ACTION-SUCCESS], [ACTION-FAILURE]) -# ------------------------------------------------------------ -# Check whether the given compiler option works -AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], -[AC_CACHE_CHECK([$1], [$2], - [$2=no - save_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS $3" - printf "$lt_simple_link_test_code" > conftest.$ac_ext - if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then - # The linker can only warn and ignore the option if not recognized - # So say no if there are warnings - if test -s conftest.err; then - # Append any errors to the config.log. - cat conftest.err 1>&AS_MESSAGE_LOG_FD - $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp - $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 - if diff conftest.exp conftest.er2 >/dev/null; then - $2=yes - fi - else - $2=yes - fi - fi - $rm conftest* - LDFLAGS="$save_LDFLAGS" -]) - -if test x"[$]$2" = xyes; then - ifelse([$4], , :, [$4]) -else - ifelse([$5], , :, [$5]) -fi -])# AC_LIBTOOL_LINKER_OPTION - - -# AC_LIBTOOL_SYS_MAX_CMD_LEN -# -------------------------- -AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], -[# find the maximum length of command line arguments -AC_MSG_CHECKING([the maximum length of command line arguments]) -AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl - i=0 - teststring="ABCD" - - case $build_os in - msdosdjgpp*) - # On DJGPP, this test can blow up pretty badly due to problems in libc - # (any single argument exceeding 2000 bytes causes a buffer overrun - # during glob expansion). Even if it were fixed, the result of this - # check would be larger than it should be. - lt_cv_sys_max_cmd_len=12288; # 12K is about right - ;; - - gnu*) - # Under GNU Hurd, this test is not required because there is - # no limit to the length of command line arguments. - # Libtool will interpret -1 as no limit whatsoever - lt_cv_sys_max_cmd_len=-1; - ;; - - cygwin* | mingw*) - # On Win9x/ME, this test blows up -- it succeeds, but takes - # about 5 minutes as the teststring grows exponentially. - # Worse, since 9x/ME are not pre-emptively multitasking, - # you end up with a "frozen" computer, even though with patience - # the test eventually succeeds (with a max line length of 256k). - # Instead, let's just punt: use the minimum linelength reported by - # all of the supported platforms: 8192 (on NT/2K/XP). - lt_cv_sys_max_cmd_len=8192; - ;; - - beos*) - # On BeOS, this test takes a really really long time. - # So we just punt and use a minimum line length of 8192. - lt_cv_sys_max_cmd_len=8192; - ;; - - amigaos*) - # On AmigaOS with pdksh, this test takes hours, literally. - # So we just punt and use a minimum line length of 8192. - lt_cv_sys_max_cmd_len=8192; - ;; - - netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) - # This has been around since 386BSD, at least. Likely further. - if test -x /sbin/sysctl; then - lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` - elif test -x /usr/sbin/sysctl; then - lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` - else - lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs - fi - # And add a safety zone - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` - ;; - - interix*) - # We know the value 262144 and hardcode it with a safety zone (like BSD) - lt_cv_sys_max_cmd_len=196608 - ;; - - osf*) - # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure - # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not - # nice to cause kernel panics so lets avoid the loop below. - # First set a reasonable default. - lt_cv_sys_max_cmd_len=16384 - # - if test -x /sbin/sysconfig; then - case `/sbin/sysconfig -q proc exec_disable_arg_limit` in - *1*) lt_cv_sys_max_cmd_len=-1 ;; - esac - fi - ;; - sco3.2v5*) - lt_cv_sys_max_cmd_len=102400 - ;; - sysv5* | sco5v6* | sysv4.2uw2*) - kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` - if test -n "$kargmax"; then - lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` - else - lt_cv_sys_max_cmd_len=32768 - fi - ;; - *) - # If test is not a shell built-in, we'll probably end up computing a - # maximum length that is only half of the actual maximum length, but - # we can't tell. - SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} - while (test "X"`$SHELL [$]0 --fallback-echo "X$teststring" 2>/dev/null` \ - = "XX$teststring") >/dev/null 2>&1 && - new_result=`expr "X$teststring" : ".*" 2>&1` && - lt_cv_sys_max_cmd_len=$new_result && - test $i != 17 # 1/2 MB should be enough - do - i=`expr $i + 1` - teststring=$teststring$teststring - done - teststring= - # Add a significant safety factor because C++ compilers can tack on massive - # amounts of additional arguments before passing them to the linker. - # It appears as though 1/2 is a usable value. - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` - ;; - esac -]) -if test -n $lt_cv_sys_max_cmd_len ; then - AC_MSG_RESULT($lt_cv_sys_max_cmd_len) -else - AC_MSG_RESULT(none) -fi -])# AC_LIBTOOL_SYS_MAX_CMD_LEN - - -# _LT_AC_CHECK_DLFCN -# ------------------ -AC_DEFUN([_LT_AC_CHECK_DLFCN], -[AC_CHECK_HEADERS(dlfcn.h)dnl -])# _LT_AC_CHECK_DLFCN - - -# _LT_AC_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, -# ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) -# --------------------------------------------------------------------- -AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF], -[AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl -if test "$cross_compiling" = yes; then : - [$4] -else - lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 - lt_status=$lt_dlunknown - cat > conftest.$ac_ext < -#endif - -#include - -#ifdef RTLD_GLOBAL -# define LT_DLGLOBAL RTLD_GLOBAL -#else -# ifdef DL_GLOBAL -# define LT_DLGLOBAL DL_GLOBAL -# else -# define LT_DLGLOBAL 0 -# endif -#endif - -/* We may have to define LT_DLLAZY_OR_NOW in the command line if we - find out it does not work in some platform. */ -#ifndef LT_DLLAZY_OR_NOW -# ifdef RTLD_LAZY -# define LT_DLLAZY_OR_NOW RTLD_LAZY -# else -# ifdef DL_LAZY -# define LT_DLLAZY_OR_NOW DL_LAZY -# else -# ifdef RTLD_NOW -# define LT_DLLAZY_OR_NOW RTLD_NOW -# else -# ifdef DL_NOW -# define LT_DLLAZY_OR_NOW DL_NOW -# else -# define LT_DLLAZY_OR_NOW 0 -# endif -# endif -# endif -# endif -#endif - -#ifdef __cplusplus -extern "C" void exit (int); -#endif - -void fnord() { int i=42;} -int main () -{ - void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); - int status = $lt_dlunknown; - - if (self) - { - if (dlsym (self,"fnord")) status = $lt_dlno_uscore; - else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; - /* dlclose (self); */ - } - else - puts (dlerror ()); - - exit (status); -}] -EOF - if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then - (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null - lt_status=$? - case x$lt_status in - x$lt_dlno_uscore) $1 ;; - x$lt_dlneed_uscore) $2 ;; - x$lt_dlunknown|x*) $3 ;; - esac - else : - # compilation failed - $3 - fi -fi -rm -fr conftest* -])# _LT_AC_TRY_DLOPEN_SELF - - -# AC_LIBTOOL_DLOPEN_SELF -# ---------------------- -AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], -[AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl -if test "x$enable_dlopen" != xyes; then - enable_dlopen=unknown - enable_dlopen_self=unknown - enable_dlopen_self_static=unknown -else - lt_cv_dlopen=no - lt_cv_dlopen_libs= - - case $host_os in - beos*) - lt_cv_dlopen="load_add_on" - lt_cv_dlopen_libs= - lt_cv_dlopen_self=yes - ;; - - mingw* | pw32*) - lt_cv_dlopen="LoadLibrary" - lt_cv_dlopen_libs= - ;; - - cygwin*) - lt_cv_dlopen="dlopen" - lt_cv_dlopen_libs= - ;; - - darwin*) - # if libdl is installed we need to link against it - AC_CHECK_LIB([dl], [dlopen], - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ - lt_cv_dlopen="dyld" - lt_cv_dlopen_libs= - lt_cv_dlopen_self=yes - ]) - ;; - - *) - AC_CHECK_FUNC([shl_load], - [lt_cv_dlopen="shl_load"], - [AC_CHECK_LIB([dld], [shl_load], - [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"], - [AC_CHECK_FUNC([dlopen], - [lt_cv_dlopen="dlopen"], - [AC_CHECK_LIB([dl], [dlopen], - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], - [AC_CHECK_LIB([svld], [dlopen], - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], - [AC_CHECK_LIB([dld], [dld_link], - [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"]) - ]) - ]) - ]) - ]) - ]) - ;; - esac - - if test "x$lt_cv_dlopen" != xno; then - enable_dlopen=yes - else - enable_dlopen=no - fi - - case $lt_cv_dlopen in - dlopen) - save_CPPFLAGS="$CPPFLAGS" - test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" - - save_LDFLAGS="$LDFLAGS" - wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" - - save_LIBS="$LIBS" - LIBS="$lt_cv_dlopen_libs $LIBS" - - AC_CACHE_CHECK([whether a program can dlopen itself], - lt_cv_dlopen_self, [dnl - _LT_AC_TRY_DLOPEN_SELF( - lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, - lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) - ]) - - if test "x$lt_cv_dlopen_self" = xyes; then - wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" - AC_CACHE_CHECK([whether a statically linked program can dlopen itself], - lt_cv_dlopen_self_static, [dnl - _LT_AC_TRY_DLOPEN_SELF( - lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, - lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) - ]) - fi - - CPPFLAGS="$save_CPPFLAGS" - LDFLAGS="$save_LDFLAGS" - LIBS="$save_LIBS" - ;; - esac - - case $lt_cv_dlopen_self in - yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; - *) enable_dlopen_self=unknown ;; - esac - - case $lt_cv_dlopen_self_static in - yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; - *) enable_dlopen_self_static=unknown ;; - esac -fi -])# AC_LIBTOOL_DLOPEN_SELF - - -# AC_LIBTOOL_PROG_CC_C_O([TAGNAME]) -# --------------------------------- -# Check to see if options -c and -o are simultaneously supported by compiler -AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O], -[AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl -AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], - [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)], - [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no - $rm -r conftest 2>/dev/null - mkdir conftest - cd conftest - mkdir out - printf "$lt_simple_compile_test_code" > conftest.$ac_ext - - lt_compiler_flag="-o out/conftest2.$ac_objext" - # Insert the option either (1) after the last *FLAGS variable, or - # (2) before a word containing "conftest.", or (3) at the end. - # Note that $ac_compile itself does not contain backslashes and begins - # with a dollar sign (not a hyphen), so the echo should work correctly. - lt_compile=`echo "$ac_compile" | $SED \ - -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:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) - (eval "$lt_compile" 2>out/conftest.err) - ac_status=$? - cat out/conftest.err >&AS_MESSAGE_LOG_FD - echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD - if (exit $ac_status) && test -s out/conftest2.$ac_objext - then - # The compiler can only warn and ignore the option if not recognized - # So say no if there are warnings - $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp - $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 - if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then - _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes - fi - fi - chmod u+w . 2>&AS_MESSAGE_LOG_FD - $rm conftest* - # SGI C++ compiler will create directory out/ii_files/ for - # template instantiation - test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files - $rm out/* && rmdir out - cd .. - rmdir conftest - $rm conftest* -]) -])# AC_LIBTOOL_PROG_CC_C_O - - -# AC_LIBTOOL_SYS_HARD_LINK_LOCKS([TAGNAME]) -# ----------------------------------------- -# Check to see if we can do hard links to lock some files if needed -AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], -[AC_REQUIRE([_LT_AC_LOCK])dnl - -hard_links="nottested" -if test "$_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then - # do not overwrite the value of need_locks provided by the user - AC_MSG_CHECKING([if we can lock with hard links]) - hard_links=yes - $rm conftest* - ln conftest.a conftest.b 2>/dev/null && hard_links=no - touch conftest.a - ln conftest.a conftest.b 2>&5 || hard_links=no - ln conftest.a conftest.b 2>/dev/null && hard_links=no - AC_MSG_RESULT([$hard_links]) - if test "$hard_links" = no; then - AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) - need_locks=warn - fi -else - need_locks=no -fi -])# AC_LIBTOOL_SYS_HARD_LINK_LOCKS - - -# AC_LIBTOOL_OBJDIR -# ----------------- -AC_DEFUN([AC_LIBTOOL_OBJDIR], -[AC_CACHE_CHECK([for objdir], [lt_cv_objdir], -[rm -f .libs 2>/dev/null -mkdir .libs 2>/dev/null -if test -d .libs; then - lt_cv_objdir=.libs -else - # MS-DOS does not allow filenames that begin with a dot. - lt_cv_objdir=_libs -fi -rmdir .libs 2>/dev/null]) -objdir=$lt_cv_objdir -])# AC_LIBTOOL_OBJDIR - - -# AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([TAGNAME]) -# ---------------------------------------------- -# Check hardcoding attributes. -AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], -[AC_MSG_CHECKING([how to hardcode library paths into programs]) -_LT_AC_TAGVAR(hardcode_action, $1)= -if test -n "$_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)" || \ - test -n "$_LT_AC_TAGVAR(runpath_var, $1)" || \ - test "X$_LT_AC_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then - - # We can hardcode non-existant directories. - if test "$_LT_AC_TAGVAR(hardcode_direct, $1)" != no && - # If the only mechanism to avoid hardcoding is shlibpath_var, we - # have to relink, otherwise we might link with an installed library - # when we should be linking with a yet-to-be-installed one - ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)" != no && - test "$_LT_AC_TAGVAR(hardcode_minus_L, $1)" != no; then - # Linking always hardcodes the temporary library directory. - _LT_AC_TAGVAR(hardcode_action, $1)=relink - else - # We can link without hardcoding, and we can hardcode nonexisting dirs. - _LT_AC_TAGVAR(hardcode_action, $1)=immediate - fi -else - # We cannot hardcode anything, or else we can only hardcode existing - # directories. - _LT_AC_TAGVAR(hardcode_action, $1)=unsupported -fi -AC_MSG_RESULT([$_LT_AC_TAGVAR(hardcode_action, $1)]) - -if test "$_LT_AC_TAGVAR(hardcode_action, $1)" = relink; then - # Fast installation is not supported - enable_fast_install=no -elif test "$shlibpath_overrides_runpath" = yes || - test "$enable_shared" = no; then - # Fast installation is not necessary - enable_fast_install=needless -fi -])# AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH - - -# AC_LIBTOOL_SYS_LIB_STRIP -# ------------------------ -AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP], -[striplib= -old_striplib= -AC_MSG_CHECKING([whether stripping libraries is possible]) -if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then - test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" - test -z "$striplib" && striplib="$STRIP --strip-unneeded" - AC_MSG_RESULT([yes]) -else -# FIXME - insert some real tests, host_os isn't really good enough - case $host_os in - darwin*) - if test -n "$STRIP" ; then - striplib="$STRIP -x" - AC_MSG_RESULT([yes]) - else - AC_MSG_RESULT([no]) -fi - ;; - *) - AC_MSG_RESULT([no]) - ;; - esac -fi -])# AC_LIBTOOL_SYS_LIB_STRIP - - -# AC_LIBTOOL_SYS_DYNAMIC_LINKER -# ----------------------------- -# PORTME Fill in your ld.so characteristics -AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER], -[AC_MSG_CHECKING([dynamic linker characteristics]) -library_names_spec= -libname_spec='lib$name' -soname_spec= -shrext_cmds=".so" -postinstall_cmds= -postuninstall_cmds= -finish_cmds= -finish_eval= -shlibpath_var= -shlibpath_overrides_runpath=unknown -version_type=none -dynamic_linker="$host_os ld.so" -sys_lib_dlsearch_path_spec="/lib /usr/lib" -if test "$GCC" = yes; then - sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` - if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then - # if the path contains ";" then we assume it to be the separator - # otherwise default to the standard path separator (i.e. ":") - it is - # assumed that no part of a normal pathname contains ";" but that should - # okay in the real world where ";" in dirpaths is itself problematic. - sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` - else - sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - fi -else - sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" -fi -need_lib_prefix=unknown -hardcode_into_libs=no - -# when you set need_version to no, make sure it does not cause -set_version -# flags to be left without arguments -need_version=unknown - -case $host_os in -aix3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' - shlibpath_var=LIBPATH - - # AIX 3 has no versioning support, so we append a major version to the name. - soname_spec='${libname}${release}${shared_ext}$major' - ;; - -aix4* | aix5*) - version_type=linux - need_lib_prefix=no - need_version=no - hardcode_into_libs=yes - if test "$host_cpu" = ia64; then - # AIX 5 supports IA64 - library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - else - # With GCC up to 2.95.x, collect2 would create an import file - # for dependence libraries. The import file would start with - # the line `#! .'. This would cause the generated library to - # depend on `.', always an invalid library. This was fixed in - # development snapshots of GCC prior to 3.0. - case $host_os in - aix4 | aix4.[[01]] | aix4.[[01]].*) - if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' - echo ' yes ' - echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then - : - else - can_build_shared=no - fi - ;; - esac - # AIX (on Power*) has no versioning support, so currently we can not hardcode correct - # soname into executable. Probably we can add versioning support to - # collect2, so additional links can be useful in future. - if test "$aix_use_runtimelinking" = yes; then - # If using run time linking (on AIX 4.2 or later) use lib.so - # instead of lib.a to let people know that these are not - # typical AIX shared libraries. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - else - # We preserve .a as extension for shared libraries through AIX4.2 - # and later when we are not doing run time linking. - library_names_spec='${libname}${release}.a $libname.a' - soname_spec='${libname}${release}${shared_ext}$major' - fi - shlibpath_var=LIBPATH - fi - ;; - -amigaos*) - library_names_spec='$libname.ixlibrary $libname.a' - # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' - ;; - -beos*) - library_names_spec='${libname}${shared_ext}' - dynamic_linker="$host_os ld.so" - shlibpath_var=LIBRARY_PATH - ;; - -bsdi[[45]]*) - version_type=linux - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" - sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" - # the default ld.so.conf also contains /usr/contrib/lib and - # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow - # libtool to hard-code these into programs - ;; - -cygwin* | mingw* | pw32*) - version_type=windows - shrext_cmds=".dll" - need_version=no - need_lib_prefix=no - - case $GCC,$host_os in - yes,cygwin* | yes,mingw* | yes,pw32*) - library_names_spec='$libname.dll.a' - # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ - dldir=$destdir/`dirname \$dlpath`~ - test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname~ - chmod a+x \$dldir/$dlname' - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ - dlpath=$dir/\$dldll~ - $rm \$dlpath' - shlibpath_overrides_runpath=yes - - case $host_os in - cygwin*) - # Cygwin DLLs use 'cyg' prefix rather than 'lib' - #soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' - soname_spec='`echo ${libname} | sed -e 's/^lib//'`${shared_ext}' - sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" - ;; - mingw*) - # MinGW DLLs use traditional 'lib' prefix - #soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' - soname_spec='`echo ${libname} | sed -e 's/^lib//'`${shared_ext}' - sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` - if echo "$sys_lib_search_path_spec" | [grep ';[c-zC-Z]:/' >/dev/null]; then - # It is most probably a Windows format PATH printed by - # mingw gcc, but we are running on Cygwin. Gcc prints its search - # path with ; separators, and with drive letters. We can handle the - # drive letters (cygwin fileutils understands them), so leave them, - # especially as we might pass files found there to a mingw objdump, - # which wouldn't understand a cygwinified path. Ahh. - sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` - else - sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - fi - ;; - pw32*) - # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' - ;; - esac - ;; - - *) - library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' - ;; - esac - dynamic_linker='Win32 ld.exe' - # FIXME: first we should search . and the directory the executable is in - shlibpath_var=PATH - ;; - -darwin* | rhapsody*) - dynamic_linker="$host_os dyld" - version_type=darwin - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' - soname_spec='${libname}${release}${major}$shared_ext' - shlibpath_overrides_runpath=yes - shlibpath_var=DYLD_LIBRARY_PATH - shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' - # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. - if test "$GCC" = yes; then - sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` - else - sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' - fi - sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' - ;; - -dgux*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -freebsd1*) - dynamic_linker=no - ;; - -kfreebsd*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='GNU ld.so' - ;; - -freebsd* | dragonfly*) - # DragonFly does not have aout. When/if they implement a new - # versioning mechanism, adjust this. - if test -x /usr/bin/objformat; then - objformat=`/usr/bin/objformat` - else - case $host_os in - freebsd[[123]]*) objformat=aout ;; - *) objformat=elf ;; - esac - fi - version_type=freebsd-$objformat - case $version_type in - freebsd-elf*) - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - need_version=no - need_lib_prefix=no - ;; - freebsd-*) - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' - need_version=yes - ;; - esac - shlibpath_var=LD_LIBRARY_PATH - case $host_os in - freebsd2*) - shlibpath_overrides_runpath=yes - ;; - freebsd3.[[01]]* | freebsdelf3.[[01]]*) - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ - freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - freebsd*) # from 4.6 on - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - esac - ;; - -gnu*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - hardcode_into_libs=yes - ;; - -hpux9* | hpux10* | hpux11*) - # Give a soname corresponding to the major version so that dld.sl refuses to - # link against other versions. - version_type=sunos - need_lib_prefix=no - need_version=no - case $host_cpu in - ia64*) - shrext_cmds='.so' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.so" - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - if test "X$HPUX_IA64_MODE" = X32; then - sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" - else - sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" - fi - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - hppa*64*) - shrext_cmds='.sl' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.sl" - shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - *) - shrext_cmds='.sl' - dynamic_linker="$host_os dld.sl" - shlibpath_var=SHLIB_PATH - shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - ;; - esac - # HP-UX runs *really* slowly unless shared libraries are mode 555. - postinstall_cmds='chmod 555 $lib' - ;; - -interix3*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - ;; - -irix5* | irix6* | nonstopux*) - case $host_os in - nonstopux*) version_type=nonstopux ;; - *) - if test "$lt_cv_prog_gnu_ld" = yes; then - version_type=linux - else - version_type=irix - fi ;; - esac - need_lib_prefix=no - need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' - case $host_os in - irix5* | nonstopux*) - libsuff= shlibsuff= - ;; - *) - case $LD in # libtool.m4 will add one of these switches to LD - *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") - libsuff= shlibsuff= libmagic=32-bit;; - *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") - libsuff=32 shlibsuff=N32 libmagic=N32;; - *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") - libsuff=64 shlibsuff=64 libmagic=64-bit;; - *) libsuff= shlibsuff= libmagic=never-match;; - esac - ;; - esac - shlibpath_var=LD_LIBRARY${shlibsuff}_PATH - shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" - sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" - hardcode_into_libs=yes - ;; - -# No shared lib support for Linux oldld, aout, or coff. -linux*oldld* | linux*aout* | linux*coff*) - dynamic_linker=no - ;; - -# This must be Linux ELF. -linux*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - # This implies no fast_install, which is unacceptable. - # Some rework will be needed to allow for fast_install - # before this can be enabled. - hardcode_into_libs=yes - - # Append ld.so.conf contents to the search path - if test -f /etc/ld.so.conf; then - lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" - fi - - # We used to test for /lib/ld.so.1 and disable shared libraries on - # powerpc, because MkLinux only supported shared libraries with the - # GNU dynamic linker. Since this was broken with cross compilers, - # most powerpc-linux boxes support dynamic linking these days and - # people can always --disable-shared, the test was removed, and we - # assume the GNU/Linux dynamic linker is in use. - dynamic_linker='GNU/Linux ld.so' - ;; - -knetbsd*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='GNU ld.so' - ;; - -netbsd*) - version_type=sunos - need_lib_prefix=no - need_version=no - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - dynamic_linker='NetBSD (a.out) ld.so' - else - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - dynamic_linker='NetBSD ld.elf_so' - fi - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - ;; - -newsos6) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - ;; - -nto-qnx*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - ;; - -openbsd*) - version_type=sunos - sys_lib_dlsearch_path_spec="/usr/lib" - need_lib_prefix=no - # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. - case $host_os in - openbsd3.3 | openbsd3.3.*) need_version=yes ;; - *) need_version=no ;; - esac - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - case $host_os in - openbsd2.[[89]] | openbsd2.[[89]].*) - shlibpath_overrides_runpath=no - ;; - *) - shlibpath_overrides_runpath=yes - ;; - esac - else - shlibpath_overrides_runpath=yes - fi - ;; - -os2*) - libname_spec='$name' - shrext_cmds=".dll" - need_lib_prefix=no - library_names_spec='$libname${shared_ext} $libname.a' - dynamic_linker='OS/2 ld.exe' - shlibpath_var=LIBPATH - ;; - -osf3* | osf4* | osf5*) - version_type=osf - need_lib_prefix=no - need_version=no - soname_spec='${libname}${release}${shared_ext}$major' - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" - ;; - -solaris*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes - # ldd complains unless libraries are executable - postinstall_cmds='chmod +x $lib' - ;; - -sunos4*) - version_type=sunos - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - if test "$with_gnu_ld" = yes; then - need_lib_prefix=no - fi - need_version=yes - ;; - -sysv4 | sysv4.3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - case $host_vendor in - sni) - shlibpath_overrides_runpath=no - need_lib_prefix=no - export_dynamic_flag_spec='${wl}-Blargedynsym' - runpath_var=LD_RUN_PATH - ;; - siemens) - need_lib_prefix=no - ;; - motorola) - need_lib_prefix=no - need_version=no - shlibpath_overrides_runpath=no - sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' - ;; - esac - ;; - -sysv4*MP*) - if test -d /usr/nec ;then - version_type=linux - library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' - soname_spec='$libname${shared_ext}.$major' - shlibpath_var=LD_LIBRARY_PATH - fi - ;; - -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=freebsd-elf - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - hardcode_into_libs=yes - if test "$with_gnu_ld" = yes; then - sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' - shlibpath_overrides_runpath=no - else - sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' - shlibpath_overrides_runpath=yes - case $host_os in - sco3.2v5*) - sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" - ;; - esac - fi - sys_lib_dlsearch_path_spec='/usr/lib' - ;; - -uts4*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; - -*) - dynamic_linker=no - ;; -esac -AC_MSG_RESULT([$dynamic_linker]) -test "$dynamic_linker" = no && can_build_shared=no - -variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test "$GCC" = yes; then - variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" -fi -])# AC_LIBTOOL_SYS_DYNAMIC_LINKER - - -# _LT_AC_TAGCONFIG -# ---------------- -AC_DEFUN([_LT_AC_TAGCONFIG], -[AC_ARG_WITH([tags], - [AC_HELP_STRING([--with-tags@<:@=TAGS@:>@], - [include additional configurations @<:@automatic@:>@])], - [tagnames="$withval"]) - -if test -f "$ltmain" && test -n "$tagnames"; then - if test ! -f "${ofile}"; then - AC_MSG_WARN([output file `$ofile' does not exist]) - fi - - if test -z "$LTCC"; then - eval "`$SHELL ${ofile} --config | grep '^LTCC='`" - if test -z "$LTCC"; then - AC_MSG_WARN([output file `$ofile' does not look like a libtool script]) - else - AC_MSG_WARN([using `LTCC=$LTCC', extracted from `$ofile']) - fi - fi - if test -z "$LTCFLAGS"; then - eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`" - fi - - # Extract list of available tagged configurations in $ofile. - # Note that this assumes the entire list is on one line. - available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'` - - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for tagname in $tagnames; do - IFS="$lt_save_ifs" - # Check whether tagname contains only valid characters - case `$echo "X$tagname" | $Xsed -e 's:[[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]]::g'` in - "") ;; - *) AC_MSG_ERROR([invalid tag name: $tagname]) - ;; - esac - - if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null - then - AC_MSG_ERROR([tag name \"$tagname\" already exists]) - fi - - # Update the list of available tags. - if test -n "$tagname"; then - echo appending configuration tag \"$tagname\" to $ofile - - case $tagname in - CXX) - if test -n "$CXX" && ( test "X$CXX" != "Xno" && - ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || - (test "X$CXX" != "Xg++"))) ; then - AC_LIBTOOL_LANG_CXX_CONFIG - else - tagname="" - fi - ;; - - F77) - if test -n "$F77" && test "X$F77" != "Xno"; then - AC_LIBTOOL_LANG_F77_CONFIG - else - tagname="" - fi - ;; - - GCJ) - if test -n "$GCJ" && test "X$GCJ" != "Xno"; then - AC_LIBTOOL_LANG_GCJ_CONFIG - else - tagname="" - fi - ;; - - RC) - AC_LIBTOOL_LANG_RC_CONFIG - ;; - - *) - AC_MSG_ERROR([Unsupported tag name: $tagname]) - ;; - esac - - # Append the new tag name to the list of available tags. - if test -n "$tagname" ; then - available_tags="$available_tags $tagname" - fi - fi - done - IFS="$lt_save_ifs" - - # Now substitute the updated list of available tags. - if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then - mv "${ofile}T" "$ofile" - chmod +x "$ofile" - else - rm -f "${ofile}T" - AC_MSG_ERROR([unable to update list of available tagged configurations.]) - fi -fi -])# _LT_AC_TAGCONFIG - - -# AC_LIBTOOL_DLOPEN -# ----------------- -# enable checks for dlopen support -AC_DEFUN([AC_LIBTOOL_DLOPEN], - [AC_BEFORE([$0],[AC_LIBTOOL_SETUP]) -])# AC_LIBTOOL_DLOPEN - - -# AC_LIBTOOL_WIN32_DLL -# -------------------- -# declare package support for building win32 DLLs -AC_DEFUN([AC_LIBTOOL_WIN32_DLL], -[AC_BEFORE([$0], [AC_LIBTOOL_SETUP]) -])# AC_LIBTOOL_WIN32_DLL - - -# AC_ENABLE_SHARED([DEFAULT]) -# --------------------------- -# implement the --enable-shared flag -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. -AC_DEFUN([AC_ENABLE_SHARED], -[define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl -AC_ARG_ENABLE([shared], - [AC_HELP_STRING([--enable-shared@<:@=PKGS@:>@], - [build shared libraries @<:@default=]AC_ENABLE_SHARED_DEFAULT[@:>@])], - [p=${PACKAGE-default} - case $enableval in - yes) enable_shared=yes ;; - no) enable_shared=no ;; - *) - enable_shared=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for pkg in $enableval; do - IFS="$lt_save_ifs" - if test "X$pkg" = "X$p"; then - enable_shared=yes - fi - done - IFS="$lt_save_ifs" - ;; - esac], - [enable_shared=]AC_ENABLE_SHARED_DEFAULT) -])# AC_ENABLE_SHARED - - -# AC_DISABLE_SHARED -# ----------------- -# set the default shared flag to --disable-shared -AC_DEFUN([AC_DISABLE_SHARED], -[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl -AC_ENABLE_SHARED(no) -])# AC_DISABLE_SHARED - - -# AC_ENABLE_STATIC([DEFAULT]) -# --------------------------- -# implement the --enable-static flag -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. -AC_DEFUN([AC_ENABLE_STATIC], -[define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl -AC_ARG_ENABLE([static], - [AC_HELP_STRING([--enable-static@<:@=PKGS@:>@], - [build static libraries @<:@default=]AC_ENABLE_STATIC_DEFAULT[@:>@])], - [p=${PACKAGE-default} - case $enableval in - yes) enable_static=yes ;; - no) enable_static=no ;; - *) - enable_static=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for pkg in $enableval; do - IFS="$lt_save_ifs" - if test "X$pkg" = "X$p"; then - enable_static=yes - fi - done - IFS="$lt_save_ifs" - ;; - esac], - [enable_static=]AC_ENABLE_STATIC_DEFAULT) -])# AC_ENABLE_STATIC - - -# AC_DISABLE_STATIC -# ----------------- -# set the default static flag to --disable-static -AC_DEFUN([AC_DISABLE_STATIC], -[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl -AC_ENABLE_STATIC(no) -])# AC_DISABLE_STATIC - - -# AC_ENABLE_FAST_INSTALL([DEFAULT]) -# --------------------------------- -# implement the --enable-fast-install flag -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. -AC_DEFUN([AC_ENABLE_FAST_INSTALL], -[define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl -AC_ARG_ENABLE([fast-install], - [AC_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], - [optimize for fast installation @<:@default=]AC_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], - [p=${PACKAGE-default} - case $enableval in - yes) enable_fast_install=yes ;; - no) enable_fast_install=no ;; - *) - enable_fast_install=no - # Look at the argument we got. We use all the common list separators. - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for pkg in $enableval; do - IFS="$lt_save_ifs" - if test "X$pkg" = "X$p"; then - enable_fast_install=yes - fi - done - IFS="$lt_save_ifs" - ;; - esac], - [enable_fast_install=]AC_ENABLE_FAST_INSTALL_DEFAULT) -])# AC_ENABLE_FAST_INSTALL - - -# AC_DISABLE_FAST_INSTALL -# ----------------------- -# set the default to --disable-fast-install -AC_DEFUN([AC_DISABLE_FAST_INSTALL], -[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl -AC_ENABLE_FAST_INSTALL(no) -])# AC_DISABLE_FAST_INSTALL - - -# AC_LIBTOOL_PICMODE([MODE]) -# -------------------------- -# implement the --with-pic flag -# MODE is either `yes' or `no'. If omitted, it defaults to `both'. -AC_DEFUN([AC_LIBTOOL_PICMODE], -[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl -pic_mode=ifelse($#,1,$1,default) -])# AC_LIBTOOL_PICMODE - - -# AC_PROG_EGREP -# ------------- -# This is predefined starting with Autoconf 2.54, so this conditional -# definition can be removed once we require Autoconf 2.54 or later. -m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP], -[AC_CACHE_CHECK([for egrep], [ac_cv_prog_egrep], - [if echo a | (grep -E '(a|b)') >/dev/null 2>&1 - then ac_cv_prog_egrep='grep -E' - else ac_cv_prog_egrep='egrep' - fi]) - EGREP=$ac_cv_prog_egrep - AC_SUBST([EGREP]) -])]) - - -# AC_PATH_TOOL_PREFIX -# ------------------- -# find a file program which can recognise shared library -AC_DEFUN([AC_PATH_TOOL_PREFIX], -[AC_REQUIRE([AC_PROG_EGREP])dnl -AC_MSG_CHECKING([for $1]) -AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, -[case $MAGIC_CMD in -[[\\/*] | ?:[\\/]*]) - lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. - ;; -*) - lt_save_MAGIC_CMD="$MAGIC_CMD" - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR -dnl $ac_dummy forces splitting on constant user-supplied paths. -dnl POSIX.2 word splitting is done only on the output of word expansions, -dnl not every word. This closes a longstanding sh security hole. - ac_dummy="ifelse([$2], , $PATH, [$2])" - for ac_dir in $ac_dummy; do - IFS="$lt_save_ifs" - test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/$1; then - lt_cv_path_MAGIC_CMD="$ac_dir/$1" - if test -n "$file_magic_test_file"; then - case $deplibs_check_method in - "file_magic "*) - file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` - MAGIC_CMD="$lt_cv_path_MAGIC_CMD" - if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | - $EGREP "$file_magic_regex" > /dev/null; then - : - else - cat <&2 - -*** Warning: the command libtool uses to detect shared libraries, -*** $file_magic_cmd, produces output that libtool cannot recognize. -*** The result is that libtool may fail to recognize shared libraries -*** as such. This will affect the creation of libtool libraries that -*** depend on shared libraries, but programs linked with such libtool -*** libraries will work regardless of this problem. Nevertheless, you -*** may want to report the problem to your system manager and/or to -*** bug-libtool@gnu.org - -EOF - fi ;; - esac - fi - break - fi - done - IFS="$lt_save_ifs" - MAGIC_CMD="$lt_save_MAGIC_CMD" - ;; -esac]) -MAGIC_CMD="$lt_cv_path_MAGIC_CMD" -if test -n "$MAGIC_CMD"; then - AC_MSG_RESULT($MAGIC_CMD) -else - AC_MSG_RESULT(no) -fi -])# AC_PATH_TOOL_PREFIX - - -# AC_PATH_MAGIC -# ------------- -# find a file program which can recognise a shared library -AC_DEFUN([AC_PATH_MAGIC], -[AC_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) -if test -z "$lt_cv_path_MAGIC_CMD"; then - if test -n "$ac_tool_prefix"; then - AC_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) - else - MAGIC_CMD=: - fi -fi -])# AC_PATH_MAGIC - - -# AC_PROG_LD -# ---------- -# find the pathname to the GNU or non-GNU linker -AC_DEFUN([AC_PROG_LD], -[AC_ARG_WITH([gnu-ld], - [AC_HELP_STRING([--with-gnu-ld], - [assume the C compiler uses GNU ld @<:@default=no@:>@])], - [test "$withval" = no || with_gnu_ld=yes], - [with_gnu_ld=no]) -AC_REQUIRE([LT_AC_PROG_SED])dnl -AC_REQUIRE([AC_PROG_CC])dnl -AC_REQUIRE([AC_CANONICAL_HOST])dnl -AC_REQUIRE([AC_CANONICAL_BUILD])dnl -ac_prog=ld -if test "$GCC" = yes; then - # Check if gcc -print-prog-name=ld gives a path. - AC_MSG_CHECKING([for ld used by $CC]) - case $host in - *-*-mingw*) - # gcc leaves a trailing carriage return which upsets mingw - ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; - *) - ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; - esac - case $ac_prog in - # Accept absolute paths. - [[\\/]]* | ?:[[\\/]]*) - re_direlt='/[[^/]][[^/]]*/\.\./' - # Canonicalize the pathname of ld - ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'` - while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do - ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"` - done - test -z "$LD" && LD="$ac_prog" - ;; - "") - # If it fails, then pretend we aren't using GCC. - ac_prog=ld - ;; - *) - # If it is relative, then search for the first ld in PATH. - with_gnu_ld=unknown - ;; - esac -elif test "$with_gnu_ld" = yes; then - AC_MSG_CHECKING([for GNU ld]) -else - AC_MSG_CHECKING([for non-GNU ld]) -fi -AC_CACHE_VAL(lt_cv_path_LD, -[if test -z "$LD"; then - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - for ac_dir in $PATH; do - IFS="$lt_save_ifs" - test -z "$ac_dir" && ac_dir=. - if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - lt_cv_path_LD="$ac_dir/$ac_prog" - # Check to see if the program is GNU ld. I'd rather use --version, - # but apparently some variants of GNU ld only accept -v. - # Break only if it was the GNU/non-GNU ld that we prefer. - case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null; then - case $host_cpu in - i*86 ) - # Not sure whether the presence of OpenBSD here was a mistake. - # Let's accept both of them until this is cleared up. - lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' - lt_cv_file_magic_cmd=/usr/bin/file - lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` - ;; - esac - else - lt_cv_deplibs_check_method=pass_all - fi - ;; - -gnu*) - lt_cv_deplibs_check_method=pass_all - ;; - -hpux10.20* | hpux11*) - lt_cv_file_magic_cmd=/usr/bin/file - case $host_cpu in - ia64*) - lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' - lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so - ;; - hppa*64*) - [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]'] - lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl - ;; - *) - lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library' - lt_cv_file_magic_test_file=/usr/lib/libc.sl - ;; - esac - ;; - -interix3*) - # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' - ;; - -irix5* | irix6* | nonstopux*) - case $LD in - *-32|*"-32 ") libmagic=32-bit;; - *-n32|*"-n32 ") libmagic=N32;; - *-64|*"-64 ") libmagic=64-bit;; - *) libmagic=never-match;; - esac - lt_cv_deplibs_check_method=pass_all - ;; - -# This must be Linux ELF. -linux*) - lt_cv_deplibs_check_method=pass_all - ;; - -netbsd*) - if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' - else - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' - fi - ;; - -newos6*) - lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' - lt_cv_file_magic_cmd=/usr/bin/file - lt_cv_file_magic_test_file=/usr/lib/libnls.so - ;; - -nto-qnx*) - lt_cv_deplibs_check_method=unknown - ;; - -openbsd*) - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' - else - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' - fi - ;; - -osf3* | osf4* | osf5*) - lt_cv_deplibs_check_method=pass_all - ;; - -solaris*) - lt_cv_deplibs_check_method=pass_all - ;; - -sysv4 | sysv4.3*) - case $host_vendor in - motorola) - lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' - lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` - ;; - ncr) - lt_cv_deplibs_check_method=pass_all - ;; - sequent) - lt_cv_file_magic_cmd='/bin/file' - lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' - ;; - sni) - lt_cv_file_magic_cmd='/bin/file' - lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" - lt_cv_file_magic_test_file=/lib/libc.so - ;; - siemens) - lt_cv_deplibs_check_method=pass_all - ;; - pc) - lt_cv_deplibs_check_method=pass_all - ;; - esac - ;; - -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - lt_cv_deplibs_check_method=pass_all - ;; -esac -]) -file_magic_cmd=$lt_cv_file_magic_cmd -deplibs_check_method=$lt_cv_deplibs_check_method -test -z "$deplibs_check_method" && deplibs_check_method=unknown -])# AC_DEPLIBS_CHECK_METHOD - - -# AC_PROG_NM -# ---------- -# find the pathname to a BSD-compatible name lister -AC_DEFUN([AC_PROG_NM], -[AC_CACHE_CHECK([for BSD-compatible nm], lt_cv_path_NM, -[if test -n "$NM"; then - # Let the user override the test. - lt_cv_path_NM="$NM" -else - lt_nm_to_check="${ac_tool_prefix}nm" - if test -n "$ac_tool_prefix" && test "$build" = "$host"; then - lt_nm_to_check="$lt_nm_to_check nm" - fi - for lt_tmp_nm in $lt_nm_to_check; do - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do - IFS="$lt_save_ifs" - test -z "$ac_dir" && ac_dir=. - tmp_nm="$ac_dir/$lt_tmp_nm" - if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then - # Check to see if the nm accepts a BSD-compat flag. - # Adding the `sed 1q' prevents false positives on HP-UX, which says: - # nm: unknown option "B" ignored - # Tru64's nm complains that /dev/null is an invalid object file - case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in - */dev/null* | *'Invalid file or object type'*) - lt_cv_path_NM="$tmp_nm -B" - break - ;; - *) - case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in - */dev/null*) - lt_cv_path_NM="$tmp_nm -p" - break - ;; - *) - lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but - continue # so that we can try to find one that supports BSD flags - ;; - esac - ;; - esac - fi - done - IFS="$lt_save_ifs" - done - test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm -fi]) -NM="$lt_cv_path_NM" -])# AC_PROG_NM - - -# AC_CHECK_LIBM -# ------------- -# check for math library -AC_DEFUN([AC_CHECK_LIBM], -[AC_REQUIRE([AC_CANONICAL_HOST])dnl -LIBM= -case $host in -*-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*) - # These system don't have libm, or don't need it - ;; -*-ncr-sysv4.3*) - AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") - AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") - ;; -*) - AC_CHECK_LIB(m, cos, LIBM="-lm") - ;; -esac -])# AC_CHECK_LIBM - - -# AC_LIBLTDL_CONVENIENCE([DIRECTORY]) -# ----------------------------------- -# sets LIBLTDL to the link flags for the libltdl convenience library and -# LTDLINCL to the include flags for the libltdl header and adds -# --enable-ltdl-convenience to the configure arguments. Note that -# AC_CONFIG_SUBDIRS is not called here. If DIRECTORY is not provided, -# it is assumed to be `libltdl'. LIBLTDL will be prefixed with -# '${top_builddir}/' and LTDLINCL will be prefixed with '${top_srcdir}/' -# (note the single quotes!). If your package is not flat and you're not -# using automake, define top_builddir and top_srcdir appropriately in -# the Makefiles. -AC_DEFUN([AC_LIBLTDL_CONVENIENCE], -[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl - case $enable_ltdl_convenience in - no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;; - "") enable_ltdl_convenience=yes - ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;; - esac - LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la - LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) - # For backwards non-gettext consistent compatibility... - INCLTDL="$LTDLINCL" -])# AC_LIBLTDL_CONVENIENCE - - -# AC_LIBLTDL_INSTALLABLE([DIRECTORY]) -# ----------------------------------- -# sets LIBLTDL to the link flags for the libltdl installable library and -# LTDLINCL to the include flags for the libltdl header and adds -# --enable-ltdl-install to the configure arguments. Note that -# AC_CONFIG_SUBDIRS is not called here. If DIRECTORY is not provided, -# and an installed libltdl is not found, it is assumed to be `libltdl'. -# LIBLTDL will be prefixed with '${top_builddir}/'# and LTDLINCL with -# '${top_srcdir}/' (note the single quotes!). If your package is not -# flat and you're not using automake, define top_builddir and top_srcdir -# appropriately in the Makefiles. -# In the future, this macro may have to be called after AC_PROG_LIBTOOL. -AC_DEFUN([AC_LIBLTDL_INSTALLABLE], -[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl - AC_CHECK_LIB(ltdl, lt_dlinit, - [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no], - [if test x"$enable_ltdl_install" = xno; then - AC_MSG_WARN([libltdl not installed, but installation disabled]) - else - enable_ltdl_install=yes - fi - ]) - if test x"$enable_ltdl_install" = x"yes"; then - ac_configure_args="$ac_configure_args --enable-ltdl-install" - LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la - LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) - else - ac_configure_args="$ac_configure_args --enable-ltdl-install=no" - LIBLTDL="-lltdl" - LTDLINCL= - fi - # For backwards non-gettext consistent compatibility... - INCLTDL="$LTDLINCL" -])# AC_LIBLTDL_INSTALLABLE - - -# AC_LIBTOOL_CXX -# -------------- -# enable support for C++ libraries -AC_DEFUN([AC_LIBTOOL_CXX], -[AC_REQUIRE([_LT_AC_LANG_CXX]) -])# AC_LIBTOOL_CXX - - -# _LT_AC_LANG_CXX -# --------------- -AC_DEFUN([_LT_AC_LANG_CXX], -[AC_REQUIRE([AC_PROG_CXX]) -AC_REQUIRE([_LT_AC_PROG_CXXCPP]) -_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX]) -])# _LT_AC_LANG_CXX - -# _LT_AC_PROG_CXXCPP -# ------------------ -AC_DEFUN([_LT_AC_PROG_CXXCPP], -[ -AC_REQUIRE([AC_PROG_CXX]) -if test -n "$CXX" && ( test "X$CXX" != "Xno" && - ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || - (test "X$CXX" != "Xg++"))) ; then - AC_PROG_CXXCPP -fi -])# _LT_AC_PROG_CXXCPP - -# AC_LIBTOOL_F77 -# -------------- -# enable support for Fortran 77 libraries -AC_DEFUN([AC_LIBTOOL_F77], -[AC_REQUIRE([_LT_AC_LANG_F77]) -])# AC_LIBTOOL_F77 - - -# _LT_AC_LANG_F77 -# --------------- -AC_DEFUN([_LT_AC_LANG_F77], -[AC_REQUIRE([AC_PROG_F77]) -_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77]) -])# _LT_AC_LANG_F77 - - -# AC_LIBTOOL_GCJ -# -------------- -# enable support for GCJ libraries -AC_DEFUN([AC_LIBTOOL_GCJ], -[AC_REQUIRE([_LT_AC_LANG_GCJ]) -])# AC_LIBTOOL_GCJ - - -# _LT_AC_LANG_GCJ -# --------------- -AC_DEFUN([_LT_AC_LANG_GCJ], -[AC_PROVIDE_IFELSE([AC_PROG_GCJ],[], - [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],[], - [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],[], - [ifdef([AC_PROG_GCJ],[AC_REQUIRE([AC_PROG_GCJ])], - [ifdef([A][M_PROG_GCJ],[AC_REQUIRE([A][M_PROG_GCJ])], - [AC_REQUIRE([A][C_PROG_GCJ_OR_A][M_PROG_GCJ])])])])])]) -_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}GCJ]) -])# _LT_AC_LANG_GCJ - - -# AC_LIBTOOL_RC -# ------------- -# enable support for Windows resource files -AC_DEFUN([AC_LIBTOOL_RC], -[AC_REQUIRE([LT_AC_PROG_RC]) -_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}RC]) -])# AC_LIBTOOL_RC - - -# AC_LIBTOOL_LANG_C_CONFIG -# ------------------------ -# Ensure that the configuration vars for the C compiler are -# suitably defined. Those variables are subsequently used by -# AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. -AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG], [_LT_AC_LANG_C_CONFIG]) -AC_DEFUN([_LT_AC_LANG_C_CONFIG], -[lt_save_CC="$CC" -AC_LANG_PUSH(C) - -# Source file extension for C test sources. -ac_ext=c - -# Object file extension for compiled C test sources. -objext=o -_LT_AC_TAGVAR(objext, $1)=$objext - -# Code to be used in simple compile tests -lt_simple_compile_test_code="int some_variable = 0;\n" - -# Code to be used in simple link tests -lt_simple_link_test_code='int main(){return(0);}\n' - -_LT_AC_SYS_COMPILER - -# save warnings/boilerplate of simple test code -_LT_COMPILER_BOILERPLATE -_LT_LINKER_BOILERPLATE - -## CAVEAT EMPTOR: -## There is no encapsulation within the following macros, do not change -## the running order or otherwise move them around unless you know exactly -## what you are doing... -AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1) -AC_LIBTOOL_PROG_COMPILER_PIC($1) -AC_LIBTOOL_PROG_CC_C_O($1) -AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) -AC_LIBTOOL_PROG_LD_SHLIBS($1) -AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) -AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) -AC_LIBTOOL_SYS_LIB_STRIP -AC_LIBTOOL_DLOPEN_SELF - -# Report which library types will actually be built -AC_MSG_CHECKING([if libtool supports shared libraries]) -AC_MSG_RESULT([$can_build_shared]) - -AC_MSG_CHECKING([whether to build shared libraries]) -test "$can_build_shared" = "no" && enable_shared=no - -# On AIX, shared libraries and static libraries use the same namespace, and -# are all built from PIC. -case $host_os in -aix3*) - test "$enable_shared" = yes && enable_static=no - if test -n "$RANLIB"; then - archive_cmds="$archive_cmds~\$RANLIB \$lib" - postinstall_cmds='$RANLIB $lib' - fi - ;; - -aix4* | aix5*) - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then - test "$enable_shared" = yes && enable_static=no - fi - ;; -esac -AC_MSG_RESULT([$enable_shared]) - -AC_MSG_CHECKING([whether to build static libraries]) -# Make sure either enable_shared or enable_static is yes. -test "$enable_shared" = yes || enable_static=yes -AC_MSG_RESULT([$enable_static]) - -AC_LIBTOOL_CONFIG($1) - -AC_LANG_POP -CC="$lt_save_CC" -])# AC_LIBTOOL_LANG_C_CONFIG - - -# AC_LIBTOOL_LANG_CXX_CONFIG -# -------------------------- -# Ensure that the configuration vars for the C compiler are -# suitably defined. Those variables are subsequently used by -# AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. -AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG], [_LT_AC_LANG_CXX_CONFIG(CXX)]) -AC_DEFUN([_LT_AC_LANG_CXX_CONFIG], -[AC_LANG_PUSH(C++) -AC_REQUIRE([AC_PROG_CXX]) -AC_REQUIRE([_LT_AC_PROG_CXXCPP]) - -_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no -_LT_AC_TAGVAR(allow_undefined_flag, $1)= -_LT_AC_TAGVAR(always_export_symbols, $1)=no -_LT_AC_TAGVAR(archive_expsym_cmds, $1)= -_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= -_LT_AC_TAGVAR(hardcode_direct, $1)=no -_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= -_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= -_LT_AC_TAGVAR(hardcode_libdir_separator, $1)= -_LT_AC_TAGVAR(hardcode_minus_L, $1)=no -_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported -_LT_AC_TAGVAR(hardcode_automatic, $1)=no -_LT_AC_TAGVAR(module_cmds, $1)= -_LT_AC_TAGVAR(module_expsym_cmds, $1)= -_LT_AC_TAGVAR(link_all_deplibs, $1)=unknown -_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds -_LT_AC_TAGVAR(no_undefined_flag, $1)= -_LT_AC_TAGVAR(whole_archive_flag_spec, $1)= -_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no - -# Dependencies to place before and after the object being linked: -_LT_AC_TAGVAR(predep_objects, $1)= -_LT_AC_TAGVAR(postdep_objects, $1)= -_LT_AC_TAGVAR(predeps, $1)= -_LT_AC_TAGVAR(postdeps, $1)= -_LT_AC_TAGVAR(compiler_lib_search_path, $1)= - -# Source file extension for C++ test sources. -ac_ext=cpp - -# Object file extension for compiled C++ test sources. -objext=o -_LT_AC_TAGVAR(objext, $1)=$objext - -# Code to be used in simple compile tests -lt_simple_compile_test_code="int some_variable = 0;\n" - -# Code to be used in simple link tests -lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }\n' - -# ltmain only uses $CC for tagged configurations so make sure $CC is set. -_LT_AC_SYS_COMPILER - -# save warnings/boilerplate of simple test code -_LT_COMPILER_BOILERPLATE -_LT_LINKER_BOILERPLATE - -# Allow CC to be a program name with arguments. -lt_save_CC=$CC -lt_save_LD=$LD -lt_save_GCC=$GCC -GCC=$GXX -lt_save_with_gnu_ld=$with_gnu_ld -lt_save_path_LD=$lt_cv_path_LD -if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then - lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx -else - $as_unset lt_cv_prog_gnu_ld -fi -if test -n "${lt_cv_path_LDCXX+set}"; then - lt_cv_path_LD=$lt_cv_path_LDCXX -else - $as_unset lt_cv_path_LD -fi -test -z "${LDCXX+set}" || LD=$LDCXX -CC=${CXX-"c++"} -compiler=$CC -_LT_AC_TAGVAR(compiler, $1)=$CC -_LT_CC_BASENAME([$compiler]) - -# We don't want -fno-exception wen compiling C++ code, so set the -# no_builtin_flag separately -if test "$GXX" = yes; then - _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' -else - _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= -fi - -if test "$GXX" = yes; then - # Set up default GNU C++ configuration - - AC_PROG_LD - - # Check if GNU C++ uses GNU ld as the underlying linker, since the - # archiving commands below assume that GNU ld is being used. - if test "$with_gnu_ld" = yes; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - - # If archive_cmds runs LD, not CC, wlarc should be empty - # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to - # investigate it a little bit more. (MM) - wlarc='${wl}' - - # ancient GNU ld didn't support --whole-archive et. al. - if eval "`$CC -print-prog-name=ld` --help 2>&1" | \ - grep 'no-whole-archive' > /dev/null; then - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - else - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= - fi - else - with_gnu_ld=no - wlarc= - - # A generic and very simple default shared library creation - # command for GNU C++ for the case where it uses the native - # linker, instead of GNU ld. If possible, this setting should - # overridden to take advantage of the native linker features on - # the platform it is being used on. - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' - fi - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' - -else - GXX=no - with_gnu_ld=no - wlarc= -fi - -# PORTME: fill in a description of your system's C++ link characteristics -AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) -_LT_AC_TAGVAR(ld_shlibs, $1)=yes -case $host_os in - aix3*) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - aix4* | aix5*) - if test "$host_cpu" = ia64; then - # On IA64, the linker does run time linking by default, so we don't - # have to do anything special. - aix_use_runtimelinking=no - exp_sym_flag='-Bexport' - no_entry_flag="" - else - aix_use_runtimelinking=no - - # Test if we are trying to use run time linking or normal - # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. - case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*) - for ld_flag in $LDFLAGS; do - case $ld_flag in - *-brtl*) - aix_use_runtimelinking=yes - break - ;; - esac - done - ;; - esac - - exp_sym_flag='-bexport' - no_entry_flag='-bnoentry' - fi - - # When large executables or shared objects are built, AIX ld can - # have problems creating the table of contents. If linking a library - # or program results in "error TOC overflow" add -mminimal-toc to - # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not - # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. - - _LT_AC_TAGVAR(archive_cmds, $1)='' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - - if test "$GXX" = yes; then - case $host_os in aix4.[[012]]|aix4.[[012]].*) - # We only want to do this on AIX 4.2 and lower, the check - # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` - if test -f "$collect2name" && \ - strings "$collect2name" | grep resolve_lib_name >/dev/null - then - # We have reworked collect2 - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - else - # We have old collect2 - _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported - # It fails to find uninstalled libraries when the uninstalled - # path is not listed in the libpath. Setting hardcode_minus_L - # to unsupported forces relinking - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= - fi - ;; - esac - shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' - fi - else - # not using gcc - if test "$host_cpu" = ia64; then - # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release - # chokes on -Wl,-G. The following line is correct: - shared_flag='-G' - else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' - else - shared_flag='${wl}-bM:SRE' - fi - fi - fi - - # It seems that -bexpall does not export symbols beginning with - # underscore (_), so it is better to generate a list of symbols to export. - _LT_AC_TAGVAR(always_export_symbols, $1)=yes - if test "$aix_use_runtimelinking" = yes; then - # Warning - without using the other runtime loading flags (-brtl), - # -berok will link without error, but may produce a broken library. - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' - # Determine the default libpath from the value encoded in an empty executable. - _LT_AC_SYS_LIBPATH_AIX - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" - - _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" - else - if test "$host_cpu" = ia64; then - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' - _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" - _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" - else - # Determine the default libpath from the value encoded in an empty executable. - _LT_AC_SYS_LIBPATH_AIX - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" - # Warning - without using the other run time loading flags, - # -berok will link without error, but may produce a broken library. - _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' - # Exported symbols can be pulled into shared objects from archives - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience' - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes - # This is similar to how AIX traditionally builds its shared libraries. - _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' - fi - fi - ;; - - beos*) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported - # Joseph Beckenbach says some releases of gcc - # support --undefined. This deserves some investigation. FIXME - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - chorus*) - case $cc_basename in - *) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - - cygwin* | mingw* | pw32*) - # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, - # as there is no search path for DLLs. - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_AC_TAGVAR(always_export_symbols, $1)=no - _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - - if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - darwin* | rhapsody*) - case $host_os in - rhapsody* | darwin1.[[012]]) - _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress' - ;; - *) # Darwin 1.3 on - if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then - _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' - else - case ${MACOSX_DEPLOYMENT_TARGET} in - 10.[[012]]) - _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' - ;; - 10.*) - _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup' - ;; - esac - fi - ;; - esac - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_AC_TAGVAR(hardcode_direct, $1)=no - _LT_AC_TAGVAR(hardcode_automatic, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - - if test "$GXX" = yes ; then - lt_int_apple_cc_single_mod=no - output_verbose_link_cmd='echo' - if $CC -dumpspecs 2>&1 | $EGREP 'single_module' >/dev/null ; then - lt_int_apple_cc_single_mod=yes - fi - if test "X$lt_int_apple_cc_single_mod" = Xyes ; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' - else - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring' - fi - _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds - if test "X$lt_int_apple_cc_single_mod" = Xyes ; then - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - else - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - fi - _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - else - case $cc_basename in - xlc*) - output_verbose_link_cmd='echo' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' - _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - ;; - *) - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - esac - fi - ;; - - dgux*) - case $cc_basename in - ec++*) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - ghcx*) - # Green Hills C++ Compiler - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - freebsd[[12]]*) - # C++ shared libraries reported to be fairly broken before switch to ELF - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - freebsd-elf*) - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - ;; - freebsd* | kfreebsd*-gnu | dragonfly*) - # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF - # conventions - _LT_AC_TAGVAR(ld_shlibs, $1)=yes - ;; - gnu*) - ;; - hpux9*) - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, - # but as the default - # location of the library. - - case $cc_basename in - CC*) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - aCC*) - _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[[-]]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' - ;; - *) - if test "$GXX" = yes; then - _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - else - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - hpux10*|hpux11*) - if test $with_gnu_ld = no; then - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - - case $host_cpu in - hppa*64*|ia64*) - _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' - ;; - *) - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - ;; - esac - fi - case $host_cpu in - hppa*64*|ia64*) - _LT_AC_TAGVAR(hardcode_direct, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - *) - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, - # but as the default - # location of the library. - ;; - esac - - case $cc_basename in - CC*) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - aCC*) - case $host_cpu in - hppa*64*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - ia64*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - *) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - esac - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' - ;; - *) - if test "$GXX" = yes; then - if test $with_gnu_ld = no; then - case $host_cpu in - hppa*64*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - ia64*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - *) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - esac - fi - else - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - interix3*) - _LT_AC_TAGVAR(hardcode_direct, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. - # Instead, shared libraries are loaded at an image base (0x10000000 by - # default) and relocated if they conflict, which is a slow very memory - # consuming and fragmenting process. To avoid this, we pick a random, - # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link - # time. Moving up from 0x10000000 also allows more sbrk(2) space. - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - ;; - irix5* | irix6*) - case $cc_basename in - CC*) - # SGI C++ - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - - # Archives containing C++ object files must be created using - # "CC -ar", where "CC" is the IRIX C++ compiler. This is - # necessary to make sure instantiated templates are included - # in the archive. - _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' - ;; - *) - if test "$GXX" = yes; then - if test "$with_gnu_ld" = no; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - else - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib' - fi - fi - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - ;; - esac - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - ;; - linux*) - case $cc_basename in - KCC*) - # Kuck and Associates, Inc. (KAI) C++ Compiler - - # KCC will only create a shared library if the output file - # ends with ".so" (or ".sl" for HP-UX), so rename the library - # to its proper name (with version) after linking. - _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath,$libdir' - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - - # Archives containing C++ object files must be created using - # "CC -Bstatic", where "CC" is the KAI C++ compiler. - _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' - ;; - icpc*) - # Intel C++ - with_gnu_ld=yes - # version 8.0 and above of icpc choke on multiply defined symbols - # if we add $predep_objects and $postdep_objects, however 7.1 and - # earlier do not add the objects themselves. - case `$CC -V 2>&1` in - *"Version 7."*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - ;; - *) # Version 8.0 or newer - tmp_idyn= - case $host_cpu in - ia64*) tmp_idyn=' -i_dynamic';; - esac - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - ;; - esac - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' - ;; - pgCC*) - # Portland Group C++ compiler - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' - ;; - cxx*) - # Compaq C++ - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' - - runpath_var=LD_RUN_PATH - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' - ;; - esac - ;; - lynxos*) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - m88k*) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - mvs*) - case $cc_basename in - cxx*) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - netbsd*) - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' - wlarc= - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - fi - # Workaround some broken pre-1.5 toolchains - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' - ;; - openbsd2*) - # C++ shared libraries are fairly broken - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - openbsd*) - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - fi - output_verbose_link_cmd='echo' - ;; - osf3*) - case $cc_basename in - KCC*) - # Kuck and Associates, Inc. (KAI) C++ Compiler - - # KCC will only create a shared library if the output file - # ends with ".so" (or ".sl" for HP-UX), so rename the library - # to its proper name (with version) after linking. - _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - - # Archives containing C++ object files must be created using - # "CC -Bstatic", where "CC" is the KAI C++ compiler. - _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' - - ;; - RCC*) - # Rational C++ 2.4.1 - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - cxx*) - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' - ;; - *) - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' - - else - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - osf4* | osf5*) - case $cc_basename in - KCC*) - # Kuck and Associates, Inc. (KAI) C++ Compiler - - # KCC will only create a shared library if the output file - # ends with ".so" (or ".sl" for HP-UX), so rename the library - # to its proper name (with version) after linking. - _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - - # Archives containing C++ object files must be created using - # the KAI C++ compiler. - _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' - ;; - RCC*) - # Rational C++ 2.4.1 - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - cxx*) - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ - echo "-hidden">> $lib.exp~ - $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~ - $rm $lib.exp' - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' - ;; - *) - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' - - else - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - psos*) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - sunos4*) - case $cc_basename in - CC*) - # Sun C++ 4.x - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - lcc*) - # Lucid - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - solaris*) - case $cc_basename in - CC*) - # Sun C++ 4.2, 5.x and Centerline C++ - _LT_AC_TAGVAR(archive_cmds_need_lc,$1)=yes - _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - case $host_os in - solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; - *) - # The C++ compiler is used as linker so we must use $wl - # flag to pass the commands to the underlying system - # linker. We must also pass each convience library through - # to the system linker between allextract/defaultextract. - # The C++ compiler will combine linker options so we - # cannot just pass the convience library names through - # without $wl. - # Supported since Solaris 2.6 (maybe 2.5.1?) - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' - ;; - esac - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - - output_verbose_link_cmd='echo' - - # Archives containing C++ object files must be created using - # "CC -xar", where "CC" is the Sun C++ compiler. This is - # necessary to make sure instantiated templates are included - # in the archive. - _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' - ;; - gcx*) - # Green Hills C++ Compiler - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' - - # The C++ compiler must be used to create the archive. - _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' - ;; - *) - # GNU C++ compiler with Solaris linker - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' - if $CC --version | grep -v '^2\.7' > /dev/null; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ - $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd="$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" - else - # g++ 2.7 appears to require `-G' NOT `-shared' on this - # platform. - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ - $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' - - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd="$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" - fi - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' - fi - ;; - esac - ;; - sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) - _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - runpath_var='LD_RUN_PATH' - - case $cc_basename in - CC*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - ;; - sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not - # link with -lc, and that would cause any symbols used from libc to - # always be unresolved, which means just about no library would - # ever link correctly. If we're not using GNU ld we use -z text - # though, which does catch some bad symbols but isn't as heavy-handed - # as -z defs. - # For security reasons, it is highly recommended that you always - # use absolute paths for naming shared libraries, and exclude the - # DT_RUNPATH tag from executables and libraries. But doing so - # requires that you compile everything twice, which is a pain. - # So that behaviour is only enabled if SCOABSPATH is set to a - # non-empty value in the environment. Most likely only useful for - # creating official distributions of packages. - # This is a hack until libtool officially supports absolute path - # names for shared libraries. - _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' - runpath_var='LD_RUN_PATH' - - case $cc_basename in - CC*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - ;; - tandem*) - case $cc_basename in - NCC*) - # NonStop-UX NCC 3.20 - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - vxworks*) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; -esac -AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) -test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no - -_LT_AC_TAGVAR(GCC, $1)="$GXX" -_LT_AC_TAGVAR(LD, $1)="$LD" - -## CAVEAT EMPTOR: -## There is no encapsulation within the following macros, do not change -## the running order or otherwise move them around unless you know exactly -## what you are doing... -AC_LIBTOOL_POSTDEP_PREDEP($1) -AC_LIBTOOL_PROG_COMPILER_PIC($1) -AC_LIBTOOL_PROG_CC_C_O($1) -AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) -AC_LIBTOOL_PROG_LD_SHLIBS($1) -AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) -AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) - -AC_LIBTOOL_CONFIG($1) - -AC_LANG_POP -CC=$lt_save_CC -LDCXX=$LD -LD=$lt_save_LD -GCC=$lt_save_GCC -with_gnu_ldcxx=$with_gnu_ld -with_gnu_ld=$lt_save_with_gnu_ld -lt_cv_path_LDCXX=$lt_cv_path_LD -lt_cv_path_LD=$lt_save_path_LD -lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld -lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld -])# AC_LIBTOOL_LANG_CXX_CONFIG - -# AC_LIBTOOL_POSTDEP_PREDEP([TAGNAME]) -# ------------------------------------ -# Figure out "hidden" library dependencies from verbose -# compiler output when linking a shared library. -# Parse the compiler output and extract the necessary -# objects, libraries and library flags. -AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP],[ -dnl we can't use the lt_simple_compile_test_code here, -dnl because it contains code intended for an executable, -dnl not a library. It's possible we should let each -dnl tag define a new lt_????_link_test_code variable, -dnl but it's only used here... -ifelse([$1],[],[cat > conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext <> "$cfgfile" -ifelse([$1], [], -[#! $SHELL - -# `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services. -# Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) -# NOTE: Changes made to this file will be lost: look at ltmain.sh. -# -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 -# Free Software Foundation, Inc. -# -# This file is part of GNU Libtool: -# Originally by Gordon Matzigkeit , 1996 -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# A sed program that does not truncate output. -SED=$lt_SED - -# Sed that helps us avoid accidentally triggering echo(1) options like -n. -Xsed="$SED -e 1s/^X//" - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -# The names of the tagged configurations supported by this script. -available_tags= - -# ### BEGIN LIBTOOL CONFIG], -[# ### BEGIN LIBTOOL TAG CONFIG: $tagname]) - -# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: - -# Shell to use when invoking shell scripts. -SHELL=$lt_SHELL - -# Whether or not to build shared libraries. -build_libtool_libs=$enable_shared - -# Whether or not to build static libraries. -build_old_libs=$enable_static - -# Whether or not to add -lc for building shared libraries. -build_libtool_need_lc=$_LT_AC_TAGVAR(archive_cmds_need_lc, $1) - -# Whether or not to disallow shared libs when runtime libs are static -allow_libtool_libs_with_static_runtimes=$_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) - -# Whether or not to optimize for fast installation. -fast_install=$enable_fast_install - -# The host system. -host_alias=$host_alias -host=$host -host_os=$host_os - -# The build system. -build_alias=$build_alias -build=$build -build_os=$build_os - -# An echo program that does not interpret backslashes. -echo=$lt_echo - -# The archiver. -AR=$lt_AR -AR_FLAGS=$lt_AR_FLAGS - -# A C compiler. -LTCC=$lt_LTCC - -# LTCC compiler flags. -LTCFLAGS=$lt_LTCFLAGS - -# A language-specific compiler. -CC=$lt_[]_LT_AC_TAGVAR(compiler, $1) - -# Is the compiler the GNU C compiler? -with_gcc=$_LT_AC_TAGVAR(GCC, $1) - -# An ERE matcher. -EGREP=$lt_EGREP - -# The linker used to build libraries. -LD=$lt_[]_LT_AC_TAGVAR(LD, $1) - -# Whether we need hard or soft links. -LN_S=$lt_LN_S - -# A BSD-compatible nm program. -NM=$lt_NM - -# A symbol stripping program -STRIP=$lt_STRIP - -# Used to examine libraries when file_magic_cmd begins "file" -MAGIC_CMD=$MAGIC_CMD - -# Used on cygwin: DLL creation program. -DLLTOOL="$DLLTOOL" - -# Used on cygwin: object dumper. -OBJDUMP="$OBJDUMP" - -# Used on cygwin: assembler. -AS="$AS" - -# The name of the directory that contains temporary libtool files. -objdir=$objdir - -# How to create reloadable object files. -reload_flag=$lt_reload_flag -reload_cmds=$lt_reload_cmds - -# How to pass a linker flag through the compiler. -wl=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) - -# Object file suffix (normally "o"). -objext="$ac_objext" - -# Old archive suffix (normally "a"). -libext="$libext" - -# Shared library suffix (normally ".so"). -shrext_cmds='$shrext_cmds' - -# Executable file suffix (normally ""). -exeext="$exeext" - -# Additional compiler flags for building library objects. -pic_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) -pic_mode=$pic_mode - -# What is the maximum length of a command? -max_cmd_len=$lt_cv_sys_max_cmd_len - -# Does compiler simultaneously support -c and -o options? -compiler_c_o=$lt_[]_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) - -# Must we lock files when doing compilation? -need_locks=$lt_need_locks - -# Do we need the lib prefix for modules? -need_lib_prefix=$need_lib_prefix - -# Do we need a version for libraries? -need_version=$need_version - -# Whether dlopen is supported. -dlopen_support=$enable_dlopen - -# Whether dlopen of programs is supported. -dlopen_self=$enable_dlopen_self - -# Whether dlopen of statically linked programs is supported. -dlopen_self_static=$enable_dlopen_self_static - -# Compiler flag to prevent dynamic linking. -link_static_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_static, $1) - -# Compiler flag to turn off builtin functions. -no_builtin_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec=$lt_[]_LT_AC_TAGVAR(export_dynamic_flag_spec, $1) - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec=$lt_[]_LT_AC_TAGVAR(whole_archive_flag_spec, $1) - -# Compiler flag to generate thread-safe objects. -thread_safe_flag_spec=$lt_[]_LT_AC_TAGVAR(thread_safe_flag_spec, $1) - -# Library versioning type. -version_type=$version_type - -# Format of library name prefix. -libname_spec=$lt_libname_spec - -# List of archive names. First name is the real one, the rest are links. -# The last name is the one that the linker finds with -lNAME. -library_names_spec=$lt_library_names_spec - -# The coded name of the library, if different from the real name. -soname_spec=$lt_soname_spec - -# Commands used to build and install an old-style archive. -RANLIB=$lt_RANLIB -old_archive_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_cmds, $1) -old_postinstall_cmds=$lt_old_postinstall_cmds -old_postuninstall_cmds=$lt_old_postuninstall_cmds - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_new_cmds, $1) - -# Create a temporary old-style archive to link instead of a shared archive. -old_archive_from_expsyms_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) - -# Commands used to build and install a shared archive. -archive_cmds=$lt_[]_LT_AC_TAGVAR(archive_cmds, $1) -archive_expsym_cmds=$lt_[]_LT_AC_TAGVAR(archive_expsym_cmds, $1) -postinstall_cmds=$lt_postinstall_cmds -postuninstall_cmds=$lt_postuninstall_cmds - -# Commands used to build a loadable module (assumed same as above if empty) -module_cmds=$lt_[]_LT_AC_TAGVAR(module_cmds, $1) -module_expsym_cmds=$lt_[]_LT_AC_TAGVAR(module_expsym_cmds, $1) - -# Commands to strip libraries. -old_striplib=$lt_old_striplib -striplib=$lt_striplib - -# Dependencies to place before the objects being linked to create a -# shared library. -predep_objects=$lt_[]_LT_AC_TAGVAR(predep_objects, $1) - -# Dependencies to place after the objects being linked to create a -# shared library. -postdep_objects=$lt_[]_LT_AC_TAGVAR(postdep_objects, $1) - -# Dependencies to place before the objects being linked to create a -# shared library. -predeps=$lt_[]_LT_AC_TAGVAR(predeps, $1) - -# Dependencies to place after the objects being linked to create a -# shared library. -postdeps=$lt_[]_LT_AC_TAGVAR(postdeps, $1) - -# The library search path used internally by the compiler when linking -# a shared library. -compiler_lib_search_path=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1) - -# Method to check whether dependent libraries are shared objects. -deplibs_check_method=$lt_deplibs_check_method - -# Command to use when deplibs_check_method == file_magic. -file_magic_cmd=$lt_file_magic_cmd - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag=$lt_[]_LT_AC_TAGVAR(allow_undefined_flag, $1) - -# Flag that forces no undefined symbols. -no_undefined_flag=$lt_[]_LT_AC_TAGVAR(no_undefined_flag, $1) - -# Commands used to finish a libtool library installation in a directory. -finish_cmds=$lt_finish_cmds - -# Same as above, but a single script fragment to be evaled but not shown. -finish_eval=$lt_finish_eval - -# Take the output of nm and produce a listing of raw symbols and C names. -global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe - -# Transform the output of nm in a proper C declaration -global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl - -# Transform the output of nm in a C name address pair -global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address - -# This is the shared library runtime path variable. -runpath_var=$runpath_var - -# This is the shared library path variable. -shlibpath_var=$shlibpath_var - -# Is shlibpath searched before the hard-coded library search path? -shlibpath_overrides_runpath=$shlibpath_overrides_runpath - -# How to hardcode a shared library path into an executable. -hardcode_action=$_LT_AC_TAGVAR(hardcode_action, $1) - -# Whether we should hardcode library paths into libraries. -hardcode_into_libs=$hardcode_into_libs - -# Flag to hardcode \$libdir into a binary during linking. -# This must work even if \$libdir does not exist. -hardcode_libdir_flag_spec=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) - -# If ld is used when linking, flag to hardcode \$libdir into -# a binary during linking. This must work even if \$libdir does -# not exist. -hardcode_libdir_flag_spec_ld=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) - -# Whether we need a single -rpath flag with a separated argument. -hardcode_libdir_separator=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_separator, $1) - -# Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the -# resulting binary. -hardcode_direct=$_LT_AC_TAGVAR(hardcode_direct, $1) - -# Set to yes if using the -LDIR flag during linking hardcodes DIR into the -# resulting binary. -hardcode_minus_L=$_LT_AC_TAGVAR(hardcode_minus_L, $1) - -# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into -# the resulting binary. -hardcode_shlibpath_var=$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1) - -# Set to yes if building a shared library automatically hardcodes DIR into the library -# and all subsequent libraries and executables linked against it. -hardcode_automatic=$_LT_AC_TAGVAR(hardcode_automatic, $1) - -# Variables whose values should be saved in libtool wrapper scripts and -# restored at relink time. -variables_saved_for_relink="$variables_saved_for_relink" - -# Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=$_LT_AC_TAGVAR(link_all_deplibs, $1) - -# Compile-time system search path for libraries -sys_lib_search_path_spec=$lt_sys_lib_search_path_spec - -# Run-time system search path for libraries -sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec - -# Fix the shell variable \$srcfile for the compiler. -fix_srcfile_path="$_LT_AC_TAGVAR(fix_srcfile_path, $1)" - -# Set to yes if exported symbols are required. -always_export_symbols=$_LT_AC_TAGVAR(always_export_symbols, $1) - -# The commands to list exported symbols. -export_symbols_cmds=$lt_[]_LT_AC_TAGVAR(export_symbols_cmds, $1) - -# The commands to extract the exported symbol list from a shared archive. -extract_expsyms_cmds=$lt_extract_expsyms_cmds - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms=$lt_[]_LT_AC_TAGVAR(exclude_expsyms, $1) - -# Symbols that must always be exported. -include_expsyms=$lt_[]_LT_AC_TAGVAR(include_expsyms, $1) - -ifelse([$1],[], -[# ### END LIBTOOL CONFIG], -[# ### END LIBTOOL TAG CONFIG: $tagname]) - -__EOF__ - -ifelse([$1],[], [ - case $host_os in - aix3*) - cat <<\EOF >> "$cfgfile" - -# AIX sometimes has problems with the GCC collect2 program. For some -# reason, if we set the COLLECT_NAMES environment variable, the problems -# vanish in a puff of smoke. -if test "X${COLLECT_NAMES+set}" != Xset; then - COLLECT_NAMES= - export COLLECT_NAMES -fi -EOF - ;; - esac - - # We use sed instead of cat because bash on DJGPP gets confused if - # if finds mixed CR/LF and LF-only lines. Since sed operates in - # text mode, it properly converts lines to CR/LF. This bash problem - # is reportedly fixed, but why not run on old versions too? - sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1) - - mv -f "$cfgfile" "$ofile" || \ - (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") - chmod +x "$ofile" -]) -else - # If there is no Makefile yet, we rely on a make rule to execute - # `config.status --recheck' to rerun these tests and create the - # libtool script then. - ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` - if test -f "$ltmain_in"; then - test -f Makefile && make "$ltmain" - fi -fi -])# AC_LIBTOOL_CONFIG - - -# AC_LIBTOOL_PROG_COMPILER_NO_RTTI([TAGNAME]) -# ------------------------------------------- -AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], -[AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl - -_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= - -if test "$GCC" = yes; then - _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' - - AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], - lt_cv_prog_compiler_rtti_exceptions, - [-fno-rtti -fno-exceptions], [], - [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) -fi -])# AC_LIBTOOL_PROG_COMPILER_NO_RTTI - - -# AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE -# --------------------------------- -AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], -[AC_REQUIRE([AC_CANONICAL_HOST]) -AC_REQUIRE([AC_PROG_NM]) -AC_REQUIRE([AC_OBJEXT]) -# Check for command to grab the raw symbol name followed by C symbol from nm. -AC_MSG_CHECKING([command to parse $NM output from $compiler object]) -AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], -[ -# These are sane defaults that work on at least a few old systems. -# [They come from Ultrix. What could be older than Ultrix?!! ;)] - -# Character class describing NM global symbol codes. -symcode='[[BCDEGRST]]' - -# Regexp to match symbols that can be accessed directly from C. -sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' - -# Transform an extracted symbol line into a proper C declaration -lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'" - -# Transform an extracted symbol line into symbol name and symbol address -lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" - -# Define system-specific variables. -case $host_os in -aix*) - symcode='[[BCDT]]' - ;; -cygwin* | mingw* | pw32*) - symcode='[[ABCDGISTW]]' - ;; -hpux*) # Its linker distinguishes data from code symbols - if test "$host_cpu" = ia64; then - symcode='[[ABCDEGRST]]' - fi - lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" - lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" - ;; -linux*) - if test "$host_cpu" = ia64; then - symcode='[[ABCDGIRSTW]]' - lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" - lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" - fi - ;; -irix* | nonstopux*) - symcode='[[BCDEGRST]]' - ;; -osf*) - symcode='[[BCDEGQRST]]' - ;; -solaris*) - symcode='[[BDRT]]' - ;; -sco3.2v5*) - symcode='[[DT]]' - ;; -sysv4.2uw2*) - symcode='[[DT]]' - ;; -sysv5* | sco5v6* | unixware* | OpenUNIX*) - symcode='[[ABDT]]' - ;; -sysv4) - symcode='[[DFNSTU]]' - ;; -esac - -# Handle CRLF in mingw tool chain -opt_cr= -case $build_os in -mingw*) - opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp - ;; -esac - -# If we're using GNU nm, then use its standard symbol codes. -case `$NM -V 2>&1` in -*GNU* | *'with BFD'*) - symcode='[[ABCDGIRSTW]]' ;; -esac - -# Try without a prefix undercore, then with it. -for ac_symprfx in "" "_"; do - - # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. - symxfrm="\\1 $ac_symprfx\\2 \\2" - - # Write the raw and C identifiers. - lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" - - # Check to see that the pipe works correctly. - pipe_works=no - - rm -f conftest* - cat > conftest.$ac_ext < $nlist) && test -s "$nlist"; then - # Try sorting and uniquifying the output. - if sort "$nlist" | uniq > "$nlist"T; then - mv -f "$nlist"T "$nlist" - else - rm -f "$nlist"T - fi - - # Make sure that we snagged all the symbols we need. - if grep ' nm_test_var$' "$nlist" >/dev/null; then - if grep ' nm_test_func$' "$nlist" >/dev/null; then - cat < conftest.$ac_ext -#ifdef __cplusplus -extern "C" { -#endif - -EOF - # Now generate the symbol file. - eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext' - - cat <> conftest.$ac_ext -#if defined (__STDC__) && __STDC__ -# define lt_ptr_t void * -#else -# define lt_ptr_t char * -# define const -#endif - -/* The mapping between symbol names and symbols. */ -const struct { - const char *name; - lt_ptr_t address; -} -lt_preloaded_symbols[[]] = -{ -EOF - $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext - cat <<\EOF >> conftest.$ac_ext - {0, (lt_ptr_t) 0} -}; - -#ifdef __cplusplus -} -#endif -EOF - # Now try linking the two files. - mv conftest.$ac_objext conftstm.$ac_objext - lt_save_LIBS="$LIBS" - lt_save_CFLAGS="$CFLAGS" - LIBS="conftstm.$ac_objext" - CFLAGS="$CFLAGS$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" - if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then - pipe_works=yes - fi - LIBS="$lt_save_LIBS" - CFLAGS="$lt_save_CFLAGS" - else - echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD - fi - else - echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD - fi - else - echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD - fi - else - echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD - cat conftest.$ac_ext >&5 - fi - rm -f conftest* conftst* - - # Do not use the global_symbol_pipe unless it works. - if test "$pipe_works" = yes; then - break - else - lt_cv_sys_global_symbol_pipe= - fi -done -]) -if test -z "$lt_cv_sys_global_symbol_pipe"; then - lt_cv_sys_global_symbol_to_cdecl= -fi -if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then - AC_MSG_RESULT(failed) -else - AC_MSG_RESULT(ok) -fi -]) # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE - - -# AC_LIBTOOL_PROG_COMPILER_PIC([TAGNAME]) -# --------------------------------------- -AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC], -[_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)= -_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= -_LT_AC_TAGVAR(lt_prog_compiler_static, $1)= - -AC_MSG_CHECKING([for $compiler option to produce PIC]) - ifelse([$1],[CXX],[ - # C++ specific cases for pic, static, wl, etc. - if test "$GXX" = yes; then - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' - - case $host_os in - aix*) - # All AIX code is PIC. - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - fi - ;; - amigaos*) - # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' - ;; - beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) - # PIC is the default for these OSes. - ;; - mingw* | os2* | pw32*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' - ;; - darwin* | rhapsody*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' - ;; - *djgpp*) - # DJGPP does not support shared libraries at all - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= - ;; - interix3*) - # Interix 3.x gcc -fpic/-fPIC options generate broken code. - # Instead, we relocate shared libraries at runtime. - ;; - sysv4*MP*) - if test -d /usr/nec; then - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic - fi - ;; - hpux*) - # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but - # not for PA HP-UX. - case $host_cpu in - hppa*64*|ia64*) - ;; - *) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - esac - ;; - *) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - esac - else - case $host_os in - aix4* | aix5*) - # All AIX code is PIC. - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - else - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' - fi - ;; - chorus*) - case $cc_basename in - cxch68*) - # Green Hills C++ Compiler - # _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" - ;; - esac - ;; - darwin*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - case $cc_basename in - xlc*) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - ;; - esac - ;; - dgux*) - case $cc_basename in - ec++*) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - ;; - ghcx*) - # Green Hills C++ Compiler - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - ;; - *) - ;; - esac - ;; - freebsd* | kfreebsd*-gnu | dragonfly*) - # FreeBSD uses GNU C++ - ;; - hpux9* | hpux10* | hpux11*) - case $cc_basename in - CC*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' - if test "$host_cpu" != ia64; then - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' - fi - ;; - aCC*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' - ;; - esac - ;; - *) - ;; - esac - ;; - interix*) - # This is c89, which is MS Visual C++ (no shared libs) - # Anyone wants to do a port? - ;; - irix5* | irix6* | nonstopux*) - case $cc_basename in - CC*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - # CC pic flag -KPIC is the default. - ;; - *) - ;; - esac - ;; - linux*) - case $cc_basename in - KCC*) - # KAI C++ Compiler - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - icpc* | ecpc*) - # Intel C++ - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' - ;; - pgCC*) - # Portland Group C++ compiler. - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - cxx*) - # Compaq C++ - # Make sure the PIC flag is empty. It appears that all Alpha - # Linux and Compaq Tru64 Unix objects are PIC. - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - *) - ;; - esac - ;; - lynxos*) - ;; - m88k*) - ;; - mvs*) - case $cc_basename in - cxx*) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' - ;; - *) - ;; - esac - ;; - netbsd*) - ;; - osf3* | osf4* | osf5*) - case $cc_basename in - KCC*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' - ;; - RCC*) - # Rational C++ 2.4.1 - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - ;; - cxx*) - # Digital/Compaq C++ - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # Make sure the PIC flag is empty. It appears that all Alpha - # Linux and Compaq Tru64 Unix objects are PIC. - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - *) - ;; - esac - ;; - psos*) - ;; - solaris*) - case $cc_basename in - CC*) - # Sun C++ 4.2, 5.x and Centerline C++ - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' - ;; - gcx*) - # Green Hills C++ Compiler - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' - ;; - *) - ;; - esac - ;; - sunos4*) - case $cc_basename in - CC*) - # Sun C++ 4.x - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - lcc*) - # Lucid - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - ;; - *) - ;; - esac - ;; - tandem*) - case $cc_basename in - NCC*) - # NonStop-UX NCC 3.20 - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - ;; - *) - ;; - esac - ;; - sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) - case $cc_basename in - CC*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - esac - ;; - vxworks*) - ;; - *) - _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no - ;; - esac - fi -], -[ - if test "$GCC" = yes; then - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' - - case $host_os in - aix*) - # All AIX code is PIC. - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - fi - ;; - - amigaos*) - # FIXME: we need at least 68020 code to build shared libraries, but - # adding the `-m68020' flag to GCC prevents building anything better, - # like `-m68040'. - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' - ;; - - beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) - # PIC is the default for these OSes. - ;; - - mingw* | pw32* | os2*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' - ;; - - darwin* | rhapsody*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' - ;; - - interix3*) - # Interix 3.x gcc -fpic/-fPIC options generate broken code. - # Instead, we relocate shared libraries at runtime. - ;; - - msdosdjgpp*) - # Just because we use GCC doesn't mean we suddenly get shared libraries - # on systems that don't support them. - _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no - enable_shared=no - ;; - - sysv4*MP*) - if test -d /usr/nec; then - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic - fi - ;; - - hpux*) - # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but - # not for PA HP-UX. - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - esac - ;; - - *) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - esac - else - # PORTME Check for flag to pass linker flags through the system compiler. - case $host_os in - aix*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - else - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' - fi - ;; - darwin*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - case $cc_basename in - xlc*) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - ;; - esac - ;; - - mingw* | pw32* | os2*) - # This hack is so that the source file can tell whether it is being - # built for inclusion in a dll (and should export symbols for example). - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' - ;; - - hpux9* | hpux10* | hpux11*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but - # not for PA HP-UX. - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' - ;; - esac - # Is there a better lt_prog_compiler_static that works with the bundled CC? - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' - ;; - - irix5* | irix6* | nonstopux*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # PIC (with -KPIC) is the default. - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - - newsos6) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - linux*) - case $cc_basename in - icc* | ecc*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' - ;; - pgcc* | pgf77* | pgf90* | pgf95*) - # Portland Group compilers (*not* the Pentium gcc compiler, - # which looks to be a dead project) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - ccc*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # All Alpha code is PIC. - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - esac - ;; - - osf3* | osf4* | osf5*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # All OSF/1 code is PIC. - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - - solaris*) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - case $cc_basename in - f77* | f90* | f95*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; - *) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; - esac - ;; - - sunos4*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - sysv4 | sysv4.2uw2* | sysv4.3*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - sysv4*MP*) - if test -d /usr/nec ;then - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - fi - ;; - - sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - unicos*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no - ;; - - uts4*) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - *) - _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no - ;; - esac - fi -]) -AC_MSG_RESULT([$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)]) - -# -# Check to make sure the PIC flag actually works. -# -if test -n "$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)"; then - AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) works], - _LT_AC_TAGVAR(lt_prog_compiler_pic_works, $1), - [$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])], [], - [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) in - "" | " "*) ;; - *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)" ;; - esac], - [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= - _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) -fi -case $host_os in - # For platforms which do not support PIC, -DPIC is meaningless: - *djgpp*) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= - ;; - *) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])" - ;; -esac - -# -# Check to make sure the static flag actually works. -# -wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_AC_TAGVAR(lt_prog_compiler_static, $1)\" -AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], - _LT_AC_TAGVAR(lt_prog_compiler_static_works, $1), - $lt_tmp_static_flag, - [], - [_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=]) -]) - - -# AC_LIBTOOL_PROG_LD_SHLIBS([TAGNAME]) -# ------------------------------------ -# See if the linker supports building shared libraries. -AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS], -[AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) -ifelse([$1],[CXX],[ - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - case $host_os in - aix4* | aix5*) - # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - if $NM -V 2>&1 | grep 'GNU' > /dev/null; then - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' - else - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' - fi - ;; - pw32*) - _LT_AC_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" - ;; - cygwin* | mingw*) - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]] /s/.* \([[^ ]]*\)/\1 DATA/;/^.* __nm__/s/^.* __nm__\([[^ ]]*\) [[^ ]]*/\1 DATA/;/^I /d;/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols' - ;; - *) - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - ;; - esac -],[ - runpath_var= - _LT_AC_TAGVAR(allow_undefined_flag, $1)= - _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no - _LT_AC_TAGVAR(archive_cmds, $1)= - _LT_AC_TAGVAR(archive_expsym_cmds, $1)= - _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)= - _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)= - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= - _LT_AC_TAGVAR(thread_safe_flag_spec, $1)= - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= - _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= - _LT_AC_TAGVAR(hardcode_direct, $1)=no - _LT_AC_TAGVAR(hardcode_minus_L, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported - _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown - _LT_AC_TAGVAR(hardcode_automatic, $1)=no - _LT_AC_TAGVAR(module_cmds, $1)= - _LT_AC_TAGVAR(module_expsym_cmds, $1)= - _LT_AC_TAGVAR(always_export_symbols, $1)=no - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - # include_expsyms should be a list of space-separated symbols to be *always* - # included in the symbol list - _LT_AC_TAGVAR(include_expsyms, $1)= - # exclude_expsyms can be an extended regexp of symbols to exclude - # it will be wrapped by ` (' and `)$', so one must not match beginning or - # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', - # as well as any symbol that contains `d'. - _LT_AC_TAGVAR(exclude_expsyms, $1)="_GLOBAL_OFFSET_TABLE_" - # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out - # platforms (ab)use it in PIC code, but their linkers get confused if - # the symbol is explicitly referenced. Since portable code cannot - # rely on this symbol name, it's probably fine to never include it in - # preloaded symbol tables. - extract_expsyms_cmds= - # Just being paranoid about ensuring that cc_basename is set. - _LT_CC_BASENAME([$compiler]) - case $host_os in - cygwin* | mingw* | pw32*) - # FIXME: the MSVC++ port hasn't been tested in a loooong time - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - if test "$GCC" != yes; then - with_gnu_ld=no - fi - ;; - interix*) - # we just hope/assume this is gcc and not c89 (= MSVC++) - with_gnu_ld=yes - ;; - openbsd*) - with_gnu_ld=no - ;; - esac - - _LT_AC_TAGVAR(ld_shlibs, $1)=yes - if test "$with_gnu_ld" = yes; then - # If archive_cmds runs LD, not CC, wlarc should be empty - wlarc='${wl}' - - # Set some defaults for GNU ld with shared library support. These - # are reset later if shared libraries are not supported. Putting them - # here allows them to be overridden if necessary. - runpath_var=LD_RUN_PATH - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - # ancient GNU ld didn't support --whole-archive et. al. - if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - else - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= - fi - supports_anon_versioning=no - case `$LD -v 2>/dev/null` in - *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 - *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... - *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... - *\ 2.11.*) ;; # other 2.11 versions - *) supports_anon_versioning=yes ;; - esac - - # See if GNU ld supports shared libraries. - case $host_os in - aix3* | aix4* | aix5*) - # On AIX/PPC, the GNU linker is very broken - if test "$host_cpu" != ia64; then - _LT_AC_TAGVAR(ld_shlibs, $1)=no - cat <&2 - -*** Warning: the GNU linker, at least up to release 2.9.1, is reported -*** to be unable to reliably create shared libraries on AIX. -*** Therefore, libtool is disabling shared libraries support. If you -*** really care for shared libraries, you may want to modify your PATH -*** so that a non-GNU linker is found, and then restart. - -EOF - fi - ;; - - amigaos*) - _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - - # Samuel A. Falvo II reports - # that the semantics of dynamic libraries on AmigaOS, at least up - # to version 4, is to share data among multiple programs linked - # with the same dynamic library. Since this doesn't match the - # behavior of shared libraries on other platforms, we can't use - # them. - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - - beos*) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported - # Joseph Beckenbach says some releases of gcc - # support --undefined. This deserves some investigation. FIXME - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - cygwin* | mingw* | pw32*) - # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, - # as there is no search path for DLLs. - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_AC_TAGVAR(always_export_symbols, $1)=no - _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]] /s/.* \([[^ ]]*\)/\1 DATA/'\'' | $SED -e '\''/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols' - - if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file (1st line - # is EXPORTS), use it as is; otherwise, prepend... - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - interix3*) - _LT_AC_TAGVAR(hardcode_direct, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. - # Instead, shared libraries are loaded at an image base (0x10000000 by - # default) and relocated if they conflict, which is a slow very memory - # consuming and fragmenting process. To avoid this, we pick a random, - # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link - # time. Moving up from 0x10000000 also allows more sbrk(2) space. - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - ;; - - linux*) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - tmp_addflag= - case $cc_basename,$host_cpu in - pgcc*) # Portland Group C compiler - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_addflag=' $pic_flag' - ;; - pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_addflag=' $pic_flag -Mnomain' ;; - ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 - tmp_addflag=' -i_dynamic' ;; - efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 - tmp_addflag=' -i_dynamic -nofor_main' ;; - ifc* | ifort*) # Intel Fortran compiler - tmp_addflag=' -nofor_main' ;; - esac - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - - if test $supports_anon_versioning = yes; then - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - $echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' - fi - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - netbsd*) - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' - wlarc= - else - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - fi - ;; - - solaris*) - if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then - _LT_AC_TAGVAR(ld_shlibs, $1)=no - cat <&2 - -*** Warning: The releases 2.8.* of the GNU linker cannot reliably -*** create shared libraries on Solaris systems. Therefore, libtool -*** is disabling shared libraries support. We urge you to upgrade GNU -*** binutils to release 2.9.1 or newer. Another option is to modify -*** your PATH or compiler configuration so that the native linker is -*** used, and then restart. - -EOF - elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) - case `$LD -v 2>&1` in - *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) - _LT_AC_TAGVAR(ld_shlibs, $1)=no - cat <<_LT_EOF 1>&2 - -*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not -*** reliably create shared libraries on SCO systems. Therefore, libtool -*** is disabling shared libraries support. We urge you to upgrade GNU -*** binutils to release 2.16.91.0.3 or newer. Another option is to modify -*** your PATH or compiler configuration so that the native linker is -*** used, and then restart. - -_LT_EOF - ;; - *) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - - sunos4*) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' - wlarc= - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - *) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - - if test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no; then - runpath_var= - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= - fi - else - # PORTME fill in a description of your system's linker (not GNU ld) - case $host_os in - aix3*) - _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_AC_TAGVAR(always_export_symbols, $1)=yes - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' - # Note: this linker hardcodes the directories in LIBPATH if there - # are no directories specified by -L. - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then - # Neither direct hardcoding nor static linking is supported with a - # broken collect2. - _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported - fi - ;; - - aix4* | aix5*) - if test "$host_cpu" = ia64; then - # On IA64, the linker does run time linking by default, so we don't - # have to do anything special. - aix_use_runtimelinking=no - exp_sym_flag='-Bexport' - no_entry_flag="" - else - # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - if $NM -V 2>&1 | grep 'GNU' > /dev/null; then - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' - else - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' - fi - aix_use_runtimelinking=no - - # Test if we are trying to use run time linking or normal - # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. - case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*) - for ld_flag in $LDFLAGS; do - if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then - aix_use_runtimelinking=yes - break - fi - done - ;; - esac - - exp_sym_flag='-bexport' - no_entry_flag='-bnoentry' - fi - - # When large executables or shared objects are built, AIX ld can - # have problems creating the table of contents. If linking a library - # or program results in "error TOC overflow" add -mminimal-toc to - # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not - # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. - - _LT_AC_TAGVAR(archive_cmds, $1)='' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - - if test "$GCC" = yes; then - case $host_os in aix4.[[012]]|aix4.[[012]].*) - # We only want to do this on AIX 4.2 and lower, the check - # below for broken collect2 doesn't work under 4.3+ - collect2name=`${CC} -print-prog-name=collect2` - if test -f "$collect2name" && \ - strings "$collect2name" | grep resolve_lib_name >/dev/null - then - # We have reworked collect2 - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - else - # We have old collect2 - _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported - # It fails to find uninstalled libraries when the uninstalled - # path is not listed in the libpath. Setting hardcode_minus_L - # to unsupported forces relinking - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= - fi - ;; - esac - shared_flag='-shared' - if test "$aix_use_runtimelinking" = yes; then - shared_flag="$shared_flag "'${wl}-G' - fi - else - # not using gcc - if test "$host_cpu" = ia64; then - # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release - # chokes on -Wl,-G. The following line is correct: - shared_flag='-G' - else - if test "$aix_use_runtimelinking" = yes; then - shared_flag='${wl}-G' - else - shared_flag='${wl}-bM:SRE' - fi - fi - fi - - # It seems that -bexpall does not export symbols beginning with - # underscore (_), so it is better to generate a list of symbols to export. - _LT_AC_TAGVAR(always_export_symbols, $1)=yes - if test "$aix_use_runtimelinking" = yes; then - # Warning - without using the other runtime loading flags (-brtl), - # -berok will link without error, but may produce a broken library. - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' - # Determine the default libpath from the value encoded in an empty executable. - _LT_AC_SYS_LIBPATH_AIX - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" - _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" - else - if test "$host_cpu" = ia64; then - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' - _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" - _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" - else - # Determine the default libpath from the value encoded in an empty executable. - _LT_AC_SYS_LIBPATH_AIX - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" - # Warning - without using the other run time loading flags, - # -berok will link without error, but may produce a broken library. - _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' - # Exported symbols can be pulled into shared objects from archives - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience' - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes - # This is similar to how AIX traditionally builds its shared libraries. - _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' - fi - fi - ;; - - amigaos*) - _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - # see comment about different semantics on the GNU ld section - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - - bsdi[[45]]*) - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic - ;; - - cygwin* | mingw* | pw32*) - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - # hardcode_libdir_flag_spec is actually meaningless, as there is - # no search path for DLLs. - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' - _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported - # Tell ltmain to make .lib files, not .a files. - libext=lib - # Tell ltmain to make .dll files, not .so files. - shrext_cmds=".dll" - # FIXME: Setting linknames here is a bad hack. - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' - # The linker will automatically build a .lib file if we build a DLL. - _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='true' - # FIXME: Should let the user specify the lib program. - _LT_AC_TAGVAR(old_archive_cmds, $1)='lib /OUT:$oldlib$oldobjs$old_deplibs' - _LT_AC_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`' - _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - ;; - - darwin* | rhapsody*) - case $host_os in - rhapsody* | darwin1.[[012]]) - _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress' - ;; - *) # Darwin 1.3 on - if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then - _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' - else - case ${MACOSX_DEPLOYMENT_TARGET} in - 10.[[012]]) - _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' - ;; - 10.*) - _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup' - ;; - esac - fi - ;; - esac - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_AC_TAGVAR(hardcode_direct, $1)=no - _LT_AC_TAGVAR(hardcode_automatic, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - if test "$GCC" = yes ; then - output_verbose_link_cmd='echo' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' - _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - else - case $cc_basename in - xlc*) - output_verbose_link_cmd='echo' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' - _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - ;; - *) - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - esac - fi - ;; - - dgux*) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - freebsd1*) - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - - # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor - # support. Future versions do this automatically, but an explicit c++rt0.o - # does not break anything, and helps significantly (at the cost of a little - # extra space). - freebsd2.2*) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - # Unfortunately, older versions of FreeBSD 2 do not have this feature. - freebsd2*) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - # FreeBSD 3 and greater uses gcc -shared to do shared libraries. - freebsd* | kfreebsd*-gnu | dragonfly*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - hpux9*) - if test "$GCC" = yes; then - _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - else - _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' - fi - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - ;; - - hpux10*) - if test "$GCC" = yes -a "$with_gnu_ld" = no; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - else - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' - fi - if test "$with_gnu_ld" = no; then - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - fi - ;; - - hpux11*) - if test "$GCC" = yes -a "$with_gnu_ld" = no; then - case $host_cpu in - hppa*64*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - else - case $host_cpu in - hppa*64*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - fi - if test "$with_gnu_ld" = no; then - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - - case $host_cpu in - hppa*64*|ia64*) - _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' - _LT_AC_TAGVAR(hardcode_direct, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - *) - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - ;; - esac - fi - ;; - - irix5* | irix6* | nonstopux*) - if test "$GCC" = yes; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - else - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir' - fi - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - ;; - - netbsd*) - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out - else - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF - fi - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - newsos6) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - openbsd*) - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - else - case $host_os in - openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - ;; - *) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - ;; - esac - fi - ;; - - os2*) - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_AC_TAGVAR(archive_cmds, $1)='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' - _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' - ;; - - osf3*) - if test "$GCC" = yes; then - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - else - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - fi - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - ;; - - osf4* | osf5*) # as osf3* with the addition of -msym flag - if test "$GCC" = yes; then - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - else - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ - $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' - - # Both c and cxx compiler support -rpath directly - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' - fi - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - ;; - - solaris*) - _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text' - if test "$GCC" = yes; then - wlarc='${wl}' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ - $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' - else - wlarc='' - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ - $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' - fi - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - case $host_os in - solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; - *) - # The compiler driver will combine linker options so we - # cannot just pass the convience library names through - # without $wl, iff we do not link with $LD. - # Luckily, gcc supports the same syntax we need for Sun Studio. - # Supported since Solaris 2.6 (maybe 2.5.1?) - case $wlarc in - '') - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; - *) - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; - esac ;; - esac - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - ;; - - sunos4*) - if test "x$host_vendor" = xsequent; then - # Use $CC to link under sequent, because it throws in some extra .o - # files that make .init and .fini sections work. - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' - else - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' - fi - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - sysv4) - case $host_vendor in - sni) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes # is this really true??? - ;; - siemens) - ## LD is ld it makes a PLAMLIB - ## CC just makes a GrossModule. - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' - _LT_AC_TAGVAR(hardcode_direct, $1)=no - ;; - motorola) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie - ;; - esac - runpath_var='LD_RUN_PATH' - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - sysv4.3*) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' - ;; - - sysv4*MP*) - if test -d /usr/nec; then - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - runpath_var=LD_RUN_PATH - hardcode_runpath_var=yes - _LT_AC_TAGVAR(ld_shlibs, $1)=yes - fi - ;; - - sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7*) - _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - runpath_var='LD_RUN_PATH' - - if test "$GCC" = yes; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - else - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - sysv5* | sco3.2v5* | sco5v6*) - # Note: We can NOT use -z defs as we might desire, because we do not - # link with -lc, and that would cause any symbols used from libc to - # always be unresolved, which means just about no library would - # ever link correctly. If we're not using GNU ld we use -z text - # though, which does catch some bad symbols but isn't as heavy-handed - # as -z defs. - _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' - runpath_var='LD_RUN_PATH' - - if test "$GCC" = yes; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - else - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - uts4*) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - *) - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - esac - fi -]) -AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) -test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no - -# -# Do we need to explicitly link libc? -# -case "x$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)" in -x|xyes) - # Assume -lc should be added - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes - - if test "$enable_shared" = yes && test "$GCC" = yes; then - case $_LT_AC_TAGVAR(archive_cmds, $1) in - *'~'*) - # FIXME: we may have to deal with multi-command sequences. - ;; - '$CC '*) - # Test whether the compiler implicitly links with -lc since on some - # systems, -lgcc has to come before -lc. If gcc already passes -lc - # to ld, don't add -lc before -lgcc. - AC_MSG_CHECKING([whether -lc should be explicitly linked in]) - $rm conftest* - printf "$lt_simple_compile_test_code" > conftest.$ac_ext - - if AC_TRY_EVAL(ac_compile) 2>conftest.err; then - soname=conftest - lib=conftest - libobjs=conftest.$ac_objext - deplibs= - wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) - pic_flag=$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) - compiler_flags=-v - linker_flags=-v - verstring= - output_objdir=. - libname=conftest - lt_save_allow_undefined_flag=$_LT_AC_TAGVAR(allow_undefined_flag, $1) - _LT_AC_TAGVAR(allow_undefined_flag, $1)= - if AC_TRY_EVAL(_LT_AC_TAGVAR(archive_cmds, $1) 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) - then - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - else - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes - fi - _LT_AC_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag - else - cat conftest.err 1>&5 - fi - $rm conftest* - AC_MSG_RESULT([$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)]) - ;; - esac - fi - ;; -esac -])# AC_LIBTOOL_PROG_LD_SHLIBS - - -# _LT_AC_FILE_LTDLL_C -# ------------------- -# Be careful that the start marker always follows a newline. -AC_DEFUN([_LT_AC_FILE_LTDLL_C], [ -# /* ltdll.c starts here */ -# #define WIN32_LEAN_AND_MEAN -# #include -# #undef WIN32_LEAN_AND_MEAN -# #include -# -# #ifndef __CYGWIN__ -# # ifdef __CYGWIN32__ -# # define __CYGWIN__ __CYGWIN32__ -# # endif -# #endif -# -# #ifdef __cplusplus -# extern "C" { -# #endif -# BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved); -# #ifdef __cplusplus -# } -# #endif -# -# #ifdef __CYGWIN__ -# #include -# DECLARE_CYGWIN_DLL( DllMain ); -# #endif -# HINSTANCE __hDllInstance_base; -# -# BOOL APIENTRY -# DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved) -# { -# __hDllInstance_base = hInst; -# return TRUE; -# } -# /* ltdll.c ends here */ -])# _LT_AC_FILE_LTDLL_C - - -# _LT_AC_TAGVAR(VARNAME, [TAGNAME]) -# --------------------------------- -AC_DEFUN([_LT_AC_TAGVAR], [ifelse([$2], [], [$1], [$1_$2])]) - - -# old names -AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL]) -AC_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) -AC_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) -AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) -AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) -AC_DEFUN([AM_PROG_LD], [AC_PROG_LD]) -AC_DEFUN([AM_PROG_NM], [AC_PROG_NM]) - -# This is just to silence aclocal about the macro not being used -ifelse([AC_DISABLE_FAST_INSTALL]) - -AC_DEFUN([LT_AC_PROG_GCJ], -[AC_CHECK_TOOL(GCJ, gcj, no) - test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" - AC_SUBST(GCJFLAGS) -]) - -AC_DEFUN([LT_AC_PROG_RC], -[AC_CHECK_TOOL(RC, windres, no) -]) - -############################################################ -# NOTE: This macro has been submitted for inclusion into # -# GNU Autoconf as AC_PROG_SED. When it is available in # -# a released version of Autoconf we should remove this # -# macro and use it instead. # -############################################################ -# LT_AC_PROG_SED -# -------------- -# Check for a fully-functional sed program, that truncates -# as few characters as possible. Prefer GNU sed if found. -AC_DEFUN([LT_AC_PROG_SED], -[AC_MSG_CHECKING([for a sed that does not truncate output]) -AC_CACHE_VAL(lt_cv_path_SED, -[# Loop through the user's path and test for sed and gsed. -# Then use that list of sed's as ones to test for truncation. -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for lt_ac_prog in sed gsed; do - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then - lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" - fi - done - done -done -lt_ac_max=0 -lt_ac_count=0 -# Add /usr/xpg4/bin/sed as it is typically found on Solaris -# along with /bin/sed that truncates output. -for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do - test ! -f $lt_ac_sed && continue - cat /dev/null > conftest.in - lt_ac_count=0 - echo $ECHO_N "0123456789$ECHO_C" >conftest.in - # Check for GNU sed and select it if it is found. - if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then - lt_cv_path_SED=$lt_ac_sed - break - fi - while true; do - cat conftest.in conftest.in >conftest.tmp - mv conftest.tmp conftest.in - cp conftest.in conftest.nl - echo >>conftest.nl - $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break - cmp -s conftest.out conftest.nl || break - # 10000 chars as input seems more than enough - test $lt_ac_count -gt 10 && break - lt_ac_count=`expr $lt_ac_count + 1` - if test $lt_ac_count -gt $lt_ac_max; then - lt_ac_max=$lt_ac_count - lt_cv_path_SED=$lt_ac_sed - fi - done -done -]) -SED=$lt_cv_path_SED -AC_MSG_RESULT([$SED]) -]) diff --git a/acinclude/alsa.m4 b/acinclude/alsa.m4 new file mode 100644 index 000000000..d818e70db --- /dev/null +++ b/acinclude/alsa.m4 @@ -0,0 +1,145 @@ +############################################################################## +dnl Configure Paths for Alsa +dnl Some modifications by Richard Boulton +dnl Christopher Lansdown +dnl Jaroslav Kysela +dnl Last modification: alsa.m4,v 1.23 2004/01/16 18:14:22 tiwai Exp +dnl AM_PATH_ALSA([MINIMUM-VERSION [, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) +dnl Test for libasound, and define ALSA_CFLAGS and ALSA_LIBS as appropriate. +dnl enables arguments --with-alsa-prefix= +dnl --with-alsa-enc-prefix= +dnl --disable-alsatest +dnl +dnl For backwards compatibility, if ACTION_IF_NOT_FOUND is not specified, +dnl and the alsa libraries are not found, a fatal AC_MSG_ERROR() will result. +dnl +AC_DEFUN([AM_PATH_ALSA], +[dnl Save the original CFLAGS, LDFLAGS, and LIBS +alsa_save_CFLAGS="$CFLAGS" +alsa_save_LDFLAGS="$LDFLAGS" +alsa_save_LIBS="$LIBS" +alsa_found=yes + +dnl +dnl Get the cflags and libraries for alsa +dnl +AC_ARG_WITH(alsa-prefix, +[ --with-alsa-prefix=PFX Prefix where Alsa library is installed(optional)], +[alsa_prefix="$withval"], [alsa_prefix=""]) + +AC_ARG_WITH(alsa-inc-prefix, +[ --with-alsa-inc-prefix=PFX Prefix where include libraries are (optional)], +[alsa_inc_prefix="$withval"], [alsa_inc_prefix=""]) + +dnl FIXME: this is not yet implemented +AC_ARG_ENABLE(alsatest, +[ --disable-alsatest Do not try to compile and run a test Alsa program], +[enable_alsatest="$enableval"], +[enable_alsatest=yes]) + +dnl Add any special include directories +AC_MSG_CHECKING(for ALSA CFLAGS) +if test "$alsa_inc_prefix" != "" ; then + ALSA_CFLAGS="$ALSA_CFLAGS -I$alsa_inc_prefix" + CFLAGS="$CFLAGS -I$alsa_inc_prefix" +fi +AC_MSG_RESULT($ALSA_CFLAGS) + +dnl add any special lib dirs +AC_MSG_CHECKING(for ALSA LDFLAGS) +if test "$alsa_prefix" != "" ; then + ALSA_LIBS="$ALSA_LIBS -L$alsa_prefix" + LDFLAGS="$LDFLAGS $ALSA_LIBS" +fi + +dnl add the alsa library +ALSA_LIBS="$ALSA_LIBS -lasound -lm -ldl -lpthread" +LIBS=`echo $LIBS | sed 's/-lm//'` +LIBS=`echo $LIBS | sed 's/-ldl//'` +LIBS=`echo $LIBS | sed 's/-lpthread//'` +LIBS=`echo $LIBS | sed 's/ //'` +LIBS="$ALSA_LIBS $LIBS" +AC_MSG_RESULT($ALSA_LIBS) + +dnl Check for a working version of libasound that is of the right version. +min_alsa_version=ifelse([$1], ,0.1.1,$1) +AC_MSG_CHECKING(for libasound headers version >= $min_alsa_version) +no_alsa="" + alsa_min_major_version=`echo $min_alsa_version | \ + sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` + alsa_min_minor_version=`echo $min_alsa_version | \ + sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` + alsa_min_micro_version=`echo $min_alsa_version | \ + sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` + +AC_LANG_SAVE +AC_LANG_C +AC_TRY_COMPILE([ +#include +], [ +/* ensure backward compatibility */ +#if !defined(SND_LIB_MAJOR) && defined(SOUNDLIB_VERSION_MAJOR) +#define SND_LIB_MAJOR SOUNDLIB_VERSION_MAJOR +#endif +#if !defined(SND_LIB_MINOR) && defined(SOUNDLIB_VERSION_MINOR) +#define SND_LIB_MINOR SOUNDLIB_VERSION_MINOR +#endif +#if !defined(SND_LIB_SUBMINOR) && defined(SOUNDLIB_VERSION_SUBMINOR) +#define SND_LIB_SUBMINOR SOUNDLIB_VERSION_SUBMINOR +#endif + +# if(SND_LIB_MAJOR > $alsa_min_major_version) + exit(0); +# else +# if(SND_LIB_MAJOR < $alsa_min_major_version) +# error not present +# endif + +# if(SND_LIB_MINOR > $alsa_min_minor_version) + exit(0); +# else +# if(SND_LIB_MINOR < $alsa_min_minor_version) +# error not present +# endif + +# if(SND_LIB_SUBMINOR < $alsa_min_micro_version) +# error not present +# endif +# endif +# endif +exit(0); +], + [AC_MSG_RESULT(found.)], + [AC_MSG_RESULT(not present.) + ifelse([$3], , [AC_MSG_ERROR(Sufficiently new version of libasound not found.)]) + alsa_found=no] +) +AC_LANG_RESTORE + +dnl Now that we know that we have the right version, let's see if we have the library and not just the headers. +if test "x$enable_alsatest" = "xyes"; then +AC_CHECK_LIB([asound], [snd_ctl_open],, + [ifelse([$3], , [AC_MSG_ERROR(No linkable libasound was found.)]) + alsa_found=no] +) +fi + +if test "x$alsa_found" = "xyes" ; then + ifelse([$2], , :, [$2]) + LIBS=`echo $LIBS | sed 's/-lasound//g'` + LIBS=`echo $LIBS | sed 's/ //'` + LIBS="-lasound $LIBS" +fi +if test "x$alsa_found" = "xno" ; then + ifelse([$3], , :, [$3]) + CFLAGS="$alsa_save_CFLAGS" + LDFLAGS="$alsa_save_LDFLAGS" + LIBS="$alsa_save_LIBS" + ALSA_CFLAGS="" + ALSA_LIBS="" +fi + +dnl That should be it. Now just export out symbols: +AC_SUBST(ALSA_CFLAGS) +AC_SUBST(ALSA_LIBS) +]) diff --git a/acinclude/esd.m4 b/acinclude/esd.m4 new file mode 100644 index 000000000..58d64a904 --- /dev/null +++ b/acinclude/esd.m4 @@ -0,0 +1,168 @@ +############################################################################## +# +# --- esd.m4 --- +# +# Configure paths for ESD +# Manish Singh 98-9-30 +# stolen back from Frank Belew +# stolen from Manish Singh +# Shamelessly stolen from Owen Taylor + +dnl AM_PATH_ESD([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) +dnl Test for ESD, and define ESD_CFLAGS and ESD_LIBS +dnl +AC_DEFUN([AM_PATH_ESD], +[dnl +dnl Get the cflags and libraries from the esd-config script +dnl +AC_ARG_WITH(esd-prefix,[ --with-esd-prefix=PFX Prefix where ESD is installed (optional)], + esd_prefix="$withval", esd_prefix="") +AC_ARG_WITH(esd-exec-prefix,[ --with-esd-exec-prefix=PFX Exec prefix where ESD is installed (optional)], + esd_exec_prefix="$withval", esd_exec_prefix="") +AC_ARG_ENABLE(esdtest, [ --disable-esdtest Do not try to compile and run a test ESD program], + , enable_esdtest=yes) + + if test x$esd_exec_prefix != x ; then + esd_args="$esd_args --exec-prefix=$esd_exec_prefix" + if test x${ESD_CONFIG+set} != xset ; then + ESD_CONFIG=$esd_exec_prefix/bin/esd-config + fi + fi + if test x$esd_prefix != x ; then + esd_args="$esd_args --prefix=$esd_prefix" + if test x${ESD_CONFIG+set} != xset ; then + ESD_CONFIG=$esd_prefix/bin/esd-config + fi + fi + + AC_PATH_PROG(ESD_CONFIG, esd-config, no) + min_esd_version=ifelse([$1], ,0.2.7,$1) + AC_MSG_CHECKING(for ESD - version >= $min_esd_version) + no_esd="" + if test "$ESD_CONFIG" = "no" ; then + no_esd=yes + else + ESD_CFLAGS=`$ESD_CONFIG $esdconf_args --cflags` + ESD_LIBS=`$ESD_CONFIG $esdconf_args --libs` + + esd_major_version=`$ESD_CONFIG $esd_args --version | \ + sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` + esd_minor_version=`$ESD_CONFIG $esd_args --version | \ + sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` + esd_micro_version=`$ESD_CONFIG $esd_config_args --version | \ + sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` + if test "x$enable_esdtest" = "xyes" ; then + ac_save_CFLAGS="$CFLAGS" + ac_save_LIBS="$LIBS" + CFLAGS="$CFLAGS $ESD_CFLAGS" + LIBS="$LIBS $ESD_LIBS" +dnl +dnl Now check if the installed ESD is sufficiently new. (Also sanity +dnl checks the results of esd-config to some extent +dnl + rm -f conf.esdtest + AC_TRY_RUN([ +#include +#include +#include +#include + +char* +my_strdup (char *str) +{ + char *new_str; + + if (str) + { + new_str = malloc ((strlen (str) + 1) * sizeof(char)); + strcpy (new_str, str); + } + else + new_str = NULL; + + return new_str; +} + +int main () +{ + int major, minor, micro; + char *tmp_version; + + system ("touch conf.esdtest"); + + /* HP/UX 9 (%@#!) writes to sscanf strings */ + tmp_version = my_strdup("$min_esd_version"); + if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) { + printf("%s, bad version string\n", "$min_esd_version"); + exit(1); + } + + if (($esd_major_version > major) || + (($esd_major_version == major) && ($esd_minor_version > minor)) || + (($esd_major_version == major) && ($esd_minor_version == minor) && ($esd_micro_version >= micro))) + { + return 0; + } + else + { + printf("\n*** 'esd-config --version' returned %d.%d.%d, but the minimum version\n", $esd_major_version, $esd_minor_version, $esd_micro_version); + printf("*** of ESD required is %d.%d.%d. If esd-config is correct, then it is\n", major, minor, micro); + printf("*** best to upgrade to the required version.\n"); + printf("*** If esd-config was wrong, set the environment variable ESD_CONFIG\n"); + printf("*** to point to the correct copy of esd-config, and remove the file\n"); + printf("*** config.cache before re-running configure\n"); + return 1; + } +} + +],, no_esd=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"]) + CFLAGS="$ac_save_CFLAGS" + LIBS="$ac_save_LIBS" + fi + fi + if test "x$no_esd" = x ; then + AC_MSG_RESULT(yes) + ifelse([$2], , :, [$2]) + else + AC_MSG_RESULT(no) + if test "$ESD_CONFIG" = "no" ; then + echo "*** The esd-config script installed by ESD could not be found" + echo "*** If ESD was installed in PREFIX, make sure PREFIX/bin is in" + echo "*** your path, or set the ESD_CONFIG environment variable to the" + echo "*** full path to esd-config." + else + if test -f conf.esdtest ; then + : + else + echo "*** Could not run ESD test program, checking why..." + CFLAGS="$CFLAGS $ESD_CFLAGS" + LIBS="$LIBS $ESD_LIBS" + AC_TRY_LINK([ +#include +#include +], [ return 0; ], + [ echo "*** The test program compiled, but did not run. This usually means" + echo "*** that the run-time linker is not finding ESD or finding the wrong" + echo "*** version of ESD. If it is not finding ESD, you'll need to set your" + echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" + echo "*** to the installed location Also, make sure you have run ldconfig if that" + echo "*** is required on your system" + echo "***" + echo "*** If you have an old version installed, it is best to remove it, although" + echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"], + [ echo "*** The test program failed to compile or link. See the file config.log for the" + echo "*** exact error that occured. This usually means ESD was incorrectly installed" + echo "*** or that you have moved ESD since it was installed. In the latter case, you" + echo "*** may want to edit the esd-config script: $ESD_CONFIG" ]) + CFLAGS="$ac_save_CFLAGS" + LIBS="$ac_save_LIBS" + fi + fi + ESD_CFLAGS="" + ESD_LIBS="" + ifelse([$3], , :, [$3]) + fi + AC_SUBST(ESD_CFLAGS) + AC_SUBST(ESD_LIBS) + rm -f conf.esdtest +]) diff --git a/acinclude/libtool.m4 b/acinclude/libtool.m4 new file mode 100644 index 000000000..b64223e2e --- /dev/null +++ b/acinclude/libtool.m4 @@ -0,0 +1,7370 @@ +############################################################################## +# Based on libtool-2.2.6a +# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- +# +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008 Free Software Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +m4_define([_LT_COPYING], [dnl +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008 Free Software Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is part of GNU Libtool. +# +# GNU Libtool is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of +# the License, or (at your option) any later version. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, or +# obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +]) + +# serial 56 LT_INIT + + +# LT_PREREQ(VERSION) +# ------------------ +# Complain and exit if this libtool version is less that VERSION. +m4_defun([LT_PREREQ], +[m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, + [m4_default([$3], + [m4_fatal([Libtool version $1 or higher is required], + 63)])], + [$2])]) + + +# _LT_CHECK_BUILDDIR +# ------------------ +# Complain if the absolute build directory name contains unusual characters +m4_defun([_LT_CHECK_BUILDDIR], +[case `pwd` in + *\ * | *\ *) + AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; +esac +]) + + +# LT_INIT([OPTIONS]) +# ------------------ +AC_DEFUN([LT_INIT], +[AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT +AC_BEFORE([$0], [LT_LANG])dnl +AC_BEFORE([$0], [LT_OUTPUT])dnl +AC_BEFORE([$0], [LTDL_INIT])dnl +m4_require([_LT_CHECK_BUILDDIR])dnl + +dnl Autoconf doesn't catch unexpanded LT_ macros by default: +m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl +m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl +dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 +dnl unless we require an AC_DEFUNed macro: +AC_REQUIRE([LTOPTIONS_VERSION])dnl +AC_REQUIRE([LTSUGAR_VERSION])dnl +AC_REQUIRE([LTVERSION_VERSION])dnl +AC_REQUIRE([LTOBSOLETE_VERSION])dnl +m4_require([_LT_PROG_LTMAIN])dnl + +dnl Parse OPTIONS +_LT_SET_OPTIONS([$0], [$1]) + +# This can be used to rebuild libtool when needed +LIBTOOL_DEPS="$ltmain" + +# Always use our own libtool. +LIBTOOL='$(SHELL) $(top_builddir)/libtool' +AC_SUBST(LIBTOOL)dnl + +_LT_SETUP + +# Only expand once: +m4_define([LT_INIT]) +])# LT_INIT + +# Old names: +AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) +AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_PROG_LIBTOOL], []) +dnl AC_DEFUN([AM_PROG_LIBTOOL], []) + + +# _LT_CC_BASENAME(CC) +# ------------------- +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +m4_defun([_LT_CC_BASENAME], +[for cc_temp in $1""; do + case $cc_temp in + compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; + distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$ECHO "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` +]) + + +# _LT_FILEUTILS_DEFAULTS +# ---------------------- +# It is okay to use these file commands and assume they have been set +# sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'. +m4_defun([_LT_FILEUTILS_DEFAULTS], +[: ${CP="cp -f"} +: ${MV="mv -f"} +: ${RM="rm -f"} +])# _LT_FILEUTILS_DEFAULTS + + +# _LT_SETUP +# --------- +m4_defun([_LT_SETUP], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +_LT_DECL([], [host_alias], [0], [The host system])dnl +_LT_DECL([], [host], [0])dnl +_LT_DECL([], [host_os], [0])dnl +dnl +_LT_DECL([], [build_alias], [0], [The build system])dnl +_LT_DECL([], [build], [0])dnl +_LT_DECL([], [build_os], [0])dnl +dnl +AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([LT_PATH_LD])dnl +AC_REQUIRE([LT_PATH_NM])dnl +dnl +AC_REQUIRE([AC_PROG_LN_S])dnl +test -z "$LN_S" && LN_S="ln -s" +_LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl +dnl +AC_REQUIRE([LT_CMD_MAX_LEN])dnl +_LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl +_LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl +dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_CHECK_SHELL_FEATURES])dnl +m4_require([_LT_CMD_RELOAD])dnl +m4_require([_LT_CHECK_MAGIC_METHOD])dnl +m4_require([_LT_CMD_OLD_ARCHIVE])dnl +m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl + +_LT_CONFIG_LIBTOOL_INIT([ +# See if we are running on zsh, and set the options which allow our +# commands through without removal of \ escapes INIT. +if test -n "\${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi +]) +if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi + +_LT_CHECK_OBJDIR + +m4_require([_LT_TAG_COMPILER])dnl +_LT_PROG_ECHO_BACKSLASH + +case $host_os in +aix3*) + # AIX sometimes has problems with the GCC collect2 program. For some + # reason, if we set the COLLECT_NAMES environment variable, the problems + # vanish in a puff of smoke. + if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES + fi + ;; +esac + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\([["`\\]]\)/\\\1/g' + +# Sed substitution to delay expansion of an escaped shell variable in a +# double_quote_subst'ed string. +delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' + +# Sed substitution to delay expansion of an escaped single quote. +delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' + +# Sed substitution to avoid accidental globbing in evaled expressions +no_glob_subst='s/\*/\\\*/g' + +# Global variables: +ofile=libtool +can_build_shared=yes + +# All known linkers require a `.a' archive for static linking (except MSVC, +# which needs '.lib'). +libext=a + +with_gnu_ld="$lt_cv_prog_gnu_ld" + +old_CC="$CC" +old_CFLAGS="$CFLAGS" + +# Set sane defaults for various variables +test -z "$CC" && CC=cc +test -z "$LTCC" && LTCC=$CC +test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS +test -z "$LD" && LD=ld +test -z "$ac_objext" && ac_objext=o + +_LT_CC_BASENAME([$compiler]) + +# Only perform the check for file, if the check method requires it +test -z "$MAGIC_CMD" && MAGIC_CMD=file +case $deplibs_check_method in +file_magic*) + if test "$file_magic_cmd" = '$MAGIC_CMD'; then + _LT_PATH_MAGIC + fi + ;; +esac + +# Use C for the default configuration in the libtool script +LT_SUPPORTED_TAG([CC]) +_LT_LANG_C_CONFIG +_LT_LANG_DEFAULT_CONFIG +_LT_CONFIG_COMMANDS +])# _LT_SETUP + + +# _LT_PROG_LTMAIN +# --------------- +# Note that this code is called both from `configure', and `config.status' +# now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, +# `config.status' has no value for ac_aux_dir unless we are using Automake, +# so we pass a copy along to make sure it has a sensible value anyway. +m4_defun([_LT_PROG_LTMAIN], +[m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl +_LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) +ltmain="$ac_aux_dir/ltmain.sh" +])# _LT_PROG_LTMAIN + + +## ------------------------------------- ## +## Accumulate code for creating libtool. ## +## ------------------------------------- ## + +# So that we can recreate a full libtool script including additional +# tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS +# in macros and then make a single call at the end using the `libtool' +# label. + + +# _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) +# ---------------------------------------- +# Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. +m4_define([_LT_CONFIG_LIBTOOL_INIT], +[m4_ifval([$1], + [m4_append([_LT_OUTPUT_LIBTOOL_INIT], + [$1 +])])]) + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_INIT]) + + +# _LT_CONFIG_LIBTOOL([COMMANDS]) +# ------------------------------ +# Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. +m4_define([_LT_CONFIG_LIBTOOL], +[m4_ifval([$1], + [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], + [$1 +])])]) + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) + + +# _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) +# ----------------------------------------------------- +m4_defun([_LT_CONFIG_SAVE_COMMANDS], +[_LT_CONFIG_LIBTOOL([$1]) +_LT_CONFIG_LIBTOOL_INIT([$2]) +]) + + +# _LT_FORMAT_COMMENT([COMMENT]) +# ----------------------------- +# Add leading comment marks to the start of each line, and a trailing +# full-stop to the whole comment if one is not present already. +m4_define([_LT_FORMAT_COMMENT], +[m4_ifval([$1], [ +m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], + [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) +)]) + + + +## ------------------------ ## +## FIXME: Eliminate VARNAME ## +## ------------------------ ## + + +# _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) +# ------------------------------------------------------------------- +# CONFIGNAME is the name given to the value in the libtool script. +# VARNAME is the (base) name used in the configure script. +# VALUE may be 0, 1 or 2 for a computed quote escaped value based on +# VARNAME. Any other value will be used directly. +m4_define([_LT_DECL], +[lt_if_append_uniq([lt_decl_varnames], [$2], [, ], + [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], + [m4_ifval([$1], [$1], [$2])]) + lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) + m4_ifval([$4], + [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) + lt_dict_add_subkey([lt_decl_dict], [$2], + [tagged?], [m4_ifval([$5], [yes], [no])])]) +]) + + +# _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) +# -------------------------------------------------------- +m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) + + +# lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) +# ------------------------------------------------ +m4_define([lt_decl_tag_varnames], +[_lt_decl_filter([tagged?], [yes], $@)]) + + +# _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) +# --------------------------------------------------------- +m4_define([_lt_decl_filter], +[m4_case([$#], + [0], [m4_fatal([$0: too few arguments: $#])], + [1], [m4_fatal([$0: too few arguments: $#: $1])], + [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], + [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], + [lt_dict_filter([lt_decl_dict], $@)])[]dnl +]) + + +# lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) +# -------------------------------------------------- +m4_define([lt_decl_quote_varnames], +[_lt_decl_filter([value], [1], $@)]) + + +# lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) +# --------------------------------------------------- +m4_define([lt_decl_dquote_varnames], +[_lt_decl_filter([value], [2], $@)]) + + +# lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) +# --------------------------------------------------- +m4_define([lt_decl_varnames_tagged], +[m4_assert([$# <= 2])dnl +_$0(m4_quote(m4_default([$1], [[, ]])), + m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), + m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) +m4_define([_lt_decl_varnames_tagged], +[m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) + + +# lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) +# ------------------------------------------------ +m4_define([lt_decl_all_varnames], +[_$0(m4_quote(m4_default([$1], [[, ]])), + m4_if([$2], [], + m4_quote(lt_decl_varnames), + m4_quote(m4_shift($@))))[]dnl +]) +m4_define([_lt_decl_all_varnames], +[lt_join($@, lt_decl_varnames_tagged([$1], + lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl +]) + + +# _LT_CONFIG_STATUS_DECLARE([VARNAME]) +# ------------------------------------ +# Quote a variable value, and forward it to `config.status' so that its +# declaration there will have the same value as in `configure'. VARNAME +# must have a single quote delimited value for this to work. +m4_define([_LT_CONFIG_STATUS_DECLARE], +[$1='`$ECHO "X$][$1" | $Xsed -e "$delay_single_quote_subst"`']) + + +# _LT_CONFIG_STATUS_DECLARATIONS +# ------------------------------ +# We delimit libtool config variables with single quotes, so when +# we write them to config.status, we have to be sure to quote all +# embedded single quotes properly. In configure, this macro expands +# each variable declared with _LT_DECL (and _LT_TAGDECL) into: +# +# ='`$ECHO "X$" | $Xsed -e "$delay_single_quote_subst"`' +m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], +[m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), + [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) + + +# _LT_LIBTOOL_TAGS +# ---------------- +# Output comment and list of tags supported by the script +m4_defun([_LT_LIBTOOL_TAGS], +[_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl +available_tags="_LT_TAGS"dnl +]) + + +# _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) +# ----------------------------------- +# Extract the dictionary values for VARNAME (optionally with TAG) and +# expand to a commented shell variable setting: +# +# # Some comment about what VAR is for. +# visible_name=$lt_internal_name +m4_define([_LT_LIBTOOL_DECLARE], +[_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], + [description])))[]dnl +m4_pushdef([_libtool_name], + m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl +m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), + [0], [_libtool_name=[$]$1], + [1], [_libtool_name=$lt_[]$1], + [2], [_libtool_name=$lt_[]$1], + [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl +m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl +]) + + +# _LT_LIBTOOL_CONFIG_VARS +# ----------------------- +# Produce commented declarations of non-tagged libtool config variables +# suitable for insertion in the LIBTOOL CONFIG section of the `libtool' +# script. Tagged libtool config variables (even for the LIBTOOL CONFIG +# section) are produced by _LT_LIBTOOL_TAG_VARS. +m4_defun([_LT_LIBTOOL_CONFIG_VARS], +[m4_foreach([_lt_var], + m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), + [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) + + +# _LT_LIBTOOL_TAG_VARS(TAG) +# ------------------------- +m4_define([_LT_LIBTOOL_TAG_VARS], +[m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), + [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) + + +# _LT_TAGVAR(VARNAME, [TAGNAME]) +# ------------------------------ +m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) + + +# _LT_CONFIG_COMMANDS +# ------------------- +# Send accumulated output to $CONFIG_STATUS. Thanks to the lists of +# variables for single and double quote escaping we saved from calls +# to _LT_DECL, we can put quote escaped variables declarations +# into `config.status', and then the shell code to quote escape them in +# for loops in `config.status'. Finally, any additional code accumulated +# from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. +m4_defun([_LT_CONFIG_COMMANDS], +[AC_PROVIDE_IFELSE([LT_OUTPUT], + dnl If the libtool generation code has been placed in $CONFIG_LT, + dnl instead of duplicating it all over again into config.status, + dnl then we will have config.status run $CONFIG_LT later, so it + dnl needs to know what name is stored there: + [AC_CONFIG_COMMANDS([libtool], + [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], + dnl If the libtool generation code is destined for config.status, + dnl expand the accumulated commands and init code now: + [AC_CONFIG_COMMANDS([libtool], + [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) +])#_LT_CONFIG_COMMANDS + + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], +[ + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +sed_quote_subst='$sed_quote_subst' +double_quote_subst='$double_quote_subst' +delay_variable_subst='$delay_variable_subst' +_LT_CONFIG_STATUS_DECLARATIONS +LTCC='$LTCC' +LTCFLAGS='$LTCFLAGS' +compiler='$compiler_DEFAULT' + +# Quote evaled strings. +for var in lt_decl_all_varnames([[ \ +]], lt_decl_quote_varnames); do + case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in + *[[\\\\\\\`\\"\\\$]]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +# Double-quote double-evaled strings. +for var in lt_decl_all_varnames([[ \ +]], lt_decl_dquote_varnames); do + case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in + *[[\\\\\\\`\\"\\\$]]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +# Fix-up fallback echo if it was mangled by the above quoting rules. +case \$lt_ECHO in +*'\\\[$]0 --fallback-echo"')dnl " + lt_ECHO=\`\$ECHO "X\$lt_ECHO" | \$Xsed -e 's/\\\\\\\\\\\\\\\[$]0 --fallback-echo"\[$]/\[$]0 --fallback-echo"/'\` + ;; +esac + +_LT_OUTPUT_LIBTOOL_INIT +]) + + +# LT_OUTPUT +# --------- +# This macro allows early generation of the libtool script (before +# AC_OUTPUT is called), incase it is used in configure for compilation +# tests. +AC_DEFUN([LT_OUTPUT], +[: ${CONFIG_LT=./config.lt} +AC_MSG_NOTICE([creating $CONFIG_LT]) +cat >"$CONFIG_LT" <<_LTEOF +#! $SHELL +# Generated by $as_me. +# Run this file to recreate a libtool stub with the current configuration. + +lt_cl_silent=false +SHELL=\${CONFIG_SHELL-$SHELL} +_LTEOF + +cat >>"$CONFIG_LT" <<\_LTEOF +AS_SHELL_SANITIZE +_AS_PREPARE + +exec AS_MESSAGE_FD>&1 +exec AS_MESSAGE_LOG_FD>>config.log +{ + echo + AS_BOX([Running $as_me.]) +} >&AS_MESSAGE_LOG_FD + +lt_cl_help="\ +\`$as_me' creates a local libtool stub from the current configuration, +for use in further configure time tests before the real libtool is +generated. + +Usage: $[0] [[OPTIONS]] + + -h, --help print this help, then exit + -V, --version print version number, then exit + -q, --quiet do not print progress messages + -d, --debug don't remove temporary files + +Report bugs to ." + +lt_cl_version="\ +m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl +m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) +configured by $[0], generated by m4_PACKAGE_STRING. + +Copyright (C) 2008 Free Software Foundation, Inc. +This config.lt script is free software; the Free Software Foundation +gives unlimited permision to copy, distribute and modify it." + +while test $[#] != 0 +do + case $[1] in + --version | --v* | -V ) + echo "$lt_cl_version"; exit 0 ;; + --help | --h* | -h ) + echo "$lt_cl_help"; exit 0 ;; + --debug | --d* | -d ) + debug=: ;; + --quiet | --q* | --silent | --s* | -q ) + lt_cl_silent=: ;; + + -*) AC_MSG_ERROR([unrecognized option: $[1] +Try \`$[0] --help' for more information.]) ;; + + *) AC_MSG_ERROR([unrecognized argument: $[1] +Try \`$[0] --help' for more information.]) ;; + esac + shift +done + +if $lt_cl_silent; then + exec AS_MESSAGE_FD>/dev/null +fi +_LTEOF + +cat >>"$CONFIG_LT" <<_LTEOF +_LT_OUTPUT_LIBTOOL_COMMANDS_INIT +_LTEOF + +cat >>"$CONFIG_LT" <<\_LTEOF +AC_MSG_NOTICE([creating $ofile]) +_LT_OUTPUT_LIBTOOL_COMMANDS +AS_EXIT(0) +_LTEOF +chmod +x "$CONFIG_LT" + +# configure is writing to config.log, but config.lt does its own redirection, +# appending to config.log, which fails on DOS, as config.log is still kept +# open by configure. Here we exec the FD to /dev/null, effectively closing +# config.log, so it can be properly (re)opened and appended to by config.lt. +if test "$no_create" != yes; then + lt_cl_success=: + test "$silent" = yes && + lt_config_lt_args="$lt_config_lt_args --quiet" + exec AS_MESSAGE_LOG_FD>/dev/null + $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false + exec AS_MESSAGE_LOG_FD>>config.log + $lt_cl_success || AS_EXIT(1) +fi +])# LT_OUTPUT + + +# _LT_CONFIG(TAG) +# --------------- +# If TAG is the built-in tag, create an initial libtool script with a +# default configuration from the untagged config vars. Otherwise add code +# to config.status for appending the configuration named by TAG from the +# matching tagged config vars. +m4_defun([_LT_CONFIG], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +_LT_CONFIG_SAVE_COMMANDS([ + m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl + m4_if(_LT_TAG, [C], [ + # See if we are running on zsh, and set the options which allow our + # commands through without removal of \ escapes. + if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST + fi + + cfgfile="${ofile}T" + trap "$RM \"$cfgfile\"; exit 1" 1 2 15 + $RM "$cfgfile" + + cat <<_LT_EOF >> "$cfgfile" +#! $SHELL + +# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. +# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION +# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: +# NOTE: Changes made to this file will be lost: look at ltmain.sh. +# +_LT_COPYING +_LT_LIBTOOL_TAGS + +# ### BEGIN LIBTOOL CONFIG +_LT_LIBTOOL_CONFIG_VARS +_LT_LIBTOOL_TAG_VARS +# ### END LIBTOOL CONFIG + +_LT_EOF + + case $host_os in + aix3*) + cat <<\_LT_EOF >> "$cfgfile" +# AIX sometimes has problems with the GCC collect2 program. For some +# reason, if we set the COLLECT_NAMES environment variable, the problems +# vanish in a puff of smoke. +if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES +fi +_LT_EOF + ;; + esac + + _LT_PROG_LTMAIN + + # We use sed instead of cat because bash on DJGPP gets confused if + # if finds mixed CR/LF and LF-only lines. Since sed operates in + # text mode, it properly converts lines to CR/LF. This bash problem + # is reportedly fixed, but why not run on old versions too? + sed '/^# Generated shell functions inserted here/q' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + _LT_PROG_XSI_SHELLFNS + + sed -n '/^# Generated shell functions inserted here/,$p' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + mv -f "$cfgfile" "$ofile" || + (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") + chmod +x "$ofile" +], +[cat <<_LT_EOF >> "$ofile" + +dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded +dnl in a comment (ie after a #). +# ### BEGIN LIBTOOL TAG CONFIG: $1 +_LT_LIBTOOL_TAG_VARS(_LT_TAG) +# ### END LIBTOOL TAG CONFIG: $1 +_LT_EOF +])dnl /m4_if +], +[m4_if([$1], [], [ + PACKAGE='$PACKAGE' + VERSION='$VERSION' + TIMESTAMP='$TIMESTAMP' + RM='$RM' + ofile='$ofile'], []) +])dnl /_LT_CONFIG_SAVE_COMMANDS +])# _LT_CONFIG + + +# LT_SUPPORTED_TAG(TAG) +# --------------------- +# Trace this macro to discover what tags are supported by the libtool +# --tag option, using: +# autoconf --trace 'LT_SUPPORTED_TAG:$1' +AC_DEFUN([LT_SUPPORTED_TAG], []) + + +# C support is built-in for now +m4_define([_LT_LANG_C_enabled], []) +m4_define([_LT_TAGS], []) + + +# LT_LANG(LANG) +# ------------- +# Enable libtool support for the given language if not already enabled. +AC_DEFUN([LT_LANG], +[AC_BEFORE([$0], [LT_OUTPUT])dnl +m4_case([$1], + [C], [_LT_LANG(C)], + [C++], [_LT_LANG(CXX)], + [Java], [_LT_LANG(GCJ)], + [Fortran 77], [_LT_LANG(F77)], + [Fortran], [_LT_LANG(FC)], + [Windows Resource], [_LT_LANG(RC)], + [m4_ifdef([_LT_LANG_]$1[_CONFIG], + [_LT_LANG($1)], + [m4_fatal([$0: unsupported language: "$1"])])])dnl +])# LT_LANG + + +# _LT_LANG(LANGNAME) +# ------------------ +m4_defun([_LT_LANG], +[m4_ifdef([_LT_LANG_]$1[_enabled], [], + [LT_SUPPORTED_TAG([$1])dnl + m4_append([_LT_TAGS], [$1 ])dnl + m4_define([_LT_LANG_]$1[_enabled], [])dnl + _LT_LANG_$1_CONFIG($1)])dnl +])# _LT_LANG + + +# _LT_LANG_DEFAULT_CONFIG +# ----------------------- +m4_defun([_LT_LANG_DEFAULT_CONFIG], +[AC_PROVIDE_IFELSE([AC_PROG_CXX], + [LT_LANG(CXX)], + [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) + +AC_PROVIDE_IFELSE([AC_PROG_F77], + [LT_LANG(F77)], + [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) + +AC_PROVIDE_IFELSE([AC_PROG_FC], + [LT_LANG(FC)], + [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) + +dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal +dnl pulling things in needlessly. +AC_PROVIDE_IFELSE([AC_PROG_GCJ], + [LT_LANG(GCJ)], + [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], + [LT_LANG(GCJ)], + [AC_PROVIDE_IFELSE([LT_PROG_GCJ], + [LT_LANG(GCJ)], + [m4_ifdef([AC_PROG_GCJ], + [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) + m4_ifdef([A][M_PROG_GCJ], + [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) + m4_ifdef([LT_PROG_GCJ], + [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) + +AC_PROVIDE_IFELSE([LT_PROG_RC], + [LT_LANG(RC)], + [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) +])# _LT_LANG_DEFAULT_CONFIG + +# Obsolete macros: +AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) +AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) +AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) +AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_CXX], []) +dnl AC_DEFUN([AC_LIBTOOL_F77], []) +dnl AC_DEFUN([AC_LIBTOOL_FC], []) +dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) + + +# _LT_TAG_COMPILER +# ---------------- +m4_defun([_LT_TAG_COMPILER], +[AC_REQUIRE([AC_PROG_CC])dnl + +_LT_DECL([LTCC], [CC], [1], [A C compiler])dnl +_LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl +_LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl +_LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC +])# _LT_TAG_COMPILER + + +# _LT_COMPILER_BOILERPLATE +# ------------------------ +# Check for compiler boilerplate output or warnings with +# the simple compiler test code. +m4_defun([_LT_COMPILER_BOILERPLATE], +[m4_require([_LT_DECL_SED])dnl +ac_outfile=conftest.$ac_objext +echo "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$RM conftest* +])# _LT_COMPILER_BOILERPLATE + + +# _LT_LINKER_BOILERPLATE +# ---------------------- +# Check for linker boilerplate output or warnings with +# the simple link test code. +m4_defun([_LT_LINKER_BOILERPLATE], +[m4_require([_LT_DECL_SED])dnl +ac_outfile=conftest.$ac_objext +echo "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$RM -r conftest* +])# _LT_LINKER_BOILERPLATE + +# _LT_REQUIRED_DARWIN_CHECKS +# ------------------------- +m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ + case $host_os in + rhapsody* | darwin*) + AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) + AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) + AC_CHECK_TOOL([LIPO], [lipo], [:]) + AC_CHECK_TOOL([OTOOL], [otool], [:]) + AC_CHECK_TOOL([OTOOL64], [otool64], [:]) + _LT_DECL([], [DSYMUTIL], [1], + [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) + _LT_DECL([], [NMEDIT], [1], + [Tool to change global to local symbols on Mac OS X]) + _LT_DECL([], [LIPO], [1], + [Tool to manipulate fat objects and archives on Mac OS X]) + _LT_DECL([], [OTOOL], [1], + [ldd/readelf like tool for Mach-O binaries on Mac OS X]) + _LT_DECL([], [OTOOL64], [1], + [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) + + AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], + [lt_cv_apple_cc_single_mod=no + if test -z "${LT_MULTI_MODULE}"; then + # By default we will add the -single_module flag. You can override + # by either setting the environment variable LT_MULTI_MODULE + # non-empty at configure time, or by adding -multi_module to the + # link flags. + rm -rf libconftest.dylib* + echo "int foo(void){return 1;}" > conftest.c + echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ +-dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD + $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ + -dynamiclib -Wl,-single_module conftest.c 2>conftest.err + _lt_result=$? + if test -f libconftest.dylib && test ! -s conftest.err && test $_lt_result = 0; then + lt_cv_apple_cc_single_mod=yes + else + cat conftest.err >&AS_MESSAGE_LOG_FD + fi + rm -rf libconftest.dylib* + rm -f conftest.* + fi]) + AC_CACHE_CHECK([for -exported_symbols_list linker flag], + [lt_cv_ld_exported_symbols_list], + [lt_cv_ld_exported_symbols_list=no + save_LDFLAGS=$LDFLAGS + echo "_main" > conftest.sym + LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" + AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], + [lt_cv_ld_exported_symbols_list=yes], + [lt_cv_ld_exported_symbols_list=no]) + LDFLAGS="$save_LDFLAGS" + ]) + case $host_os in + rhapsody* | darwin1.[[012]]) + _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; + darwin1.*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + darwin*) # darwin 5.x on + # if running on 10.5 or later, the deployment target defaults + # to the OS version, if on x86, and 10.4, the deployment + # target defaults to 10.4. Don't you love it? + case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in + 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + 10.[[012]]*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + 10.*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + esac + ;; + esac + if test "$lt_cv_apple_cc_single_mod" = "yes"; then + _lt_dar_single_mod='$single_module' + fi + if test "$lt_cv_ld_exported_symbols_list" = "yes"; then + _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' + else + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' + fi + if test "$DSYMUTIL" != ":"; then + _lt_dsymutil='~$DSYMUTIL $lib || :' + else + _lt_dsymutil= + fi + ;; + esac +]) + + +# _LT_DARWIN_LINKER_FEATURES +# -------------------------- +# Checks for linker and compiler features on darwin +m4_defun([_LT_DARWIN_LINKER_FEATURES], +[ + m4_require([_LT_REQUIRED_DARWIN_CHECKS]) + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_automatic, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported + _LT_TAGVAR(whole_archive_flag_spec, $1)='' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" + case $cc_basename in + ifort*) _lt_dar_can_shared=yes ;; + *) _lt_dar_can_shared=$GCC ;; + esac + if test "$_lt_dar_can_shared" = "yes"; then + output_verbose_link_cmd=echo + _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" + _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" + _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + m4_if([$1], [CXX], +[ if test "$lt_cv_apple_cc_single_mod" != "yes"; then + _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" + fi +],[]) + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi +]) + +# _LT_SYS_MODULE_PATH_AIX +# ----------------------- +# Links a minimal program and checks the executable +# for the system default hardcoded library path. In most cases, +# this is /usr/lib:/lib, but when the MPI compilers are used +# the location of the communication and MPI libs are included too. +# If we don't find anything, use the default library path according +# to the aix ld manual. +m4_defun([_LT_SYS_MODULE_PATH_AIX], +[m4_require([_LT_DECL_SED])dnl +AC_LINK_IFELSE(AC_LANG_PROGRAM,[ +lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\(.*\)$/\1/ + p + } + }' +aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` +# Check for a 64-bit object if we didn't find anything. +if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` +fi],[]) +if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi +])# _LT_SYS_MODULE_PATH_AIX + + +# _LT_SHELL_INIT(ARG) +# ------------------- +m4_define([_LT_SHELL_INIT], +[ifdef([AC_DIVERSION_NOTICE], + [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)], + [AC_DIVERT_PUSH(NOTICE)]) +$1 +AC_DIVERT_POP +])# _LT_SHELL_INIT + + +# _LT_PROG_ECHO_BACKSLASH +# ----------------------- +# Add some code to the start of the generated configure script which +# will find an echo command which doesn't interpret backslashes. +m4_defun([_LT_PROG_ECHO_BACKSLASH], +[_LT_SHELL_INIT([ +# Check that we are running under the correct shell. +SHELL=${CONFIG_SHELL-/bin/sh} + +case X$lt_ECHO in +X*--fallback-echo) + # Remove one level of quotation (which was required for Make). + ECHO=`echo "$lt_ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','` + ;; +esac + +ECHO=${lt_ECHO-echo} +if test "X[$]1" = X--no-reexec; then + # Discard the --no-reexec flag, and continue. + shift +elif test "X[$]1" = X--fallback-echo; then + # Avoid inline document here, it may be left over + : +elif test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' ; then + # Yippee, $ECHO works! + : +else + # Restart under the correct shell. + exec $SHELL "[$]0" --no-reexec ${1+"[$]@"} +fi + +if test "X[$]1" = X--fallback-echo; then + # used as fallback echo + shift + cat <<_LT_EOF +[$]* +_LT_EOF + exit 0 +fi + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +if test -z "$lt_ECHO"; then + if test "X${echo_test_string+set}" != Xset; then + # find a string as large as possible, as long as the shell can cope with it + for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do + # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... + if { echo_test_string=`eval $cmd`; } 2>/dev/null && + { test "X$echo_test_string" = "X$echo_test_string"; } 2>/dev/null + then + break + fi + done + fi + + if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' && + echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` && + test "X$echo_testing_string" = "X$echo_test_string"; then + : + else + # The Solaris, AIX, and Digital Unix default echo programs unquote + # backslashes. This makes it impossible to quote backslashes using + # echo "$something" | sed 's/\\/\\\\/g' + # + # So, first we look for a working echo in the user's PATH. + + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for dir in $PATH /usr/ucb; do + IFS="$lt_save_ifs" + if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && + test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && + echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && + test "X$echo_testing_string" = "X$echo_test_string"; then + ECHO="$dir/echo" + break + fi + done + IFS="$lt_save_ifs" + + if test "X$ECHO" = Xecho; then + # We didn't find a better echo, so look for alternatives. + if test "X`{ print -r '\t'; } 2>/dev/null`" = 'X\t' && + echo_testing_string=`{ print -r "$echo_test_string"; } 2>/dev/null` && + test "X$echo_testing_string" = "X$echo_test_string"; then + # This shell has a builtin print -r that does the trick. + ECHO='print -r' + elif { test -f /bin/ksh || test -f /bin/ksh$ac_exeext; } && + test "X$CONFIG_SHELL" != X/bin/ksh; then + # If we have ksh, try running configure again with it. + ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} + export ORIGINAL_CONFIG_SHELL + CONFIG_SHELL=/bin/ksh + export CONFIG_SHELL + exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"} + else + # Try using printf. + ECHO='printf %s\n' + if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' && + echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` && + test "X$echo_testing_string" = "X$echo_test_string"; then + # Cool, printf works + : + elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && + test "X$echo_testing_string" = 'X\t' && + echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && + test "X$echo_testing_string" = "X$echo_test_string"; then + CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL + export CONFIG_SHELL + SHELL="$CONFIG_SHELL" + export SHELL + ECHO="$CONFIG_SHELL [$]0 --fallback-echo" + elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && + test "X$echo_testing_string" = 'X\t' && + echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && + test "X$echo_testing_string" = "X$echo_test_string"; then + ECHO="$CONFIG_SHELL [$]0 --fallback-echo" + else + # maybe with a smaller string... + prev=: + + for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do + if { test "X$echo_test_string" = "X`eval $cmd`"; } 2>/dev/null + then + break + fi + prev="$cmd" + done + + if test "$prev" != 'sed 50q "[$]0"'; then + echo_test_string=`eval $prev` + export echo_test_string + exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"} + else + # Oops. We lost completely, so just stick with echo. + ECHO=echo + fi + fi + fi + fi + fi +fi + +# Copy echo and quote the copy suitably for passing to libtool from +# the Makefile, instead of quoting the original, which is used later. +lt_ECHO=$ECHO +if test "X$lt_ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then + lt_ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo" +fi + +AC_SUBST(lt_ECHO) +]) +_LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) +_LT_DECL([], [ECHO], [1], + [An echo program that does not interpret backslashes]) +])# _LT_PROG_ECHO_BACKSLASH + + +# _LT_ENABLE_LOCK +# --------------- +m4_defun([_LT_ENABLE_LOCK], +[AC_ARG_ENABLE([libtool-lock], + [AS_HELP_STRING([--disable-libtool-lock], + [avoid locking (might break parallel builds)])]) +test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes + +# Some flags need to be propagated to the compiler or linker for good +# libtool support. +case $host in +ia64-*-hpux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.$ac_objext` in + *ELF-32*) + HPUX_IA64_MODE="32" + ;; + *ELF-64*) + HPUX_IA64_MODE="64" + ;; + esac + fi + rm -rf conftest* + ;; +*-*-irix6*) + # Find out which ABI we are using. + echo '[#]line __oline__ "configure"' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + if test "$lt_cv_prog_gnu_ld" = yes; then + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -melf32bsmip" + ;; + *N32*) + LD="${LD-ld} -melf32bmipn32" + ;; + *64-bit*) + LD="${LD-ld} -melf64bmip" + ;; + esac + else + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -32" + ;; + *N32*) + LD="${LD-ld} -n32" + ;; + *64-bit*) + LD="${LD-ld} -64" + ;; + esac + fi + fi + rm -rf conftest* + ;; + +x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ +s390*-*linux*|s390*-*tpf*|sparc*-*linux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.o` in + *32-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_i386_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_i386" + ;; + ppc64-*linux*|powerpc64-*linux*) + LD="${LD-ld} -m elf32ppclinux" + ;; + s390x-*linux*) + LD="${LD-ld} -m elf_s390" + ;; + sparc64-*linux*) + LD="${LD-ld} -m elf32_sparc" + ;; + esac + ;; + *64-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_x86_64_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_x86_64" + ;; + ppc*-*linux*|powerpc*-*linux*) + LD="${LD-ld} -m elf64ppc" + ;; + s390*-*linux*|s390*-*tpf*) + LD="${LD-ld} -m elf64_s390" + ;; + sparc*-*linux*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; + +*-*-sco3.2v5*) + # On SCO OpenServer 5, we need -belf to get full-featured binaries. + SAVE_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS -belf" + AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, + [AC_LANG_PUSH(C) + AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) + AC_LANG_POP]) + if test x"$lt_cv_cc_needs_belf" != x"yes"; then + # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf + CFLAGS="$SAVE_CFLAGS" + fi + ;; +sparc*-*solaris*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.o` in + *64-bit*) + case $lt_cv_prog_gnu_ld in + yes*) LD="${LD-ld} -m elf64_sparc" ;; + *) + if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then + LD="${LD-ld} -64" + fi + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; +esac + +need_locks="$enable_libtool_lock" +])# _LT_ENABLE_LOCK + + +# _LT_CMD_OLD_ARCHIVE +# ------------------- +m4_defun([_LT_CMD_OLD_ARCHIVE], +[AC_CHECK_TOOL(AR, ar, false) +test -z "$AR" && AR=ar +test -z "$AR_FLAGS" && AR_FLAGS=cru +_LT_DECL([], [AR], [1], [The archiver]) +_LT_DECL([], [AR_FLAGS], [1]) + +AC_CHECK_TOOL(STRIP, strip, :) +test -z "$STRIP" && STRIP=: +_LT_DECL([], [STRIP], [1], [A symbol stripping program]) + +AC_CHECK_TOOL(RANLIB, ranlib, :) +test -z "$RANLIB" && RANLIB=: +_LT_DECL([], [RANLIB], [1], + [Commands used to install an old-style archive]) + +# Determine commands to create old-style static archives. +old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' +old_postinstall_cmds='chmod 644 $oldlib' +old_postuninstall_cmds= + +if test -n "$RANLIB"; then + case $host_os in + openbsd*) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" + ;; + *) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" + ;; + esac + old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" +fi +_LT_DECL([], [old_postinstall_cmds], [2]) +_LT_DECL([], [old_postuninstall_cmds], [2]) +_LT_TAGDECL([], [old_archive_cmds], [2], + [Commands used to build an old-style archive]) +])# _LT_CMD_OLD_ARCHIVE + + +# _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, +# [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) +# ---------------------------------------------------------------- +# Check whether the given compiler option works +AC_DEFUN([_LT_COMPILER_OPTION], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_SED])dnl +AC_CACHE_CHECK([$1], [$2], + [$2=no + m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$3" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -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:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&AS_MESSAGE_LOG_FD + echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + 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. + $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + $2=yes + fi + fi + $RM conftest* +]) + +if test x"[$]$2" = xyes; then + m4_if([$5], , :, [$5]) +else + m4_if([$6], , :, [$6]) +fi +])# _LT_COMPILER_OPTION + +# Old name: +AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) + + +# _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, +# [ACTION-SUCCESS], [ACTION-FAILURE]) +# ---------------------------------------------------- +# Check whether the given linker option works +AC_DEFUN([_LT_LINKER_OPTION], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_SED])dnl +AC_CACHE_CHECK([$1], [$2], + [$2=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $3" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&AS_MESSAGE_LOG_FD + $ECHO "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + $2=yes + fi + else + $2=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" +]) + +if test x"[$]$2" = xyes; then + m4_if([$4], , :, [$4]) +else + m4_if([$5], , :, [$5]) +fi +])# _LT_LINKER_OPTION + +# Old name: +AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) + + +# LT_CMD_MAX_LEN +#--------------- +AC_DEFUN([LT_CMD_MAX_LEN], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +# find the maximum length of command line arguments +AC_MSG_CHECKING([the maximum length of command line arguments]) +AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl + i=0 + teststring="ABCD" + + case $build_os in + msdosdjgpp*) + # On DJGPP, this test can blow up pretty badly due to problems in libc + # (any single argument exceeding 2000 bytes causes a buffer overrun + # during glob expansion). Even if it were fixed, the result of this + # check would be larger than it should be. + lt_cv_sys_max_cmd_len=12288; # 12K is about right + ;; + + gnu*) + # Under GNU Hurd, this test is not required because there is + # no limit to the length of command line arguments. + # Libtool will interpret -1 as no limit whatsoever + lt_cv_sys_max_cmd_len=-1; + ;; + + cygwin* | mingw* | cegcc*) + # On Win9x/ME, this test blows up -- it succeeds, but takes + # about 5 minutes as the teststring grows exponentially. + # Worse, since 9x/ME are not pre-emptively multitasking, + # you end up with a "frozen" computer, even though with patience + # the test eventually succeeds (with a max line length of 256k). + # Instead, let's just punt: use the minimum linelength reported by + # all of the supported platforms: 8192 (on NT/2K/XP). + lt_cv_sys_max_cmd_len=8192; + ;; + + beos*) + # On BeOS, this test takes a really really long time. + # So we just punt and use a minimum line length of 8192. + lt_cv_sys_max_cmd_len=8192; + ;; + + amigaos*) + # On AmigaOS with pdksh, this test takes hours, literally. + # So we just punt and use a minimum line length of 8192. + lt_cv_sys_max_cmd_len=8192; + ;; + + netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) + # This has been around since 386BSD, at least. Likely further. + if test -x /sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` + elif test -x /usr/sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` + else + lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs + fi + # And add a safety zone + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + ;; + + interix*) + # We know the value 262144 and hardcode it with a safety zone (like BSD) + lt_cv_sys_max_cmd_len=196608 + ;; + + osf*) + # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure + # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not + # nice to cause kernel panics so lets avoid the loop below. + # First set a reasonable default. + lt_cv_sys_max_cmd_len=16384 + # + if test -x /sbin/sysconfig; then + case `/sbin/sysconfig -q proc exec_disable_arg_limit` in + *1*) lt_cv_sys_max_cmd_len=-1 ;; + esac + fi + ;; + sco3.2v5*) + lt_cv_sys_max_cmd_len=102400 + ;; + sysv5* | sco5v6* | sysv4.2uw2*) + kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` + if test -n "$kargmax"; then + lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` + else + lt_cv_sys_max_cmd_len=32768 + fi + ;; + *) + lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` + if test -n "$lt_cv_sys_max_cmd_len"; then + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + else + # Make teststring a little bigger before we do anything with it. + # a 1K string should be a reasonable start. + for i in 1 2 3 4 5 6 7 8 ; do + teststring=$teststring$teststring + done + SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} + # If test is not a shell built-in, we'll probably end up computing a + # maximum length that is only half of the actual maximum length, but + # we can't tell. + while { test "X"`$SHELL [$]0 --fallback-echo "X$teststring$teststring" 2>/dev/null` \ + = "XX$teststring$teststring"; } >/dev/null 2>&1 && + test $i != 17 # 1/2 MB should be enough + do + i=`expr $i + 1` + teststring=$teststring$teststring + done + # Only check the string length outside the loop. + lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` + teststring= + # Add a significant safety factor because C++ compilers can tack on + # massive amounts of additional arguments before passing them to the + # linker. It appears as though 1/2 is a usable value. + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` + fi + ;; + esac +]) +if test -n $lt_cv_sys_max_cmd_len ; then + AC_MSG_RESULT($lt_cv_sys_max_cmd_len) +else + AC_MSG_RESULT(none) +fi +max_cmd_len=$lt_cv_sys_max_cmd_len +_LT_DECL([], [max_cmd_len], [0], + [What is the maximum length of a command?]) +])# LT_CMD_MAX_LEN + +# Old name: +AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) + + +# _LT_HEADER_DLFCN +# ---------------- +m4_defun([_LT_HEADER_DLFCN], +[AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl +])# _LT_HEADER_DLFCN + + +# _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, +# ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) +# ---------------------------------------------------------------- +m4_defun([_LT_TRY_DLOPEN_SELF], +[m4_require([_LT_HEADER_DLFCN])dnl +if test "$cross_compiling" = yes; then : + [$4] +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +[#line __oline__ "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include +#endif + +#include + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +void fnord() { int i=42;} +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + /* dlclose (self); */ + } + else + puts (dlerror ()); + + return status; +}] +_LT_EOF + if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) $1 ;; + x$lt_dlneed_uscore) $2 ;; + x$lt_dlunknown|x*) $3 ;; + esac + else : + # compilation failed + $3 + fi +fi +rm -fr conftest* +])# _LT_TRY_DLOPEN_SELF + + +# LT_SYS_DLOPEN_SELF +# ------------------ +AC_DEFUN([LT_SYS_DLOPEN_SELF], +[m4_require([_LT_HEADER_DLFCN])dnl +if test "x$enable_dlopen" != xyes; then + enable_dlopen=unknown + enable_dlopen_self=unknown + enable_dlopen_self_static=unknown +else + lt_cv_dlopen=no + lt_cv_dlopen_libs= + + case $host_os in + beos*) + lt_cv_dlopen="load_add_on" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ;; + + mingw* | pw32* | cegcc*) + lt_cv_dlopen="LoadLibrary" + lt_cv_dlopen_libs= + ;; + + cygwin*) + lt_cv_dlopen="dlopen" + lt_cv_dlopen_libs= + ;; + + darwin*) + # if libdl is installed we need to link against it + AC_CHECK_LIB([dl], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ + lt_cv_dlopen="dyld" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ]) + ;; + + *) + AC_CHECK_FUNC([shl_load], + [lt_cv_dlopen="shl_load"], + [AC_CHECK_LIB([dld], [shl_load], + [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], + [AC_CHECK_FUNC([dlopen], + [lt_cv_dlopen="dlopen"], + [AC_CHECK_LIB([dl], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], + [AC_CHECK_LIB([svld], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], + [AC_CHECK_LIB([dld], [dld_link], + [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) + ]) + ]) + ]) + ]) + ]) + ;; + esac + + if test "x$lt_cv_dlopen" != xno; then + enable_dlopen=yes + else + enable_dlopen=no + fi + + case $lt_cv_dlopen in + dlopen) + save_CPPFLAGS="$CPPFLAGS" + test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + + save_LDFLAGS="$LDFLAGS" + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" + + save_LIBS="$LIBS" + LIBS="$lt_cv_dlopen_libs $LIBS" + + AC_CACHE_CHECK([whether a program can dlopen itself], + lt_cv_dlopen_self, [dnl + _LT_TRY_DLOPEN_SELF( + lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, + lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) + ]) + + if test "x$lt_cv_dlopen_self" = xyes; then + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" + AC_CACHE_CHECK([whether a statically linked program can dlopen itself], + lt_cv_dlopen_self_static, [dnl + _LT_TRY_DLOPEN_SELF( + lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, + lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) + ]) + fi + + CPPFLAGS="$save_CPPFLAGS" + LDFLAGS="$save_LDFLAGS" + LIBS="$save_LIBS" + ;; + esac + + case $lt_cv_dlopen_self in + yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; + *) enable_dlopen_self=unknown ;; + esac + + case $lt_cv_dlopen_self_static in + yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; + *) enable_dlopen_self_static=unknown ;; + esac +fi +_LT_DECL([dlopen_support], [enable_dlopen], [0], + [Whether dlopen is supported]) +_LT_DECL([dlopen_self], [enable_dlopen_self], [0], + [Whether dlopen of programs is supported]) +_LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], + [Whether dlopen of statically linked programs is supported]) +])# LT_SYS_DLOPEN_SELF + +# Old name: +AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) + + +# _LT_COMPILER_C_O([TAGNAME]) +# --------------------------- +# Check to see if options -c and -o are simultaneously supported by compiler. +# This macro does not hard code the compiler like AC_PROG_CC_C_O. +m4_defun([_LT_COMPILER_C_O], +[m4_require([_LT_DECL_SED])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_TAG_COMPILER])dnl +AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], + [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], + [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -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:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&AS_MESSAGE_LOG_FD + echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes + fi + fi + chmod u+w . 2>&AS_MESSAGE_LOG_FD + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* +]) +_LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], + [Does compiler simultaneously support -c and -o options?]) +])# _LT_COMPILER_C_O + + +# _LT_COMPILER_FILE_LOCKS([TAGNAME]) +# ---------------------------------- +# Check to see if we can do hard links to lock some files if needed +m4_defun([_LT_COMPILER_FILE_LOCKS], +[m4_require([_LT_ENABLE_LOCK])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +_LT_COMPILER_C_O([$1]) + +hard_links="nottested" +if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user + AC_MSG_CHECKING([if we can lock with hard links]) + hard_links=yes + $RM conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no + AC_MSG_RESULT([$hard_links]) + if test "$hard_links" = no; then + AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) + need_locks=warn + fi +else + need_locks=no +fi +_LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) +])# _LT_COMPILER_FILE_LOCKS + + +# _LT_CHECK_OBJDIR +# ---------------- +m4_defun([_LT_CHECK_OBJDIR], +[AC_CACHE_CHECK([for objdir], [lt_cv_objdir], +[rm -f .libs 2>/dev/null +mkdir .libs 2>/dev/null +if test -d .libs; then + lt_cv_objdir=.libs +else + # MS-DOS does not allow filenames that begin with a dot. + lt_cv_objdir=_libs +fi +rmdir .libs 2>/dev/null]) +objdir=$lt_cv_objdir +_LT_DECL([], [objdir], [0], + [The name of the directory that contains temporary libtool files])dnl +m4_pattern_allow([LT_OBJDIR])dnl +AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/", + [Define to the sub-directory in which libtool stores uninstalled libraries.]) +])# _LT_CHECK_OBJDIR + + +# _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) +# -------------------------------------- +# Check hardcoding attributes. +m4_defun([_LT_LINKER_HARDCODE_LIBPATH], +[AC_MSG_CHECKING([how to hardcode library paths into programs]) +_LT_TAGVAR(hardcode_action, $1)= +if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || + test -n "$_LT_TAGVAR(runpath_var, $1)" || + test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then + + # We can hardcode non-existent directories. + if test "$_LT_TAGVAR(hardcode_direct, $1)" != no && + # If the only mechanism to avoid hardcoding is shlibpath_var, we + # have to relink, otherwise we might link with an installed library + # when we should be linking with a yet-to-be-installed one + ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no && + test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then + # Linking always hardcodes the temporary library directory. + _LT_TAGVAR(hardcode_action, $1)=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + _LT_TAGVAR(hardcode_action, $1)=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + _LT_TAGVAR(hardcode_action, $1)=unsupported +fi +AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) + +if test "$_LT_TAGVAR(hardcode_action, $1)" = relink || + test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then + # Fast installation is not supported + enable_fast_install=no +elif test "$shlibpath_overrides_runpath" = yes || + test "$enable_shared" = no; then + # Fast installation is not necessary + enable_fast_install=needless +fi +_LT_TAGDECL([], [hardcode_action], [0], + [How to hardcode a shared library path into an executable]) +])# _LT_LINKER_HARDCODE_LIBPATH + + +# _LT_CMD_STRIPLIB +# ---------------- +m4_defun([_LT_CMD_STRIPLIB], +[m4_require([_LT_DECL_EGREP]) +striplib= +old_striplib= +AC_MSG_CHECKING([whether stripping libraries is possible]) +if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then + test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" + test -z "$striplib" && striplib="$STRIP --strip-unneeded" + AC_MSG_RESULT([yes]) +else +# FIXME - insert some real tests, host_os isn't really good enough + case $host_os in + darwin*) + if test -n "$STRIP" ; then + striplib="$STRIP -x" + old_striplib="$STRIP -S" + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + fi + ;; + *) + AC_MSG_RESULT([no]) + ;; + esac +fi +_LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) +_LT_DECL([], [striplib], [1]) +])# _LT_CMD_STRIPLIB + + +# _LT_SYS_DYNAMIC_LINKER([TAG]) +# ----------------------------- +# PORTME Fill in your ld.so characteristics +m4_defun([_LT_SYS_DYNAMIC_LINKER], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_OBJDUMP])dnl +m4_require([_LT_DECL_SED])dnl +AC_MSG_CHECKING([dynamic linker characteristics]) +m4_if([$1], + [], [ +if test "$GCC" = yes; then + case $host_os in + darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; + *) lt_awk_arg="/^libraries:/" ;; + esac + lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e "s,=/,/,g"` + if $ECHO "$lt_search_path_spec" | $GREP ';' >/dev/null ; then + # if the path contains ";" then we assume it to be the separator + # otherwise default to the standard path separator (i.e. ":") - it is + # assumed that no part of a normal pathname contains ";" but that should + # okay in the real world where ";" in dirpaths is itself problematic. + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e 's/;/ /g'` + else + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + # Ok, now we have the path, separated by spaces, we can step through it + # and add multilib dir if necessary. + lt_tmp_lt_search_path_spec= + lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + for lt_sys_path in $lt_search_path_spec; do + if test -d "$lt_sys_path/$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" + else + test -d "$lt_sys_path" && \ + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" + fi + done + lt_search_path_spec=`$ECHO $lt_tmp_lt_search_path_spec | awk ' +BEGIN {RS=" "; FS="/|\n";} { + lt_foo=""; + lt_count=0; + for (lt_i = NF; lt_i > 0; lt_i--) { + if ($lt_i != "" && $lt_i != ".") { + if ($lt_i == "..") { + lt_count++; + } else { + if (lt_count == 0) { + lt_foo="/" $lt_i lt_foo; + } else { + lt_count--; + } + } + } + } + if (lt_foo != "") { lt_freq[[lt_foo]]++; } + if (lt_freq[[lt_foo]] == 1) { print lt_foo; } +}'` + sys_lib_search_path_spec=`$ECHO $lt_search_path_spec` +else + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" +fi]) +library_names_spec= +libname_spec='lib$name' +soname_spec= +shrext_cmds=".so" +postinstall_cmds= +postuninstall_cmds= +finish_cmds= +finish_eval= +shlibpath_var= +shlibpath_overrides_runpath=unknown +version_type=none +dynamic_linker="$host_os ld.so" +sys_lib_dlsearch_path_spec="/lib /usr/lib" +need_lib_prefix=unknown +hardcode_into_libs=no + +# when you set need_version to no, make sure it does not cause -set_version +# flags to be left without arguments +need_version=unknown + +case $host_os in +aix3*) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='${libname}${release}${shared_ext}$major' + ;; + +aix[[4-9]]*) + version_type=linux + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test "$host_cpu" = ia64; then + # AIX 5 supports IA64 + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + else + # With GCC up to 2.95.x, collect2 would create an import file + # for dependence libraries. The import file would start with + # the line `#! .'. This would cause the generated library to + # depend on `.', always an invalid library. This was fixed in + # development snapshots of GCC prior to 3.0. + case $host_os in + aix4 | aix4.[[01]] | aix4.[[01]].*) + if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' + echo ' yes ' + echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + : + else + can_build_shared=no + fi + ;; + esac + # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + if test "$aix_use_runtimelinking" = yes; then + # If using run time linking (on AIX 4.2 or later) use lib.so + # instead of lib.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + else + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='${libname}${release}.a $libname.a' + soname_spec='${libname}${release}${shared_ext}$major' + fi + shlibpath_var=LIBPATH + fi + ;; + +amigaos*) + case $host_cpu in + powerpc) + # Since July 2007 AmigaOS4 officially supports .so libraries. + # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + ;; + m68k) + library_names_spec='$libname.ixlibrary $libname.a' + # Create ${libname}_ixlibrary.a entries in /sys/libs. + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$ECHO "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + ;; + esac + ;; + +beos*) + library_names_spec='${libname}${shared_ext}' + dynamic_linker="$host_os ld.so" + shlibpath_var=LIBRARY_PATH + ;; + +bsdi[[45]]*) + version_type=linux + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + # the default ld.so.conf also contains /usr/contrib/lib and + # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow + # libtool to hard-code these into programs + ;; + +cygwin* | mingw* | pw32* | cegcc*) + version_type=windows + shrext_cmds=".dll" + need_version=no + need_lib_prefix=no + + case $GCC,$host_os in + yes,cygwin* | yes,mingw* | yes,pw32* | yes,cegcc*) + library_names_spec='$libname.dll.a' + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + + case $host_os in + cygwin*) + # Cygwin DLLs use 'cyg' prefix rather than 'lib' + #soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + soname_spec='`echo ${libname} | sed -e 's/^lib//'`${shared_ext}' + sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" + ;; + mingw* | cegcc*) + # MinGW DLLs use traditional 'lib' prefix + #soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + soname_spec='`echo ${libname} | $SED -e 's/^lib//'`${shared_ext}' + sys_lib_search_path_spec=`$CC -print-search-dirs | $GREP "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` + if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then + # It is most probably a Windows format PATH printed by + # mingw gcc, but we are running on Cygwin. Gcc prints its search + # path with ; separators, and with drive letters. We can handle the + # drive letters (cygwin fileutils understands them), so leave them, + # especially as we might pass files found there to a mingw objdump, + # which wouldn't understand a cygwinified path. Ahh. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` + else + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + ;; + pw32*) + # pw32 DLLs use 'pw' prefix rather than 'lib' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + ;; + esac + ;; + + *) + library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' + ;; + esac + dynamic_linker='Win32 ld.exe' + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + +darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' + soname_spec='${libname}${release}${major}$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' +m4_if([$1], [],[ + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) + sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' + ;; + +dgux*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +freebsd1*) + dynamic_linker=no + ;; + +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[[123]]*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[[01]]* | freebsdelf3.[[01]]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ + freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + *) # from 4.6 on, and DragonFly + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; + +gnu*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + hardcode_into_libs=yes + ;; + +hpux9* | hpux10* | hpux11*) + # Give a soname corresponding to the major version so that dld.sl refuses to + # link against other versions. + version_type=sunos + need_lib_prefix=no + need_version=no + case $host_cpu in + ia64*) + shrext_cmds='.so' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.so" + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + if test "X$HPUX_IA64_MODE" = X32; then + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + else + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + fi + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + hppa*64*) + shrext_cmds='.sl' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.sl" + shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + *) + shrext_cmds='.sl' + dynamic_linker="$host_os dld.sl" + shlibpath_var=SHLIB_PATH + shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555. + postinstall_cmds='chmod 555 $lib' + ;; + +interix[[3-9]]*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +irix5* | irix6* | nonstopux*) + case $host_os in + nonstopux*) version_type=nonstopux ;; + *) + if test "$lt_cv_prog_gnu_ld" = yes; then + version_type=linux + else + version_type=irix + fi ;; + esac + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + case $host_os in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in # libtool.m4 will add one of these switches to LD + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") + libsuff= shlibsuff= libmagic=32-bit;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") + libsuff=32 shlibsuff=N32 libmagic=N32;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") + libsuff=64 shlibsuff=64 libmagic=64-bit;; + *) libsuff= shlibsuff= libmagic=never-match;; + esac + ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +# This must be Linux ELF. +linux* | k*bsd*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + # Some binutils ld are patched to set DT_RUNPATH + save_LDFLAGS=$LDFLAGS + save_libdir=$libdir + eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ + LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" + AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], + [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], + [shlibpath_overrides_runpath=yes])]) + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + # Append ld.so.conf contents to the search path + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on + # powerpc, because MkLinux only supported shared libraries with the + # GNU dynamic linker. Since this was broken with cross compilers, + # most powerpc-linux boxes support dynamic linking these days and + # people can always --disable-shared, the test was removed, and we + # assume the GNU/Linux dynamic linker is in use. + dynamic_linker='GNU/Linux ld.so' + ;; + +netbsd*) + version_type=sunos + need_lib_prefix=no + need_version=no + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + dynamic_linker='NetBSD (a.out) ld.so' + else + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='NetBSD ld.elf_so' + fi + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + +newsos6) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +*nto* | *qnx*) + version_type=qnx + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='ldqnx.so' + ;; + +openbsd*) + version_type=sunos + sys_lib_dlsearch_path_spec="/usr/lib" + need_lib_prefix=no + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + case $host_os in + openbsd2.[[89]] | openbsd2.[[89]].*) + shlibpath_overrides_runpath=no + ;; + *) + shlibpath_overrides_runpath=yes + ;; + esac + else + shlibpath_overrides_runpath=yes + fi + ;; + +os2*) + libname_spec='$name' + shrext_cmds=".dll" + need_lib_prefix=no + library_names_spec='$libname${shared_ext} $libname.a' + dynamic_linker='OS/2 ld.exe' + shlibpath_var=LIBPATH + ;; + +osf3* | osf4* | osf5*) + version_type=osf + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + ;; + +rdos*) + dynamic_linker=no + ;; + +solaris*) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + # ldd complains unless libraries are executable + postinstall_cmds='chmod +x $lib' + ;; + +sunos4*) + version_type=sunos + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + if test "$with_gnu_ld" = yes; then + need_lib_prefix=no + fi + need_version=yes + ;; + +sysv4 | sysv4.3*) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + case $host_vendor in + sni) + shlibpath_overrides_runpath=no + need_lib_prefix=no + runpath_var=LD_RUN_PATH + ;; + siemens) + need_lib_prefix=no + ;; + motorola) + need_lib_prefix=no + need_version=no + shlibpath_overrides_runpath=no + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + +sysv4*MP*) + if test -d /usr/nec ;then + version_type=linux + library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' + soname_spec='$libname${shared_ext}.$major' + shlibpath_var=LD_LIBRARY_PATH + fi + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=freebsd-elf + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + if test "$with_gnu_ld" = yes; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; + +tpf*) + # TPF is a cross-target only. Preferred cross-host = GNU/Linux. + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +uts4*) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +*) + dynamic_linker=no + ;; +esac +AC_MSG_RESULT([$dynamic_linker]) +test "$dynamic_linker" = no && can_build_shared=no + +variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" +fi + +if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +fi +if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then + sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" +fi + +_LT_DECL([], [variables_saved_for_relink], [1], + [Variables whose values should be saved in libtool wrapper scripts and + restored at link time]) +_LT_DECL([], [need_lib_prefix], [0], + [Do we need the "lib" prefix for modules?]) +_LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) +_LT_DECL([], [version_type], [0], [Library versioning type]) +_LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) +_LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) +_LT_DECL([], [shlibpath_overrides_runpath], [0], + [Is shlibpath searched before the hard-coded library search path?]) +_LT_DECL([], [libname_spec], [1], [Format of library name prefix]) +_LT_DECL([], [library_names_spec], [1], + [[List of archive names. First name is the real one, the rest are links. + The last name is the one that the linker finds with -lNAME]]) +_LT_DECL([], [soname_spec], [1], + [[The coded name of the library, if different from the real name]]) +_LT_DECL([], [postinstall_cmds], [2], + [Command to use after installation of a shared archive]) +_LT_DECL([], [postuninstall_cmds], [2], + [Command to use after uninstallation of a shared archive]) +_LT_DECL([], [finish_cmds], [2], + [Commands used to finish a libtool library installation in a directory]) +_LT_DECL([], [finish_eval], [1], + [[As "finish_cmds", except a single script fragment to be evaled but + not shown]]) +_LT_DECL([], [hardcode_into_libs], [0], + [Whether we should hardcode library paths into libraries]) +_LT_DECL([], [sys_lib_search_path_spec], [2], + [Compile-time system search path for libraries]) +_LT_DECL([], [sys_lib_dlsearch_path_spec], [2], + [Run-time system search path for libraries]) +])# _LT_SYS_DYNAMIC_LINKER + + +# _LT_PATH_TOOL_PREFIX(TOOL) +# -------------------------- +# find a file program which can recognize shared library +AC_DEFUN([_LT_PATH_TOOL_PREFIX], +[m4_require([_LT_DECL_EGREP])dnl +AC_MSG_CHECKING([for $1]) +AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, +[case $MAGIC_CMD in +[[\\/*] | ?:[\\/]*]) + lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD="$MAGIC_CMD" + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR +dnl $ac_dummy forces splitting on constant user-supplied paths. +dnl POSIX.2 word splitting is done only on the output of word expansions, +dnl not every word. This closes a longstanding sh security hole. + ac_dummy="m4_if([$2], , $PATH, [$2])" + for ac_dir in $ac_dummy; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$1; then + lt_cv_path_MAGIC_CMD="$ac_dir/$1" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS="$lt_save_ifs" + MAGIC_CMD="$lt_save_MAGIC_CMD" + ;; +esac]) +MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +if test -n "$MAGIC_CMD"; then + AC_MSG_RESULT($MAGIC_CMD) +else + AC_MSG_RESULT(no) +fi +_LT_DECL([], [MAGIC_CMD], [0], + [Used to examine libraries when file_magic_cmd begins with "file"])dnl +])# _LT_PATH_TOOL_PREFIX + +# Old name: +AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) + + +# _LT_PATH_MAGIC +# -------------- +# find a file program which can recognize a shared library +m4_defun([_LT_PATH_MAGIC], +[_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) +if test -z "$lt_cv_path_MAGIC_CMD"; then + if test -n "$ac_tool_prefix"; then + _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) + else + MAGIC_CMD=: + fi +fi +])# _LT_PATH_MAGIC + + +# LT_PATH_LD +# ---------- +# find the pathname to the GNU or non-GNU linker +AC_DEFUN([LT_PATH_LD], +[AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_DECL_EGREP])dnl + +AC_ARG_WITH([gnu-ld], + [AS_HELP_STRING([--with-gnu-ld], + [assume the C compiler uses GNU ld @<:@default=no@:>@])], + [test "$withval" = no || with_gnu_ld=yes], + [with_gnu_ld=no])dnl + +ac_prog=ld +if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + AC_MSG_CHECKING([for ld used by $CC]) + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [[\\/]]* | ?:[[\\/]]*) + re_direlt='/[[^/]][[^/]]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` + while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do + ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` + done + test -z "$LD" && LD="$ac_prog" + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test "$with_gnu_ld" = yes; then + AC_MSG_CHECKING([for GNU ld]) +else + AC_MSG_CHECKING([for non-GNU ld]) +fi +AC_CACHE_VAL(lt_cv_path_LD, +[if test -z "$LD"; then + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + lt_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null 2>&1; then + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + else + lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' + lt_cv_file_magic_cmd='$OBJDUMP -f' + fi + lt_cv_deplibs_check_method=pass_all + ;; + +cegcc) + # use the weaker test based on 'objdump'. See mingw*. + lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' + lt_cv_file_magic_cmd='$OBJDUMP -f' + ;; + +darwin* | rhapsody*) + lt_cv_deplibs_check_method=pass_all + ;; + +freebsd* | dragonfly*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + case $host_cpu in + i*86 ) + # Not sure whether the presence of OpenBSD here was a mistake. + # Let's accept both of them until this is cleared up. + lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` + ;; + esac + else + lt_cv_deplibs_check_method=pass_all + fi + ;; + +gnu*) + lt_cv_deplibs_check_method=pass_all + ;; + +hpux10.20* | hpux11*) + lt_cv_file_magic_cmd=/usr/bin/file + case $host_cpu in + ia64*) + lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' + lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so + ;; + hppa*64*) + [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]'] + lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl + ;; + *) + lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library' + lt_cv_file_magic_test_file=/usr/lib/libc.sl + ;; + esac + ;; + +interix[[3-9]]*) + # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' + ;; + +irix5* | irix6* | nonstopux*) + case $LD in + *-32|*"-32 ") libmagic=32-bit;; + *-n32|*"-n32 ") libmagic=N32;; + *-64|*"-64 ") libmagic=64-bit;; + *) libmagic=never-match;; + esac + lt_cv_deplibs_check_method=pass_all + ;; + +# This must be Linux ELF. +linux* | k*bsd*-gnu) + lt_cv_deplibs_check_method=pass_all + ;; + +netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' + fi + ;; + +newos6*) + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=/usr/lib/libnls.so + ;; + +*nto* | *qnx*) + lt_cv_deplibs_check_method=pass_all + ;; + +openbsd*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' + fi + ;; + +osf3* | osf4* | osf5*) + lt_cv_deplibs_check_method=pass_all + ;; + +rdos*) + lt_cv_deplibs_check_method=pass_all + ;; + +solaris*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv4 | sysv4.3*) + case $host_vendor in + motorola) + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` + ;; + ncr) + lt_cv_deplibs_check_method=pass_all + ;; + sequent) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' + ;; + sni) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" + lt_cv_file_magic_test_file=/lib/libc.so + ;; + siemens) + lt_cv_deplibs_check_method=pass_all + ;; + pc) + lt_cv_deplibs_check_method=pass_all + ;; + esac + ;; + +tpf*) + lt_cv_deplibs_check_method=pass_all + ;; +esac +]) +file_magic_cmd=$lt_cv_file_magic_cmd +deplibs_check_method=$lt_cv_deplibs_check_method +test -z "$deplibs_check_method" && deplibs_check_method=unknown + +_LT_DECL([], [deplibs_check_method], [1], + [Method to check whether dependent libraries are shared objects]) +_LT_DECL([], [file_magic_cmd], [1], + [Command to use when deplibs_check_method == "file_magic"]) +])# _LT_CHECK_MAGIC_METHOD + + +# LT_PATH_NM +# ---------- +# find the pathname to a BSD- or MS-compatible name lister +AC_DEFUN([LT_PATH_NM], +[AC_REQUIRE([AC_PROG_CC])dnl +AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, +[if test -n "$NM"; then + # Let the user override the test. + lt_cv_path_NM="$NM" +else + lt_nm_to_check="${ac_tool_prefix}nm" + if test -n "$ac_tool_prefix" && test "$build" = "$host"; then + lt_nm_to_check="$lt_nm_to_check nm" + fi + for lt_tmp_nm in $lt_nm_to_check; do + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + tmp_nm="$ac_dir/$lt_tmp_nm" + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then + # Check to see if the nm accepts a BSD-compat flag. + # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # nm: unknown option "B" ignored + # Tru64's nm complains that /dev/null is an invalid object file + case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in + */dev/null* | *'Invalid file or object type'*) + lt_cv_path_NM="$tmp_nm -B" + break + ;; + *) + case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in + */dev/null*) + lt_cv_path_NM="$tmp_nm -p" + break + ;; + *) + lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but + continue # so that we can try to find one that supports BSD flags + ;; + esac + ;; + esac + fi + done + IFS="$lt_save_ifs" + done + : ${lt_cv_path_NM=no} +fi]) +if test "$lt_cv_path_NM" != "no"; then + NM="$lt_cv_path_NM" +else + # Didn't find any BSD compatible name lister, look for dumpbin. + AC_CHECK_TOOLS(DUMPBIN, ["dumpbin -symbols" "link -dump -symbols"], :) + AC_SUBST([DUMPBIN]) + if test "$DUMPBIN" != ":"; then + NM="$DUMPBIN" + fi +fi +test -z "$NM" && NM=nm +AC_SUBST([NM]) +_LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl + +AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], + [lt_cv_nm_interface="BSD nm" + echo "int some_variable = 0;" > conftest.$ac_ext + (eval echo "\"\$as_me:__oline__: $ac_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$ac_compile" 2>conftest.err) + cat conftest.err >&AS_MESSAGE_LOG_FD + (eval echo "\"\$as_me:__oline__: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) + (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) + cat conftest.err >&AS_MESSAGE_LOG_FD + (eval echo "\"\$as_me:__oline__: output\"" >&AS_MESSAGE_LOG_FD) + cat conftest.out >&AS_MESSAGE_LOG_FD + if $GREP 'External.*some_variable' conftest.out > /dev/null; then + lt_cv_nm_interface="MS dumpbin" + fi + rm -f conftest*]) +])# LT_PATH_NM + +# Old names: +AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) +AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_PROG_NM], []) +dnl AC_DEFUN([AC_PROG_NM], []) + + +# LT_LIB_M +# -------- +# check for math library +AC_DEFUN([LT_LIB_M], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +LIBM= +case $host in +*-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*) + # These system don't have libm, or don't need it + ;; +*-ncr-sysv4.3*) + AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") + AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") + ;; +*) + AC_CHECK_LIB(m, cos, LIBM="-lm") + ;; +esac +AC_SUBST([LIBM]) +])# LT_LIB_M + +# Old name: +AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_CHECK_LIBM], []) + + +# _LT_COMPILER_NO_RTTI([TAGNAME]) +# ------------------------------- +m4_defun([_LT_COMPILER_NO_RTTI], +[m4_require([_LT_TAG_COMPILER])dnl + +_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= + +if test "$GCC" = yes; then + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' + + _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], + lt_cv_prog_compiler_rtti_exceptions, + [-fno-rtti -fno-exceptions], [], + [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) +fi +_LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], + [Compiler flag to turn off builtin functions]) +])# _LT_COMPILER_NO_RTTI + + +# _LT_CMD_GLOBAL_SYMBOLS +# ---------------------- +m4_defun([_LT_CMD_GLOBAL_SYMBOLS], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([LT_PATH_NM])dnl +AC_REQUIRE([LT_PATH_LD])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_TAG_COMPILER])dnl + +# Check for command to grab the raw symbol name followed by C symbol from nm. +AC_MSG_CHECKING([command to parse $NM output from $compiler object]) +AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], +[ +# These are sane defaults that work on at least a few old systems. +# [They come from Ultrix. What could be older than Ultrix?!! ;)] + +# Character class describing NM global symbol codes. +symcode='[[BCDEGRST]]' + +# Regexp to match symbols that can be accessed directly from C. +sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' + +# Define system-specific variables. +case $host_os in +aix*) + symcode='[[BCDT]]' + ;; +cygwin* | mingw* | pw32* | cegcc*) + symcode='[[ABCDGISTW]]' + ;; +hpux*) + if test "$host_cpu" = ia64; then + symcode='[[ABCDEGRST]]' + fi + ;; +irix* | nonstopux*) + symcode='[[BCDEGRST]]' + ;; +osf*) + symcode='[[BCDEGQRST]]' + ;; +solaris*) + symcode='[[BDRT]]' + ;; +sco3.2v5*) + symcode='[[DT]]' + ;; +sysv4.2uw2*) + symcode='[[DT]]' + ;; +sysv5* | sco5v6* | unixware* | OpenUNIX*) + symcode='[[ABDT]]' + ;; +sysv4) + symcode='[[DFNSTU]]' + ;; +esac + +# If we're using GNU nm, then use its standard symbol codes. +case `$NM -V 2>&1` in +*GNU* | *'with BFD'*) + symcode='[[ABCDGIRSTW]]' ;; +esac + +# Transform an extracted symbol line into a proper C declaration. +# Some systems (esp. on ia64) link data and code symbols differently, +# so use this general approach. +lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" + +# Transform an extracted symbol line into symbol name and symbol address +lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'" +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"lib\2\", (void *) \&\2},/p'" + +# Handle CRLF in mingw tool chain +opt_cr= +case $build_os in +mingw*) + opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp + ;; +esac + +# Try without a prefix underscore, then with it. +for ac_symprfx in "" "_"; do + + # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. + symxfrm="\\1 $ac_symprfx\\2 \\2" + + # Write the raw and C identifiers. + if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Fake it for dumpbin and say T for any non-static function + # and D for any global variable. + # Also find C++ and __fastcall symbols from MSVC++, + # which start with @ or ?. + lt_cv_sys_global_symbol_pipe="$AWK ['"\ +" {last_section=section; section=\$ 3};"\ +" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ +" \$ 0!~/External *\|/{next};"\ +" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ +" {if(hide[section]) next};"\ +" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ +" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ +" s[1]~/^[@?]/{print s[1], s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ +" ' prfx=^$ac_symprfx]" + else + lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" + fi + + # Check to see that the pipe works correctly. + pipe_works=no + + rm -f conftest* + cat > conftest.$ac_ext <<_LT_EOF +#ifdef __cplusplus +extern "C" { +#endif +char nm_test_var; +void nm_test_func(void); +void nm_test_func(void){} +#ifdef __cplusplus +} +#endif +int main(){nm_test_var='a';nm_test_func();return(0);} +_LT_EOF + + if AC_TRY_EVAL(ac_compile); then + # Now try to grab the symbols. + nlist=conftest.nm + if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) && test -s "$nlist"; then + # Try sorting and uniquifying the output. + if sort "$nlist" | uniq > "$nlist"T; then + mv -f "$nlist"T "$nlist" + else + rm -f "$nlist"T + fi + + # Make sure that we snagged all the symbols we need. + if $GREP ' nm_test_var$' "$nlist" >/dev/null; then + if $GREP ' nm_test_func$' "$nlist" >/dev/null; then + cat <<_LT_EOF > conftest.$ac_ext +#ifdef __cplusplus +extern "C" { +#endif + +_LT_EOF + # Now generate the symbol file. + eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' + + cat <<_LT_EOF >> conftest.$ac_ext + +/* The mapping between symbol names and symbols. */ +const struct { + const char *name; + void *address; +} +lt__PROGRAM__LTX_preloaded_symbols[[]] = +{ + { "@PROGRAM@", (void *) 0 }, +_LT_EOF + $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + cat <<\_LT_EOF >> conftest.$ac_ext + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt__PROGRAM__LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif +_LT_EOF + # Now try linking the two files. + mv conftest.$ac_objext conftstm.$ac_objext + lt_save_LIBS="$LIBS" + lt_save_CFLAGS="$CFLAGS" + LIBS="conftstm.$ac_objext" + CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" + if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then + pipe_works=yes + fi + LIBS="$lt_save_LIBS" + CFLAGS="$lt_save_CFLAGS" + else + echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD + fi + else + echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD + fi + else + echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD + fi + else + echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD + cat conftest.$ac_ext >&5 + fi + rm -rf conftest* conftst* + + # Do not use the global_symbol_pipe unless it works. + if test "$pipe_works" = yes; then + break + else + lt_cv_sys_global_symbol_pipe= + fi +done +]) +if test -z "$lt_cv_sys_global_symbol_pipe"; then + lt_cv_sys_global_symbol_to_cdecl= +fi +if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then + AC_MSG_RESULT(failed) +else + AC_MSG_RESULT(ok) +fi + +_LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], + [Take the output of nm and produce a listing of raw symbols and C names]) +_LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], + [Transform the output of nm in a proper C declaration]) +_LT_DECL([global_symbol_to_c_name_address], + [lt_cv_sys_global_symbol_to_c_name_address], [1], + [Transform the output of nm in a C name address pair]) +_LT_DECL([global_symbol_to_c_name_address_lib_prefix], + [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], + [Transform the output of nm in a C name address pair when lib prefix is needed]) +]) # _LT_CMD_GLOBAL_SYMBOLS + + +# _LT_COMPILER_PIC([TAGNAME]) +# --------------------------- +m4_defun([_LT_COMPILER_PIC], +[m4_require([_LT_TAG_COMPILER])dnl +_LT_TAGVAR(lt_prog_compiler_wl, $1)= +_LT_TAGVAR(lt_prog_compiler_pic, $1)= +_LT_TAGVAR(lt_prog_compiler_static, $1)= + +AC_MSG_CHECKING([for $compiler option to produce PIC]) +m4_if([$1], [CXX], [ + # C++ specific cases for pic, static, wl, etc. + if test "$GXX" = yes; then + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + mingw* | cygwin* | os2* | pw32* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' + ;; + *djgpp*) + # DJGPP does not support shared libraries at all + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + ;; + interix[[3-9]]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic + fi + ;; + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + else + case $host_os in + aix[[4-9]]*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + else + _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' + fi + ;; + chorus*) + case $cc_basename in + cxch68*) + # Green Hills C++ Compiler + # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" + ;; + esac + ;; + dgux*) + case $cc_basename in + ec++*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + ;; + ghcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + *) + ;; + esac + ;; + freebsd* | dragonfly*) + # FreeBSD uses GNU C++ + ;; + hpux9* | hpux10* | hpux11*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + if test "$host_cpu" != ia64; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + fi + ;; + aCC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + ;; + esac + ;; + *) + ;; + esac + ;; + interix*) + # This is c89, which is MS Visual C++ (no shared libs) + # Anyone wants to do a port? + ;; + irix5* | irix6* | nonstopux*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + # CC pic flag -KPIC is the default. + ;; + *) + ;; + esac + ;; + linux* | k*bsd*-gnu) + case $cc_basename in + KCC*) + # KAI C++ Compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + ecpc* ) + # old Intel C++ for x86_64 which still supported -KPIC. + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + icpc* ) + # Intel C++, used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + cxx*) + # Compaq C++ + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + xlc* | xlC*) + # IBM XL 8.0 on PPC + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + esac + ;; + esac + ;; + lynxos*) + ;; + m88k*) + ;; + mvs*) + case $cc_basename in + cxx*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' + ;; + *) + ;; + esac + ;; + netbsd*) + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' + ;; + RCC*) + # Rational C++ 2.4.1 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + cxx*) + # Digital/Compaq C++ + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + *) + ;; + esac + ;; + psos*) + ;; + solaris*) + case $cc_basename in + CC*) + # Sun C++ 4.2, 5.x and Centerline C++ + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + gcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + ;; + *) + ;; + esac + ;; + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + lcc*) + # Lucid + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + *) + ;; + esac + ;; + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + esac + ;; + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + ;; + *) + ;; + esac + ;; + vxworks*) + ;; + *) + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + esac + fi +], +[ + if test "$GCC" = yes; then + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' + ;; + + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + ;; + + interix[[3-9]]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + + msdosdjgpp*) + # Just because we use GCC doesn't mean we suddenly get shared libraries + # on systems that don't support them. + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + enable_shared=no + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic + fi + ;; + + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + else + # PORTME Check for flag to pass linker flags through the system compiler. + case $host_os in + aix*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + else + _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' + fi + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + + hpux9* | hpux10* | hpux11*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but + # not for PA HP-UX. + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + ;; + esac + # Is there a better lt_prog_compiler_static that works with the bundled CC? + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + ;; + + irix5* | irix6* | nonstopux*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # PIC (with -KPIC) is the default. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + linux* | k*bsd*-gnu) + case $cc_basename in + # old Intel for x86_64 which still supported -KPIC. + ecc*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + # icc used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + icc* | ifort*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + # Lahey Fortran 8.1. + lf95*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' + _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' + ;; + pgcc* | pgf77* | pgf90* | pgf95*) + # Portland Group compilers (*not* the Pentium gcc compiler, + # which looks to be a dead project) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + ccc*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # All Alpha code is PIC. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + xl*) + # IBM XL C 8.0/Fortran 10.1 on PPC + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C 5.9 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + ;; + *Sun\ F*) + # Sun Fortran 8.3 passes all unrecognized flags to the linker + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='' + ;; + esac + ;; + esac + ;; + + newsos6) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + + osf3* | osf4* | osf5*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # All OSF/1 code is PIC. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + rdos*) + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + solaris*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + case $cc_basename in + f77* | f90* | f95*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; + *) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; + esac + ;; + + sunos4*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + sysv4 | sysv4.2uw2* | sysv4.3*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + sysv4*MP*) + if test -d /usr/nec ;then + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + unicos*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + + uts4*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + *) + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + esac + fi +]) +case $host_os in + # For platforms which do not support PIC, -DPIC is meaningless: + *djgpp*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" + ;; +esac +AC_MSG_RESULT([$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) +_LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], + [How to pass a linker flag through the compiler]) + +# +# Check to make sure the PIC flag actually works. +# +if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then + _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], + [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], + [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], + [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in + "" | " "*) ;; + *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; + esac], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) +fi +_LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], + [Additional compiler flags for building library objects]) + +# +# Check to make sure the static flag actually works. +# +wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" +_LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], + _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), + $lt_tmp_static_flag, + [], + [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) +_LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], + [Compiler flag to prevent dynamic linking]) +])# _LT_COMPILER_PIC + + +# _LT_LINKER_SHLIBS([TAGNAME]) +# ---------------------------- +# See if the linker supports building shared libraries. +m4_defun([_LT_LINKER_SHLIBS], +[AC_REQUIRE([LT_PATH_LD])dnl +AC_REQUIRE([LT_PATH_NM])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl +m4_require([_LT_TAG_COMPILER])dnl +AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) +m4_if([$1], [CXX], [ + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + case $host_os in + aix[[4-9]]*) + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + ;; + pw32*) + _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" + ;; + cygwin* | mingw* | cegcc*) + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;/^.*[[ ]]__nm__/s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' + ;; + *) + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + ;; + esac + _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] +], [ + runpath_var= + _LT_TAGVAR(allow_undefined_flag, $1)= + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(archive_cmds, $1)= + _LT_TAGVAR(archive_expsym_cmds, $1)= + _LT_TAGVAR(compiler_needs_object, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + _LT_TAGVAR(export_dynamic_flag_spec, $1)= + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(hardcode_automatic, $1)=no + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= + _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= + _LT_TAGVAR(hardcode_libdir_separator, $1)= + _LT_TAGVAR(hardcode_minus_L, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported + _LT_TAGVAR(inherit_rpath, $1)=no + _LT_TAGVAR(link_all_deplibs, $1)=unknown + _LT_TAGVAR(module_cmds, $1)= + _LT_TAGVAR(module_expsym_cmds, $1)= + _LT_TAGVAR(old_archive_from_new_cmds, $1)= + _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= + _LT_TAGVAR(thread_safe_flag_spec, $1)= + _LT_TAGVAR(whole_archive_flag_spec, $1)= + # include_expsyms should be a list of space-separated symbols to be *always* + # included in the symbol list + _LT_TAGVAR(include_expsyms, $1)= + # exclude_expsyms can be an extended regexp of symbols to exclude + # it will be wrapped by ` (' and `)$', so one must not match beginning or + # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', + # as well as any symbol that contains `d'. + _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] + # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out + # platforms (ab)use it in PIC code, but their linkers get confused if + # the symbol is explicitly referenced. Since portable code cannot + # rely on this symbol name, it's probably fine to never include it in + # preloaded symbol tables. + # Exclude shared library initialization/finalization symbols. +dnl Note also adjust exclude_expsyms for C++ above. + extract_expsyms_cmds= + + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + # FIXME: the MSVC++ port hasn't been tested in a loooong time + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + if test "$GCC" != yes; then + with_gnu_ld=no + fi + ;; + interix*) + # we just hope/assume this is gcc and not c89 (= MSVC++) + with_gnu_ld=yes + ;; + openbsd*) + with_gnu_ld=no + ;; + esac + + _LT_TAGVAR(ld_shlibs, $1)=yes + if test "$with_gnu_ld" = yes; then + # If archive_cmds runs LD, not CC, wlarc should be empty + wlarc='${wl}' + + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + runpath_var=LD_RUN_PATH + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + # ancient GNU ld didn't support --whole-archive et. al. + if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + supports_anon_versioning=no + case `$LD -v 2>&1` in + *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + + # See if GNU ld supports shared libraries. + case $host_os in + aix[[3-9]]*) + # On AIX/PPC, the GNU linker is very broken + if test "$host_cpu" != ia64; then + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: the GNU linker, at least up to release 2.9.1, is reported +*** to be unable to reliably create shared libraries on AIX. +*** Therefore, libtool is disabling shared libraries support. If you +*** really care for shared libraries, you may want to modify your PATH +*** so that a non-GNU linker is found, and then restart. + +_LT_EOF + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='' + ;; + m68k) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, + # as there is no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + interix[[3-9]]*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + + gnu* | linux* | tpf* | k*bsd*-gnu) + tmp_diet=no + if test "$host_os" = linux-dietlibc; then + case $cc_basename in + diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) + esac + fi + if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ + && test "$tmp_diet" = no + then + tmp_addflag= + tmp_sharedflag='-shared' + case $cc_basename,$host_cpu in + pgcc*) # Portland Group C compiler + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag' + ;; + pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag -Mnomain' ;; + ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 + tmp_addflag=' -i_dynamic' ;; + efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 + tmp_addflag=' -i_dynamic -nofor_main' ;; + ifc* | ifort*) # Intel Fortran compiler + tmp_addflag=' -nofor_main' ;; + lf95*) # Lahey Fortran 8.1 + _LT_TAGVAR(whole_archive_flag_spec, $1)= + tmp_sharedflag='--shared' ;; + xl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) + tmp_sharedflag='-qmkshrobj' + tmp_addflag= ;; + esac + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C 5.9 + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + tmp_sharedflag='-G' ;; + *Sun\ F*) # Sun Fortran 8.3 + tmp_sharedflag='-G' ;; + esac + _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + + case $cc_basename in + xlf*) + # IBM XL Fortran 10.1 on PPC cannot create shared libs itself + _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= + _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir' + _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $compiler_flags -soname $soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $compiler_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + fi + ;; + esac + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' + wlarc= + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + fi + ;; + + solaris*) + if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: The releases 2.8.* of the GNU linker cannot reliably +*** create shared libraries on Solaris systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.9.1 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) + case `$LD -v 2>&1` in + *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not +*** reliably create shared libraries on SCO systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.16.91.0.3 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + ;; + *) + # For security reasons, it is highly recommended that you always + # use absolute paths for naming shared libraries, and exclude the + # DT_RUNPATH tag from executables and libraries. But doing so + # requires that you compile everything twice, which is a pain. + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + sunos4*) + _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' + wlarc= + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + + if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then + runpath_var= + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= + _LT_TAGVAR(export_dynamic_flag_spec, $1)= + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + else + # PORTME fill in a description of your system's linker (not GNU ld) + case $host_os in + aix3*) + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=yes + _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' + # Note: this linker hardcodes the directories in LIBPATH if there + # are no directories specified by -L. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + _LT_TAGVAR(hardcode_direct, $1)=unsupported + fi + ;; + + aix[[4-9]]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) + for ld_flag in $LDFLAGS; do + if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + aix_use_runtimelinking=yes + break + fi + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + _LT_TAGVAR(archive_cmds, $1)='' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + + if test "$GCC" = yes; then + case $host_os in aix4.[[012]]|aix4.[[012]].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + _LT_TAGVAR(hardcode_direct, $1)=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)= + fi + ;; + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to export. + _LT_TAGVAR(always_export_symbols, $1)=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(allow_undefined_flag, $1)='-berok' + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' + _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' + # Exported symbols can be pulled into shared objects from archives + _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + # This is similar to how AIX traditionally builds its shared libraries. + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='' + ;; + m68k) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + ;; + + bsdi[[45]]*) + _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `$ECHO "X$deplibs" | $Xsed -e '\''s/ -lc$//'\''` -link -dll~linknames=' + # The linker will automatically build a .lib file if we build a DLL. + _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' + # FIXME: Should let the user specify the lib program. + _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' + _LT_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + ;; + + darwin* | rhapsody*) + _LT_DARWIN_LINKER_FEATURES($1) + ;; + + dgux*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + freebsd1*) + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor + # support. Future versions do this automatically, but an explicit c++rt0.o + # does not break anything, and helps significantly (at the cost of a little + # extra space). + freebsd2.2*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # Unfortunately, older versions of FreeBSD 2 do not have this feature. + freebsd2*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # FreeBSD 3 and greater uses gcc -shared to do shared libraries. + freebsd* | dragonfly*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + hpux9*) + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_direct, $1)=yes + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + ;; + + hpux10*) + if test "$GCC" = yes -a "$with_gnu_ld" = no; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' + fi + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + fi + ;; + + hpux11*) + if test "$GCC" = yes -a "$with_gnu_ld" = no; then + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + else + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + fi + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + case $host_cpu in + hppa*64*|ia64*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + *) + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + fi + ;; + + irix5* | irix6* | nonstopux*) + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + # Try to use the -exported_symbol ld option, if it does not + # work, assume that -exports_file does not work either and + # implicitly export all symbols. + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" + AC_LINK_IFELSE(int foo(void) {}, + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' + ) + LDFLAGS="$save_LDFLAGS" + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(inherit_rpath, $1)=yes + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out + else + _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + newsos6) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *nto* | *qnx*) + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + else + case $host_os in + openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + ;; + esac + fi + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + os2*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$ECHO DATA >> $output_objdir/$libname.def~$ECHO " SINGLE NONSHARED" >> $output_objdir/$libname.def~$ECHO EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' + _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' + ;; + + osf3*) + if test "$GCC" = yes; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + ;; + + osf4* | osf5*) # as osf3* with the addition of -msym flag + if test "$GCC" = yes; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + else + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ + $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' + + # Both c and cxx compiler support -rpath directly + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + ;; + + solaris*) + _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' + if test "$GCC" = yes; then + wlarc='${wl}' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + else + case `$CC -V 2>&1` in + *"Compilers 5.0"*) + wlarc='' + _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + ;; + *) + wlarc='${wl}' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + ;; + esac + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. GCC discards it without `$wl', + # but is careful enough not to reorder. + # Supported since Solaris 2.6 (maybe 2.5.1?) + if test "$GCC" = yes; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' + fi + ;; + esac + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + sunos4*) + if test "x$host_vendor" = xsequent; then + # Use $CC to link under sequent, because it throws in some extra .o + # files that make .init and .fini sections work. + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + sysv4) + case $host_vendor in + sni) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? + ;; + siemens) + ## LD is ld it makes a PLAMLIB + ## CC just makes a GrossModule. + _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' + _LT_TAGVAR(hardcode_direct, $1)=no + ;; + motorola) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie + ;; + esac + runpath_var='LD_RUN_PATH' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + sysv4.3*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var=LD_RUN_PATH + hardcode_runpath_var=yes + _LT_TAGVAR(ld_shlibs, $1)=yes + fi + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + uts4*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *) + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + + if test x$host_vendor = xsni; then + case $host in + sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym' + ;; + esac + fi + fi +]) +AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) +test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no + +_LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld + +_LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl +_LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl +_LT_DECL([], [extract_expsyms_cmds], [2], + [The commands to extract the exported symbol list from a shared archive]) + +# +# Do we need to explicitly link libc? +# +case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in +x|xyes) + # Assume -lc should be added + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + + if test "$enable_shared" = yes && test "$GCC" = yes; then + case $_LT_TAGVAR(archive_cmds, $1) in + *'~'*) + # FIXME: we may have to deal with multi-command sequences. + ;; + '$CC '*) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. + AC_MSG_CHECKING([whether -lc should be explicitly linked in]) + $RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if AC_TRY_EVAL(ac_compile) 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext + deplibs= + wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) + pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) + _LT_TAGVAR(allow_undefined_flag, $1)= + if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) + then + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + else + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + fi + _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag + else + cat conftest.err 1>&5 + fi + $RM conftest* + AC_MSG_RESULT([$_LT_TAGVAR(archive_cmds_need_lc, $1)]) + ;; + esac + fi + ;; +esac + +_LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], + [Whether or not to add -lc for building shared libraries]) +_LT_TAGDECL([allow_libtool_libs_with_static_runtimes], + [enable_shared_with_static_runtimes], [0], + [Whether or not to disallow shared libs when runtime libs are static]) +_LT_TAGDECL([], [export_dynamic_flag_spec], [1], + [Compiler flag to allow reflexive dlopens]) +_LT_TAGDECL([], [whole_archive_flag_spec], [1], + [Compiler flag to generate shared objects directly from archives]) +_LT_TAGDECL([], [compiler_needs_object], [1], + [Whether the compiler copes with passing no objects directly]) +_LT_TAGDECL([], [old_archive_from_new_cmds], [2], + [Create an old-style archive from a shared archive]) +_LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], + [Create a temporary old-style archive to link instead of a shared archive]) +_LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) +_LT_TAGDECL([], [archive_expsym_cmds], [2]) +_LT_TAGDECL([], [module_cmds], [2], + [Commands used to build a loadable module if different from building + a shared archive.]) +_LT_TAGDECL([], [module_expsym_cmds], [2]) +_LT_TAGDECL([], [with_gnu_ld], [1], + [Whether we are building with GNU ld or not]) +_LT_TAGDECL([], [allow_undefined_flag], [1], + [Flag that allows shared libraries with undefined symbols to be built]) +_LT_TAGDECL([], [no_undefined_flag], [1], + [Flag that enforces no undefined symbols]) +_LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], + [Flag to hardcode $libdir into a binary during linking. + This must work even if $libdir does not exist]) +_LT_TAGDECL([], [hardcode_libdir_flag_spec_ld], [1], + [[If ld is used when linking, flag to hardcode $libdir into a binary + during linking. This must work even if $libdir does not exist]]) +_LT_TAGDECL([], [hardcode_libdir_separator], [1], + [Whether we need a single "-rpath" flag with a separated argument]) +_LT_TAGDECL([], [hardcode_direct], [0], + [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes + DIR into the resulting binary]) +_LT_TAGDECL([], [hardcode_direct_absolute], [0], + [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes + DIR into the resulting binary and the resulting library dependency is + "absolute", i.e impossible to change by setting ${shlibpath_var} if the + library is relocated]) +_LT_TAGDECL([], [hardcode_minus_L], [0], + [Set to "yes" if using the -LDIR flag during linking hardcodes DIR + into the resulting binary]) +_LT_TAGDECL([], [hardcode_shlibpath_var], [0], + [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR + into the resulting binary]) +_LT_TAGDECL([], [hardcode_automatic], [0], + [Set to "yes" if building a shared library automatically hardcodes DIR + into the library and all subsequent libraries and executables linked + against it]) +_LT_TAGDECL([], [inherit_rpath], [0], + [Set to yes if linker adds runtime paths of dependent libraries + to runtime path list]) +_LT_TAGDECL([], [link_all_deplibs], [0], + [Whether libtool must link a program against all its dependency libraries]) +_LT_TAGDECL([], [fix_srcfile_path], [1], + [Fix the shell variable $srcfile for the compiler]) +_LT_TAGDECL([], [always_export_symbols], [0], + [Set to "yes" if exported symbols are required]) +_LT_TAGDECL([], [export_symbols_cmds], [2], + [The commands to list exported symbols]) +_LT_TAGDECL([], [exclude_expsyms], [1], + [Symbols that should not be listed in the preloaded symbols]) +_LT_TAGDECL([], [include_expsyms], [1], + [Symbols that must always be exported]) +_LT_TAGDECL([], [prelink_cmds], [2], + [Commands necessary for linking programs (against libraries) with templates]) +_LT_TAGDECL([], [file_list_spec], [1], + [Specify filename containing input files]) +dnl FIXME: Not yet implemented +dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], +dnl [Compiler flag to generate thread safe objects]) +])# _LT_LINKER_SHLIBS + + +# _LT_LANG_C_CONFIG([TAG]) +# ------------------------ +# Ensure that the configuration variables for a C compiler are suitably +# defined. These variables are subsequently used by _LT_CONFIG to write +# the compiler configuration to `libtool'. +m4_defun([_LT_LANG_C_CONFIG], +[m4_require([_LT_DECL_EGREP])dnl +lt_save_CC="$CC" +AC_LANG_PUSH(C) + +# Source file extension for C test sources. +ac_ext=c + +# Object file extension for compiled C test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="int some_variable = 0;" + +# Code to be used in simple link tests +lt_simple_link_test_code='int main(){return(0);}' + +_LT_TAG_COMPILER +# Save the default compiler, since it gets overwritten when the other +# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. +compiler_DEFAULT=$CC + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +## CAVEAT EMPTOR: +## There is no encapsulation within the following macros, do not change +## the running order or otherwise move them around unless you know exactly +## what you are doing... +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + LT_SYS_DLOPEN_SELF + _LT_CMD_STRIPLIB + + # Report which library types will actually be built + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_CONFIG($1) +fi +AC_LANG_POP +CC="$lt_save_CC" +])# _LT_LANG_C_CONFIG + + +# _LT_PROG_CXX +# ------------ +# Since AC_PROG_CXX is broken, in that it returns g++ if there is no c++ +# compiler, we have our own version here. +m4_defun([_LT_PROG_CXX], +[ +pushdef([AC_MSG_ERROR], [_lt_caught_CXX_error=yes]) +AC_PROG_CXX +if test -n "$CXX" && ( test "X$CXX" != "Xno" && + ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || + (test "X$CXX" != "Xg++"))) ; then + AC_PROG_CXXCPP +else + _lt_caught_CXX_error=yes +fi +popdef([AC_MSG_ERROR]) +])# _LT_PROG_CXX + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([_LT_PROG_CXX], []) + + +# _LT_LANG_CXX_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for a C++ compiler are suitably +# defined. These variables are subsequently used by _LT_CONFIG to write +# the compiler configuration to `libtool'. +m4_defun([_LT_LANG_CXX_CONFIG], +[AC_REQUIRE([_LT_PROG_CXX])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_EGREP])dnl + +AC_LANG_PUSH(C++) +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(compiler_needs_object, $1)=no +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for C++ test sources. +ac_ext=cpp + +# Object file extension for compiled C++ test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the CXX compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_caught_CXX_error" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="int some_variable = 0;" + + # Code to be used in simple link tests + lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC=$CC + lt_save_LD=$LD + lt_save_GCC=$GCC + GCC=$GXX + lt_save_with_gnu_ld=$with_gnu_ld + lt_save_path_LD=$lt_cv_path_LD + if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then + lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx + else + $as_unset lt_cv_prog_gnu_ld + fi + if test -n "${lt_cv_path_LDCXX+set}"; then + lt_cv_path_LD=$lt_cv_path_LDCXX + else + $as_unset lt_cv_path_LD + fi + test -z "${LDCXX+set}" || LD=$LDCXX + CC=${CXX-"c++"} + compiler=$CC + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + + if test -n "$compiler"; then + # We don't want -fno-exception when compiling C++ code, so set the + # no_builtin_flag separately + if test "$GXX" = yes; then + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' + else + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= + fi + + if test "$GXX" = yes; then + # Set up default GNU C++ configuration + + LT_PATH_LD + + # Check if GNU C++ uses GNU ld as the underlying linker, since the + # archiving commands below assume that GNU ld is being used. + if test "$with_gnu_ld" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + + # If archive_cmds runs LD, not CC, wlarc should be empty + # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to + # investigate it a little bit more. (MM) + wlarc='${wl}' + + # ancient GNU ld didn't support --whole-archive et. al. + if eval "`$CC -print-prog-name=ld` --help 2>&1" | + $GREP 'no-whole-archive' > /dev/null; then + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + else + with_gnu_ld=no + wlarc= + + # A generic and very simple default shared library creation + # command for GNU C++ for the case where it uses the native + # linker, instead of GNU ld. If possible, this setting should + # overridden to take advantage of the native linker features on + # the platform it is being used on. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + fi + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' + + else + GXX=no + with_gnu_ld=no + wlarc= + fi + + # PORTME: fill in a description of your system's C++ link characteristics + AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) + _LT_TAGVAR(ld_shlibs, $1)=yes + case $host_os in + aix3*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aix[[4-9]]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) + for ld_flag in $LDFLAGS; do + case $ld_flag in + *-brtl*) + aix_use_runtimelinking=yes + break + ;; + esac + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + _LT_TAGVAR(archive_cmds, $1)='' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + + if test "$GXX" = yes; then + case $host_os in aix4.[[012]]|aix4.[[012]].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + _LT_TAGVAR(hardcode_direct, $1)=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)= + fi + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to + # export. + _LT_TAGVAR(always_export_symbols, $1)=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(allow_undefined_flag, $1)='-berok' + # Determine the default libpath from the value encoded in an empty + # executable. + _LT_SYS_MODULE_PATH_AIX + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' + _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' + # Exported symbols can be pulled into shared objects from archives + _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + # This is similar to how AIX traditionally builds its shared + # libraries. + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + chorus*) + case $cc_basename in + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, + # as there is no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + darwin* | rhapsody*) + _LT_DARWIN_LINKER_FEATURES($1) + ;; + + dgux*) + case $cc_basename in + ec++*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + ghcx*) + # Green Hills C++ Compiler + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + freebsd[[12]]*) + # C++ shared libraries reported to be fairly broken before + # switch to ELF + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + freebsd-elf*) + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + ;; + + freebsd* | dragonfly*) + # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF + # conventions + _LT_TAGVAR(ld_shlibs, $1)=yes + ;; + + gnu*) + ;; + + hpux9*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, + # but as the default + # location of the library. + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aCC*) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' + ;; + *) + if test "$GXX" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + hpux10*|hpux11*) + if test $with_gnu_ld = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + case $host_cpu in + hppa*64*|ia64*) + ;; + *) + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + ;; + esac + fi + case $host_cpu in + hppa*64*|ia64*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + *) + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, + # but as the default + # location of the library. + ;; + esac + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aCC*) + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' + ;; + *) + if test "$GXX" = yes; then + if test $with_gnu_ld = no; then + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + fi + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + interix[[3-9]]*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + irix5* | irix6*) + case $cc_basename in + CC*) + # SGI C++ + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + + # Archives containing C++ object files must be created using + # "CC -ar", where "CC" is the IRIX C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' + ;; + *) + if test "$GXX" = yes; then + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` -o $lib' + fi + fi + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + esac + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(inherit_rpath, $1)=yes + ;; + + linux* | k*bsd*-gnu) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + + # Archives containing C++ object files must be created using + # "CC -Bstatic", where "CC" is the KAI C++ compiler. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' + ;; + icpc* | ecpc* ) + # Intel C++ + with_gnu_ld=yes + # version 8.0 and above of icpc choke on multiply defined symbols + # if we add $predep_objects and $postdep_objects, however 7.1 and + # earlier do not add the objects themselves. + case `$CC -V 2>&1` in + *"Version 7."*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + *) # Version 8.0 or newer + tmp_idyn= + case $host_cpu in + ia64*) tmp_idyn=' -i_dynamic';; + esac + _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + esac + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + case `$CC -V` in + *pgCC\ [[1-5]]* | *pgcpp\ [[1-5]]*) + _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ + compile_command="$compile_command `find $tpldir -name \*.o | $NL2SP`"' + _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ + $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | $NL2SP`~ + $RANLIB $oldlib' + _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + ;; + *) # Version 6 will use weak symbols + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' + ;; + cxx*) + # Compaq C++ + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' + + runpath_var=LD_RUN_PATH + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`$ECHO "X$templist" | $Xsed -e "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' + ;; + xl*) + # IBM XL 8.0 on PPC, with GNU ld + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + + # Not sure whether something based on + # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 + # would be better. + output_verbose_link_cmd='echo' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' + ;; + esac + ;; + esac + ;; + + lynxos*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + m88k*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + mvs*) + case $cc_basename in + cxx*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' + wlarc= + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + fi + # Workaround some broken pre-1.5 toolchains + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' + ;; + + *nto* | *qnx*) + _LT_TAGVAR(ld_shlibs, $1)=yes + ;; + + openbsd2*) + # C++ shared libraries are fairly broken + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + fi + output_verbose_link_cmd=echo + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Archives containing C++ object files must be created using + # the KAI C++ compiler. + case $host in + osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; + *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; + esac + ;; + RCC*) + # Rational C++ 2.4.1 + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + cxx*) + case $host in + osf3*) + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && $ECHO "X${wl}-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + ;; + *) + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ + echo "-hidden">> $lib.exp~ + $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~ + $RM $lib.exp' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`$ECHO "X$templist" | $Xsed -e "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' + ;; + *) + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + case $host in + osf3*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' + + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + psos*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + lcc*) + # Lucid + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + solaris*) + case $cc_basename in + CC*) + # Sun C++ 4.2, 5.x and Centerline C++ + _LT_TAGVAR(archive_cmds_need_lc,$1)=yes + _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. + # Supported since Solaris 2.6 (maybe 2.5.1?) + _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' + ;; + esac + _LT_TAGVAR(link_all_deplibs, $1)=yes + + output_verbose_link_cmd='echo' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' + ;; + gcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + + # The C++ compiler must be used to create the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' + ;; + *) + # GNU C++ compiler with Solaris linker + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' + if $CC --version | $GREP -v '^2\.7' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' + else + # g++ 2.7 appears to require `-G' NOT `-shared' on this + # platform. + _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' + fi + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + ;; + esac + fi + ;; + esac + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + vxworks*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + + AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) + test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no + + _LT_TAGVAR(GCC, $1)="$GXX" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_SYS_HIDDEN_LIBDEPS($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + CC=$lt_save_CC + LDCXX=$LD + LD=$lt_save_LD + GCC=$lt_save_GCC + with_gnu_ld=$lt_save_with_gnu_ld + lt_cv_path_LDCXX=$lt_cv_path_LD + lt_cv_path_LD=$lt_save_path_LD + lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld + lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld +fi # test "$_lt_caught_CXX_error" != yes + +AC_LANG_POP +])# _LT_LANG_CXX_CONFIG + + +# _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) +# --------------------------------- +# Figure out "hidden" library dependencies from verbose +# compiler output when linking a shared library. +# Parse the compiler output and extract the necessary +# objects, libraries and library flags. +m4_defun([_LT_SYS_HIDDEN_LIBDEPS], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +# Dependencies to place before and after the object being linked: +_LT_TAGVAR(predep_objects, $1)= +_LT_TAGVAR(postdep_objects, $1)= +_LT_TAGVAR(predeps, $1)= +_LT_TAGVAR(postdeps, $1)= +_LT_TAGVAR(compiler_lib_search_path, $1)= + +dnl we can't use the lt_simple_compile_test_code here, +dnl because it contains code intended for an executable, +dnl not a library. It's possible we should let each +dnl tag define a new lt_????_link_test_code variable, +dnl but it's only used here... +m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF +int a; +void foo (void) { a = 0; } +_LT_EOF +], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF +class Foo +{ +public: + Foo (void) { a = 0; } +private: + int a; +}; +_LT_EOF +], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF + subroutine foo + implicit none + integer*4 a + a=0 + return + end +_LT_EOF +], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF + subroutine foo + implicit none + integer a + a=0 + return + end +_LT_EOF +], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF +public class foo { + private int a; + public void bar (void) { + a = 0; + } +}; +_LT_EOF +]) +dnl Parse the compiler output and extract the necessary +dnl objects, libraries and library flags. +if AC_TRY_EVAL(ac_compile); then + # Parse the compiler output and extract the necessary + # objects, libraries and library flags. + + # Sentinel used to keep track of whether or not we are before + # the conftest object file. + pre_test_object_deps_done=no + + for p in `eval "$output_verbose_link_cmd"`; do + case $p in + + -L* | -R* | -l*) + # Some compilers place space between "-{L,R}" and the path. + # Remove the space. + if test $p = "-L" || + test $p = "-R"; then + prev=$p + continue + else + prev= + fi + + if test "$pre_test_object_deps_done" = no; then + case $p in + -L* | -R*) + # Internal compiler library paths should come after those + # provided the user. The postdeps already come after the + # user supplied libs so there is no need to process them. + if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then + _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" + else + _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" + fi + ;; + # The "-l" case would never come before the object being + # linked, so don't bother handling this case. + esac + else + if test -z "$_LT_TAGVAR(postdeps, $1)"; then + _LT_TAGVAR(postdeps, $1)="${prev}${p}" + else + _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}" + fi + fi + ;; + + *.$objext) + # This assumes that the test object file only shows up + # once in the compiler output. + if test "$p" = "conftest.$objext"; then + pre_test_object_deps_done=yes + continue + fi + + if test "$pre_test_object_deps_done" = no; then + if test -z "$_LT_TAGVAR(predep_objects, $1)"; then + _LT_TAGVAR(predep_objects, $1)="$p" + else + _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" + fi + else + if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then + _LT_TAGVAR(postdep_objects, $1)="$p" + else + _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" + fi + fi + ;; + + *) ;; # Ignore the rest. + + esac + done + + # Clean up. + rm -f a.out a.exe +else + echo "libtool.m4: error: problem compiling $1 test program" +fi + +$RM -f confest.$objext + +# PORTME: override above test on systems where it is broken +m4_if([$1], [CXX], +[case $host_os in +interix[[3-9]]*) + # Interix 3.5 installs completely hosed .la files for C++, so rather than + # hack all around it, let's just trust "g++" to DTRT. + _LT_TAGVAR(predep_objects,$1)= + _LT_TAGVAR(postdep_objects,$1)= + _LT_TAGVAR(postdeps,$1)= + ;; + +linux*) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + if test "$solaris_use_stlport4" != yes; then + _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' + fi + ;; + esac + ;; + +solaris*) + case $cc_basename in + CC*) + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + # Adding this requires a known-good setup of shared libraries for + # Sun compiler versions before 5.6, else PIC objects from an old + # archive will be linked into the output, leading to subtle bugs. + if test "$solaris_use_stlport4" != yes; then + _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' + fi + ;; + esac + ;; +esac +]) + +case " $_LT_TAGVAR(postdeps, $1) " in +*" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; +esac + _LT_TAGVAR(compiler_lib_search_dirs, $1)= +if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then + _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` +fi +_LT_TAGDECL([], [compiler_lib_search_dirs], [1], + [The directories searched by this compiler when creating a shared library]) +_LT_TAGDECL([], [predep_objects], [1], + [Dependencies to place before and after the objects being linked to + create a shared library]) +_LT_TAGDECL([], [postdep_objects], [1]) +_LT_TAGDECL([], [predeps], [1]) +_LT_TAGDECL([], [postdeps], [1]) +_LT_TAGDECL([], [compiler_lib_search_path], [1], + [The library search path used internally by the compiler when linking + a shared library]) +])# _LT_SYS_HIDDEN_LIBDEPS + + +# _LT_PROG_F77 +# ------------ +# Since AC_PROG_F77 is broken, in that it returns the empty string +# if there is no fortran compiler, we have our own version here. +m4_defun([_LT_PROG_F77], +[ +pushdef([AC_MSG_ERROR], [_lt_disable_F77=yes]) +AC_PROG_F77 +if test -z "$F77" || test "X$F77" = "Xno"; then + _lt_disable_F77=yes +fi +popdef([AC_MSG_ERROR]) +])# _LT_PROG_F77 + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([_LT_PROG_F77], []) + + +# _LT_LANG_F77_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for a Fortran 77 compiler are +# suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_F77_CONFIG], +[AC_REQUIRE([_LT_PROG_F77])dnl +AC_LANG_PUSH(Fortran 77) + +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for f77 test sources. +ac_ext=f + +# Object file extension for compiled f77 test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the F77 compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_disable_F77" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="\ + subroutine t + return + end +" + + # Code to be used in simple link tests + lt_simple_link_test_code="\ + program t + end +" + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC="$CC" + lt_save_GCC=$GCC + CC=${F77-"f77"} + compiler=$CC + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + GCC=$G77 + if test -n "$compiler"; then + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_TAGVAR(GCC, $1)="$G77" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + GCC=$lt_save_GCC + CC="$lt_save_CC" +fi # test "$_lt_disable_F77" != yes + +AC_LANG_POP +])# _LT_LANG_F77_CONFIG + + +# _LT_PROG_FC +# ----------- +# Since AC_PROG_FC is broken, in that it returns the empty string +# if there is no fortran compiler, we have our own version here. +m4_defun([_LT_PROG_FC], +[ +pushdef([AC_MSG_ERROR], [_lt_disable_FC=yes]) +AC_PROG_FC +if test -z "$FC" || test "X$FC" = "Xno"; then + _lt_disable_FC=yes +fi +popdef([AC_MSG_ERROR]) +])# _LT_PROG_FC + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([_LT_PROG_FC], []) + + +# _LT_LANG_FC_CONFIG([TAG]) +# ------------------------- +# Ensure that the configuration variables for a Fortran compiler are +# suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_FC_CONFIG], +[AC_REQUIRE([_LT_PROG_FC])dnl +AC_LANG_PUSH(Fortran) + +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for fc test sources. +ac_ext=${ac_fc_srcext-f} + +# Object file extension for compiled fc test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the FC compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_disable_FC" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="\ + subroutine t + return + end +" + + # Code to be used in simple link tests + lt_simple_link_test_code="\ + program t + end +" + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC="$CC" + lt_save_GCC=$GCC + CC=${FC-"f95"} + compiler=$CC + GCC=$ac_cv_fc_compiler_gnu + + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + + if test -n "$compiler"; then + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_SYS_HIDDEN_LIBDEPS($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + GCC=$lt_save_GCC + CC="$lt_save_CC" +fi # test "$_lt_disable_FC" != yes + +AC_LANG_POP +])# _LT_LANG_FC_CONFIG + + +# _LT_LANG_GCJ_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for the GNU Java Compiler compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_GCJ_CONFIG], +[AC_REQUIRE([LT_PROG_GCJ])dnl +AC_LANG_SAVE + +# Source file extension for Java test sources. +ac_ext=java + +# Object file extension for compiled Java test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="class foo {}" + +# Code to be used in simple link tests +lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC="$CC" +lt_save_GCC=$GCC +GCC=yes +CC=${GCJ-"gcj"} +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_TAGVAR(LD, $1)="$LD" +_LT_CC_BASENAME([$compiler]) + +# GCJ did not exist at the time GCC didn't implicitly link libc in. +_LT_TAGVAR(archive_cmds_need_lc, $1)=no + +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds + +## CAVEAT EMPTOR: +## There is no encapsulation within the following macros, do not change +## the running order or otherwise move them around unless you know exactly +## what you are doing... +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) +fi + +AC_LANG_RESTORE + +GCC=$lt_save_GCC +CC="$lt_save_CC" +])# _LT_LANG_GCJ_CONFIG + + +# _LT_LANG_RC_CONFIG([TAG]) +# ------------------------- +# Ensure that the configuration variables for the Windows resource compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_RC_CONFIG], +[AC_REQUIRE([LT_PROG_RC])dnl +AC_LANG_SAVE + +# Source file extension for RC test sources. +ac_ext=rc + +# Object file extension for compiled RC test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' + +# Code to be used in simple link tests +lt_simple_link_test_code="$lt_simple_compile_test_code" + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC="$CC" +lt_save_GCC=$GCC +GCC= +CC=${RC-"windres"} +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_CC_BASENAME([$compiler]) +_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes + +if test -n "$compiler"; then + : + _LT_CONFIG($1) +fi + +GCC=$lt_save_GCC +AC_LANG_RESTORE +CC="$lt_save_CC" +])# _LT_LANG_RC_CONFIG + + +# LT_PROG_GCJ +# ----------- +AC_DEFUN([LT_PROG_GCJ], +[m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], + [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], + [AC_CHECK_TOOL(GCJ, gcj,) + test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" + AC_SUBST(GCJFLAGS)])])[]dnl +]) + +# Old name: +AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_GCJ], []) + + +# LT_PROG_RC +# ---------- +AC_DEFUN([LT_PROG_RC], +[AC_CHECK_TOOL(RC, windres,) +]) + +# Old name: +AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_RC], []) + + +# _LT_DECL_EGREP +# -------------- +# If we don't have a new enough Autoconf to choose the best grep +# available, choose the one first in the user's PATH. +m4_defun([_LT_DECL_EGREP], +[AC_REQUIRE([AC_PROG_EGREP])dnl +AC_REQUIRE([AC_PROG_FGREP])dnl +test -z "$GREP" && GREP=grep +_LT_DECL([], [GREP], [1], [A grep program that handles long lines]) +_LT_DECL([], [EGREP], [1], [An ERE matcher]) +_LT_DECL([], [FGREP], [1], [A literal string matcher]) +dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too +AC_SUBST([GREP]) +]) + + +# _LT_DECL_OBJDUMP +# -------------- +# If we don't have a new enough Autoconf to choose the best objdump +# available, choose the one first in the user's PATH. +m4_defun([_LT_DECL_OBJDUMP], +[AC_CHECK_TOOL(OBJDUMP, objdump, false) +test -z "$OBJDUMP" && OBJDUMP=objdump +_LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) +AC_SUBST([OBJDUMP]) +]) + + +# _LT_DECL_SED +# ------------ +# Check for a fully-functional sed program, that truncates +# as few characters as possible. Prefer GNU sed if found. +m4_defun([_LT_DECL_SED], +[AC_PROG_SED +test -z "$SED" && SED=sed +Xsed="$SED -e 1s/^X//" +_LT_DECL([], [SED], [1], [A sed program that does not truncate output]) +_LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], + [Sed that helps us avoid accidentally triggering echo(1) options like -n]) +])# _LT_DECL_SED + +m4_ifndef([AC_PROG_SED], [ +############################################################ +# NOTE: This macro has been submitted for inclusion into # +# GNU Autoconf as AC_PROG_SED. When it is available in # +# a released version of Autoconf we should remove this # +# macro and use it instead. # +############################################################ + +m4_defun([AC_PROG_SED], +[AC_MSG_CHECKING([for a sed that does not truncate output]) +AC_CACHE_VAL(lt_cv_path_SED, +[# Loop through the user's path and test for sed and gsed. +# Then use that list of sed's as ones to test for truncation. +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for lt_ac_prog in sed gsed; do + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then + lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" + fi + done + done +done +IFS=$as_save_IFS +lt_ac_max=0 +lt_ac_count=0 +# Add /usr/xpg4/bin/sed as it is typically found on Solaris +# along with /bin/sed that truncates output. +for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do + test ! -f $lt_ac_sed && continue + cat /dev/null > conftest.in + lt_ac_count=0 + echo $ECHO_N "0123456789$ECHO_C" >conftest.in + # Check for GNU sed and select it if it is found. + if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then + lt_cv_path_SED=$lt_ac_sed + break + fi + while true; do + cat conftest.in conftest.in >conftest.tmp + mv conftest.tmp conftest.in + cp conftest.in conftest.nl + echo >>conftest.nl + $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break + cmp -s conftest.out conftest.nl || break + # 10000 chars as input seems more than enough + test $lt_ac_count -gt 10 && break + lt_ac_count=`expr $lt_ac_count + 1` + if test $lt_ac_count -gt $lt_ac_max; then + lt_ac_max=$lt_ac_count + lt_cv_path_SED=$lt_ac_sed + fi + done +done +]) +SED=$lt_cv_path_SED +AC_SUBST([SED]) +AC_MSG_RESULT([$SED]) +])#AC_PROG_SED +])#m4_ifndef + +# Old name: +AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_SED], []) + + +# _LT_CHECK_SHELL_FEATURES +# ------------------------ +# Find out whether the shell is Bourne or XSI compatible, +# or has some other useful features. +m4_defun([_LT_CHECK_SHELL_FEATURES], +[AC_MSG_CHECKING([whether the shell understands some XSI constructs]) +# Try some XSI features +xsi_shell=no +( _lt_dummy="a/b/c" + test "${_lt_dummy##*/},${_lt_dummy%/*},"${_lt_dummy%"$_lt_dummy"}, \ + = c,a/b,, \ + && eval 'test $(( 1 + 1 )) -eq 2 \ + && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ + && xsi_shell=yes +AC_MSG_RESULT([$xsi_shell]) +_LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell']) + +AC_MSG_CHECKING([whether the shell understands "+="]) +lt_shell_append=no +( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \ + >/dev/null 2>&1 \ + && lt_shell_append=yes +AC_MSG_RESULT([$lt_shell_append]) +_LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append']) + +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then + lt_unset=unset +else + lt_unset=false +fi +_LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl + +# test EBCDIC or ASCII +case `echo X|tr X '\101'` in + A) # ASCII based system + # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr + lt_SP2NL='tr \040 \012' + lt_NL2SP='tr \015\012 \040\040' + ;; + *) # EBCDIC based system + lt_SP2NL='tr \100 \n' + lt_NL2SP='tr \r\n \100\100' + ;; +esac +_LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl +_LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl +])# _LT_CHECK_SHELL_FEATURES + + +# _LT_PROG_XSI_SHELLFNS +# --------------------- +# Bourne and XSI compatible variants of some useful shell functions. +m4_defun([_LT_PROG_XSI_SHELLFNS], +[case $xsi_shell in + yes) + cat << \_LT_EOF >> "$cfgfile" + +# func_dirname file append nondir_replacement +# Compute the dirname of FILE. If nonempty, add APPEND to the result, +# otherwise set result to NONDIR_REPLACEMENT. +func_dirname () +{ + case ${1} in + */*) func_dirname_result="${1%/*}${2}" ;; + * ) func_dirname_result="${3}" ;; + esac +} + +# func_basename file +func_basename () +{ + func_basename_result="${1##*/}" +} + +# func_dirname_and_basename file append nondir_replacement +# perform func_basename and func_dirname in a single function +# call: +# dirname: Compute the dirname of FILE. If nonempty, +# add APPEND to the result, otherwise set result +# to NONDIR_REPLACEMENT. +# value returned in "$func_dirname_result" +# basename: Compute filename of FILE. +# value retuned in "$func_basename_result" +# Implementation must be kept synchronized with func_dirname +# and func_basename. For efficiency, we do not delegate to +# those functions but instead duplicate the functionality here. +func_dirname_and_basename () +{ + case ${1} in + */*) func_dirname_result="${1%/*}${2}" ;; + * ) func_dirname_result="${3}" ;; + esac + func_basename_result="${1##*/}" +} + +# func_stripname prefix suffix name +# strip PREFIX and SUFFIX off of NAME. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +func_stripname () +{ + # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are + # positional parameters, so assign one to ordinary parameter first. + func_stripname_result=${3} + func_stripname_result=${func_stripname_result#"${1}"} + func_stripname_result=${func_stripname_result%"${2}"} +} + +# func_opt_split +func_opt_split () +{ + func_opt_split_opt=${1%%=*} + func_opt_split_arg=${1#*=} +} + +# func_lo2o object +func_lo2o () +{ + case ${1} in + *.lo) func_lo2o_result=${1%.lo}.${objext} ;; + *) func_lo2o_result=${1} ;; + esac +} + +# func_xform libobj-or-source +func_xform () +{ + func_xform_result=${1%.*}.lo +} + +# func_arith arithmetic-term... +func_arith () +{ + func_arith_result=$(( $[*] )) +} + +# func_len string +# STRING may not start with a hyphen. +func_len () +{ + func_len_result=${#1} +} + +_LT_EOF + ;; + *) # Bourne compatible functions. + cat << \_LT_EOF >> "$cfgfile" + +# func_dirname file append nondir_replacement +# Compute the dirname of FILE. If nonempty, add APPEND to the result, +# otherwise set result to NONDIR_REPLACEMENT. +func_dirname () +{ + # Extract subdirectory from the argument. + func_dirname_result=`$ECHO "X${1}" | $Xsed -e "$dirname"` + if test "X$func_dirname_result" = "X${1}"; then + func_dirname_result="${3}" + else + func_dirname_result="$func_dirname_result${2}" + fi +} + +# func_basename file +func_basename () +{ + func_basename_result=`$ECHO "X${1}" | $Xsed -e "$basename"` +} + +dnl func_dirname_and_basename +dnl A portable version of this function is already defined in general.m4sh +dnl so there is no need for it here. + +# func_stripname prefix suffix name +# strip PREFIX and SUFFIX off of NAME. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +# func_strip_suffix prefix name +func_stripname () +{ + case ${2} in + .*) func_stripname_result=`$ECHO "X${3}" \ + | $Xsed -e "s%^${1}%%" -e "s%\\\\${2}\$%%"`;; + *) func_stripname_result=`$ECHO "X${3}" \ + | $Xsed -e "s%^${1}%%" -e "s%${2}\$%%"`;; + esac +} + +# sed scripts: +my_sed_long_opt='1s/^\(-[[^=]]*\)=.*/\1/;q' +my_sed_long_arg='1s/^-[[^=]]*=//' + +# func_opt_split +func_opt_split () +{ + func_opt_split_opt=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_opt"` + func_opt_split_arg=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_arg"` +} + +# func_lo2o object +func_lo2o () +{ + func_lo2o_result=`$ECHO "X${1}" | $Xsed -e "$lo2o"` +} + +# func_xform libobj-or-source +func_xform () +{ + func_xform_result=`$ECHO "X${1}" | $Xsed -e 's/\.[[^.]]*$/.lo/'` +} + +# func_arith arithmetic-term... +func_arith () +{ + func_arith_result=`expr "$[@]"` +} + +# func_len string +# STRING may not start with a hyphen. +func_len () +{ + func_len_result=`expr "$[1]" : ".*" 2>/dev/null || echo $max_cmd_len` +} + +_LT_EOF +esac + +case $lt_shell_append in + yes) + cat << \_LT_EOF >> "$cfgfile" + +# func_append var value +# Append VALUE to the end of shell variable VAR. +func_append () +{ + eval "$[1]+=\$[2]" +} +_LT_EOF + ;; + *) + cat << \_LT_EOF >> "$cfgfile" + +# func_append var value +# Append VALUE to the end of shell variable VAR. +func_append () +{ + eval "$[1]=\$$[1]\$[2]" +} + +_LT_EOF + ;; + esac +]) + diff --git a/acinclude/ltdl.m4 b/acinclude/ltdl.m4 new file mode 100644 index 000000000..e2b712991 --- /dev/null +++ b/acinclude/ltdl.m4 @@ -0,0 +1,806 @@ +############################################################################## +# ltdl.m4 - Configure ltdl for the target system. -*-Autoconf-*- +# +# Copyright (C) 1999-2006, 2007, 2008 Free Software Foundation, Inc. +# Written by Thomas Tanner, 1999 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 17 LTDL_INIT + +# LT_CONFIG_LTDL_DIR(DIRECTORY, [LTDL-MODE]) +# ------------------------------------------ +# DIRECTORY contains the libltdl sources. It is okay to call this +# function multiple times, as long as the same DIRECTORY is always given. +AC_DEFUN([LT_CONFIG_LTDL_DIR], +[AC_BEFORE([$0], [LTDL_INIT]) +_$0($*) +])# LT_CONFIG_LTDL_DIR + +# We break this out into a separate macro, so that we can call it safely +# internally without being caught accidentally by the sed scan in libtoolize. +m4_defun([_LT_CONFIG_LTDL_DIR], +[dnl remove trailing slashes +m4_pushdef([_ARG_DIR], m4_bpatsubst([$1], [/*$])) +m4_case(_LTDL_DIR, + [], [dnl only set lt_ltdl_dir if _ARG_DIR is not simply `.' + m4_if(_ARG_DIR, [.], + [], + [m4_define([_LTDL_DIR], _ARG_DIR) + _LT_SHELL_INIT([lt_ltdl_dir=']_ARG_DIR['])])], + [m4_if(_ARG_DIR, _LTDL_DIR, + [], + [m4_fatal([multiple libltdl directories: `]_LTDL_DIR[', `]_ARG_DIR['])])]) +m4_popdef([_ARG_DIR]) +])# _LT_CONFIG_LTDL_DIR + +# Initialise: +m4_define([_LTDL_DIR], []) + + +# _LT_BUILD_PREFIX +# ---------------- +# If Autoconf is new enough, expand to `${top_build_prefix}', otherwise +# to `${top_builddir}/'. +m4_define([_LT_BUILD_PREFIX], +[m4_ifdef([AC_AUTOCONF_VERSION], + [m4_if(m4_version_compare(m4_defn([AC_AUTOCONF_VERSION]), [2.62]), + [-1], [m4_ifdef([_AC_HAVE_TOP_BUILD_PREFIX], + [${top_build_prefix}], + [${top_builddir}/])], + [${top_build_prefix}])], + [${top_builddir}/])[]dnl +]) + + +# LTDL_CONVENIENCE +# ---------------- +# sets LIBLTDL to the link flags for the libltdl convenience library and +# LTDLINCL to the include flags for the libltdl header and adds +# --enable-ltdl-convenience to the configure arguments. Note that +# AC_CONFIG_SUBDIRS is not called here. LIBLTDL will be prefixed with +# '${top_build_prefix}' if available, otherwise with '${top_builddir}/', +# and LTDLINCL will be prefixed with '${top_srcdir}/' (note the single +# quotes!). If your package is not flat and you're not using automake, +# define top_build_prefix, top_builddir, and top_srcdir appropriately +# in your Makefiles. +AC_DEFUN([LTDL_CONVENIENCE], +[AC_BEFORE([$0], [LTDL_INIT])dnl +dnl Although the argument is deprecated and no longer documented, +dnl LTDL_CONVENIENCE used to take a DIRECTORY orgument, if we have one +dnl here make sure it is the same as any other declaration of libltdl's +dnl location! This also ensures lt_ltdl_dir is set when configure.ac is +dnl not yet using an explicit LT_CONFIG_LTDL_DIR. +m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl +_$0() +])# LTDL_CONVENIENCE + +# AC_LIBLTDL_CONVENIENCE accepted a directory argument in older libtools, +# now we have LT_CONFIG_LTDL_DIR: +AU_DEFUN([AC_LIBLTDL_CONVENIENCE], +[_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])]) +_LTDL_CONVENIENCE]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBLTDL_CONVENIENCE], []) + + +# _LTDL_CONVENIENCE +# ----------------- +# Code shared by LTDL_CONVENIENCE and LTDL_INIT([convenience]). +m4_defun([_LTDL_CONVENIENCE], +[case $enable_ltdl_convenience in + no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;; + "") enable_ltdl_convenience=yes + ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;; +esac +LIBLTDL='_LT_BUILD_PREFIX'"${lt_ltdl_dir+$lt_ltdl_dir/}libltdlc.la" +LTDLDEPS=$LIBLTDL +LTDLINCL='-I${top_srcdir}'"${lt_ltdl_dir+/$lt_ltdl_dir}" + +AC_SUBST([LIBLTDL]) +AC_SUBST([LTDLDEPS]) +AC_SUBST([LTDLINCL]) + +# For backwards non-gettext consistent compatibility... +INCLTDL="$LTDLINCL" +AC_SUBST([INCLTDL]) +])# _LTDL_CONVENIENCE + + +# LTDL_INSTALLABLE +# ---------------- +# sets LIBLTDL to the link flags for the libltdl installable library +# and LTDLINCL to the include flags for the libltdl header and adds +# --enable-ltdl-install to the configure arguments. Note that +# AC_CONFIG_SUBDIRS is not called from here. If an installed libltdl +# is not found, LIBLTDL will be prefixed with '${top_build_prefix}' if +# available, otherwise with '${top_builddir}/', and LTDLINCL will be +# prefixed with '${top_srcdir}/' (note the single quotes!). If your +# package is not flat and you're not using automake, define top_build_prefix, +# top_builddir, and top_srcdir appropriately in your Makefiles. +# In the future, this macro may have to be called after LT_INIT. +AC_DEFUN([LTDL_INSTALLABLE], +[AC_BEFORE([$0], [LTDL_INIT])dnl +dnl Although the argument is deprecated and no longer documented, +dnl LTDL_INSTALLABLE used to take a DIRECTORY orgument, if we have one +dnl here make sure it is the same as any other declaration of libltdl's +dnl location! This also ensures lt_ltdl_dir is set when configure.ac is +dnl not yet using an explicit LT_CONFIG_LTDL_DIR. +m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl +_$0() +])# LTDL_INSTALLABLE + +# AC_LIBLTDL_INSTALLABLE accepted a directory argument in older libtools, +# now we have LT_CONFIG_LTDL_DIR: +AU_DEFUN([AC_LIBLTDL_INSTALLABLE], +[_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])]) +_LTDL_INSTALLABLE]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBLTDL_INSTALLABLE], []) + + +# _LTDL_INSTALLABLE +# ----------------- +# Code shared by LTDL_INSTALLABLE and LTDL_INIT([installable]). +m4_defun([_LTDL_INSTALLABLE], +[if test -f $prefix/lib/libltdl.la; then + lt_save_LDFLAGS="$LDFLAGS" + LDFLAGS="-L$prefix/lib $LDFLAGS" + AC_CHECK_LIB([ltdl], [lt_dlinit], [lt_lib_ltdl=yes]) + LDFLAGS="$lt_save_LDFLAGS" + if test x"${lt_lib_ltdl-no}" = xyes; then + if test x"$enable_ltdl_install" != xyes; then + # Don't overwrite $prefix/lib/libltdl.la without --enable-ltdl-install + AC_MSG_WARN([not overwriting libltdl at $prefix, force with `--enable-ltdl-install']) + enable_ltdl_install=no + fi + elif test x"$enable_ltdl_install" = xno; then + AC_MSG_WARN([libltdl not installed, but installation disabled]) + fi +fi + +# If configure.ac declared an installable ltdl, and the user didn't override +# with --disable-ltdl-install, we will install the shipped libltdl. +case $enable_ltdl_install in + no) ac_configure_args="$ac_configure_args --enable-ltdl-install=no" + LIBLTDL="-lltdl" + LTDLDEPS= + LTDLINCL= + ;; + *) enable_ltdl_install=yes + ac_configure_args="$ac_configure_args --enable-ltdl-install" + LIBLTDL='_LT_BUILD_PREFIX'"${lt_ltdl_dir+$lt_ltdl_dir/}libltdl.la" + LTDLDEPS=$LIBLTDL + LTDLINCL='-I${top_srcdir}'"${lt_ltdl_dir+/$lt_ltdl_dir}" + ;; +esac + +AC_SUBST([LIBLTDL]) +AC_SUBST([LTDLDEPS]) +AC_SUBST([LTDLINCL]) + +# For backwards non-gettext consistent compatibility... +INCLTDL="$LTDLINCL" +AC_SUBST([INCLTDL]) +])# LTDL_INSTALLABLE + + +# _LTDL_MODE_DISPATCH +# ------------------- +m4_define([_LTDL_MODE_DISPATCH], +[dnl If _LTDL_DIR is `.', then we are configuring libltdl itself: +m4_if(_LTDL_DIR, [], + [], + dnl if _LTDL_MODE was not set already, the default value is `subproject': + [m4_case(m4_default(_LTDL_MODE, [subproject]), + [subproject], [AC_CONFIG_SUBDIRS(_LTDL_DIR) + _LT_SHELL_INIT([lt_dlopen_dir="$lt_ltdl_dir"])], + [nonrecursive], [_LT_SHELL_INIT([lt_dlopen_dir="$lt_ltdl_dir"; lt_libobj_prefix="$lt_ltdl_dir/"])], + [recursive], [], + [m4_fatal([unknown libltdl mode: ]_LTDL_MODE)])])dnl +dnl Be careful not to expand twice: +m4_define([$0], []) +])# _LTDL_MODE_DISPATCH + + +# _LT_LIBOBJ(MODULE_NAME) +# ----------------------- +# Like AC_LIBOBJ, except that MODULE_NAME goes into _LT_LIBOBJS instead +# of into LIBOBJS. +AC_DEFUN([_LT_LIBOBJ], [ + m4_pattern_allow([^_LT_LIBOBJS$]) + _LT_LIBOBJS="$_LT_LIBOBJS $1.$ac_objext" +])# _LT_LIBOBJS + + +# LTDL_INIT([OPTIONS]) +# -------------------- +# Clients of libltdl can use this macro to allow the installer to +# choose between a shipped copy of the ltdl sources or a preinstalled +# version of the library. If the shipped ltdl sources are not in a +# subdirectory named libltdl, the directory name must be given by +# LT_CONFIG_LTDL_DIR. +AC_DEFUN([LTDL_INIT], +[dnl Parse OPTIONS +_LT_SET_OPTIONS([$0], [$1]) + +dnl We need to keep our own list of libobjs separate from our parent project, +dnl and the easiest way to do that is redefine the AC_LIBOBJs macro while +dnl we look for our own LIBOBJs. +m4_pushdef([AC_LIBOBJ], m4_defn([_LT_LIBOBJ])) +m4_pushdef([AC_LIBSOURCES]) + +dnl If not otherwise defined, default to the 1.5.x compatible subproject mode: +m4_if(_LTDL_MODE, [], + [m4_define([_LTDL_MODE], m4_default([$2], [subproject])) + m4_if([-1], [m4_bregexp(_LTDL_MODE, [\(subproject\|\(non\)?recursive\)])], + [m4_fatal([unknown libltdl mode: ]_LTDL_MODE)])]) + +AC_ARG_WITH([included_ltdl], + [AS_HELP_STRING([--with-included-ltdl], + [use the GNU ltdl sources included here])]) + +if test "x$with_included_ltdl" != xyes; then + # We are not being forced to use the included libltdl sources, so + # decide whether there is a useful installed version we can use. + AC_CHECK_HEADER([ltdl.h], + [AC_CHECK_DECL([lt_dlinterface_register], + [AC_CHECK_LIB([ltdl], [lt_dladvise_preload], + [with_included_ltdl=no], + [with_included_ltdl=yes])], + [with_included_ltdl=yes], + [AC_INCLUDES_DEFAULT + #include ])], + [with_included_ltdl=yes], + [AC_INCLUDES_DEFAULT] + ) +fi + +dnl If neither LT_CONFIG_LTDL_DIR, LTDL_CONVENIENCE nor LTDL_INSTALLABLE +dnl was called yet, then for old times' sake, we assume libltdl is in an +dnl eponymous directory: +AC_PROVIDE_IFELSE([LT_CONFIG_LTDL_DIR], [], [_LT_CONFIG_LTDL_DIR([libltdl])]) + +AC_ARG_WITH([ltdl_include], + [AS_HELP_STRING([--with-ltdl-include=DIR], + [use the ltdl headers installed in DIR])]) + +if test -n "$with_ltdl_include"; then + if test -f "$with_ltdl_include/ltdl.h"; then : + else + AC_MSG_ERROR([invalid ltdl include directory: `$with_ltdl_include']) + fi +else + with_ltdl_include=no +fi + +AC_ARG_WITH([ltdl_lib], + [AS_HELP_STRING([--with-ltdl-lib=DIR], + [use the libltdl.la installed in DIR])]) + +if test -n "$with_ltdl_lib"; then + if test -f "$with_ltdl_lib/libltdl.la"; then : + else + AC_MSG_ERROR([invalid ltdl library directory: `$with_ltdl_lib']) + fi +else + with_ltdl_lib=no +fi + +case ,$with_included_ltdl,$with_ltdl_include,$with_ltdl_lib, in + ,yes,no,no,) + m4_case(m4_default(_LTDL_TYPE, [convenience]), + [convenience], [_LTDL_CONVENIENCE], + [installable], [_LTDL_INSTALLABLE], + [m4_fatal([unknown libltdl build type: ]_LTDL_TYPE)]) + ;; + ,no,no,no,) + # If the included ltdl is not to be used, then use the + # preinstalled libltdl we found. + AC_DEFINE([HAVE_LTDL], [1], + [Define this if a modern libltdl is already installed]) + LIBLTDL=-lltdl + LTDLDEPS= + LTDLINCL= + ;; + ,no*,no,*) + AC_MSG_ERROR([`--with-ltdl-include' and `--with-ltdl-lib' options must be used together]) + ;; + *) with_included_ltdl=no + LIBLTDL="-L$with_ltdl_lib -lltdl" + LTDLDEPS= + LTDLINCL="-I$with_ltdl_include" + ;; +esac +INCLTDL="$LTDLINCL" + +# Report our decision... +AC_MSG_CHECKING([where to find libltdl headers]) +AC_MSG_RESULT([$LTDLINCL]) +AC_MSG_CHECKING([where to find libltdl library]) +AC_MSG_RESULT([$LIBLTDL]) + +_LTDL_SETUP + +dnl restore autoconf definition. +m4_popdef([AC_LIBOBJ]) +m4_popdef([AC_LIBSOURCES]) + +AC_CONFIG_COMMANDS_PRE([ + _ltdl_libobjs= + _ltdl_ltlibobjs= + if test -n "$_LT_LIBOBJS"; then + # Remove the extension. + _lt_sed_drop_objext='s/\.o$//;s/\.obj$//' + for i in `for i in $_LT_LIBOBJS; do echo "$i"; done | sed "$_lt_sed_drop_objext" | sort -u`; do + _ltdl_libobjs="$_ltdl_libobjs $lt_libobj_prefix$i.$ac_objext" + _ltdl_ltlibobjs="$_ltdl_ltlibobjs $lt_libobj_prefix$i.lo" + done + fi + AC_SUBST([ltdl_LIBOBJS], [$_ltdl_libobjs]) + AC_SUBST([ltdl_LTLIBOBJS], [$_ltdl_ltlibobjs]) +]) + +# Only expand once: +m4_define([LTDL_INIT]) +])# LTDL_INIT + +# Old names: +AU_DEFUN([AC_LIB_LTDL], [LTDL_INIT($@)]) +AU_DEFUN([AC_WITH_LTDL], [LTDL_INIT($@)]) +AU_DEFUN([LT_WITH_LTDL], [LTDL_INIT($@)]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIB_LTDL], []) +dnl AC_DEFUN([AC_WITH_LTDL], []) +dnl AC_DEFUN([LT_WITH_LTDL], []) + + +# _LTDL_SETUP +# ----------- +# Perform all the checks necessary for compilation of the ltdl objects +# -- including compiler checks and header checks. This is a public +# interface mainly for the benefit of libltdl's own configure.ac, most +# other users should call LTDL_INIT instead. +AC_DEFUN([_LTDL_SETUP], +[AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([LT_SYS_MODULE_EXT])dnl +AC_REQUIRE([LT_SYS_MODULE_PATH])dnl +AC_REQUIRE([LT_SYS_DLSEARCH_PATH])dnl +AC_REQUIRE([LT_LIB_DLLOAD])dnl +AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl +AC_REQUIRE([LT_FUNC_DLSYM_USCORE])dnl +AC_REQUIRE([LT_SYS_DLOPEN_DEPLIBS])dnl +AC_REQUIRE([gl_FUNC_ARGZ])dnl + +m4_require([_LT_CHECK_OBJDIR])dnl +m4_require([_LT_HEADER_DLFCN])dnl +m4_require([_LT_CHECK_DLPREOPEN])dnl +m4_require([_LT_DECL_SED])dnl + +dnl Don't require this, or it will be expanded earlier than the code +dnl that sets the variables it relies on: +_LT_ENABLE_INSTALL + +dnl _LTDL_MODE specific code must be called at least once: +_LTDL_MODE_DISPATCH + +# In order that ltdl.c can compile, find out the first AC_CONFIG_HEADERS +# the user used. This is so that ltdl.h can pick up the parent projects +# config.h file, The first file in AC_CONFIG_HEADERS must contain the +# definitions required by ltdl.c. +# FIXME: Remove use of undocumented AC_LIST_HEADERS (2.59 compatibility). +AC_CONFIG_COMMANDS_PRE([dnl +m4_pattern_allow([^LT_CONFIG_H$])dnl +m4_ifset([AH_HEADER], + [LT_CONFIG_H=AH_HEADER], + [m4_ifset([AC_LIST_HEADERS], + [LT_CONFIG_H=`echo "AC_LIST_HEADERS" | $SED 's,^[[ ]]*,,;s,[[ :]].*$,,'`], + [])])]) +AC_SUBST([LT_CONFIG_H]) + +AC_CHECK_HEADERS([unistd.h dl.h sys/dl.h dld.h mach-o/dyld.h dirent.h], + [], [], [AC_INCLUDES_DEFAULT]) + +AC_CHECK_FUNCS([closedir opendir readdir], [], [AC_LIBOBJ([lt__dirent])]) +AC_CHECK_FUNCS([strlcat strlcpy], [], [AC_LIBOBJ([lt__strl])]) + +AC_DEFINE_UNQUOTED([LT_LIBEXT],["$libext"],[The archive extension]) + +name=ltdl +LTDLOPEN=`eval "\\$ECHO \"$libname_spec\""` +AC_SUBST([LTDLOPEN]) +])# _LTDL_SETUP + + +# _LT_ENABLE_INSTALL +# ------------------ +m4_define([_LT_ENABLE_INSTALL], +[AC_ARG_ENABLE([ltdl-install], + [AS_HELP_STRING([--enable-ltdl-install], [install libltdl])]) + +case ,${enable_ltdl_install},${enable_ltdl_convenience} in + *yes*) ;; + *) enable_ltdl_convenience=yes ;; +esac + +m4_ifdef([AM_CONDITIONAL], +[AM_CONDITIONAL(INSTALL_LTDL, test x"${enable_ltdl_install-no}" != xno) + AM_CONDITIONAL(CONVENIENCE_LTDL, test x"${enable_ltdl_convenience-no}" != xno)]) +])# _LT_ENABLE_INSTALL + + +# LT_SYS_DLOPEN_DEPLIBS +# --------------------- +AC_DEFUN([LT_SYS_DLOPEN_DEPLIBS], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_CACHE_CHECK([whether deplibs are loaded by dlopen], + [lt_cv_sys_dlopen_deplibs], + [# PORTME does your system automatically load deplibs for dlopen? + # or its logical equivalent (e.g. shl_load for HP-UX < 11) + # For now, we just catch OSes we know something about -- in the + # future, we'll try test this programmatically. + lt_cv_sys_dlopen_deplibs=unknown + case $host_os in + aix3*|aix4.1.*|aix4.2.*) + # Unknown whether this is true for these versions of AIX, but + # we want this `case' here to explicitly catch those versions. + lt_cv_sys_dlopen_deplibs=unknown + ;; + aix[[4-9]]*) + lt_cv_sys_dlopen_deplibs=yes + ;; + amigaos*) + case $host_cpu in + powerpc) + lt_cv_sys_dlopen_deplibs=no + ;; + esac + ;; + darwin*) + # Assuming the user has installed a libdl from somewhere, this is true + # If you are looking for one http://www.opendarwin.org/projects/dlcompat + lt_cv_sys_dlopen_deplibs=yes + ;; + freebsd* | dragonfly*) + lt_cv_sys_dlopen_deplibs=yes + ;; + gnu* | linux* | k*bsd*-gnu) + # GNU and its variants, using gnu ld.so (Glibc) + lt_cv_sys_dlopen_deplibs=yes + ;; + hpux10*|hpux11*) + lt_cv_sys_dlopen_deplibs=yes + ;; + interix*) + lt_cv_sys_dlopen_deplibs=yes + ;; + irix[[12345]]*|irix6.[[01]]*) + # Catch all versions of IRIX before 6.2, and indicate that we don't + # know how it worked for any of those versions. + lt_cv_sys_dlopen_deplibs=unknown + ;; + irix*) + # The case above catches anything before 6.2, and it's known that + # at 6.2 and later dlopen does load deplibs. + lt_cv_sys_dlopen_deplibs=yes + ;; + netbsd*) + lt_cv_sys_dlopen_deplibs=yes + ;; + openbsd*) + lt_cv_sys_dlopen_deplibs=yes + ;; + osf[[1234]]*) + # dlopen did load deplibs (at least at 4.x), but until the 5.x series, + # it did *not* use an RPATH in a shared library to find objects the + # library depends on, so we explicitly say `no'. + lt_cv_sys_dlopen_deplibs=no + ;; + osf5.0|osf5.0a|osf5.1) + # dlopen *does* load deplibs and with the right loader patch applied + # it even uses RPATH in a shared library to search for shared objects + # that the library depends on, but there's no easy way to know if that + # patch is installed. Since this is the case, all we can really + # say is unknown -- it depends on the patch being installed. If + # it is, this changes to `yes'. Without it, it would be `no'. + lt_cv_sys_dlopen_deplibs=unknown + ;; + osf*) + # the two cases above should catch all versions of osf <= 5.1. Read + # the comments above for what we know about them. + # At > 5.1, deplibs are loaded *and* any RPATH in a shared library + # is used to find them so we can finally say `yes'. + lt_cv_sys_dlopen_deplibs=yes + ;; + qnx*) + lt_cv_sys_dlopen_deplibs=yes + ;; + solaris*) + lt_cv_sys_dlopen_deplibs=yes + ;; + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + libltdl_cv_sys_dlopen_deplibs=yes + ;; + esac + ]) +if test "$lt_cv_sys_dlopen_deplibs" != yes; then + AC_DEFINE([LTDL_DLOPEN_DEPLIBS], [1], + [Define if the OS needs help to load dependent libraries for dlopen().]) +fi +])# LT_SYS_DLOPEN_DEPLIBS + +# Old name: +AU_ALIAS([AC_LTDL_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], []) + + +# LT_SYS_MODULE_EXT +# ----------------- +AC_DEFUN([LT_SYS_MODULE_EXT], +[m4_require([_LT_SYS_DYNAMIC_LINKER])dnl +AC_CACHE_CHECK([which extension is used for runtime loadable modules], + [libltdl_cv_shlibext], +[ +module=yes +eval libltdl_cv_shlibext=$shrext_cmds + ]) +if test -n "$libltdl_cv_shlibext"; then + m4_pattern_allow([LT_MODULE_EXT])dnl + AC_DEFINE_UNQUOTED([LT_MODULE_EXT], ["$libltdl_cv_shlibext"], + [Define to the extension used for runtime loadable modules, say, ".so".]) +fi +])# LT_SYS_MODULE_EXT + +# Old name: +AU_ALIAS([AC_LTDL_SHLIBEXT], [LT_SYS_MODULE_EXT]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LTDL_SHLIBEXT], []) + + +# LT_SYS_MODULE_PATH +# ------------------ +AC_DEFUN([LT_SYS_MODULE_PATH], +[m4_require([_LT_SYS_DYNAMIC_LINKER])dnl +AC_CACHE_CHECK([which variable specifies run-time module search path], + [lt_cv_module_path_var], [lt_cv_module_path_var="$shlibpath_var"]) +if test -n "$lt_cv_module_path_var"; then + m4_pattern_allow([LT_MODULE_PATH_VAR])dnl + AC_DEFINE_UNQUOTED([LT_MODULE_PATH_VAR], ["$lt_cv_module_path_var"], + [Define to the name of the environment variable that determines the run-time module search path.]) +fi +])# LT_SYS_MODULE_PATH + +# Old name: +AU_ALIAS([AC_LTDL_SHLIBPATH], [LT_SYS_MODULE_PATH]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LTDL_SHLIBPATH], []) + + +# LT_SYS_DLSEARCH_PATH +# -------------------- +AC_DEFUN([LT_SYS_DLSEARCH_PATH], +[m4_require([_LT_SYS_DYNAMIC_LINKER])dnl +AC_CACHE_CHECK([for the default library search path], + [lt_cv_sys_dlsearch_path], + [lt_cv_sys_dlsearch_path="$sys_lib_dlsearch_path_spec"]) +if test -n "$lt_cv_sys_dlsearch_path"; then + sys_dlsearch_path= + for dir in $lt_cv_sys_dlsearch_path; do + if test -z "$sys_dlsearch_path"; then + sys_dlsearch_path="$dir" + else + sys_dlsearch_path="$sys_dlsearch_path$PATH_SEPARATOR$dir" + fi + done + m4_pattern_allow([LT_DLSEARCH_PATH])dnl + AC_DEFINE_UNQUOTED([LT_DLSEARCH_PATH], ["$sys_dlsearch_path"], + [Define to the system default library search path.]) +fi +])# LT_SYS_DLSEARCH_PATH + +# Old name: +AU_ALIAS([AC_LTDL_SYSSEARCHPATH], [LT_SYS_DLSEARCH_PATH]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LTDL_SYSSEARCHPATH], []) + + +# _LT_CHECK_DLPREOPEN +# ------------------- +m4_defun([_LT_CHECK_DLPREOPEN], +[m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl +AC_CACHE_CHECK([whether libtool supports -dlopen/-dlpreopen], + [libltdl_cv_preloaded_symbols], + [if test -n "$lt_cv_sys_global_symbol_pipe"; then + libltdl_cv_preloaded_symbols=yes + else + libltdl_cv_preloaded_symbols=no + fi + ]) +if test x"$libltdl_cv_preloaded_symbols" = xyes; then + AC_DEFINE([HAVE_PRELOADED_SYMBOLS], [1], + [Define if libtool can extract symbol lists from object files.]) +fi +])# _LT_CHECK_DLPREOPEN + + +# LT_LIB_DLLOAD +# ------------- +AC_DEFUN([LT_LIB_DLLOAD], +[m4_pattern_allow([^LT_DLLOADERS$]) +LT_DLLOADERS= +AC_SUBST([LT_DLLOADERS]) + +AC_LANG_PUSH([C]) + +LIBADD_DLOPEN= +AC_SEARCH_LIBS([dlopen], [dl], + [AC_DEFINE([HAVE_LIBDL], [1], + [Define if you have the libdl library or equivalent.]) + if test "$ac_cv_search_dlopen" != "none required" ; then + LIBADD_DLOPEN="-ldl" + fi + libltdl_cv_lib_dl_dlopen="yes" + LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"], + [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#if HAVE_DLFCN_H +# include +#endif + ]], [[dlopen(0, 0);]])], + [AC_DEFINE([HAVE_LIBDL], [1], + [Define if you have the libdl library or equivalent.]) + libltdl_cv_func_dlopen="yes" + LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"], + [AC_CHECK_LIB([svld], [dlopen], + [AC_DEFINE([HAVE_LIBDL], [1], + [Define if you have the libdl library or equivalent.]) + LIBADD_DLOPEN="-lsvld" libltdl_cv_func_dlopen="yes" + LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"])])]) +if test x"$libltdl_cv_func_dlopen" = xyes || test x"$libltdl_cv_lib_dl_dlopen" = xyes +then + lt_save_LIBS="$LIBS" + LIBS="$LIBS $LIBADD_DLOPEN" + AC_CHECK_FUNCS([dlerror]) + LIBS="$lt_save_LIBS" +fi +AC_SUBST([LIBADD_DLOPEN]) + +LIBADD_SHL_LOAD= +AC_CHECK_FUNC([shl_load], + [AC_DEFINE([HAVE_SHL_LOAD], [1], + [Define if you have the shl_load function.]) + LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"], + [AC_CHECK_LIB([dld], [shl_load], + [AC_DEFINE([HAVE_SHL_LOAD], [1], + [Define if you have the shl_load function.]) + LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la" + LIBADD_SHL_LOAD="-ldld"])]) +AC_SUBST([LIBADD_SHL_LOAD]) + +case $host_os in +darwin[[1567]].*) +# We only want this for pre-Mac OS X 10.4. + AC_CHECK_FUNC([_dyld_func_lookup], + [AC_DEFINE([HAVE_DYLD], [1], + [Define if you have the _dyld_func_lookup function.]) + LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dyld.la"]) + ;; +beos*) + LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}load_add_on.la" + ;; +cygwin* | mingw* | os2* | pw32*) + AC_CHECK_DECLS([cygwin_conv_path], [], [], [[#include ]]) + LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}loadlibrary.la" + ;; +esac + +AC_CHECK_LIB([dld], [dld_link], + [AC_DEFINE([HAVE_DLD], [1], + [Define if you have the GNU dld library.]) + LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dld_link.la"]) +AC_SUBST([LIBADD_DLD_LINK]) + +m4_pattern_allow([^LT_DLPREOPEN$]) +LT_DLPREOPEN= +if test -n "$LT_DLLOADERS" +then + for lt_loader in $LT_DLLOADERS; do + LT_DLPREOPEN="$LT_DLPREOPEN-dlpreopen $lt_loader " + done + AC_DEFINE([HAVE_LIBDLLOADER], [1], + [Define if libdlloader will be built on this platform]) +fi +AC_SUBST([LT_DLPREOPEN]) + +dnl This isn't used anymore, but set it for backwards compatibility +LIBADD_DL="$LIBADD_DLOPEN $LIBADD_SHL_LOAD" +AC_SUBST([LIBADD_DL]) + +AC_LANG_POP +])# LT_LIB_DLLOAD + +# Old name: +AU_ALIAS([AC_LTDL_DLLIB], [LT_LIB_DLLOAD]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LTDL_DLLIB], []) + + +# LT_SYS_SYMBOL_USCORE +# -------------------- +# does the compiler prefix global symbols with an underscore? +AC_DEFUN([LT_SYS_SYMBOL_USCORE], +[m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl +AC_CACHE_CHECK([for _ prefix in compiled symbols], + [lt_cv_sys_symbol_underscore], + [lt_cv_sys_symbol_underscore=no + cat > conftest.$ac_ext <<_LT_EOF +void nm_test_func(){} +int main(){nm_test_func;return 0;} +_LT_EOF + if AC_TRY_EVAL(ac_compile); then + # Now try to grab the symbols. + ac_nlist=conftest.nm + if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $ac_nlist) && test -s "$ac_nlist"; then + # See whether the symbols have a leading underscore. + if grep '^. _nm_test_func' "$ac_nlist" >/dev/null; then + lt_cv_sys_symbol_underscore=yes + else + if grep '^. nm_test_func ' "$ac_nlist" >/dev/null; then + : + else + echo "configure: cannot find nm_test_func in $ac_nlist" >&AS_MESSAGE_LOG_FD + fi + fi + else + echo "configure: cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD + fi + else + echo "configure: failed program was:" >&AS_MESSAGE_LOG_FD + cat conftest.c >&AS_MESSAGE_LOG_FD + fi + rm -rf conftest* + ]) + sys_symbol_underscore=$lt_cv_sys_symbol_underscore + AC_SUBST([sys_symbol_underscore]) +])# LT_SYS_SYMBOL_USCORE + +# Old name: +AU_ALIAS([AC_LTDL_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LTDL_SYMBOL_USCORE], []) + + +# LT_FUNC_DLSYM_USCORE +# -------------------- +AC_DEFUN([LT_FUNC_DLSYM_USCORE], +[AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl +if test x"$lt_cv_sys_symbol_underscore" = xyes; then + if test x"$libltdl_cv_func_dlopen" = xyes || + test x"$libltdl_cv_lib_dl_dlopen" = xyes ; then + AC_CACHE_CHECK([whether we have to add an underscore for dlsym], + [libltdl_cv_need_uscore], + [libltdl_cv_need_uscore=unknown + save_LIBS="$LIBS" + LIBS="$LIBS $LIBADD_DLOPEN" + _LT_TRY_DLOPEN_SELF( + [libltdl_cv_need_uscore=no], [libltdl_cv_need_uscore=yes], + [], [libltdl_cv_need_uscore=cross]) + LIBS="$save_LIBS" + ]) + fi +fi + +if test x"$libltdl_cv_need_uscore" = xyes; then + AC_DEFINE([NEED_USCORE], [1], + [Define if dlsym() requires a leading underscore in symbol names.]) +fi +])# LT_FUNC_DLSYM_USCORE + +# Old name: +AU_ALIAS([AC_LTDL_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LTDL_DLSYM_USCORE], []) + diff --git a/acinclude/ltoptions.m4 b/acinclude/ltoptions.m4 new file mode 100644 index 000000000..d4df67919 --- /dev/null +++ b/acinclude/ltoptions.m4 @@ -0,0 +1,370 @@ +############################################################################## +# Helper functions for option handling. -*- Autoconf -*- +# +# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. +# Written by Gary V. Vaughan, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 6 ltoptions.m4 + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) + + +# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) +# ------------------------------------------ +m4_define([_LT_MANGLE_OPTION], +[[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) + + +# _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) +# --------------------------------------- +# Set option OPTION-NAME for macro MACRO-NAME, and if there is a +# matching handler defined, dispatch to it. Other OPTION-NAMEs are +# saved as a flag. +m4_define([_LT_SET_OPTION], +[m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl +m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), + _LT_MANGLE_DEFUN([$1], [$2]), + [m4_warning([Unknown $1 option `$2'])])[]dnl +]) + + +# _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) +# ------------------------------------------------------------ +# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. +m4_define([_LT_IF_OPTION], +[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) + + +# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) +# ------------------------------------------------------- +# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME +# are set. +m4_define([_LT_UNLESS_OPTIONS], +[m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), + [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), + [m4_define([$0_found])])])[]dnl +m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 +])[]dnl +]) + + +# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) +# ---------------------------------------- +# OPTION-LIST is a space-separated list of Libtool options associated +# with MACRO-NAME. If any OPTION has a matching handler declared with +# LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about +# the unknown option and exit. +m4_defun([_LT_SET_OPTIONS], +[# Set options +m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), + [_LT_SET_OPTION([$1], _LT_Option)]) + +m4_if([$1],[LT_INIT],[ + dnl + dnl Simply set some default values (i.e off) if boolean options were not + dnl specified: + _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no + ]) + _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no + ]) + dnl + dnl If no reference was made to various pairs of opposing options, then + dnl we run the default mode handler for the pair. For example, if neither + dnl `shared' nor `disable-shared' was passed, we enable building of shared + dnl archives by default: + _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) + _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) + _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) + _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], + [_LT_ENABLE_FAST_INSTALL]) + ]) +])# _LT_SET_OPTIONS + + +## --------------------------------- ## +## Macros to handle LT_INIT options. ## +## --------------------------------- ## + +# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) +# ----------------------------------------- +m4_define([_LT_MANGLE_DEFUN], +[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) + + +# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) +# ----------------------------------------------- +m4_define([LT_OPTION_DEFINE], +[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl +])# LT_OPTION_DEFINE + + +# dlopen +# ------ +LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes +]) + +AU_DEFUN([AC_LIBTOOL_DLOPEN], +[_LT_SET_OPTION([LT_INIT], [dlopen]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `dlopen' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) + + +# win32-dll +# --------- +# Declare package support for building win32 dll's. +LT_OPTION_DEFINE([LT_INIT], [win32-dll], +[enable_win32_dll=yes + +case $host in +*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-cegcc*) + AC_CHECK_TOOL(AS, as, false) + AC_CHECK_TOOL(DLLTOOL, dlltool, false) + AC_CHECK_TOOL(OBJDUMP, objdump, false) + ;; +esac + +test -z "$AS" && AS=as +_LT_DECL([], [AS], [0], [Assembler program])dnl + +test -z "$DLLTOOL" && DLLTOOL=dlltool +_LT_DECL([], [DLLTOOL], [0], [DLL creation program])dnl + +test -z "$OBJDUMP" && OBJDUMP=objdump +_LT_DECL([], [OBJDUMP], [0], [Object dumper program])dnl +])# win32-dll + +AU_DEFUN([AC_LIBTOOL_WIN32_DLL], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +_LT_SET_OPTION([LT_INIT], [win32-dll]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `win32-dll' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) + + +# _LT_ENABLE_SHARED([DEFAULT]) +# ---------------------------- +# implement the --enable-shared flag, and supports the `shared' and +# `disable-shared' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_SHARED], +[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([shared], + [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], + [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_shared=yes ;; + no) enable_shared=no ;; + *) + enable_shared=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_shared=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) + + _LT_DECL([build_libtool_libs], [enable_shared], [0], + [Whether or not to build shared libraries]) +])# _LT_ENABLE_SHARED + +LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) + +# Old names: +AC_DEFUN([AC_ENABLE_SHARED], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) +]) + +AC_DEFUN([AC_DISABLE_SHARED], +[_LT_SET_OPTION([LT_INIT], [disable-shared]) +]) + +AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) +AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_ENABLE_SHARED], []) +dnl AC_DEFUN([AM_DISABLE_SHARED], []) + + + +# _LT_ENABLE_STATIC([DEFAULT]) +# ---------------------------- +# implement the --enable-static flag, and support the `static' and +# `disable-static' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_STATIC], +[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([static], + [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], + [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_static=yes ;; + no) enable_static=no ;; + *) + enable_static=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_static=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_static=]_LT_ENABLE_STATIC_DEFAULT) + + _LT_DECL([build_old_libs], [enable_static], [0], + [Whether or not to build static libraries]) +])# _LT_ENABLE_STATIC + +LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) + +# Old names: +AC_DEFUN([AC_ENABLE_STATIC], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) +]) + +AC_DEFUN([AC_DISABLE_STATIC], +[_LT_SET_OPTION([LT_INIT], [disable-static]) +]) + +AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) +AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_ENABLE_STATIC], []) +dnl AC_DEFUN([AM_DISABLE_STATIC], []) + + + +# _LT_ENABLE_FAST_INSTALL([DEFAULT]) +# ---------------------------------- +# implement the --enable-fast-install flag, and support the `fast-install' +# and `disable-fast-install' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_FAST_INSTALL], +[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([fast-install], + [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], + [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_fast_install=yes ;; + no) enable_fast_install=no ;; + *) + enable_fast_install=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_fast_install=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) + +_LT_DECL([fast_install], [enable_fast_install], [0], + [Whether or not to optimize for fast installation])dnl +])# _LT_ENABLE_FAST_INSTALL + +LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) + +# Old names: +AU_DEFUN([AC_ENABLE_FAST_INSTALL], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you put +the `fast-install' option into LT_INIT's first parameter.]) +]) + +AU_DEFUN([AC_DISABLE_FAST_INSTALL], +[_LT_SET_OPTION([LT_INIT], [disable-fast-install]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you put +the `disable-fast-install' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) +dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) + + +# _LT_WITH_PIC([MODE]) +# -------------------- +# implement the --with-pic flag, and support the `pic-only' and `no-pic' +# LT_INIT options. +# MODE is either `yes' or `no'. If omitted, it defaults to `both'. +m4_define([_LT_WITH_PIC], +[AC_ARG_WITH([pic], + [AS_HELP_STRING([--with-pic], + [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], + [pic_mode="$withval"], + [pic_mode=default]) + +test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) + +_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl +])# _LT_WITH_PIC + +LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) +LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) + +# Old name: +AU_DEFUN([AC_LIBTOOL_PICMODE], +[_LT_SET_OPTION([LT_INIT], [pic-only]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `pic-only' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) + +## ----------------- ## +## LTDL_INIT Options ## +## ----------------- ## + +m4_define([_LTDL_MODE], []) +LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], + [m4_define([_LTDL_MODE], [nonrecursive])]) +LT_OPTION_DEFINE([LTDL_INIT], [recursive], + [m4_define([_LTDL_MODE], [recursive])]) +LT_OPTION_DEFINE([LTDL_INIT], [subproject], + [m4_define([_LTDL_MODE], [subproject])]) + +m4_define([_LTDL_TYPE], []) +LT_OPTION_DEFINE([LTDL_INIT], [installable], + [m4_define([_LTDL_TYPE], [installable])]) +LT_OPTION_DEFINE([LTDL_INIT], [convenience], + [m4_define([_LTDL_TYPE], [convenience])]) + diff --git a/acinclude/ltsugar.m4 b/acinclude/ltsugar.m4 new file mode 100644 index 000000000..02a939d81 --- /dev/null +++ b/acinclude/ltsugar.m4 @@ -0,0 +1,125 @@ +############################################################################## +# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- +# +# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. +# Written by Gary V. Vaughan, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 6 ltsugar.m4 + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) + + +# lt_join(SEP, ARG1, [ARG2...]) +# ----------------------------- +# Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their +# associated separator. +# Needed until we can rely on m4_join from Autoconf 2.62, since all earlier +# versions in m4sugar had bugs. +m4_define([lt_join], +[m4_if([$#], [1], [], + [$#], [2], [[$2]], + [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) +m4_define([_lt_join], +[m4_if([$#$2], [2], [], + [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) + + +# lt_car(LIST) +# lt_cdr(LIST) +# ------------ +# Manipulate m4 lists. +# These macros are necessary as long as will still need to support +# Autoconf-2.59 which quotes differently. +m4_define([lt_car], [[$1]]) +m4_define([lt_cdr], +[m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], + [$#], 1, [], + [m4_dquote(m4_shift($@))])]) +m4_define([lt_unquote], $1) + + +# lt_append(MACRO-NAME, STRING, [SEPARATOR]) +# ------------------------------------------ +# Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'. +# Note that neither SEPARATOR nor STRING are expanded; they are appended +# to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). +# No SEPARATOR is output if MACRO-NAME was previously undefined (different +# than defined and empty). +# +# This macro is needed until we can rely on Autoconf 2.62, since earlier +# versions of m4sugar mistakenly expanded SEPARATOR but not STRING. +m4_define([lt_append], +[m4_define([$1], + m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) + + + +# lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) +# ---------------------------------------------------------- +# Produce a SEP delimited list of all paired combinations of elements of +# PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list +# has the form PREFIXmINFIXSUFFIXn. +# Needed until we can rely on m4_combine added in Autoconf 2.62. +m4_define([lt_combine], +[m4_if(m4_eval([$# > 3]), [1], + [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl +[[m4_foreach([_Lt_prefix], [$2], + [m4_foreach([_Lt_suffix], + ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, + [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) + + +# lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) +# ----------------------------------------------------------------------- +# Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited +# by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. +m4_define([lt_if_append_uniq], +[m4_ifdef([$1], + [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], + [lt_append([$1], [$2], [$3])$4], + [$5])], + [lt_append([$1], [$2], [$3])$4])]) + + +# lt_dict_add(DICT, KEY, VALUE) +# ----------------------------- +m4_define([lt_dict_add], +[m4_define([$1($2)], [$3])]) + + +# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) +# -------------------------------------------- +m4_define([lt_dict_add_subkey], +[m4_define([$1($2:$3)], [$4])]) + + +# lt_dict_fetch(DICT, KEY, [SUBKEY]) +# ---------------------------------- +m4_define([lt_dict_fetch], +[m4_ifval([$3], + m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), + m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) + + +# lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) +# ----------------------------------------------------------------- +m4_define([lt_if_dict_fetch], +[m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], + [$5], + [$6])]) + + +# lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) +# -------------------------------------------------------------- +m4_define([lt_dict_filter], +[m4_if([$5], [], [], + [lt_join(m4_quote(m4_default([$4], [[, ]])), + lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), + [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl +]) + diff --git a/acinclude/ltversion.m4 b/acinclude/ltversion.m4 new file mode 100644 index 000000000..83a83f20a --- /dev/null +++ b/acinclude/ltversion.m4 @@ -0,0 +1,25 @@ +############################################################################## +# ltversion.m4 -- version numbers -*- Autoconf -*- +# +# Copyright (C) 2004 Free Software Foundation, Inc. +# Written by Scott James Remnant, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# Generated from ltversion.in. + +# serial 3012 ltversion.m4 +# This file is part of GNU Libtool + +m4_define([LT_PACKAGE_VERSION], [2.2.6]) +m4_define([LT_PACKAGE_REVISION], [1.3012]) + +AC_DEFUN([LTVERSION_VERSION], +[macro_version='2.2.6' +macro_revision='1.3012' +_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) +_LT_DECL(, macro_revision, 0) +]) + diff --git a/acinclude/lt~obsolete.m4 b/acinclude/lt~obsolete.m4 new file mode 100644 index 000000000..3b2acd4d0 --- /dev/null +++ b/acinclude/lt~obsolete.m4 @@ -0,0 +1,93 @@ +############################################################################## +# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- +# +# Copyright (C) 2004, 2005, 2007 Free Software Foundation, Inc. +# Written by Scott James Remnant, 2004. +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 4 lt~obsolete.m4 + +# These exist entirely to fool aclocal when bootstrapping libtool. +# +# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN) +# which have later been changed to m4_define as they aren't part of the +# exported API, or moved to Autoconf or Automake where they belong. +# +# The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN +# in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us +# using a macro with the same name in our local m4/libtool.m4 it'll +# pull the old libtool.m4 in (it doesn't see our shiny new m4_define +# and doesn't know about Autoconf macros at all.) +# +# So we provide this file, which has a silly filename so it's always +# included after everything else. This provides aclocal with the +# AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything +# because those macros already exist, or will be overwritten later. +# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. +# +# Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. +# Yes, that means every name once taken will need to remain here until +# we give up compatibility with versions before 1.7, at which point +# we need to keep only those names which we still refer to. + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) + +m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) +m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) +m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) +m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) +m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) +m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) +m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) +m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) +m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) +m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) +m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) +m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) +m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) +m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) +m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) +m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) +m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) +m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) +m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) +m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) +m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) +m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) +m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) +m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) +m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) +m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) +m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) +m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) +m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) +m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) +m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) +m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) +m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) +m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) +m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) +m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) +m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) +m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) +m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) +m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) +m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) +m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) +m4_ifndef([AC_LIBTOOL_RC], [AC_DEFUN([AC_LIBTOOL_RC])]) +m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) +m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) +m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) +m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) +m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) +m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) +m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) +m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) diff --git a/autogen.sh b/autogen.sh index 31e534412..649d7b31e 100755 --- a/autogen.sh +++ b/autogen.sh @@ -4,7 +4,7 @@ echo "Generating build information using autoconf" echo "This may take a while ..." # Regenerate configuration files -cp acinclude.m4 aclocal.m4 +cat acinclude/* >aclocal.m4 found=false for autoconf in autoconf autoconf259 autoconf-2.59 do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi diff --git a/build-scripts/config.guess b/build-scripts/config.guess index 17690aea3..e792aac60 100755 --- a/build-scripts/config.guess +++ b/build-scripts/config.guess @@ -1,9 +1,10 @@ #! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 +# Free Software Foundation, Inc. -timestamp='2006-01-02' +timestamp='2009-09-18' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -26,16 +27,16 @@ timestamp='2006-01-02' # the same distribution terms that you use for the rest of that program. -# Originally written by Per Bothner . -# Please send patches to . Submit a context -# diff and a properly formatted ChangeLog entry. +# Originally written by Per Bothner. Please send patches (context +# diff format) to and include a ChangeLog +# entry. # # This script attempts to guess a canonical system name similar to # config.sub. If it succeeds, it prints the system name on stdout, and # exits with 0. Otherwise, it exits with 1. # -# The plan is that this can be called by configure scripts if you -# don't specify an explicit build system type. +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD me=`echo "$0" | sed -e 's,.*/,,'` @@ -55,8 +56,8 @@ version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 -Free Software Foundation, Inc. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, +2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -106,7 +107,7 @@ set_cc_for_build=' trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; - { tmp=`(umask 077 && mktemp -d -q "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || + { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; @@ -160,6 +161,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; + sh5el) machine=sh5le-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched @@ -168,7 +170,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ - | grep __ELF__ >/dev/null + | grep -q __ELF__ then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? @@ -210,7 +212,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) - echo powerppc-unknown-mirbsd${UNAME_RELEASE} + echo powerpc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} @@ -322,14 +324,30 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7; exit ;; esac ;; + s390x:SunOS:*:*) + echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; - i86pc:SunOS:5.*:*) - echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) + eval $set_cc_for_build + SUN_ARCH="i386" + # If there is a compiler, see if it is configured for 64-bit objects. + # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. + # This test works for both compilers. + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + SUN_ARCH="x86_64" + fi + fi + echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize @@ -530,7 +548,7 @@ EOF echo rs6000-ibm-aix3.2 fi exit ;; - *:AIX:*:[45]) + *:AIX:*:[456]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 @@ -638,7 +656,7 @@ EOF # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | - grep __LP64__ >/dev/null + grep -q __LP64__ then HP_ARCH="hppa2.0w" else @@ -770,6 +788,8 @@ EOF case ${UNAME_MACHINE} in pc98) echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + amd64) + echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac @@ -777,7 +797,7 @@ EOF i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; - i*:MINGW*:*) + *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; i*:windows32*:*) @@ -787,12 +807,24 @@ EOF i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; - x86:Interix*:[345]*) - echo i586-pc-interix${UNAME_RELEASE}|sed -e 's/\..*//' - exit ;; + *:Interix*:[3456]*) + case ${UNAME_MACHINE} in + x86) + echo i586-pc-interix${UNAME_RELEASE} + exit ;; + EM64T | authenticamd | genuineintel) + echo x86_64-unknown-interix${UNAME_RELEASE} + exit ;; + IA64) + echo ia64-unknown-interix${UNAME_RELEASE} + exit ;; + esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; + 8664:Windows_NT:*) + echo x86_64-pc-mks + exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we @@ -822,7 +854,31 @@ EOF i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; + alpha:Linux:*:*) + case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in + EV5) UNAME_MACHINE=alphaev5 ;; + EV56) UNAME_MACHINE=alphaev56 ;; + PCA56) UNAME_MACHINE=alphapca56 ;; + PCA57) UNAME_MACHINE=alphapca56 ;; + EV6) UNAME_MACHINE=alphaev6 ;; + EV67) UNAME_MACHINE=alphaev67 ;; + EV68*) UNAME_MACHINE=alphaev68 ;; + esac + objdump --private-headers /bin/sh | grep -q ld.so.1 + if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi + echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} + exit ;; arm*:Linux:*:*) + eval $set_cc_for_build + if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_EABI__ + then + echo ${UNAME_MACHINE}-unknown-linux-gnu + else + echo ${UNAME_MACHINE}-unknown-linux-gnueabi + fi + exit ;; + avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; cris:Linux:*:*) @@ -834,6 +890,9 @@ EOF frv:Linux:*:*) echo frv-unknown-linux-gnu exit ;; + i*86:Linux:*:*) + echo ${UNAME_MACHINE}-pc-linux-gnu + exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; @@ -843,66 +902,37 @@ EOF m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; - mips:Linux:*:*) + mips:Linux:*:* | mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU - #undef mips - #undef mipsel + #undef ${UNAME_MACHINE} + #undef ${UNAME_MACHINE}el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) - CPU=mipsel + CPU=${UNAME_MACHINE}el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) - CPU=mips + CPU=${UNAME_MACHINE} #else CPU= #endif #endif EOF - eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '/^CPU/{s: ::g;p;}'`" - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } - ;; - mips64:Linux:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #undef CPU - #undef mips64 - #undef mips64el - #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) - CPU=mips64el - #else - #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) - CPU=mips64 - #else - CPU= - #endif - #endif -EOF - eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '/^CPU/{s: ::g;p;}'`" + eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' + /^CPU/{ + s: ::g + p + }'`" test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) echo or32-unknown-linux-gnu exit ;; - ppc:Linux:*:*) - echo powerpc-unknown-linux-gnu + padre:Linux:*:*) + echo sparc-unknown-linux-gnu exit ;; - ppc64:Linux:*:*) - echo powerpc64-unknown-linux-gnu - exit ;; - alpha:Linux:*:*) - case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in - EV5) UNAME_MACHINE=alphaev5 ;; - EV56) UNAME_MACHINE=alphaev56 ;; - PCA56) UNAME_MACHINE=alphapca56 ;; - PCA57) UNAME_MACHINE=alphapca56 ;; - EV6) UNAME_MACHINE=alphaev6 ;; - EV67) UNAME_MACHINE=alphaev67 ;; - EV68*) UNAME_MACHINE=alphaev68 ;; - esac - objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null - if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi - echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} + parisc64:Linux:*:* | hppa64:Linux:*:*) + echo hppa64-unknown-linux-gnu exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level @@ -912,8 +942,11 @@ EOF *) echo hppa-unknown-linux-gnu ;; esac exit ;; - parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-gnu + ppc64:Linux:*:*) + echo powerpc64-unknown-linux-gnu + exit ;; + ppc:Linux:*:*) + echo powerpc-unknown-linux-gnu exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux @@ -933,65 +966,9 @@ EOF x86_64:Linux:*:*) echo x86_64-unknown-linux-gnu exit ;; - i*86:Linux:*:*) - # The BFD linker knows what the default object file format is, so - # first see if it will tell us. cd to the root directory to prevent - # problems with other programs or directories called `ld' in the path. - # Set LC_ALL=C to ensure ld outputs messages in English. - ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ - | sed -ne '/supported targets:/!d - s/[ ][ ]*/ /g - s/.*supported targets: *// - s/ .*// - p'` - case "$ld_supported_targets" in - elf32-i386) - TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" - ;; - a.out-i386-linux) - echo "${UNAME_MACHINE}-pc-linux-gnuaout" - exit ;; - coff-i386) - echo "${UNAME_MACHINE}-pc-linux-gnucoff" - exit ;; - "") - # Either a pre-BFD a.out linker (linux-gnuoldld) or - # one that does not give us useful --help. - echo "${UNAME_MACHINE}-pc-linux-gnuoldld" - exit ;; - esac - # Determine whether the default compiler is a.out or elf - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #include - #ifdef __ELF__ - # ifdef __GLIBC__ - # if __GLIBC__ >= 2 - LIBC=gnu - # else - LIBC=gnulibc1 - # endif - # else - LIBC=gnulibc1 - # endif - #else - #if defined(__INTEL_COMPILER) || defined(__PGI) - LIBC=gnu - #else - LIBC=gnuaout - #endif - #endif - #ifdef __dietlibc__ - LIBC=dietlibc - #endif -EOF - eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '/^LIBC/{s: ::g;p;}'`" - test x"${LIBC}" != x && { - echo "${UNAME_MACHINE}-pc-linux-${LIBC}" - exit - } - test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; } - ;; + xtensa*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both @@ -1020,7 +997,7 @@ EOF i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable exit ;; - i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) + i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit ;; i*86:*DOS:*:*) @@ -1064,8 +1041,11 @@ EOF pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about - # the processor, so we play safe by assuming i386. - echo i386-pc-msdosdjgpp + # the processor, so we play safe by assuming i586. + # Note: whatever this is, it MUST be the same as what config.sub + # prints for the "djgpp" host, or else GDB configury will decide that + # this is a cross-build. + echo i586-pc-msdosdjgpp exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 @@ -1103,6 +1083,16 @@ EOF 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; + NCR*:*:4.2:* | MPRAS*:*:4.2:*) + OS_REL='.3' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit ;; @@ -1115,7 +1105,7 @@ EOF rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit ;; - PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*) + PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit ;; SM[BE]S:UNIX_SV:*:*) @@ -1178,6 +1168,9 @@ EOF BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit ;; + BePC:Haiku:*:*) # Haiku running on Intel PC compatible. + echo i586-pc-haiku + exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit ;; @@ -1187,6 +1180,15 @@ EOF SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit ;; + SX-7:SUPER-UX:*:*) + echo sx7-nec-superux${UNAME_RELEASE} + exit ;; + SX-8:SUPER-UX:*:*) + echo sx8-nec-superux${UNAME_RELEASE} + exit ;; + SX-8R:SUPER-UX:*:*) + echo sx8r-nec-superux${UNAME_RELEASE} + exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; @@ -1196,6 +1198,16 @@ EOF *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown case $UNAME_PROCESSOR in + i386) + eval $set_cc_for_build + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + UNAME_PROCESSOR="x86_64" + fi + fi ;; unknown) UNAME_PROCESSOR=powerpc ;; esac echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} @@ -1277,6 +1289,9 @@ EOF i*86:rdos:*:*) echo ${UNAME_MACHINE}-pc-rdos exit ;; + i*86:AROS:*:*) + echo ${UNAME_MACHINE}-pc-aros + exit ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 @@ -1437,9 +1452,9 @@ This script, last modified $timestamp, has failed to recognize the operating system you are using. It is advised that you download the most up to date version of the config scripts from - http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.guess + http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD and - http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.sub + http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD If the version you run ($0) is already up to date, please send the following data and any information you think might be diff --git a/build-scripts/config.sub b/build-scripts/config.sub index a4e8a94a3..5ecc18b6a 100755 --- a/build-scripts/config.sub +++ b/build-scripts/config.sub @@ -1,9 +1,10 @@ #! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 +# Free Software Foundation, Inc. -timestamp='2006-01-02' +timestamp='2009-10-07' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -31,13 +32,16 @@ timestamp='2006-01-02' # Please send patches to . Submit a context -# diff and a properly formatted ChangeLog entry. +# diff and a properly formatted GNU ChangeLog entry. # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD + # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. @@ -71,8 +75,8 @@ Report bugs and patches to ." version="\ GNU config.sub ($timestamp) -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 -Free Software Foundation, Inc. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, +2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -121,6 +125,7 @@ maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \ uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \ + kopensolaris*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` @@ -147,10 +152,13 @@ case $os in -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ - -apple | -axis | -knuth | -cray) + -apple | -axis | -knuth | -cray | -microblaze) os= basic_machine=$1 ;; + -bluegene*) + os=-cnk + ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 @@ -240,20 +248,24 @@ case $basic_machine in | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ - | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \ + | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ - | fr30 | frv \ + | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ - | m32r | m32rle | m68000 | m68k | m88k | maxq | mb | microblaze | mcore \ + | lm32 \ + | m32c | m32r | m32rle | m68000 | m68k | m88k \ + | maxq | mb | microblaze | mcore | mep | metag \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ - | mips64vr | mips64vrel \ + | mips64octeon | mips64octeonel \ | mips64orion | mips64orionel \ + | mips64r5900 | mips64r5900el \ + | mips64vr | mips64vrel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ @@ -266,29 +278,30 @@ case $basic_machine in | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ + | moxie \ | mt \ | msp430 \ + | nios | nios2 \ | ns16k | ns32k \ | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ - | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \ + | rx \ + | score \ + | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ - | sparc | sparc64 | sparc64b | sparc86x | sparclet | sparclite \ - | sparcv8 | sparcv9 | sparcv9b \ - | strongarm \ + | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ + | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ + | spu | strongarm \ | tahoe | thumb | tic4x | tic80 | tron \ | v850 | v850e \ | we32k \ - | x86 | xscale | xscalee[bl] | xstormy16 | xtensa \ - | z8k) + | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ + | z8k | z80) basic_machine=$basic_machine-unknown ;; - m32c) - basic_machine=$basic_machine-unknown - ;; - m6811 | m68hc11 | m6812 | m68hc12) + m6811 | m68hc11 | m6812 | m68hc12 | picochip) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown os=-none @@ -317,25 +330,28 @@ case $basic_machine in | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ - | avr-* \ + | avr-* | avr32-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ - | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \ + | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ - | m32r-* | m32rle-* \ + | lm32-* \ + | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ - | m88110-* | m88k-* | maxq-* | mcore-* \ + | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ - | mips64vr-* | mips64vrel-* \ + | mips64octeon-* | mips64octeonel-* \ | mips64orion-* | mips64orionel-* \ + | mips64r5900-* | mips64r5900el-* \ + | mips64vr-* | mips64vrel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ @@ -350,28 +366,31 @@ case $basic_machine in | mmix-* \ | mt-* \ | msp430-* \ + | nios-* | nios2-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ - | romp-* | rs6000-* \ - | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | shbe-* \ + | romp-* | rs6000-* | rx-* \ + | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ - | sparc-* | sparc64-* | sparc64b-* | sparc86x-* | sparclet-* \ + | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ - | sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ + | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ | tahoe-* | thumb-* \ - | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ + | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* | tile-* \ | tron-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ - | x86-* | x86_64-* | xps100-* | xscale-* | xscalee[bl]-* \ - | xstormy16-* | xtensa-* \ + | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ + | xstormy16-* | xtensa*-* \ | ymp-* \ - | z8k-*) + | z8k-* | z80-*) ;; - m32c-*) + # Recognize the basic CPU types without company name, with glob match. + xtensa*) + basic_machine=$basic_machine-unknown ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. @@ -435,6 +454,10 @@ case $basic_machine in basic_machine=m68k-apollo os=-bsd ;; + aros) + basic_machine=i386-pc + os=-aros + ;; aux) basic_machine=m68k-apple os=-aux @@ -443,10 +466,26 @@ case $basic_machine in basic_machine=ns32k-sequent os=-dynix ;; + blackfin) + basic_machine=bfin-unknown + os=-linux + ;; + blackfin-*) + basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + bluegene*) + basic_machine=powerpc-ibm + os=-cnk + ;; c90) basic_machine=c90-cray os=-unicos ;; + cegcc) + basic_machine=arm-unknown + os=-cegcc + ;; convex-c1) basic_machine=c1-convex os=-bsd @@ -475,8 +514,8 @@ case $basic_machine in basic_machine=craynv-cray os=-unicosmp ;; - cr16c) - basic_machine=cr16c-unknown + cr16) + basic_machine=cr16-unknown os=-elf ;; crds | unos) @@ -514,6 +553,10 @@ case $basic_machine in basic_machine=m88k-motorola os=-sysv3 ;; + dicos) + basic_machine=i686-pc + os=-dicos + ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp @@ -668,6 +711,14 @@ case $basic_machine in basic_machine=m68k-isi os=-sysv ;; + m68knommu) + basic_machine=m68k-unknown + os=-linux + ;; + m68knommu-*) + basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; m88k-omron*) basic_machine=m88k-omron ;; @@ -679,10 +730,17 @@ case $basic_machine in basic_machine=ns32k-utek os=-sysv ;; + microblaze) + basic_machine=microblaze-xilinx + ;; mingw32) basic_machine=i386-pc os=-mingw32 ;; + mingw32ce) + basic_machine=arm-unknown + os=-mingw32ce + ;; miniframe) basic_machine=m68000-convergent ;; @@ -809,6 +867,14 @@ case $basic_machine in basic_machine=i860-intel os=-osf ;; + parisc) + basic_machine=hppa-unknown + os=-linux + ;; + parisc-*) + basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; pbd) basic_machine=sparc-tti ;; @@ -910,6 +976,10 @@ case $basic_machine in sb1el) basic_machine=mipsisa64sb1el-unknown ;; + sde) + basic_machine=mipsisa32-sde + os=-elf + ;; sei) basic_machine=mips-sei os=-seiux @@ -921,6 +991,9 @@ case $basic_machine in basic_machine=sh-hitachi os=-hms ;; + sh5el) + basic_machine=sh5le-unknown + ;; sh64) basic_machine=sh64-unknown ;; @@ -1010,6 +1083,10 @@ case $basic_machine in basic_machine=tic6x-unknown os=-coff ;; + tile*) + basic_machine=tile-unknown + os=-linux-gnu + ;; tx39) basic_machine=mipstx39-unknown ;; @@ -1085,6 +1162,10 @@ case $basic_machine in basic_machine=z8k-unknown os=-sim ;; + z80-*-coff) + basic_machine=z80-unknown + os=-sim + ;; none) basic_machine=none-none os=-none @@ -1123,10 +1204,10 @@ case $basic_machine in we32k) basic_machine=we32k-att ;; - sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele) + sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; - sparc | sparcv8 | sparcv9 | sparcv9b) + sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) basic_machine=sparc-sun ;; cydra) @@ -1193,10 +1274,11 @@ case $os in # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ - | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\ + | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ + | -kopensolaris* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ - | -aos* \ + | -aos* | -aros* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ @@ -1205,7 +1287,7 @@ case $os in | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ - | -chorusos* | -chorusrdb* \ + | -chorusos* | -chorusrdb* | -cegcc* \ | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* \ @@ -1215,7 +1297,7 @@ case $os in | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ - | -skyos* | -haiku* | -rdos*) + | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) @@ -1345,6 +1427,9 @@ case $os in -zvmoe) os=-zvmoe ;; + -dicos*) + os=-dicos + ;; -none) ;; *) @@ -1367,6 +1452,12 @@ else # system, and we'll never get to this point. case $basic_machine in + score-*) + os=-elf + ;; + spu-*) + os=-elf + ;; *-acorn) os=-riscix1.2 ;; @@ -1376,9 +1467,9 @@ case $basic_machine in arm*-semi) os=-aout ;; - c4x-* | tic4x-*) - os=-coff - ;; + c4x-* | tic4x-*) + os=-coff + ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 @@ -1404,6 +1495,9 @@ case $basic_machine in m68*-cisco) os=-aout ;; + mep-*) + os=-elf + ;; mips*-cisco) os=-elf ;; @@ -1533,7 +1627,7 @@ case $basic_machine in -sunos*) vendor=sun ;; - -aix*) + -cnk*|-aix*) vendor=ibm ;; -beos*) diff --git a/build-scripts/fatbuild.sh b/build-scripts/fatbuild.sh index 3fd40cfb2..8b99c1ddc 100755 --- a/build-scripts/fatbuild.sh +++ b/build-scripts/fatbuild.sh @@ -4,52 +4,39 @@ # Number of CPUs (for make -j) NCPU=`sysctl -n hw.ncpu` -NJOB=$NCPU -#NJOB=`expr $NCPU + 1` +if test x$NJOB = x; then + NJOB=$NCPU +fi + +# SDK path +if test x$SDK_PATH = x; then + SDK_PATH=/Developer/SDKs +fi # Generic, cross-platform CFLAGS you always want go here. CFLAGS="-O3 -g -pipe" -# PowerPC configure flags (10.2 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 \ +BASE_CONFIG_FLAGS="--build=`uname -p`-apple-darwin \ --x-includes=/usr/X11R6/include --x-libraries=/usr/X11R6/lib" -# PowerPC compiler flags -CC_PPC="gcc-3.3 -arch ppc" -CXX_PPC="g++-3.3 -arch ppc" -CFLAGS_PPC="" -CPPFLAGS_PPC="-DMAC_OS_X_VERSION_MIN_REQUIRED=1020 \ --nostdinc \ --F/Developer/SDKs/MacOSX10.2.8.sdk/System/Library/Frameworks \ --I/Developer/SDKs/MacOSX10.2.8.sdk/usr/include/gcc/darwin/3.3 \ --isystem /Developer/SDKs/MacOSX10.2.8.sdk/usr/include" +# PowerPC 32-bit compiler flags +CONFIG_PPC="--host=powerpc-apple-darwin" +CC_PPC="gcc-4.0" +CXX_PPC="g++-4.0" +BUILD_FLAGS_PPC="-arch ppc -mmacosx-version-min=10.4" -# PowerPC linker flags -LFLAGS_PPC="-arch ppc \ --L/Developer/SDKs/MacOSX10.2.8.sdk/usr/lib/gcc/darwin/3.3 \ --F/Developer/SDKs/MacOSX10.2.8.sdk/System/Library/Frameworks \ --Wl,-syslibroot,/Developer/SDKs/MacOSX10.2.8.sdk" +# Intel 32-bit compiler flags +CONFIG_X86="--host=i386-apple-darwin" +CC_X86="gcc" +CXX_X86="g++" +BUILD_FLAGS_X86="-arch i386 -mmacosx-version-min=10.4" -# Intel 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 \ ---x-includes=/usr/X11R6/include --x-libraries=/usr/X11R6/lib" - -# Intel compiler flags -CC_X86="gcc-4.0 -arch i386" -CXX_X86="g++-4.0 -arch i386" -CFLAGS_X86="-mmacosx-version-min=10.4" -CPPFLAGS_X86="-DMAC_OS_X_VERSION_MIN_REQUIRED=1040 \ --nostdinc \ --F/Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks \ --I/Developer/SDKs/MacOSX10.4u.sdk/usr/lib/gcc/i686-apple-darwin8/4.0.1/include \ --isystem /Developer/SDKs/MacOSX10.4u.sdk/usr/include" - -# Intel linker flags -LFLAGS_X86="-arch i386 -mmacosx-version-min=10.4 \ --L/Developer/SDKs/MacOSX10.4u.sdk/usr/lib/gcc/i686-apple-darwin8/4.0.0 \ --Wl,-syslibroot,/Developer/SDKs/MacOSX10.4u.sdk" +# Intel 64-bit compiler flags +CONFIG_X64="--host=x86_64-apple-darwin" +CC_X64="gcc" +CXX_X64="g++" +BUILD_FLAGS_X64="-arch x86_64 -mmacosx-version-min=10.6" # # Find the configure script @@ -58,11 +45,19 @@ srcdir=`dirname $0`/.. auxdir=$srcdir/build-scripts cd $srcdir +allow_ppc="yes" +which gcc-4.0 >/dev/null 2>/dev/null +if [ "x$?" = "x1" ]; then + #echo "WARNING: Can't find gcc-4.0, which means you don't have Xcode 3." + #echo "WARNING: Therefore, we can't do PowerPC support." + allow_ppc="no" +fi + # # Figure out which phase to build: # all, -# configure, configure-ppc, configure-x86, -# make, make-ppc, make-x86, merge +# configure, configure-ppc, configure-x86, configure-x64 +# make, make-ppc, make-x86, make-x64, merge # install # clean if test x"$1" = x; then @@ -72,33 +67,43 @@ else fi case $phase in all) - configure_ppc="yes" + configure_ppc="$allow_ppc" configure_x86="yes" - make_ppc="yes" + configure_x64="yes" + make_ppc="$allow_ppc" make_x86="yes" + make_x64="yes" merge="yes" ;; configure) - configure_ppc="yes" + configure_ppc="$allow_ppc" configure_x86="yes" + configure_x64="yes" ;; configure-ppc) - configure_ppc="yes" + configure_ppc="$allow_ppc" ;; configure-x86) configure_x86="yes" ;; + configure-x64) + configure_x64="yes" + ;; make) - make_ppc="yes" + make_ppc="$allow_ppc" make_x86="yes" + make_x64="yes" merge="yes" ;; make-ppc) - make_ppc="yes" + make_ppc="$allow_ppc" ;; make-x86) make_x86="yes" ;; + make-x64) + make_x64="yes" + ;; merge) merge="yes" ;; @@ -127,6 +132,7 @@ case $phase in clean) clean_ppc="yes" clean_x86="yes" + clean_x64="yes" ;; clean-ppc) clean_ppc="yes" @@ -134,18 +140,24 @@ case $phase in clean-x86) clean_x86="yes" ;; + clean-x64) + clean_x64="yes" + ;; *) - echo "Usage: $0 [all|configure[-ppc|-x86]|make[-ppc|-x86]|merge|install|clean]" + echo "Usage: $0 [all|configure[-ppc|-x86|-x64]|make[-ppc|-x86|-x64]|merge|install|clean[-ppc|-x86|-x64]]" exit 1 ;; esac case `uname -p` in - powerpc) - native_path=ppc - ;; *86) native_path=x86 ;; + *powerpc) + native_path=ppc + ;; + x86_64) + native_path=x64 + ;; *) echo "Couldn't figure out native architecture path" exit 1 @@ -155,7 +167,7 @@ esac # # Create the build directories # -for dir in build build/ppc build/x86; do +for dir in build build/ppc build/x86 build/x64; do if test -d $dir; then : else @@ -163,28 +175,39 @@ for dir in build build/ppc build/x86; do fi done + # -# Build the PowerPC binary +# 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 + sh ../../configure $BASE_CONFIG_FLAGS $CONFIG_PPC CC="$CC_PPC" CXX="$CXX_PPC" CFLAGS="$CFLAGS $BUILD_FLAGS_PPC $CFLAGS_PPC" LDFLAGS="$BUILD_FLAGS_PPC $LFLAGS_PPC") || exit 2 fi if test x$make_ppc = xyes; then - (cd build/ppc && ls include && make -j$NJOB) || exit 3 + (cd build/ppc && make -j$NJOB) || exit 3 fi - # -# Build the Intel binary +# Build the Intel 32-bit binary # if test x$configure_x86 = xyes; then (cd build/x86 && \ - sh ../../configure $CONFIG_X86 CC="$CC_X86" CXX="$CXX_X86" CFLAGS="$CFLAGS $CFLAGS_X86" CPPFLAGS="$CPPFLAGS_X86" LDFLAGS="$LFLAGS_X86") || exit 2 + sh ../../configure $BASE_CONFIG_FLAGS $CONFIG_X86 CC="$CC_X86" CXX="$CXX_X86" CFLAGS="$CFLAGS $BUILD_FLAGS_X86 $CFLAGS_X86" LDFLAGS="$BUILD_FLAGS_X86 $LFLAGS_X86") || exit 2 fi if test x$make_x86 = xyes; then (cd build/x86 && make -j$NJOB) || exit 3 fi +# +# Build the Intel 64-bit binary +# +if test x$configure_x64 = xyes; then + (cd build/x64 && \ + sh ../../configure $BASE_CONFIG_FLAGS $CONFIG_X64 CC="$CC_X64" CXX="$CXX_X64" CFLAGS="$CFLAGS $BUILD_FLAGS_X64 $CFLAGS_X64" LDFLAGS="$BUILD_FLAGS_X64 $LFLAGS_X64") || exit 2 +fi +if test x$make_x64 = xyes; then + (cd build/x64 && make -j$NJOB) || exit 3 +fi + # # Combine into fat binary # @@ -192,15 +215,17 @@ if test x$merge = xyes; then output=.libs sh $auxdir/mkinstalldirs build/$output cd build - target=`find . -mindepth 3 -type f -name '*.dylib' | head -1 | sed 's|.*/||'` - (lipo -create -o $output/$target `find . -mindepth 3 -type f -name "*.dylib"` && - ln -sf $target $output/libSDL-1.2.0.dylib && + target=`find . -mindepth 4 -maxdepth 4 -type f -name '*.dylib' | head -1 | sed 's|.*/||'` + (lipo -create -o $output/$target `find . -mindepth 4 -maxdepth 4 -type f -name "*.dylib"` && ln -sf $target $output/libSDL.dylib && lipo -create -o $output/libSDL.a */build/.libs/libSDL.a && cp $native_path/build/.libs/libSDL.la $output && cp $native_path/build/.libs/libSDL.lai $output && cp $native_path/build/libSDL.la . && - lipo -create -o libSDLmain.a */build/libSDLmain.a && + lipo -create -o $output/libSDLmain.a */build/.libs/libSDLmain.a && + cp $native_path/build/.libs/libSDLmain.la $output && + cp $native_path/build/.libs/libSDLmain.lai $output && + cp $native_path/build/libSDLmain.la . && echo "Build complete!" && echo "Files can be found in the build directory.") || exit 4 cd .. @@ -250,12 +275,13 @@ fi if test x$install_lib = xyes; then do_install sh $auxdir/mkinstalldirs $libdir do_install sh build/$native_path/libtool --mode=install /usr/bin/install -c build/libSDL.la $libdir/libSDL.la - do_install /usr/bin/install -c -m 644 build/libSDLmain.a $libdir/libSDLmain.a - do_install ranlib $libdir/libSDLmain.a + do_install sh build/$native_path/libtool --mode=install /usr/bin/install -c build/libSDLmain.la $libdir/libSDLmain.la fi if test x$install_data = xyes; then do_install sh $auxdir/mkinstalldirs $datadir/aclocal do_install /usr/bin/install -c -m 644 $srcdir/sdl.m4 $datadir/aclocal/sdl.m4 + do_install sh $auxdir/mkinstalldirs $libdir/pkgconfig + do_install /usr/bin/install -m 644 build/$native_path/sdl.pc $libdir/pkgconfig/sdl.pc fi if test x$install_man = xyes; then do_install sh $auxdir/mkinstalldirs $mandir/man3 @@ -273,10 +299,12 @@ do_clean() echo $* $* || exit 6 } -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 fi - +if test x$clean_x86 = xyes; then + do_clean rm -r build/x86 +fi +if test x$clean_x64 = xyes; then + do_clean rm -r build/x64 +fi diff --git a/build-scripts/ltmain.sh b/build-scripts/ltmain.sh index 6698c1b44..5e04f0862 100644 --- a/build-scripts/ltmain.sh +++ b/build-scripts/ltmain.sh @@ -1,31 +1,174 @@ -# Based on libtool-1.5.22 -# ltmain.sh - Provide generalized library-building support services. -# NOTE: Changing this file will not affect anything until you rerun configure. -# -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005 -# Free Software Foundation, Inc. -# Originally by Gordon Matzigkeit , 1996 -# -# This program is free software; you can redistribute it and/or modify +# Generated from ltmain.m4sh. + +# ltmain.sh (GNU libtool) 2.2.6 +# Written by Gordon Matzigkeit , 1996 + +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007 2008 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# GNU Libtool is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # -# This program is distributed in the hope that it will be useful, but +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. +# along with GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, +# or obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -basename="s,^.*/,,g" +# Usage: $progname [OPTION]... [MODE-ARG]... +# +# Provide generalized library-building support services. +# +# --config show all configuration variables +# --debug enable verbose shell tracing +# -n, --dry-run display commands without modifying any files +# --features display basic configuration information and exit +# --mode=MODE use operation mode MODE +# --preserve-dup-deps don't remove duplicate dependency libraries +# --quiet, --silent don't print informational messages +# --tag=TAG use configuration variables from tag TAG +# -v, --verbose print informational messages (default) +# --version print version information +# -h, --help print short or long help message +# +# MODE must be one of the following: +# +# clean remove files from the build directory +# compile compile a source file into a libtool object +# execute automatically set library path, then run a program +# finish complete the installation of libtool libraries +# install install libraries or executables +# link create a library or an executable +# uninstall remove libraries from an installed directory +# +# MODE-ARGS vary depending on the MODE. +# Try `$progname --help --mode=MODE' for a more detailed description of MODE. +# +# When reporting a bug, please describe a test case to reproduce it and +# include the following information: +# +# host-triplet: $host +# shell: $SHELL +# compiler: $LTCC +# compiler flags: $LTCFLAGS +# linker: $LD (gnu? $with_gnu_ld) +# $progname: (GNU libtool) 2.2.6 +# automake: $automake_version +# autoconf: $autoconf_version +# +# Report bugs to . + +PROGRAM=ltmain.sh +PACKAGE=libtool +VERSION=2.2.6 +TIMESTAMP="" +package_revision=1.3012 + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# NLS nuisances: We save the old values to restore during execute mode. +# Only set LANG and LC_ALL to C if already set. +# These must not be set unconditionally because not all systems understand +# e.g. LANG=C (notably SCO). +lt_user_locale= +lt_safe_locale= +for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES +do + eval "if test \"\${$lt_var+set}\" = set; then + save_$lt_var=\$$lt_var + $lt_var=C + export $lt_var + lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\" + lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\" + fi" +done + +$lt_unset CDPATH + + + + + +: ${CP="cp -f"} +: ${ECHO="echo"} +: ${EGREP="/usr/bin/grep -E"} +: ${FGREP="/usr/bin/grep -F"} +: ${GREP="/usr/bin/grep"} +: ${LN_S="ln -s"} +: ${MAKE="make"} +: ${MKDIR="mkdir"} +: ${MV="mv -f"} +: ${RM="rm -f"} +: ${SED="/opt/local/bin/gsed"} +: ${SHELL="${CONFIG_SHELL-/bin/sh}"} +: ${Xsed="$SED -e 1s/^X//"} + +# Global variables: +EXIT_SUCCESS=0 +EXIT_FAILURE=1 +EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. +EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. + +exit_status=$EXIT_SUCCESS + +# Make sure IFS has a sensible default +lt_nl=' +' +IFS=" $lt_nl" + +dirname="s,/[^/]*$,," +basename="s,^.*/,," + +# func_dirname_and_basename file append nondir_replacement +# perform func_basename and func_dirname in a single function +# call: +# dirname: Compute the dirname of FILE. If nonempty, +# add APPEND to the result, otherwise set result +# to NONDIR_REPLACEMENT. +# value returned in "$func_dirname_result" +# basename: Compute filename of FILE. +# value retuned in "$func_basename_result" +# Implementation must be kept synchronized with func_dirname +# and func_basename. For efficiency, we do not delegate to +# those functions but instead duplicate the functionality here. +func_dirname_and_basename () +{ + # Extract subdirectory from the argument. + func_dirname_result=`$ECHO "X${1}" | $Xsed -e "$dirname"` + if test "X$func_dirname_result" = "X${1}"; then + func_dirname_result="${3}" + else + func_dirname_result="$func_dirname_result${2}" + fi + func_basename_result=`$ECHO "X${1}" | $Xsed -e "$basename"` +} + +# Generated shell functions inserted here. # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of @@ -35,36 +178,396 @@ basename="s,^.*/,,g" progpath="$0" # The name of this program: -progname=`echo "$progpath" | $SED $basename` -modename="$progname" +# In the unlikely event $progname began with a '-', it would play havoc with +# func_echo (imagine progname=-n), so we prepend ./ in that case: +func_dirname_and_basename "$progpath" +progname=$func_basename_result +case $progname in + -*) progname=./$progname ;; +esac -# Global variables: -EXIT_SUCCESS=0 -EXIT_FAILURE=1 +# Make sure we have an absolute path for reexecution: +case $progpath in + [\\/]*|[A-Za-z]:\\*) ;; + *[\\/]*) + progdir=$func_dirname_result + progdir=`cd "$progdir" && pwd` + progpath="$progdir/$progname" + ;; + *) + save_IFS="$IFS" + IFS=: + for progdir in $PATH; do + IFS="$save_IFS" + test -x "$progdir/$progname" && break + done + IFS="$save_IFS" + test -n "$progdir" || progdir=`pwd` + progpath="$progdir/$progname" + ;; +esac -PROGRAM=ltmain.sh -PACKAGE=libtool -VERSION=1.5.22 -TIMESTAMP=" (1.1220.2.365 2005/12/18 22:14:06)" +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +Xsed="${SED}"' -e 1s/^X//' +sed_quote_subst='s/\([`"$\\]\)/\\\1/g' -# See if we are running on zsh, and set the options which allow our -# commands through without removal of \ escapes. -if test -n "${ZSH_VERSION+set}" ; then - setopt NO_GLOB_SUBST -fi +# Same as above, but do not quote variable references. +double_quote_subst='s/\(["`\\]\)/\\\1/g' -# Check that we have a working $echo. +# Re-`\' parameter expansions in output of double_quote_subst that were +# `\'-ed in input to the same. If an odd number of `\' preceded a '$' +# in input to double_quote_subst, that '$' was protected from expansion. +# Since each input `\' is now two `\'s, look for any number of runs of +# four `\'s followed by two `\'s and then a '$'. `\' that '$'. +bs='\\' +bs2='\\\\' +bs4='\\\\\\\\' +dollar='\$' +sed_double_backslash="\ + s/$bs4/&\\ +/g + s/^$bs2$dollar/$bs&/ + s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g + s/\n//g" + +# Standard options: +opt_dry_run=false +opt_help=false +opt_quiet=false +opt_verbose=false +opt_warning=: + +# func_echo arg... +# Echo program name prefixed message, along with the current mode +# name if it has been set yet. +func_echo () +{ + $ECHO "$progname${mode+: }$mode: $*" +} + +# func_verbose arg... +# Echo program name prefixed message in verbose mode only. +func_verbose () +{ + $opt_verbose && func_echo ${1+"$@"} + + # A bug in bash halts the script if the last line of a function + # fails when set -e is in force, so we need another command to + # work around that: + : +} + +# func_error arg... +# Echo program name prefixed message to standard error. +func_error () +{ + $ECHO "$progname${mode+: }$mode: "${1+"$@"} 1>&2 +} + +# func_warning arg... +# Echo program name prefixed warning message to standard error. +func_warning () +{ + $opt_warning && $ECHO "$progname${mode+: }$mode: warning: "${1+"$@"} 1>&2 + + # bash bug again: + : +} + +# func_fatal_error arg... +# Echo program name prefixed message to standard error, and exit. +func_fatal_error () +{ + func_error ${1+"$@"} + exit $EXIT_FAILURE +} + +# func_fatal_help arg... +# Echo program name prefixed message to standard error, followed by +# a help hint, and exit. +func_fatal_help () +{ + func_error ${1+"$@"} + func_fatal_error "$help" +} +help="Try \`$progname --help' for more information." ## default + + +# func_grep expression filename +# Check whether EXPRESSION matches any line of FILENAME, without output. +func_grep () +{ + $GREP "$1" "$2" >/dev/null 2>&1 +} + + +# func_mkdir_p directory-path +# Make sure the entire path to DIRECTORY-PATH is available. +func_mkdir_p () +{ + my_directory_path="$1" + my_dir_list= + + if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then + + # Protect directory names starting with `-' + case $my_directory_path in + -*) my_directory_path="./$my_directory_path" ;; + esac + + # While some portion of DIR does not yet exist... + while test ! -d "$my_directory_path"; do + # ...make a list in topmost first order. Use a colon delimited + # list incase some portion of path contains whitespace. + my_dir_list="$my_directory_path:$my_dir_list" + + # If the last portion added has no slash in it, the list is done + case $my_directory_path in */*) ;; *) break ;; esac + + # ...otherwise throw away the child directory and loop + my_directory_path=`$ECHO "X$my_directory_path" | $Xsed -e "$dirname"` + done + my_dir_list=`$ECHO "X$my_dir_list" | $Xsed -e 's,:*$,,'` + + save_mkdir_p_IFS="$IFS"; IFS=':' + for my_dir in $my_dir_list; do + IFS="$save_mkdir_p_IFS" + # mkdir can fail with a `File exist' error if two processes + # try to create one of the directories concurrently. Don't + # stop in that case! + $MKDIR "$my_dir" 2>/dev/null || : + done + IFS="$save_mkdir_p_IFS" + + # Bail out if we (or some other process) failed to create a directory. + test -d "$my_directory_path" || \ + func_fatal_error "Failed to create \`$1'" + fi +} + + +# func_mktempdir [string] +# Make a temporary directory that won't clash with other running +# libtool processes, and avoids race conditions if possible. If +# given, STRING is the basename for that directory. +func_mktempdir () +{ + my_template="${TMPDIR-/tmp}/${1-$progname}" + + if test "$opt_dry_run" = ":"; then + # Return a directory name, but don't create it in dry-run mode + my_tmpdir="${my_template}-$$" + else + + # If mktemp works, use that first and foremost + my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` + + if test ! -d "$my_tmpdir"; then + # Failing that, at least try and use $RANDOM to avoid a race + my_tmpdir="${my_template}-${RANDOM-0}$$" + + save_mktempdir_umask=`umask` + umask 0077 + $MKDIR "$my_tmpdir" + umask $save_mktempdir_umask + fi + + # If we're not in dry-run mode, bomb out on failure + test -d "$my_tmpdir" || \ + func_fatal_error "cannot create temporary directory \`$my_tmpdir'" + fi + + $ECHO "X$my_tmpdir" | $Xsed +} + + +# func_quote_for_eval arg +# Aesthetically quote ARG to be evaled later. +# This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT +# is double-quoted, suitable for a subsequent eval, whereas +# FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters +# which are still active within double quotes backslashified. +func_quote_for_eval () +{ + case $1 in + *[\\\`\"\$]*) + func_quote_for_eval_unquoted_result=`$ECHO "X$1" | $Xsed -e "$sed_quote_subst"` ;; + *) + func_quote_for_eval_unquoted_result="$1" ;; + esac + + case $func_quote_for_eval_unquoted_result in + # Double-quote args containing shell metacharacters to delay + # word splitting, command substitution and and variable + # expansion for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\"" + ;; + *) + func_quote_for_eval_result="$func_quote_for_eval_unquoted_result" + esac +} + + +# func_quote_for_expand arg +# Aesthetically quote ARG to be evaled later; same as above, +# but do not quote variable references. +func_quote_for_expand () +{ + case $1 in + *[\\\`\"]*) + my_arg=`$ECHO "X$1" | $Xsed \ + -e "$double_quote_subst" -e "$sed_double_backslash"` ;; + *) + my_arg="$1" ;; + esac + + case $my_arg in + # Double-quote args containing shell metacharacters to delay + # word splitting and command substitution for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + my_arg="\"$my_arg\"" + ;; + esac + + func_quote_for_expand_result="$my_arg" +} + + +# func_show_eval cmd [fail_exp] +# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. +func_show_eval () +{ + my_cmd="$1" + my_fail_exp="${2-:}" + + ${opt_silent-false} || { + func_quote_for_expand "$my_cmd" + eval "func_echo $func_quote_for_expand_result" + } + + if ${opt_dry_run-false}; then :; else + eval "$my_cmd" + my_status=$? + if test "$my_status" -eq 0; then :; else + eval "(exit $my_status); $my_fail_exp" + fi + fi +} + + +# func_show_eval_locale cmd [fail_exp] +# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. Use the saved locale for evaluation. +func_show_eval_locale () +{ + my_cmd="$1" + my_fail_exp="${2-:}" + + ${opt_silent-false} || { + func_quote_for_expand "$my_cmd" + eval "func_echo $func_quote_for_expand_result" + } + + if ${opt_dry_run-false}; then :; else + eval "$lt_user_locale + $my_cmd" + my_status=$? + eval "$lt_safe_locale" + if test "$my_status" -eq 0; then :; else + eval "(exit $my_status); $my_fail_exp" + fi + fi +} + + + + + +# func_version +# Echo version message to standard output and exit. +func_version () +{ + $SED -n '/^# '$PROGRAM' (GNU /,/# warranty; / { + s/^# // + s/^# *$// + s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/ + p + }' < "$progpath" + exit $? +} + +# func_usage +# Echo short help message to standard output and exit. +func_usage () +{ + $SED -n '/^# Usage:/,/# -h/ { + s/^# // + s/^# *$// + s/\$progname/'$progname'/ + p + }' < "$progpath" + $ECHO + $ECHO "run \`$progname --help | more' for full usage" + exit $? +} + +# func_help +# Echo long help message to standard output and exit. +func_help () +{ + $SED -n '/^# Usage:/,/# Report bugs to/ { + s/^# // + s/^# *$// + s*\$progname*'$progname'* + s*\$host*'"$host"'* + s*\$SHELL*'"$SHELL"'* + s*\$LTCC*'"$LTCC"'* + s*\$LTCFLAGS*'"$LTCFLAGS"'* + s*\$LD*'"$LD"'* + s/\$with_gnu_ld/'"$with_gnu_ld"'/ + s/\$automake_version/'"`(automake --version) 2>/dev/null |$SED 1q`"'/ + s/\$autoconf_version/'"`(autoconf --version) 2>/dev/null |$SED 1q`"'/ + p + }' < "$progpath" + exit $? +} + +# func_missing_arg argname +# Echo program name prefixed message to standard error and set global +# exit_cmd. +func_missing_arg () +{ + func_error "missing argument for $1" + exit_cmd=exit +} + +exit_cmd=: + + + + + +# Check that we have a working $ECHO. if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X$1" = X--fallback-echo; then # Avoid inline document here, it may be left over : -elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then - # Yippee, $echo works! +elif test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t'; then + # Yippee, $ECHO works! : else - # Restart under the correct shell, and then maybe $echo will work. + # Restart under the correct shell, and then maybe $ECHO will work. exec $SHELL "$progpath" --no-reexec ${1+"$@"} fi @@ -77,145 +580,424 @@ EOF exit $EXIT_SUCCESS fi -default_mode= -help="Try \`$progname --help' for more information." magic="%%%MAGIC variable%%%" -mkdir="mkdir" -mv="mv -f" -rm="rm -f" - -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -Xsed="${SED}"' -e 1s/^X//' -sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g' -# test EBCDIC or ASCII -case `echo X|tr X '\101'` in - A) # ASCII based system - # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr - SP2NL='tr \040 \012' - NL2SP='tr \015\012 \040\040' - ;; - *) # EBCDIC based system - SP2NL='tr \100 \n' - NL2SP='tr \r\n \100\100' - ;; -esac - -# NLS nuisances. -# Only set LANG and LC_ALL to C if already set. -# These must not be set unconditionally because not all systems understand -# e.g. LANG=C (notably SCO). -# We save the old values to restore during execute mode. -if test "${LC_ALL+set}" = set; then - save_LC_ALL="$LC_ALL"; LC_ALL=C; export LC_ALL -fi -if test "${LANG+set}" = set; then - save_LANG="$LANG"; LANG=C; export LANG -fi - -# Make sure IFS has a sensible default -lt_nl=' -' -IFS=" $lt_nl" - -if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then - $echo "$modename: not configured to build any kind of library" 1>&2 - $echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 - exit $EXIT_FAILURE -fi +magic_exe="%%%MAGIC EXE variable%%%" # Global variables. -mode=$default_mode +# $mode is unset nonopt= -prev= -prevopt= -run= -show="$echo" -show_help= execute_dlfiles= -duplicate_deps=no preserve_args= lo2o="s/\\.lo\$/.${objext}/" o2lo="s/\\.${objext}\$/.lo/" +extracted_archives= +extracted_serial=0 -##################################### -# Shell function definitions: -# This seems to be the best place for them +opt_dry_run=false +opt_duplicate_deps=false +opt_silent=false +opt_debug=: -# func_mktempdir [string] -# Make a temporary directory that won't clash with other running -# libtool processes, and avoids race conditions if possible. If -# given, STRING is the basename for that directory. -func_mktempdir () +# If this variable is set in any of the actions, the command in it +# will be execed at the end. This prevents here-documents from being +# left over by shells. +exec_cmd= + +# func_fatal_configuration arg... +# Echo program name prefixed message to standard error, followed by +# a configuration failure hint, and exit. +func_fatal_configuration () { - my_template="${TMPDIR-/tmp}/${1-$progname}" - - if test "$run" = ":"; then - # Return a directory name, but don't create it in dry-run mode - my_tmpdir="${my_template}-$$" - else - - # If mktemp works, use that first and foremost - my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` - - if test ! -d "$my_tmpdir"; then - # Failing that, at least try and use $RANDOM to avoid a race - my_tmpdir="${my_template}-${RANDOM-0}$$" - - save_mktempdir_umask=`umask` - umask 0077 - $mkdir "$my_tmpdir" - umask $save_mktempdir_umask - fi - - # If we're not in dry-run mode, bomb out on failure - test -d "$my_tmpdir" || { - $echo "cannot create temporary directory \`$my_tmpdir'" 1>&2 - exit $EXIT_FAILURE - } - fi - - $echo "X$my_tmpdir" | $Xsed + func_error ${1+"$@"} + func_error "See the $PACKAGE documentation for more information." + func_fatal_error "Fatal configuration error." } -# func_win32_libid arg -# return the library type of file 'arg' -# -# Need a lot of goo to handle *both* DLLs and import libs -# Has to be a shell function in order to 'eat' the argument -# that is supplied when $file_magic_command is called. -func_win32_libid () +# func_config +# Display the configuration for all the tags in this script. +func_config () { - win32_libid_type="unknown" - win32_fileres=`file -L $1 2>/dev/null` - case $win32_fileres in - *ar\ archive\ import\ library*) # definitely import - win32_libid_type="x86 archive import" - ;; - *ar\ archive*) # could be an import, or static - if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | \ - $EGREP -e 'file format pe-i386(.*architecture: i386)?' >/dev/null ; then - win32_nmres=`eval $NM -f posix -A $1 | \ - $SED -n -e '1,100{/ I /{s,.*,import,;p;q;};}'` - case $win32_nmres in - import*) win32_libid_type="x86 archive import";; - *) win32_libid_type="x86 archive static";; - esac + re_begincf='^# ### BEGIN LIBTOOL' + re_endcf='^# ### END LIBTOOL' + + # Default configuration. + $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" + + # Now print the configurations for the tags. + for tagname in $taglist; do + $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" + done + + exit $? +} + +# func_features +# Display the features supported by this script. +func_features () +{ + $ECHO "host: $host" + if test "$build_libtool_libs" = yes; then + $ECHO "enable shared libraries" + else + $ECHO "disable shared libraries" fi - ;; - *DLL*) - win32_libid_type="x86 DLL" - ;; - *executable*) # but shell scripts are "executable" too... - case $win32_fileres in - *MS\ Windows\ PE\ Intel*) - win32_libid_type="x86 DLL" + if test "$build_old_libs" = yes; then + $ECHO "enable static libraries" + else + $ECHO "disable static libraries" + fi + + exit $? +} + +# func_enable_tag tagname +# Verify that TAGNAME is valid, and either flag an error and exit, or +# enable the TAGNAME tag. We also add TAGNAME to the global $taglist +# variable here. +func_enable_tag () +{ + # Global variable: + tagname="$1" + + re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" + re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" + sed_extractcf="/$re_begincf/,/$re_endcf/p" + + # Validate tagname. + case $tagname in + *[!-_A-Za-z0-9,/]*) + func_fatal_error "invalid tag name: $tagname" ;; - esac + esac + + # Don't test for the "default" C tag, as we know it's + # there but not specially marked. + case $tagname in + CC) ;; + *) + if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then + taglist="$taglist $tagname" + + # Evaluate the configuration. Be careful to quote the path + # and the sed script, to avoid splitting on whitespace, but + # also don't use non-portable quotes within backquotes within + # quotes we have to do it in 2 steps: + extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` + eval "$extractedcf" + else + func_error "ignoring unknown tag $tagname" + fi + ;; + esac +} + +# Parse options once, thoroughly. This comes as soon as possible in +# the script to make things like `libtool --version' happen quickly. +{ + + # Shorthand for --mode=foo, only valid as the first argument + case $1 in + clean|clea|cle|cl) + shift; set dummy --mode clean ${1+"$@"}; shift + ;; + compile|compil|compi|comp|com|co|c) + shift; set dummy --mode compile ${1+"$@"}; shift + ;; + execute|execut|execu|exec|exe|ex|e) + shift; set dummy --mode execute ${1+"$@"}; shift + ;; + finish|finis|fini|fin|fi|f) + shift; set dummy --mode finish ${1+"$@"}; shift + ;; + install|instal|insta|inst|ins|in|i) + shift; set dummy --mode install ${1+"$@"}; shift + ;; + link|lin|li|l) + shift; set dummy --mode link ${1+"$@"}; shift + ;; + uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) + shift; set dummy --mode uninstall ${1+"$@"}; shift ;; esac - $echo $win32_libid_type + + # Parse non-mode specific arguments: + while test "$#" -gt 0; do + opt="$1" + shift + + case $opt in + --config) func_config ;; + + --debug) preserve_args="$preserve_args $opt" + func_echo "enabling shell trace mode" + opt_debug='set -x' + $opt_debug + ;; + + -dlopen) test "$#" -eq 0 && func_missing_arg "$opt" && break + execute_dlfiles="$execute_dlfiles $1" + shift + ;; + + --dry-run | -n) opt_dry_run=: ;; + --features) func_features ;; + --finish) mode="finish" ;; + + --mode) test "$#" -eq 0 && func_missing_arg "$opt" && break + case $1 in + # Valid mode arguments: + clean) ;; + compile) ;; + execute) ;; + finish) ;; + install) ;; + link) ;; + relink) ;; + uninstall) ;; + + # Catch anything else as an error + *) func_error "invalid argument for $opt" + exit_cmd=exit + break + ;; + esac + + mode="$1" + shift + ;; + + --preserve-dup-deps) + opt_duplicate_deps=: ;; + + --quiet|--silent) preserve_args="$preserve_args $opt" + opt_silent=: + ;; + + --verbose| -v) preserve_args="$preserve_args $opt" + opt_silent=false + ;; + + --tag) test "$#" -eq 0 && func_missing_arg "$opt" && break + preserve_args="$preserve_args $opt $1" + func_enable_tag "$1" # tagname is set here + shift + ;; + + # Separate optargs to long options: + -dlopen=*|--mode=*|--tag=*) + func_opt_split "$opt" + set dummy "$func_opt_split_opt" "$func_opt_split_arg" ${1+"$@"} + shift + ;; + + -\?|-h) func_usage ;; + --help) opt_help=: ;; + --version) func_version ;; + + -*) func_fatal_help "unrecognized option \`$opt'" ;; + + *) nonopt="$opt" + break + ;; + esac + done + + + case $host in + *cygwin* | *mingw* | *pw32* | *cegcc*) + # don't eliminate duplications in $postdeps and $predeps + opt_duplicate_compiler_generated_deps=: + ;; + *) + opt_duplicate_compiler_generated_deps=$opt_duplicate_deps + ;; + esac + + # Having warned about all mis-specified options, bail out if + # anything was wrong. + $exit_cmd $EXIT_FAILURE +} + +# func_check_version_match +# Ensure that we are using m4 macros, and libtool script from the same +# release of libtool. +func_check_version_match () +{ + if test "$package_revision" != "$macro_revision"; then + if test "$VERSION" != "$macro_version"; then + if test -z "$macro_version"; then + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, but the +$progname: definition of this LT_INIT comes from an older release. +$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION +$progname: and run autoconf again. +_LT_EOF + else + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, but the +$progname: definition of this LT_INIT comes from $PACKAGE $macro_version. +$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION +$progname: and run autoconf again. +_LT_EOF + fi + else + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, +$progname: but the definition of this LT_INIT comes from revision $macro_revision. +$progname: You should recreate aclocal.m4 with macros from revision $package_revision +$progname: of $PACKAGE $VERSION and run autoconf again. +_LT_EOF + fi + + exit $EXIT_MISMATCH + fi +} + + +## ----------- ## +## Main. ## +## ----------- ## + +$opt_help || { + # Sanity checks first: + func_check_version_match + + if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then + func_fatal_configuration "not configured to build any kind of library" + fi + + test -z "$mode" && func_fatal_error "error: you must specify a MODE." + + + # Darwin sucks + eval std_shrext=\"$shrext_cmds\" + + + # Only execute mode is allowed to have -dlopen flags. + if test -n "$execute_dlfiles" && test "$mode" != execute; then + func_error "unrecognized option \`-dlopen'" + $ECHO "$help" 1>&2 + exit $EXIT_FAILURE + fi + + # Change the help message to a mode-specific one. + generic_help="$help" + help="Try \`$progname --help --mode=$mode' for more information." +} + + +# func_lalib_p file +# True iff FILE is a libtool `.la' library or `.lo' object file. +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_lalib_p () +{ + test -f "$1" && + $SED -e 4q "$1" 2>/dev/null \ + | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 +} + +# func_lalib_unsafe_p file +# True iff FILE is a libtool `.la' library or `.lo' object file. +# This function implements the same check as func_lalib_p without +# resorting to external programs. To this end, it redirects stdin and +# closes it afterwards, without saving the original file descriptor. +# As a safety measure, use it only where a negative result would be +# fatal anyway. Works if `file' does not exist. +func_lalib_unsafe_p () +{ + lalib_p=no + if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then + for lalib_p_l in 1 2 3 4 + do + read lalib_p_line + case "$lalib_p_line" in + \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; + esac + done + exec 0<&5 5<&- + fi + test "$lalib_p" = yes +} + +# func_ltwrapper_script_p file +# True iff FILE is a libtool wrapper script +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_script_p () +{ + func_lalib_p "$1" +} + +# func_ltwrapper_executable_p file +# True iff FILE is a libtool wrapper executable +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_executable_p () +{ + func_ltwrapper_exec_suffix= + case $1 in + *.exe) ;; + *) func_ltwrapper_exec_suffix=.exe ;; + esac + $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 +} + +# func_ltwrapper_scriptname file +# Assumes file is an ltwrapper_executable +# uses $file to determine the appropriate filename for a +# temporary ltwrapper_script. +func_ltwrapper_scriptname () +{ + func_ltwrapper_scriptname_result="" + if func_ltwrapper_executable_p "$1"; then + func_dirname_and_basename "$1" "" "." + func_stripname '' '.exe' "$func_basename_result" + func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper" + fi +} + +# func_ltwrapper_p file +# True iff FILE is a libtool wrapper script or wrapper executable +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_p () +{ + func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" +} + + +# func_execute_cmds commands fail_cmd +# Execute tilde-delimited COMMANDS. +# If FAIL_CMD is given, eval that upon failure. +# FAIL_CMD may read-access the current command in variable CMD! +func_execute_cmds () +{ + $opt_debug + save_ifs=$IFS; IFS='~' + for cmd in $1; do + IFS=$save_ifs + eval cmd=\"$cmd\" + func_show_eval "$cmd" "${2-:}" + done + IFS=$save_ifs +} + + +# func_source file +# Source FILE, adding directory component if necessary. +# Note that it is not necessary on cygwin/mingw to append a dot to +# FILE even if both FILE and FILE.exe exist: automatic-append-.exe +# behavior happens only for exec(3), not for open(2)! Also, sourcing +# `FILE.' does not work on cygwin managed mounts. +func_source () +{ + $opt_debug + case $1 in + */* | *\\*) . "$1" ;; + *) . "./$1" ;; + esac } @@ -227,39 +1009,32 @@ func_win32_libid () # arg is usually of the form 'gcc ...' func_infer_tag () { + $opt_debug if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do - case $arg in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - arg="\"$arg\"" - ;; - esac - CC_quoted="$CC_quoted $arg" + func_quote_for_eval "$arg" + CC_quoted="$CC_quoted $func_quote_for_eval_result" done case $@ in # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when configure was run. - " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*) ;; + " $CC "* | "$CC "* | " `$ECHO $CC` "* | "`$ECHO $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$ECHO $CC_quoted` "* | "`$ECHO $CC_quoted` "*) ;; # Blanks at the start of $base_compile will cause this to fail # if we don't check for them as well. *) for z in $available_tags; do - if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then + if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do - # Double-quote args containing other shell metacharacters. - case $arg in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - arg="\"$arg\"" - ;; - esac - CC_quoted="$CC_quoted $arg" - done + # Double-quote args containing other shell metacharacters. + func_quote_for_eval "$arg" + CC_quoted="$CC_quoted $func_quote_for_eval_result" + done case "$@ " in - " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*) + " $CC "* | "$CC "* | " `$ECHO $CC` "* | "`$ECHO $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$ECHO $CC_quoted` "* | "`$ECHO $CC_quoted` "*) # The compiler in the base compile command matches # the one in the tagged configuration. # Assume this is the tagged configuration we want. @@ -273,11 +1048,10 @@ func_infer_tag () # was found and let the user know that the "--tag" command # line option must be used. if test -z "$tagname"; then - $echo "$modename: unable to infer tagged configuration" - $echo "$modename: specify a tag with \`--tag'" 1>&2 - exit $EXIT_FAILURE -# else -# $echo "$modename: using $tagname tagged configuration" + func_echo "unable to infer tagged configuration" + func_fatal_error "specify a tag with \`--tag'" +# else +# func_verbose "using $tagname tagged configuration" fi ;; esac @@ -285,343 +1059,48 @@ func_infer_tag () } -# func_extract_an_archive dir oldlib -func_extract_an_archive () + +# func_write_libtool_object output_name pic_name nonpic_name +# Create a libtool object file (analogous to a ".la" file), +# but don't create it if we're doing a dry run. +func_write_libtool_object () { - f_ex_an_ar_dir="$1"; shift - f_ex_an_ar_oldlib="$1" - - $show "(cd $f_ex_an_ar_dir && $AR x $f_ex_an_ar_oldlib)" - $run eval "(cd \$f_ex_an_ar_dir && $AR x \$f_ex_an_ar_oldlib)" || exit $? - if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then - : - else - $echo "$modename: ERROR: object name conflicts: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" 1>&2 - exit $EXIT_FAILURE - fi -} - -# func_extract_archives gentop oldlib ... -func_extract_archives () -{ - my_gentop="$1"; shift - my_oldlibs=${1+"$@"} - my_oldobjs="" - my_xlib="" - my_xabs="" - my_xdir="" - my_status="" - - $show "${rm}r $my_gentop" - $run ${rm}r "$my_gentop" - $show "$mkdir $my_gentop" - $run $mkdir "$my_gentop" - my_status=$? - if test "$my_status" -ne 0 && test ! -d "$my_gentop"; then - exit $my_status - fi - - for my_xlib in $my_oldlibs; do - # Extract the objects. - case $my_xlib in - [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; - *) my_xabs=`pwd`"/$my_xlib" ;; - esac - my_xlib=`$echo "X$my_xlib" | $Xsed -e 's%^.*/%%'` - my_xdir="$my_gentop/$my_xlib" - - $show "${rm}r $my_xdir" - $run ${rm}r "$my_xdir" - $show "$mkdir $my_xdir" - $run $mkdir "$my_xdir" - exit_status=$? - if test "$exit_status" -ne 0 && test ! -d "$my_xdir"; then - exit $exit_status - fi - case $host in - *-darwin*) - $show "Extracting $my_xabs" - # Do not bother doing anything if just a dry run - if test -z "$run"; then - darwin_orig_dir=`pwd` - cd $my_xdir || exit $? - darwin_archive=$my_xabs - darwin_curdir=`pwd` - darwin_base_archive=`$echo "X$darwin_archive" | $Xsed -e 's%^.*/%%'` - darwin_arches=`lipo -info "$darwin_archive" 2>/dev/null | $EGREP Architectures 2>/dev/null` - if test -n "$darwin_arches"; then - darwin_arches=`echo "$darwin_arches" | $SED -e 's/.*are://'` - darwin_arch= - $show "$darwin_base_archive has multiple architectures $darwin_arches" - for darwin_arch in $darwin_arches ; do - mkdir -p "unfat-$$/${darwin_base_archive}-${darwin_arch}" - lipo -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" - cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" - func_extract_an_archive "`pwd`" "${darwin_base_archive}" - cd "$darwin_curdir" - $rm "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" - done # $darwin_arches - ## Okay now we have a bunch of thin objects, gotta fatten them up :) - darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print| xargs basename | sort -u | $NL2SP` - darwin_file= - darwin_files= - for darwin_file in $darwin_filelist; do - darwin_files=`find unfat-$$ -name $darwin_file -print | $NL2SP` - lipo -create -output "$darwin_file" $darwin_files - done # $darwin_filelist - ${rm}r unfat-$$ - cd "$darwin_orig_dir" - else - cd "$darwin_orig_dir" - func_extract_an_archive "$my_xdir" "$my_xabs" - fi # $darwin_arches - fi # $run - ;; - *) - func_extract_an_archive "$my_xdir" "$my_xabs" - ;; - esac - my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP` - done - func_extract_archives_result="$my_oldobjs" -} -# End of Shell function definitions -##################################### - -# Darwin sucks -eval std_shrext=\"$shrext_cmds\" - -disable_libs=no - -# Parse our command line options once, thoroughly. -while test "$#" -gt 0 -do - arg="$1" - shift - - case $arg in - -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;; - *) optarg= ;; - esac - - # If the previous option needs an argument, assign it. - if test -n "$prev"; then - case $prev in - execute_dlfiles) - execute_dlfiles="$execute_dlfiles $arg" - ;; - tag) - tagname="$arg" - preserve_args="${preserve_args}=$arg" - - # Check whether tagname contains only valid characters - case $tagname in - *[!-_A-Za-z0-9,/]*) - $echo "$progname: invalid tag name: $tagname" 1>&2 - exit $EXIT_FAILURE - ;; - esac - - case $tagname in - CC) - # Don't test for the "default" C tag, as we know, it's there, but - # not specially marked. - ;; - *) - if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "$progpath" > /dev/null; then - taglist="$taglist $tagname" - # Evaluate the configuration. - eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$tagname'$/,/^# ### END LIBTOOL TAG CONFIG: '$tagname'$/p' < $progpath`" - else - $echo "$progname: ignoring unknown tag $tagname" 1>&2 - fi - ;; - esac - ;; - *) - eval "$prev=\$arg" - ;; - esac - - prev= - prevopt= - continue - fi - - # Have we seen a non-optional argument yet? - case $arg in - --help) - show_help=yes - ;; - - --version) - $echo "$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP" - $echo - $echo "Copyright (C) 2005 Free Software Foundation, Inc." - $echo "This is free software; see the source for copying conditions. There is NO" - $echo "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." - exit $? - ;; - - --config) - ${SED} -e '1,/^# ### BEGIN LIBTOOL CONFIG/d' -e '/^# ### END LIBTOOL CONFIG/,$d' $progpath - # Now print the configurations for the tags. - for tagname in $taglist; do - ${SED} -n -e "/^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$/,/^# ### END LIBTOOL TAG CONFIG: $tagname$/p" < "$progpath" - done - exit $? - ;; - - --debug) - $echo "$progname: enabling shell trace mode" - set -x - preserve_args="$preserve_args $arg" - ;; - - --dry-run | -n) - run=: - ;; - - --features) - $echo "host: $host" + write_libobj=${1} if test "$build_libtool_libs" = yes; then - $echo "enable shared libraries" + write_lobj=\'${2}\' else - $echo "disable shared libraries" + write_lobj=none fi + if test "$build_old_libs" = yes; then - $echo "enable static libraries" + write_oldobj=\'${3}\' else - $echo "disable static libraries" + write_oldobj=none fi - exit $? - ;; - --finish) mode="finish" ;; + $opt_dry_run || { + cat >${write_libobj}T <&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - ;; - - *) - nonopt="$arg" - break - ;; - esac -done - -if test -n "$prevopt"; then - $echo "$modename: option \`$prevopt' requires an argument" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE -fi - -case $disable_libs in -no) - ;; -shared) - build_libtool_libs=no - build_old_libs=yes - ;; -static) - build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` - ;; -esac - -# If this variable is set in any of the actions, the command in it -# will be execed at the end. This prevents here-documents from being -# left over by shells. -exec_cmd= - -if test -z "$show_help"; then - - # Infer the operation mode. - if test -z "$mode"; then - $echo "*** Warning: inferring the mode of operation is deprecated." 1>&2 - $echo "*** Future versions of Libtool will require --mode=MODE be specified." 1>&2 - case $nonopt in - *cc | cc* | *++ | gcc* | *-gcc* | g++* | xlc*) - mode=link - for arg - do - case $arg in - -c) - mode=compile - break - ;; - esac - done - ;; - *db | *dbx | *strace | *truss) - mode=execute - ;; - *install*|cp|mv) - mode=install - ;; - *rm) - mode=uninstall - ;; - *) - # If we have no mode, but dlfiles were specified, then do execute mode. - test -n "$execute_dlfiles" && mode=execute - - # Just use the default operation mode. - if test -z "$mode"; then - if test -n "$nonopt"; then - $echo "$modename: warning: cannot infer operation mode from \`$nonopt'" 1>&2 - else - $echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2 - fi - fi - ;; - esac - fi - - # Only execute mode is allowed to have -dlopen flags. - if test -n "$execute_dlfiles" && test "$mode" != execute; then - $echo "$modename: unrecognized option \`-dlopen'" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - fi - - # Change the help message to a mode-specific one. - generic_help="$help" - help="Try \`$modename --help --mode=$mode' for more information." - - # These modes are in order of execution frequency so that they run quickly. - case $mode in - # libtool compile mode - compile) - modename="$modename: compile" +# func_mode_compile arg... +func_mode_compile () +{ + $opt_debug # Get the compilation command and the source file. base_compile= srcfile="$nonopt" # always keep a non-empty value in "srcfile" @@ -630,6 +1109,7 @@ if test -z "$show_help"; then arg_mode=normal libobj= later= + pie_flag= for arg do @@ -650,15 +1130,18 @@ if test -z "$show_help"; then # Accept any command-line options. case $arg in -o) - if test -n "$libobj" ; then - $echo "$modename: you cannot specify \`-o' more than once" 1>&2 - exit $EXIT_FAILURE - fi + test -n "$libobj" && \ + func_fatal_error "you cannot specify \`-o' more than once" arg_mode=target continue ;; - -static | -prefer-pic | -prefer-non-pic) + -pie | -fpie | -fPIE) + pie_flag="$pie_flag $arg" + continue + ;; + + -shared | -static | -prefer-pic | -prefer-non-pic) later="$later $arg" continue ;; @@ -674,31 +1157,25 @@ if test -z "$show_help"; then ;; # replaced later. I would guess that would be a bug. -Wc,*) - args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"` + func_stripname '-Wc,' '' "$arg" + args=$func_stripname_result lastarg= save_ifs="$IFS"; IFS=',' - for arg in $args; do + for arg in $args; do IFS="$save_ifs" - - # Double-quote args containing other shell metacharacters. - # Many Bourne shells cannot handle close brackets correctly - # in scan sets, so we specify it separately. - case $arg in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - arg="\"$arg\"" - ;; - esac - lastarg="$lastarg $arg" + func_quote_for_eval "$arg" + lastarg="$lastarg $func_quote_for_eval_result" done IFS="$save_ifs" - lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"` + func_stripname ' ' '' "$lastarg" + lastarg=$func_stripname_result # Add the arguments to base_compile. base_compile="$base_compile $lastarg" continue ;; - * ) + *) # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # @@ -710,64 +1187,42 @@ if test -z "$show_help"; then esac # case $arg_mode # Aesthetically quote the previous argument. - lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"` - - case $lastarg in - # Double-quote args containing other shell metacharacters. - # Many Bourne shells cannot handle close brackets correctly - # in scan sets, and some SunOS ksh mistreat backslash-escaping - # in scan sets (worked around with variable expansion), - # and furthermore cannot handle '|' '&' '(' ')' in scan sets - # at all, so we specify them separately. - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - lastarg="\"$lastarg\"" - ;; - esac - - base_compile="$base_compile $lastarg" + func_quote_for_eval "$lastarg" + base_compile="$base_compile $func_quote_for_eval_result" done # for arg case $arg_mode in arg) - $echo "$modename: you must specify an argument for -Xcompile" - exit $EXIT_FAILURE + func_fatal_error "you must specify an argument for -Xcompile" ;; target) - $echo "$modename: you must specify a target with \`-o'" 1>&2 - exit $EXIT_FAILURE + func_fatal_error "you must specify a target with \`-o'" ;; *) # Get the name of the library object. - [ -z "$libobj" ] && libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'` + test -z "$libobj" && { + func_basename "$srcfile" + libobj="$func_basename_result" + } ;; esac # Recognize several different file suffixes. # If the user specifies -o file.o, it is replaced with file.lo - xform='[cCFSifmso]' case $libobj in - *.ada) xform=ada ;; - *.adb) xform=adb ;; - *.ads) xform=ads ;; - *.asm) xform=asm ;; - *.c++) xform=c++ ;; - *.cc) xform=cc ;; - *.ii) xform=ii ;; - *.class) xform=class ;; - *.cpp) xform=cpp ;; - *.cxx) xform=cxx ;; - *.f90) xform=f90 ;; - *.for) xform=for ;; - *.java) xform=java ;; + *.[cCFSifmso] | \ + *.ada | *.adb | *.ads | *.asm | \ + *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ + *.[fF][09]? | *.for | *.java | *.obj | *.sx) + func_xform "$libobj" + libobj=$func_xform_result + ;; esac - libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"` - case $libobj in - *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;; + *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; *) - $echo "$modename: cannot determine name of library object from \`$libobj'" 1>&2 - exit $EXIT_FAILURE + func_fatal_error "cannot determine name of library object from \`$libobj'" ;; esac @@ -775,7 +1230,15 @@ if test -z "$show_help"; then for arg in $later; do case $arg in + -shared) + test "$build_libtool_libs" != yes && \ + func_fatal_configuration "can not build a shared library" + build_old_libs=no + continue + ;; + -static) + build_libtool_libs=no build_old_libs=yes continue ;; @@ -792,28 +1255,17 @@ if test -z "$show_help"; then esac done - qlibobj=`$echo "X$libobj" | $Xsed -e "$sed_quote_subst"` - case $qlibobj in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - qlibobj="\"$qlibobj\"" ;; - esac - test "X$libobj" != "X$qlibobj" \ - && $echo "X$libobj" | grep '[]~#^*{};<>?"'"'"' &()|`$[]' \ - && $echo "$modename: libobj name \`$libobj' may not contain shell special characters." - objname=`$echo "X$obj" | $Xsed -e 's%^.*/%%'` - xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'` - if test "X$xdir" = "X$obj"; then - xdir= - else - xdir=$xdir/ - fi + func_quote_for_eval "$libobj" + test "X$libobj" != "X$func_quote_for_eval_result" \ + && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ + && func_warning "libobj name \`$libobj' may not contain shell special characters." + func_dirname_and_basename "$obj" "/" "" + objname="$func_basename_result" + xdir="$func_dirname_result" lobj=${xdir}$objdir/$objname - if test -z "$base_compile"; then - $echo "$modename: you must specify a compilation command" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - fi + test -z "$base_compile" && \ + func_fatal_help "you must specify a compilation command" # Delete any leftover library objects. if test "$build_old_libs" = yes; then @@ -822,12 +1274,9 @@ if test -z "$show_help"; then removelist="$lobj $libobj ${libobj}T" fi - $run $rm $removelist - trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15 - # On Cygwin there's no "real" PIC flag so we must build both object types case $host_os in - cygwin* | mingw* | pw32* | os2*) + cygwin* | mingw* | pw32* | os2* | cegcc*) pic_mode=default ;; esac @@ -839,10 +1288,8 @@ if test -z "$show_help"; then # Calculate the filename of the output object if compiler does # not support -o with -c if test "$compiler_c_o" = no; then - output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext} + output_obj=`$ECHO "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext} lockfile="$output_obj.lock" - removelist="$removelist $output_obj $lockfile" - trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15 else output_obj= need_locks=no @@ -852,13 +1299,13 @@ if test -z "$show_help"; then # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file if test "$need_locks" = yes; then - until $run ln "$progpath" "$lockfile" 2>/dev/null; do - $show "Waiting for $lockfile to be removed" + until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do + func_echo "Waiting for $lockfile to be removed" sleep 2 done elif test "$need_locks" = warn; then if test -f "$lockfile"; then - $echo "\ + $ECHO "\ *** ERROR, $lockfile exists and contains: `cat $lockfile 2>/dev/null` @@ -869,34 +1316,22 @@ repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." - $run $rm $removelist + $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi - $echo "$srcfile" > "$lockfile" + removelist="$removelist $output_obj" + $ECHO "$srcfile" > "$lockfile" fi + $opt_dry_run || $RM $removelist + removelist="$removelist $lockfile" + trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 + if test -n "$fix_srcfile_path"; then eval srcfile=\"$fix_srcfile_path\" fi - qsrcfile=`$echo "X$srcfile" | $Xsed -e "$sed_quote_subst"` - case $qsrcfile in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - qsrcfile="\"$qsrcfile\"" ;; - esac - - $run $rm "$libobj" "${libobj}T" - - # Create a libtool object file (analogous to a ".la" file), - # but don't create it if we're doing a dry run. - test -z "$run" && cat > ${libobj}T </dev/null`" != "X$srcfile"; then - $echo "\ + $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` @@ -949,45 +1371,27 @@ repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." - $run $rm $removelist + $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed, then go on to compile the next one if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then - $show "$mv $output_obj $lobj" - if $run $mv $output_obj $lobj; then : - else - error=$? - $run $rm $removelist - exit $error - fi + func_show_eval '$MV "$output_obj" "$lobj"' \ + 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi - # Append the name of the PIC object to the libtool object file. - test -z "$run" && cat >> ${libobj}T <> ${libobj}T </dev/null`" != "X$srcfile"; then - $echo "\ + $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` @@ -1021,53 +1420,2621 @@ repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." - $run $rm $removelist + $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then - $show "$mv $output_obj $obj" - if $run $mv $output_obj $obj; then : - else - error=$? - $run $rm $removelist - exit $error - fi + func_show_eval '$MV "$output_obj" "$obj"' \ + 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi - - # Append the name of the non-PIC object the libtool object file. - # Only append if the libtool object file exists. - test -z "$run" && cat >> ${libobj}T <> ${libobj}T </dev/null; then + # Aesthetically quote it. + func_quote_for_eval "$nonopt" + install_prog="$func_quote_for_eval_result " + arg=$1 + shift + else + install_prog= + arg=$nonopt + fi + + # The real first argument should be the name of the installation program. + # Aesthetically quote it. + func_quote_for_eval "$arg" + install_prog="$install_prog$func_quote_for_eval_result" + + # We need to accept at least all the BSD install flags. + dest= + files= + opts= + prev= + install_type= + isdir=no + stripme= + for arg + do + if test -n "$dest"; then + files="$files $dest" + dest=$arg + continue + fi + + case $arg in + -d) isdir=yes ;; + -f) + case " $install_prog " in + *[\\\ /]cp\ *) ;; + *) prev=$arg ;; + esac + ;; + -g | -m | -o) + prev=$arg + ;; + -s) + stripme=" -s" + continue + ;; + -*) + ;; + *) + # If the previous option needed an argument, then skip it. + if test -n "$prev"; then + prev= + else + dest=$arg + continue + fi + ;; + esac + + # Aesthetically quote the argument. + func_quote_for_eval "$arg" + install_prog="$install_prog $func_quote_for_eval_result" + done + + test -z "$install_prog" && \ + func_fatal_help "you must specify an install program" + + test -n "$prev" && \ + func_fatal_help "the \`$prev' option requires an argument" + + if test -z "$files"; then + if test -z "$dest"; then + func_fatal_help "no file or destination specified" + else + func_fatal_help "you must specify a destination" + fi + fi + + # Strip any trailing slash from the destination. + func_stripname '' '/' "$dest" + dest=$func_stripname_result + + # Check to see that the destination is a directory. + test -d "$dest" && isdir=yes + if test "$isdir" = yes; then + destdir="$dest" + destname= + else + func_dirname_and_basename "$dest" "" "." + destdir="$func_dirname_result" + destname="$func_basename_result" + + # Not a directory, so check to see that there is only one file specified. + set dummy $files; shift + test "$#" -gt 1 && \ + func_fatal_help "\`$dest' is not a directory" + fi + case $destdir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + for file in $files; do + case $file in + *.lo) ;; + *) + func_fatal_help "\`$destdir' must be an absolute directory name" + ;; + esac + done + ;; + esac + + # This variable tells wrapper scripts just to set variables rather + # than running their programs. + libtool_install_magic="$magic" + + staticlibs= + future_libdirs= + current_libdirs= + for file in $files; do + + # Do each installation. + case $file in + *.$libext) + # Do the static libraries later. + staticlibs="$staticlibs $file" + ;; + + *.la) + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$file" \ + || func_fatal_help "\`$file' is not a valid libtool archive" + + library_names= + old_library= + relink_command= + func_source "$file" + + # Add the libdir to current_libdirs if it is the destination. + if test "X$destdir" = "X$libdir"; then + case "$current_libdirs " in + *" $libdir "*) ;; + *) current_libdirs="$current_libdirs $libdir" ;; + esac + else + # Note the libdir as a future libdir. + case "$future_libdirs " in + *" $libdir "*) ;; + *) future_libdirs="$future_libdirs $libdir" ;; + esac + fi + + func_dirname "$file" "/" "" + dir="$func_dirname_result" + dir="$dir$objdir" + + if test -n "$relink_command"; then + # Determine the prefix the user has applied to our future dir. + inst_prefix_dir=`$ECHO "X$destdir" | $Xsed -e "s%$libdir\$%%"` + + # Don't allow the user to place us outside of our expected + # location b/c this prevents finding dependent libraries that + # are installed to the same prefix. + # At present, this check doesn't affect windows .dll's that + # are installed into $libdir/../bin (currently, that works fine) + # but it's something to keep an eye on. + test "$inst_prefix_dir" = "$destdir" && \ + func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir" + + if test -n "$inst_prefix_dir"; then + # Stick the inst_prefix_dir data into the link command. + relink_command=`$ECHO "X$relink_command" | $Xsed -e "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` + else + relink_command=`$ECHO "X$relink_command" | $Xsed -e "s%@inst_prefix_dir@%%"` + fi + + func_warning "relinking \`$file'" + func_show_eval "$relink_command" \ + 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"' + fi + + # See the names of the shared library. + set dummy $library_names; shift + if test -n "$1"; then + realname="$1" + shift + + srcname="$realname" + test -n "$relink_command" && srcname="$realname"T + + # Install the shared library and build the symlinks. + func_show_eval "$install_prog $dir/$srcname $destdir/$realname" \ + 'exit $?' + tstripme="$stripme" + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + case $realname in + *.dll.a) + tstripme="" + ;; + esac + ;; + esac + if test -n "$tstripme" && test -n "$striplib"; then + func_show_eval "$striplib $destdir/$realname" 'exit $?' + fi + + if test "$#" -gt 0; then + # Delete the old symlinks, and create new ones. + # Try `ln -sf' first, because the `ln' binary might depend on + # the symlink we replace! Solaris /bin/ln does not understand -f, + # so we also need to try rm && ln -s. + for linkname + do + test "$linkname" != "$realname" \ + && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" + done + fi + + # Do each command in the postinstall commands. + lib="$destdir/$realname" + func_execute_cmds "$postinstall_cmds" 'exit $?' + fi + + # Install the pseudo-library for information purposes. + func_basename "$file" + name="$func_basename_result" + instname="$dir/$name"i + func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' + + # Maybe install the static library, too. + test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" + ;; + + *.lo) + # Install (i.e. copy) a libtool object. + + # Figure out destination file name, if it wasn't already specified. + if test -n "$destname"; then + destfile="$destdir/$destname" + else + func_basename "$file" + destfile="$func_basename_result" + destfile="$destdir/$destfile" + fi + + # Deduce the name of the destination old-style object file. + case $destfile in + *.lo) + func_lo2o "$destfile" + staticdest=$func_lo2o_result + ;; + *.$objext) + staticdest="$destfile" + destfile= + ;; + *) + func_fatal_help "cannot copy a libtool object to \`$destfile'" + ;; + esac + + # Install the libtool object if requested. + test -n "$destfile" && \ + func_show_eval "$install_prog $file $destfile" 'exit $?' + + # Install the old object if enabled. + if test "$build_old_libs" = yes; then + # Deduce the name of the old-style object file. + func_lo2o "$file" + staticobj=$func_lo2o_result + func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' + fi + exit $EXIT_SUCCESS + ;; + + *) + # Figure out destination file name, if it wasn't already specified. + if test -n "$destname"; then + destfile="$destdir/$destname" + else + func_basename "$file" + destfile="$func_basename_result" + destfile="$destdir/$destfile" + fi + + # If the file is missing, and there is a .exe on the end, strip it + # because it is most likely a libtool script we actually want to + # install + stripped_ext="" + case $file in + *.exe) + if test ! -f "$file"; then + func_stripname '' '.exe' "$file" + file=$func_stripname_result + stripped_ext=".exe" + fi + ;; + esac + + # Do a test to see if this is really a libtool program. + case $host in + *cygwin* | *mingw*) + if func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + wrapper=$func_ltwrapper_scriptname_result + else + func_stripname '' '.exe' "$file" + wrapper=$func_stripname_result + fi + ;; + *) + wrapper=$file + ;; + esac + if func_ltwrapper_script_p "$wrapper"; then + notinst_deplibs= + relink_command= + + func_source "$wrapper" + + # Check the variables that should have been set. + test -z "$generated_by_libtool_version" && \ + func_fatal_error "invalid libtool wrapper script \`$wrapper'" + + finalize=yes + for lib in $notinst_deplibs; do + # Check to see that each library is installed. + libdir= + if test -f "$lib"; then + func_source "$lib" + fi + libfile="$libdir/"`$ECHO "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test + if test -n "$libdir" && test ! -f "$libfile"; then + func_warning "\`$lib' has not been installed in \`$libdir'" + finalize=no + fi + done + + relink_command= + func_source "$wrapper" + + outputname= + if test "$fast_install" = no && test -n "$relink_command"; then + $opt_dry_run || { + if test "$finalize" = yes; then + tmpdir=`func_mktempdir` + func_basename "$file$stripped_ext" + file="$func_basename_result" + outputname="$tmpdir/$file" + # Replace the output file specification. + relink_command=`$ECHO "X$relink_command" | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g'` + + $opt_silent || { + func_quote_for_expand "$relink_command" + eval "func_echo $func_quote_for_expand_result" + } + if eval "$relink_command"; then : + else + func_error "error: relink \`$file' with the above command before installing it" + $opt_dry_run || ${RM}r "$tmpdir" + continue + fi + file="$outputname" + else + func_warning "cannot relink \`$file'" + fi + } + else + # Install the binary that we compiled earlier. + file=`$ECHO "X$file$stripped_ext" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"` + fi + fi + + # remove .exe since cygwin /usr/bin/install will append another + # one anyway + case $install_prog,$host in + */usr/bin/install*,*cygwin*) + case $file:$destfile in + *.exe:*.exe) + # this is ok + ;; + *.exe:*) + destfile=$destfile.exe + ;; + *:*.exe) + func_stripname '' '.exe' "$destfile" + destfile=$func_stripname_result + ;; + esac + ;; + esac + func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' + $opt_dry_run || if test -n "$outputname"; then + ${RM}r "$tmpdir" + fi + ;; + esac + done + + for file in $staticlibs; do + func_basename "$file" + name="$func_basename_result" + + # Set up the ranlib parameters. + oldlib="$destdir/$name" + + func_show_eval "$install_prog \$file \$oldlib" 'exit $?' + + if test -n "$stripme" && test -n "$old_striplib"; then + func_show_eval "$old_striplib $oldlib" 'exit $?' + fi + + # Do each command in the postinstall commands. + func_execute_cmds "$old_postinstall_cmds" 'exit $?' + done + + test -n "$future_libdirs" && \ + func_warning "remember to run \`$progname --finish$future_libdirs'" + + if test -n "$current_libdirs"; then + # Maybe just do a dry run. + $opt_dry_run && current_libdirs=" -n$current_libdirs" + exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' + else + exit $EXIT_SUCCESS + fi +} + +test "$mode" = install && func_mode_install ${1+"$@"} + + +# func_generate_dlsyms outputname originator pic_p +# Extract symbols from dlprefiles and create ${outputname}S.o with +# a dlpreopen symbol table. +func_generate_dlsyms () +{ + $opt_debug + my_outputname="$1" + my_originator="$2" + my_pic_p="${3-no}" + my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'` + my_dlsyms= + + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + if test -n "$NM" && test -n "$global_symbol_pipe"; then + my_dlsyms="${my_outputname}S.c" + else + func_error "not configured to extract global symbols from dlpreopened files" + fi + fi + + if test -n "$my_dlsyms"; then + case $my_dlsyms in + "") ;; + *.c) + # Discover the nlist of each of the dlfiles. + nlist="$output_objdir/${my_outputname}.nm" + + func_show_eval "$RM $nlist ${nlist}S ${nlist}T" + + # Parse the name list into a source file. + func_verbose "creating $output_objdir/$my_dlsyms" + + $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ +/* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */ +/* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */ + +#ifdef __cplusplus +extern \"C\" { +#endif + +/* External symbol declarations for the compiler. */\ +" + + if test "$dlself" = yes; then + func_verbose "generating symbol list for \`$output'" + + $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" + + # Add our own program objects to the symbol list. + progfiles=`$ECHO "X$objs$old_deplibs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` + for progfile in $progfiles; do + func_verbose "extracting global C symbols from \`$progfile'" + $opt_dry_run || eval "$NM $progfile | $global_symbol_pipe >> '$nlist'" + done + + if test -n "$exclude_expsyms"; then + $opt_dry_run || { + eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + } + fi + + if test -n "$export_symbols_regex"; then + $opt_dry_run || { + eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + } + fi + + # Prepare the list of exported symbols + if test -z "$export_symbols"; then + export_symbols="$output_objdir/$outputname.exp" + $opt_dry_run || { + $RM $export_symbols + eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' + case $host in + *cygwin* | *mingw* | *cegcc* ) + eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' + eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' + ;; + esac + } + else + $opt_dry_run || { + eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' + eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + case $host in + *cygwin | *mingw* | *cegcc* ) + eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' + eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' + ;; + esac + } + fi + fi + + for dlprefile in $dlprefiles; do + func_verbose "extracting global C symbols from \`$dlprefile'" + func_basename "$dlprefile" + name="$func_basename_result" + $opt_dry_run || { + eval '$ECHO ": $name " >> "$nlist"' + eval "$NM $dlprefile 2>/dev/null | $global_symbol_pipe >> '$nlist'" + } + done + + $opt_dry_run || { + # Make sure we have at least an empty file. + test -f "$nlist" || : > "$nlist" + + if test -n "$exclude_expsyms"; then + $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T + $MV "$nlist"T "$nlist" + fi + + # Try sorting and uniquifying the output. + if $GREP -v "^: " < "$nlist" | + if sort -k 3 /dev/null 2>&1; then + sort -k 3 + else + sort +2 + fi | + uniq > "$nlist"S; then + : + else + $GREP -v "^: " < "$nlist" > "$nlist"S + fi + + if test -f "$nlist"S; then + eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' + else + $ECHO '/* NONE */' >> "$output_objdir/$my_dlsyms" + fi + + $ECHO >> "$output_objdir/$my_dlsyms" "\ + +/* The mapping between symbol names and symbols. */ +typedef struct { + const char *name; + void *address; +} lt_dlsymlist; +" + case $host in + *cygwin* | *mingw* | *cegcc* ) + $ECHO >> "$output_objdir/$my_dlsyms" "\ +/* DATA imports from DLLs on WIN32 con't be const, because + runtime relocations are performed -- see ld's documentation + on pseudo-relocs. */" + lt_dlsym_const= ;; + *osf5*) + echo >> "$output_objdir/$my_dlsyms" "\ +/* This system does not cope well with relocations in const data */" + lt_dlsym_const= ;; + *) + lt_dlsym_const=const ;; + esac + + $ECHO >> "$output_objdir/$my_dlsyms" "\ +extern $lt_dlsym_const lt_dlsymlist +lt_${my_prefix}_LTX_preloaded_symbols[]; +$lt_dlsym_const lt_dlsymlist +lt_${my_prefix}_LTX_preloaded_symbols[] = +{\ + { \"$my_originator\", (void *) 0 }," + + case $need_lib_prefix in + no) + eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" + ;; + *) + eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" + ;; + esac + $ECHO >> "$output_objdir/$my_dlsyms" "\ + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt_${my_prefix}_LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif\ +" + } # !$opt_dry_run + + pic_flag_for_symtable= + case "$compile_command " in + *" -static "*) ;; + *) + case $host in + # compiling the symbol table file with pic_flag works around + # a FreeBSD bug that causes programs to crash when -lm is + # linked before any other PIC object. But we must not use + # pic_flag when linking with -static. The problem exists in + # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. + *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) + pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; + *-*-hpux*) + pic_flag_for_symtable=" $pic_flag" ;; + *) + if test "X$my_pic_p" != Xno; then + pic_flag_for_symtable=" $pic_flag" + fi + ;; + esac + ;; + esac + symtab_cflags= + for arg in $LTCFLAGS; do + case $arg in + -pie | -fpie | -fPIE) ;; + *) symtab_cflags="$symtab_cflags $arg" ;; + esac + done + + # Now compile the dynamic symbol file. + func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' + + # Clean up the generated files. + func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"' + + # Transform the symbol file into the correct name. + symfileobj="$output_objdir/${my_outputname}S.$objext" + case $host in + *cygwin* | *mingw* | *cegcc* ) + if test -f "$output_objdir/$my_outputname.def"; then + compile_command=`$ECHO "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` + finalize_command=`$ECHO "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` + else + compile_command=`$ECHO "X$compile_command" | $Xsed -e "s%@SYMFILE@%$symfileobj%"` + finalize_command=`$ECHO "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$symfileobj%"` + fi + ;; + *) + compile_command=`$ECHO "X$compile_command" | $Xsed -e "s%@SYMFILE@%$symfileobj%"` + finalize_command=`$ECHO "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$symfileobj%"` + ;; + esac + ;; + *) + func_fatal_error "unknown suffix for \`$my_dlsyms'" + ;; + esac + else + # We keep going just in case the user didn't refer to + # lt_preloaded_symbols. The linker will fail if global_symbol_pipe + # really was required. + + # Nullify the symbol file. + compile_command=`$ECHO "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"` + finalize_command=`$ECHO "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"` + fi +} + +# func_win32_libid arg +# return the library type of file 'arg' +# +# Need a lot of goo to handle *both* DLLs and import libs +# Has to be a shell function in order to 'eat' the argument +# that is supplied when $file_magic_command is called. +func_win32_libid () +{ + $opt_debug + win32_libid_type="unknown" + win32_fileres=`file -L $1 2>/dev/null` + case $win32_fileres in + *ar\ archive\ import\ library*) # definitely import + win32_libid_type="x86 archive import" + ;; + *ar\ archive*) # could be an import, or static + if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | + $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null ; then + win32_nmres=`eval $NM -f posix -A $1 | + $SED -n -e ' + 1,100{ + / I /{ + s,.*,import, + p + q + } + }'` + case $win32_nmres in + import*) win32_libid_type="x86 archive import";; + *) win32_libid_type="x86 archive static";; + esac + fi + ;; + *DLL*) + win32_libid_type="x86 DLL" + ;; + *executable*) # but shell scripts are "executable" too... + case $win32_fileres in + *MS\ Windows\ PE\ Intel*) + win32_libid_type="x86 DLL" + ;; + esac + ;; + esac + $ECHO "$win32_libid_type" +} + + + +# func_extract_an_archive dir oldlib +func_extract_an_archive () +{ + $opt_debug + f_ex_an_ar_dir="$1"; shift + f_ex_an_ar_oldlib="$1" + func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" 'exit $?' + if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then + : + else + func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" + fi +} + + +# func_extract_archives gentop oldlib ... +func_extract_archives () +{ + $opt_debug + my_gentop="$1"; shift + my_oldlibs=${1+"$@"} + my_oldobjs="" + my_xlib="" + my_xabs="" + my_xdir="" + + for my_xlib in $my_oldlibs; do + # Extract the objects. + case $my_xlib in + [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; + *) my_xabs=`pwd`"/$my_xlib" ;; + esac + func_basename "$my_xlib" + my_xlib="$func_basename_result" + my_xlib_u=$my_xlib + while :; do + case " $extracted_archives " in + *" $my_xlib_u "*) + func_arith $extracted_serial + 1 + extracted_serial=$func_arith_result + my_xlib_u=lt$extracted_serial-$my_xlib ;; + *) break ;; + esac + done + extracted_archives="$extracted_archives $my_xlib_u" + my_xdir="$my_gentop/$my_xlib_u" + + func_mkdir_p "$my_xdir" + + case $host in + *-darwin*) + func_verbose "Extracting $my_xabs" + # Do not bother doing anything if just a dry run + $opt_dry_run || { + darwin_orig_dir=`pwd` + cd $my_xdir || exit $? + darwin_archive=$my_xabs + darwin_curdir=`pwd` + darwin_base_archive=`basename "$darwin_archive"` + darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` + if test -n "$darwin_arches"; then + darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` + darwin_arch= + func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" + for darwin_arch in $darwin_arches ; do + func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}" + $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" + cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" + func_extract_an_archive "`pwd`" "${darwin_base_archive}" + cd "$darwin_curdir" + $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" + done # $darwin_arches + ## Okay now we've a bunch of thin objects, gotta fatten them up :) + darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u` + darwin_file= + darwin_files= + for darwin_file in $darwin_filelist; do + darwin_files=`find unfat-$$ -name $darwin_file -print | $NL2SP` + $LIPO -create -output "$darwin_file" $darwin_files + done # $darwin_filelist + $RM -rf unfat-$$ + cd "$darwin_orig_dir" + else + cd $darwin_orig_dir + func_extract_an_archive "$my_xdir" "$my_xabs" + fi # $darwin_arches + } # !$opt_dry_run + ;; + *) + func_extract_an_archive "$my_xdir" "$my_xabs" + ;; + esac + my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP` + done + + func_extract_archives_result="$my_oldobjs" +} + + + +# func_emit_wrapper_part1 [arg=no] +# +# Emit the first part of a libtool wrapper script on stdout. +# For more information, see the description associated with +# func_emit_wrapper(), below. +func_emit_wrapper_part1 () +{ + func_emit_wrapper_part1_arg1=no + if test -n "$1" ; then + func_emit_wrapper_part1_arg1=$1 + fi + + $ECHO "\ +#! $SHELL + +# $output - temporary wrapper script for $objdir/$outputname +# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION +# +# The $output program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +Xsed='${SED} -e 1s/^X//' +sed_quote_subst='$sed_quote_subst' + +# Be Bourne compatible +if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST +else + case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command=\"$relink_command\" + +# This environment variable determines our operation mode. +if test \"\$libtool_install_magic\" = \"$magic\"; then + # install mode needs the following variables: + generated_by_libtool_version='$macro_version' + notinst_deplibs='$notinst_deplibs' +else + # When we are sourced in execute mode, \$file and \$ECHO are already set. + if test \"\$libtool_execute_magic\" != \"$magic\"; then + ECHO=\"$qecho\" + file=\"\$0\" + # Make sure echo works. + if test \"X\$1\" = X--no-reexec; then + # Discard the --no-reexec flag, and continue. + shift + elif test \"X\`{ \$ECHO '\t'; } 2>/dev/null\`\" = 'X\t'; then + # Yippee, \$ECHO works! + : + else + # Restart under the correct shell, and then maybe \$ECHO will work. + exec $SHELL \"\$0\" --no-reexec \${1+\"\$@\"} + fi + fi\ +" + $ECHO "\ + + # Find the directory that this script lives in. + thisdir=\`\$ECHO \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\` + test \"x\$thisdir\" = \"x\$file\" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=\`ls -ld \"\$file\" | ${SED} -n 's/.*-> //p'\` + while test -n \"\$file\"; do + destdir=\`\$ECHO \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\` + + # If there was a directory component, then change thisdir. + if test \"x\$destdir\" != \"x\$file\"; then + case \"\$destdir\" in + [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; + *) thisdir=\"\$thisdir/\$destdir\" ;; + esac + fi + + file=\`\$ECHO \"X\$file\" | \$Xsed -e 's%^.*/%%'\` + file=\`ls -ld \"\$thisdir/\$file\" | ${SED} -n 's/.*-> //p'\` + done +" +} +# end: func_emit_wrapper_part1 + +# func_emit_wrapper_part2 [arg=no] +# +# Emit the second part of a libtool wrapper script on stdout. +# For more information, see the description associated with +# func_emit_wrapper(), below. +func_emit_wrapper_part2 () +{ + func_emit_wrapper_part2_arg1=no + if test -n "$1" ; then + func_emit_wrapper_part2_arg1=$1 + fi + + $ECHO "\ + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_part2_arg1 + if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then + # special case for '.' + if test \"\$thisdir\" = \".\"; then + thisdir=\`pwd\` + fi + # remove .libs from thisdir + case \"\$thisdir\" in + *[\\\\/]$objdir ) thisdir=\`\$ECHO \"X\$thisdir\" | \$Xsed -e 's%[\\\\/][^\\\\/]*$%%'\` ;; + $objdir ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=\`cd \"\$thisdir\" && pwd\` + test -n \"\$absdir\" && thisdir=\"\$absdir\" +" + + if test "$fast_install" = yes; then + $ECHO "\ + program=lt-'$outputname'$exeext + progdir=\"\$thisdir/$objdir\" + + if test ! -f \"\$progdir/\$program\" || + { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ + test \"X\$file\" != \"X\$progdir/\$program\"; }; then + + file=\"\$\$-\$program\" + + if test ! -d \"\$progdir\"; then + $MKDIR \"\$progdir\" + else + $RM \"\$progdir/\$file\" + fi" + + $ECHO "\ + + # relink executable if necessary + if test -n \"\$relink_command\"; then + if relink_command_output=\`eval \$relink_command 2>&1\`; then : + else + $ECHO \"\$relink_command_output\" >&2 + $RM \"\$progdir/\$file\" + exit 1 + fi + fi + + $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || + { $RM \"\$progdir/\$program\"; + $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } + $RM \"\$progdir/\$file\" + fi" + else + $ECHO "\ + program='$outputname' + progdir=\"\$thisdir/$objdir\" +" + fi + + $ECHO "\ + + if test -f \"\$progdir/\$program\"; then" + + # Export our shlibpath_var if we have one. + if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then + $ECHO "\ + # Add our own library path to $shlibpath_var + $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" + + # Some systems cannot cope with colon-terminated $shlibpath_var + # The second colon is a workaround for a bug in BeOS R4 sed + $shlibpath_var=\`\$ECHO \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\` + + export $shlibpath_var +" + fi + + # fixup the dll searchpath if we need to. + if test -n "$dllsearchpath"; then + $ECHO "\ + # Add the dll search path components to the executable PATH + PATH=$dllsearchpath:\$PATH +" + fi + + $ECHO "\ + if test \"\$libtool_execute_magic\" != \"$magic\"; then + # Run the actual program with our arguments. +" + case $host in + # Backslashes separate directories on plain windows + *-*-mingw | *-*-os2* | *-cegcc*) + $ECHO "\ + exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} +" + ;; + + *) + $ECHO "\ + exec \"\$progdir/\$program\" \${1+\"\$@\"} +" + ;; + esac + $ECHO "\ + \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 + exit 1 + fi + else + # The program doesn't exist. + \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 + \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 + $ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 + exit 1 + fi +fi\ +" +} +# end: func_emit_wrapper_part2 + + +# func_emit_wrapper [arg=no] +# +# Emit a libtool wrapper script on stdout. +# Don't directly open a file because we may want to +# incorporate the script contents within a cygwin/mingw +# wrapper executable. Must ONLY be called from within +# func_mode_link because it depends on a number of variables +# set therein. +# +# ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR +# variable will take. If 'yes', then the emitted script +# will assume that the directory in which it is stored is +# the $objdir directory. This is a cygwin/mingw-specific +# behavior. +func_emit_wrapper () +{ + func_emit_wrapper_arg1=no + if test -n "$1" ; then + func_emit_wrapper_arg1=$1 + fi + + # split this up so that func_emit_cwrapperexe_src + # can call each part independently. + func_emit_wrapper_part1 "${func_emit_wrapper_arg1}" + func_emit_wrapper_part2 "${func_emit_wrapper_arg1}" +} + + +# func_to_host_path arg +# +# Convert paths to host format when used with build tools. +# Intended for use with "native" mingw (where libtool itself +# is running under the msys shell), or in the following cross- +# build environments: +# $build $host +# mingw (msys) mingw [e.g. native] +# cygwin mingw +# *nix + wine mingw +# where wine is equipped with the `winepath' executable. +# In the native mingw case, the (msys) shell automatically +# converts paths for any non-msys applications it launches, +# but that facility isn't available from inside the cwrapper. +# Similar accommodations are necessary for $host mingw and +# $build cygwin. Calling this function does no harm for other +# $host/$build combinations not listed above. +# +# ARG is the path (on $build) that should be converted to +# the proper representation for $host. The result is stored +# in $func_to_host_path_result. +func_to_host_path () +{ + func_to_host_path_result="$1" + if test -n "$1" ; then + case $host in + *mingw* ) + lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' + case $build in + *mingw* ) # actually, msys + # awkward: cmd appends spaces to result + lt_sed_strip_trailing_spaces="s/[ ]*\$//" + func_to_host_path_tmp1=`( cmd //c echo "$1" |\ + $SED -e "$lt_sed_strip_trailing_spaces" ) 2>/dev/null || echo ""` + func_to_host_path_result=`echo "$func_to_host_path_tmp1" |\ + $SED -e "$lt_sed_naive_backslashify"` + ;; + *cygwin* ) + func_to_host_path_tmp1=`cygpath -w "$1"` + func_to_host_path_result=`echo "$func_to_host_path_tmp1" |\ + $SED -e "$lt_sed_naive_backslashify"` + ;; + * ) + # Unfortunately, winepath does not exit with a non-zero + # error code, so we are forced to check the contents of + # stdout. On the other hand, if the command is not + # found, the shell will set an exit code of 127 and print + # *an error message* to stdout. So we must check for both + # error code of zero AND non-empty stdout, which explains + # the odd construction: + func_to_host_path_tmp1=`winepath -w "$1" 2>/dev/null` + if test "$?" -eq 0 && test -n "${func_to_host_path_tmp1}"; then + func_to_host_path_result=`echo "$func_to_host_path_tmp1" |\ + $SED -e "$lt_sed_naive_backslashify"` + else + # Allow warning below. + func_to_host_path_result="" + fi + ;; + esac + if test -z "$func_to_host_path_result" ; then + #func_error "Could not determine host path corresponding to" + #func_error " '$1'" + #func_error "Continuing, but uninstalled executables may not work." + # Fallback: + func_to_host_path_result="$1" + fi + ;; + esac + fi +} +# end: func_to_host_path + +# func_to_host_pathlist arg +# +# Convert pathlists to host format when used with build tools. +# See func_to_host_path(), above. This function supports the +# following $build/$host combinations (but does no harm for +# combinations not listed here): +# $build $host +# mingw (msys) mingw [e.g. native] +# cygwin mingw +# *nix + wine mingw +# +# Path separators are also converted from $build format to +# $host format. If ARG begins or ends with a path separator +# character, it is preserved (but converted to $host format) +# on output. +# +# ARG is a pathlist (on $build) that should be converted to +# the proper representation on $host. The result is stored +# in $func_to_host_pathlist_result. +func_to_host_pathlist () +{ + func_to_host_pathlist_result="$1" + if test -n "$1" ; then + case $host in + *mingw* ) + lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' + # Remove leading and trailing path separator characters from + # ARG. msys behavior is inconsistent here, cygpath turns them + # into '.;' and ';.', and winepath ignores them completely. + func_to_host_pathlist_tmp2="$1" + # Once set for this call, this variable should not be + # reassigned. It is used in tha fallback case. + func_to_host_pathlist_tmp1=`echo "$func_to_host_pathlist_tmp2" |\ + $SED -e 's|^:*||' -e 's|:*$||'` + case $build in + *mingw* ) # Actually, msys. + # Awkward: cmd appends spaces to result. + lt_sed_strip_trailing_spaces="s/[ ]*\$//" + func_to_host_pathlist_tmp2=`( cmd //c echo "$func_to_host_pathlist_tmp1" |\ + $SED -e "$lt_sed_strip_trailing_spaces" ) 2>/dev/null || echo ""` + func_to_host_pathlist_result=`echo "$func_to_host_pathlist_tmp2" |\ + $SED -e "$lt_sed_naive_backslashify"` + ;; + *cygwin* ) + func_to_host_pathlist_tmp2=`cygpath -w -p "$func_to_host_pathlist_tmp1"` + func_to_host_pathlist_result=`echo "$func_to_host_pathlist_tmp2" |\ + $SED -e "$lt_sed_naive_backslashify"` + ;; + * ) + # unfortunately, winepath doesn't convert pathlists + func_to_host_pathlist_result="" + func_to_host_pathlist_oldIFS=$IFS + IFS=: + for func_to_host_pathlist_f in $func_to_host_pathlist_tmp1 ; do + IFS=$func_to_host_pathlist_oldIFS + if test -n "$func_to_host_pathlist_f" ; then + func_to_host_path "$func_to_host_pathlist_f" + if test -n "$func_to_host_path_result" ; then + if test -z "$func_to_host_pathlist_result" ; then + func_to_host_pathlist_result="$func_to_host_path_result" + else + func_to_host_pathlist_result="$func_to_host_pathlist_result;$func_to_host_path_result" + fi + fi + fi + IFS=: + done + IFS=$func_to_host_pathlist_oldIFS + ;; + esac + if test -z "$func_to_host_pathlist_result" ; then + func_error "Could not determine the host path(s) corresponding to" + func_error " '$1'" + func_error "Continuing, but uninstalled executables may not work." + # Fallback. This may break if $1 contains DOS-style drive + # specifications. The fix is not to complicate the expression + # below, but for the user to provide a working wine installation + # with winepath so that path translation in the cross-to-mingw + # case works properly. + lt_replace_pathsep_nix_to_dos="s|:|;|g" + func_to_host_pathlist_result=`echo "$func_to_host_pathlist_tmp1" |\ + $SED -e "$lt_replace_pathsep_nix_to_dos"` + fi + # Now, add the leading and trailing path separators back + case "$1" in + :* ) func_to_host_pathlist_result=";$func_to_host_pathlist_result" + ;; + esac + case "$1" in + *: ) func_to_host_pathlist_result="$func_to_host_pathlist_result;" + ;; + esac + ;; + esac + fi +} +# end: func_to_host_pathlist + +# func_emit_cwrapperexe_src +# emit the source code for a wrapper executable on stdout +# Must ONLY be called from within func_mode_link because +# it depends on a number of variable set therein. +func_emit_cwrapperexe_src () +{ + cat < +#include +#ifdef _MSC_VER +# include +# include +# include +# define setmode _setmode +#else +# include +# include +# ifdef __CYGWIN__ +# include +# define HAVE_SETENV +# ifdef __STRICT_ANSI__ +char *realpath (const char *, char *); +int putenv (char *); +int setenv (const char *, const char *, int); +# endif +# endif +#endif +#include +#include +#include +#include +#include +#include +#include +#include + +#if defined(PATH_MAX) +# define LT_PATHMAX PATH_MAX +#elif defined(MAXPATHLEN) +# define LT_PATHMAX MAXPATHLEN +#else +# define LT_PATHMAX 1024 +#endif + +#ifndef S_IXOTH +# define S_IXOTH 0 +#endif +#ifndef S_IXGRP +# define S_IXGRP 0 +#endif + +#ifdef _MSC_VER +# define S_IXUSR _S_IEXEC +# define stat _stat +# ifndef _INTPTR_T_DEFINED +# define intptr_t int +# endif +#endif + +#ifndef DIR_SEPARATOR +# define DIR_SEPARATOR '/' +# define PATH_SEPARATOR ':' +#endif + +#if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ + defined (__OS2__) +# define HAVE_DOS_BASED_FILE_SYSTEM +# define FOPEN_WB "wb" +# ifndef DIR_SEPARATOR_2 +# define DIR_SEPARATOR_2 '\\' +# endif +# ifndef PATH_SEPARATOR_2 +# define PATH_SEPARATOR_2 ';' +# endif +#endif + +#ifndef DIR_SEPARATOR_2 +# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) +#else /* DIR_SEPARATOR_2 */ +# define IS_DIR_SEPARATOR(ch) \ + (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) +#endif /* DIR_SEPARATOR_2 */ + +#ifndef PATH_SEPARATOR_2 +# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) +#else /* PATH_SEPARATOR_2 */ +# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) +#endif /* PATH_SEPARATOR_2 */ + +#ifdef __CYGWIN__ +# define FOPEN_WB "wb" +#endif + +#ifndef FOPEN_WB +# define FOPEN_WB "w" +#endif +#ifndef _O_BINARY +# define _O_BINARY 0 +#endif + +#define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) +#define XFREE(stale) do { \ + if (stale) { free ((void *) stale); stale = 0; } \ +} while (0) + +#undef LTWRAPPER_DEBUGPRINTF +#if defined DEBUGWRAPPER +# define LTWRAPPER_DEBUGPRINTF(args) ltwrapper_debugprintf args +static void +ltwrapper_debugprintf (const char *fmt, ...) +{ + va_list args; + va_start (args, fmt); + (void) vfprintf (stderr, fmt, args); + va_end (args); +} +#else +# define LTWRAPPER_DEBUGPRINTF(args) +#endif + +const char *program_name = NULL; + +void *xmalloc (size_t num); +char *xstrdup (const char *string); +const char *base_name (const char *name); +char *find_executable (const char *wrapper); +char *chase_symlinks (const char *pathspec); +int make_executable (const char *path); +int check_executable (const char *path); +char *strendzap (char *str, const char *pat); +void lt_fatal (const char *message, ...); +void lt_setenv (const char *name, const char *value); +char *lt_extend_str (const char *orig_value, const char *add, int to_end); +void lt_opt_process_env_set (const char *arg); +void lt_opt_process_env_prepend (const char *arg); +void lt_opt_process_env_append (const char *arg); +int lt_split_name_value (const char *arg, char** name, char** value); +void lt_update_exe_path (const char *name, const char *value); +void lt_update_lib_path (const char *name, const char *value); + +static const char *script_text_part1 = +EOF + + func_emit_wrapper_part1 yes | + $SED -e 's/\([\\"]\)/\\\1/g' \ + -e 's/^/ "/' -e 's/$/\\n"/' + echo ";" + cat <"))); + for (i = 0; i < newargc; i++) + { + LTWRAPPER_DEBUGPRINTF (("(main) newargz[%d] : %s\n", i, (newargz[i] ? newargz[i] : ""))); + } + +EOF + + case $host_os in + mingw*) + cat <<"EOF" + /* execv doesn't actually work on mingw as expected on unix */ + rval = _spawnv (_P_WAIT, lt_argv_zero, (const char * const *) newargz); + if (rval == -1) + { + /* failed to start process */ + LTWRAPPER_DEBUGPRINTF (("(main) failed to launch target \"%s\": errno = %d\n", lt_argv_zero, errno)); + return 127; + } + return rval; +EOF + ;; + *) + cat <<"EOF" + execv (lt_argv_zero, newargz); + return rval; /* =127, but avoids unused variable warning */ +EOF + ;; + esac + + cat <<"EOF" +} + +void * +xmalloc (size_t num) +{ + void *p = (void *) malloc (num); + if (!p) + lt_fatal ("Memory exhausted"); + + return p; +} + +char * +xstrdup (const char *string) +{ + return string ? strcpy ((char *) xmalloc (strlen (string) + 1), + string) : NULL; +} + +const char * +base_name (const char *name) +{ + const char *base; + +#if defined (HAVE_DOS_BASED_FILE_SYSTEM) + /* Skip over the disk name in MSDOS pathnames. */ + if (isalpha ((unsigned char) name[0]) && name[1] == ':') + name += 2; +#endif + + for (base = name; *name; name++) + if (IS_DIR_SEPARATOR (*name)) + base = name + 1; + return base; +} + +int +check_executable (const char *path) +{ + struct stat st; + + LTWRAPPER_DEBUGPRINTF (("(check_executable) : %s\n", + path ? (*path ? path : "EMPTY!") : "NULL!")); + if ((!path) || (!*path)) + return 0; + + if ((stat (path, &st) >= 0) + && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) + return 1; + else + return 0; +} + +int +make_executable (const char *path) +{ + int rval = 0; + struct stat st; + + LTWRAPPER_DEBUGPRINTF (("(make_executable) : %s\n", + path ? (*path ? path : "EMPTY!") : "NULL!")); + if ((!path) || (!*path)) + return 0; + + if (stat (path, &st) >= 0) + { + rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); + } + return rval; +} + +/* Searches for the full path of the wrapper. Returns + newly allocated full path name if found, NULL otherwise + Does not chase symlinks, even on platforms that support them. +*/ +char * +find_executable (const char *wrapper) +{ + int has_slash = 0; + const char *p; + const char *p_next; + /* static buffer for getcwd */ + char tmp[LT_PATHMAX + 1]; + int tmp_len; + char *concat_name; + + LTWRAPPER_DEBUGPRINTF (("(find_executable) : %s\n", + wrapper ? (*wrapper ? wrapper : "EMPTY!") : "NULL!")); + + if ((wrapper == NULL) || (*wrapper == '\0')) + return NULL; + + /* Absolute path? */ +#if defined (HAVE_DOS_BASED_FILE_SYSTEM) + if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') + { + concat_name = xstrdup (wrapper); + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } + else + { +#endif + if (IS_DIR_SEPARATOR (wrapper[0])) + { + concat_name = xstrdup (wrapper); + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } +#if defined (HAVE_DOS_BASED_FILE_SYSTEM) + } +#endif + + for (p = wrapper; *p; p++) + if (*p == '/') + { + has_slash = 1; + break; + } + if (!has_slash) + { + /* no slashes; search PATH */ + const char *path = getenv ("PATH"); + if (path != NULL) + { + for (p = path; *p; p = p_next) + { + const char *q; + size_t p_len; + for (q = p; *q; q++) + if (IS_PATH_SEPARATOR (*q)) + break; + p_len = q - p; + p_next = (*q == '\0' ? q : q + 1); + if (p_len == 0) + { + /* empty path: current directory */ + if (getcwd (tmp, LT_PATHMAX) == NULL) + lt_fatal ("getcwd failed"); + tmp_len = strlen (tmp); + concat_name = + XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, tmp, tmp_len); + concat_name[tmp_len] = '/'; + strcpy (concat_name + tmp_len + 1, wrapper); + } + else + { + concat_name = + XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, p, p_len); + concat_name[p_len] = '/'; + strcpy (concat_name + p_len + 1, wrapper); + } + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } + } + /* not found in PATH; assume curdir */ + } + /* Relative path | not found in path: prepend cwd */ + if (getcwd (tmp, LT_PATHMAX) == NULL) + lt_fatal ("getcwd failed"); + tmp_len = strlen (tmp); + concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, tmp, tmp_len); + concat_name[tmp_len] = '/'; + strcpy (concat_name + tmp_len + 1, wrapper); + + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + return NULL; +} + +char * +chase_symlinks (const char *pathspec) +{ +#ifndef S_ISLNK + return xstrdup (pathspec); +#else + char buf[LT_PATHMAX]; + struct stat s; + char *tmp_pathspec = xstrdup (pathspec); + char *p; + int has_symlinks = 0; + while (strlen (tmp_pathspec) && !has_symlinks) + { + LTWRAPPER_DEBUGPRINTF (("checking path component for symlinks: %s\n", + tmp_pathspec)); + if (lstat (tmp_pathspec, &s) == 0) + { + if (S_ISLNK (s.st_mode) != 0) + { + has_symlinks = 1; + break; + } + + /* search backwards for last DIR_SEPARATOR */ + p = tmp_pathspec + strlen (tmp_pathspec) - 1; + while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) + p--; + if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) + { + /* no more DIR_SEPARATORS left */ + break; + } + *p = '\0'; + } + else + { + char *errstr = strerror (errno); + lt_fatal ("Error accessing file %s (%s)", tmp_pathspec, errstr); + } + } + XFREE (tmp_pathspec); + + if (!has_symlinks) + { + return xstrdup (pathspec); + } + + tmp_pathspec = realpath (pathspec, buf); + if (tmp_pathspec == 0) + { + lt_fatal ("Could not follow symlinks for %s", pathspec); + } + return xstrdup (tmp_pathspec); +#endif +} + +char * +strendzap (char *str, const char *pat) +{ + size_t len, patlen; + + assert (str != NULL); + assert (pat != NULL); + + len = strlen (str); + patlen = strlen (pat); + + if (patlen <= len) + { + str += len - patlen; + if (strcmp (str, pat) == 0) + *str = '\0'; + } + return str; +} + +static void +lt_error_core (int exit_status, const char *mode, + const char *message, va_list ap) +{ + fprintf (stderr, "%s: %s: ", program_name, mode); + vfprintf (stderr, message, ap); + fprintf (stderr, ".\n"); + + if (exit_status >= 0) + exit (exit_status); +} + +void +lt_fatal (const char *message, ...) +{ + va_list ap; + va_start (ap, message); + lt_error_core (EXIT_FAILURE, "FATAL", message, ap); + va_end (ap); +} + +void +lt_setenv (const char *name, const char *value) +{ + LTWRAPPER_DEBUGPRINTF (("(lt_setenv) setting '%s' to '%s'\n", + (name ? name : ""), + (value ? value : ""))); + { +#ifdef HAVE_SETENV + /* always make a copy, for consistency with !HAVE_SETENV */ + char *str = xstrdup (value); + setenv (name, str, 1); +#else + int len = strlen (name) + 1 + strlen (value) + 1; + char *str = XMALLOC (char, len); + sprintf (str, "%s=%s", name, value); + if (putenv (str) != EXIT_SUCCESS) + { + XFREE (str); + } +#endif + } +} + +char * +lt_extend_str (const char *orig_value, const char *add, int to_end) +{ + char *new_value; + if (orig_value && *orig_value) + { + int orig_value_len = strlen (orig_value); + int add_len = strlen (add); + new_value = XMALLOC (char, add_len + orig_value_len + 1); + if (to_end) + { + strcpy (new_value, orig_value); + strcpy (new_value + orig_value_len, add); + } + else + { + strcpy (new_value, add); + strcpy (new_value + add_len, orig_value); + } + } + else + { + new_value = xstrdup (add); + } + return new_value; +} + +int +lt_split_name_value (const char *arg, char** name, char** value) +{ + const char *p; + int len; + if (!arg || !*arg) + return 1; + + p = strchr (arg, (int)'='); + + if (!p) + return 1; + + *value = xstrdup (++p); + + len = strlen (arg) - strlen (*value); + *name = XMALLOC (char, len); + strncpy (*name, arg, len-1); + (*name)[len - 1] = '\0'; + + return 0; +} + +void +lt_opt_process_env_set (const char *arg) +{ + char *name = NULL; + char *value = NULL; + + if (lt_split_name_value (arg, &name, &value) != 0) + { + XFREE (name); + XFREE (value); + lt_fatal ("bad argument for %s: '%s'", env_set_opt, arg); + } + + lt_setenv (name, value); + XFREE (name); + XFREE (value); +} + +void +lt_opt_process_env_prepend (const char *arg) +{ + char *name = NULL; + char *value = NULL; + char *new_value = NULL; + + if (lt_split_name_value (arg, &name, &value) != 0) + { + XFREE (name); + XFREE (value); + lt_fatal ("bad argument for %s: '%s'", env_prepend_opt, arg); + } + + new_value = lt_extend_str (getenv (name), value, 0); + lt_setenv (name, new_value); + XFREE (new_value); + XFREE (name); + XFREE (value); +} + +void +lt_opt_process_env_append (const char *arg) +{ + char *name = NULL; + char *value = NULL; + char *new_value = NULL; + + if (lt_split_name_value (arg, &name, &value) != 0) + { + XFREE (name); + XFREE (value); + lt_fatal ("bad argument for %s: '%s'", env_append_opt, arg); + } + + new_value = lt_extend_str (getenv (name), value, 1); + lt_setenv (name, new_value); + XFREE (new_value); + XFREE (name); + XFREE (value); +} + +void +lt_update_exe_path (const char *name, const char *value) +{ + LTWRAPPER_DEBUGPRINTF (("(lt_update_exe_path) modifying '%s' by prepending '%s'\n", + (name ? name : ""), + (value ? value : ""))); + + if (name && *name && value && *value) + { + char *new_value = lt_extend_str (getenv (name), value, 0); + /* some systems can't cope with a ':'-terminated path #' */ + int len = strlen (new_value); + while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1])) + { + new_value[len-1] = '\0'; + } + lt_setenv (name, new_value); + XFREE (new_value); + } +} + +void +lt_update_lib_path (const char *name, const char *value) +{ + LTWRAPPER_DEBUGPRINTF (("(lt_update_lib_path) modifying '%s' by prepending '%s'\n", + (name ? name : ""), + (value ? value : ""))); + + if (name && *name && value && *value) + { + char *new_value = lt_extend_str (getenv (name), value, 0); + lt_setenv (name, new_value); + XFREE (new_value); + } +} + + +EOF +} +# end: func_emit_cwrapperexe_src + +# func_mode_link arg... +func_mode_link () +{ + $opt_debug + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) # It is impossible to link a dll without this setting, and # we shouldn't force the makefile maintainer to figure out # which system we are compiling for in order to pass an extra @@ -1085,10 +4052,10 @@ EOF allow_undefined=yes ;; esac - libtool_args="$nonopt" + libtool_args=$nonopt base_compile="$nonopt $@" - compile_command="$nonopt" - finalize_command="$nonopt" + compile_command=$nonopt + finalize_command=$nonopt compile_rpath= finalize_rpath= @@ -1103,6 +4070,7 @@ EOF dllsearchpath= lib_search_path=`pwd` inst_prefix_dir= + new_inherited_linker_flags= avoid_version=no dlfiles= @@ -1118,7 +4086,6 @@ EOF no_install=no objs= non_pic_objects= - notinst_path= # paths that contain not-installed libtool libraries precious_files_regex= prefer_static_libs=no preload=no @@ -1132,28 +4099,44 @@ EOF thread_safe=no vinfo= vinfo_number=no - + weak_libs= + single_module="${wl}-single_module" func_infer_tag $base_compile # We need to know -static, to get the right output filenames. for arg do case $arg in - -all-static | -static) - if test "X$arg" = "X-all-static"; then + -shared) + test "$build_libtool_libs" != yes && \ + func_fatal_configuration "can not build a shared library" + build_old_libs=no + break + ;; + -all-static | -static | -static-libtool-libs) + case $arg in + -all-static) if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then - $echo "$modename: warning: complete static linking is impossible in this configuration" 1>&2 + func_warning "complete static linking is impossible in this configuration" fi if test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes - else + ;; + -static) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=built - fi + ;; + -static-libtool-libs) + if test -z "$pic_flag" && test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=yes + ;; + esac build_libtool_libs=no build_old_libs=yes break @@ -1168,20 +4151,16 @@ EOF while test "$#" -gt 0; do arg="$1" shift - case $arg in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - qarg=\"`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`\" ### testsuite: skip nested quoting test - ;; - *) qarg=$arg ;; - esac - libtool_args="$libtool_args $qarg" + func_quote_for_eval "$arg" + qarg=$func_quote_for_eval_unquoted_result + func_append libtool_args " $func_quote_for_eval_result" # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in output) - compile_command="$compile_command @OUTPUT@" - finalize_command="$finalize_command @OUTPUT@" + func_append compile_command " @OUTPUT@" + func_append finalize_command " @OUTPUT@" ;; esac @@ -1189,8 +4168,8 @@ EOF dlfiles|dlprefiles) if test "$preload" = no; then # Add the symbol object into the linking commands. - compile_command="$compile_command @SYMFILE@" - finalize_command="$finalize_command @SYMFILE@" + func_append compile_command " @SYMFILE@" + func_append finalize_command " @SYMFILE@" preload=yes fi case $arg in @@ -1228,10 +4207,8 @@ EOF ;; expsyms) export_symbols="$arg" - if test ! -f "$arg"; then - $echo "$modename: symbol file \`$arg' does not exist" - exit $EXIT_FAILURE - fi + test -f "$arg" \ + || func_fatal_error "symbol file \`$arg' does not exist" prev= continue ;; @@ -1240,58 +4217,52 @@ EOF prev= continue ;; + framework) + case $host in + *-*-darwin*) + case "$deplibs " in + *" $qarg.ltframework "*) ;; + *) deplibs="$deplibs $qarg.ltframework" # this is fixed later + ;; + esac + ;; + esac + prev= + continue + ;; inst_prefix) inst_prefix_dir="$arg" prev= continue ;; - precious_regex) - precious_files_regex="$arg" - prev= - continue - ;; - release) - release="-$arg" - prev= - continue - ;; objectlist) if test -f "$arg"; then save_arg=$arg moreargs= - for fil in `cat $save_arg` + for fil in `cat "$save_arg"` do # moreargs="$moreargs $fil" arg=$fil # A libtool-controlled object. # Check to see that this really is a libtool object. - if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then + if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file - # If there is no directory component, then add one. - case $arg in - */* | *\\*) . $arg ;; - *) . ./$arg ;; - esac + func_source "$arg" - if test -z "$pic_object" || \ + if test -z "$pic_object" || test -z "$non_pic_object" || - test "$pic_object" = none && \ + test "$pic_object" = none && test "$non_pic_object" = none; then - $echo "$modename: cannot find name of object for \`$arg'" 1>&2 - exit $EXIT_FAILURE + func_fatal_error "cannot find name of object for \`$arg'" fi # Extract subdirectory from the argument. - xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` - if test "X$xdir" = "X$arg"; then - xdir= - else - xdir="$xdir/" - fi + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. @@ -1316,7 +4287,7 @@ EOF fi # A PIC object. - libobjs="$libobjs $pic_object" + func_append libobjs " $pic_object" arg="$pic_object" fi @@ -1326,7 +4297,7 @@ EOF non_pic_object="$xdir$non_pic_object" # A standard non-PIC object - non_pic_objects="$non_pic_objects $non_pic_object" + func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi @@ -1334,46 +4305,48 @@ EOF # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object="$pic_object" - non_pic_objects="$non_pic_objects $non_pic_object" + func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. - if test -z "$run"; then - $echo "$modename: \`$arg' is not a valid libtool object" 1>&2 - exit $EXIT_FAILURE - else - # Dry-run case. - + if $opt_dry_run; then # Extract subdirectory from the argument. - xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` - if test "X$xdir" = "X$arg"; then - xdir= - else - xdir="$xdir/" - fi + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" - pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"` - non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"` - libobjs="$libobjs $pic_object" - non_pic_objects="$non_pic_objects $non_pic_object" + func_lo2o "$arg" + pic_object=$xdir$objdir/$func_lo2o_result + non_pic_object=$xdir$func_lo2o_result + func_append libobjs " $pic_object" + func_append non_pic_objects " $non_pic_object" + else + func_fatal_error "\`$arg' is not a valid libtool object" fi fi done else - $echo "$modename: link input file \`$save_arg' does not exist" - exit $EXIT_FAILURE + func_fatal_error "link input file \`$arg' does not exist" fi arg=$save_arg prev= continue ;; + precious_regex) + precious_files_regex="$arg" + prev= + continue + ;; + release) + release="-$arg" + prev= + continue + ;; rpath | xrpath) # We need an absolute path. case $arg in [\\/]* | [A-Za-z]:[\\/]*) ;; *) - $echo "$modename: only absolute run-paths are allowed" 1>&2 - exit $EXIT_FAILURE + func_fatal_error "only absolute run-paths are allowed" ;; esac if test "$prev" = rpath; then @@ -1390,39 +4363,37 @@ EOF prev= continue ;; - xcompiler) - compiler_flags="$compiler_flags $qarg" + shrext) + shrext_cmds="$arg" prev= - compile_command="$compile_command $qarg" - finalize_command="$finalize_command $qarg" continue ;; - xlinker) - linker_flags="$linker_flags $qarg" - compiler_flags="$compiler_flags $wl$qarg" + weak) + weak_libs="$weak_libs $arg" prev= - compile_command="$compile_command $wl$qarg" - finalize_command="$finalize_command $wl$qarg" continue ;; xcclinker) linker_flags="$linker_flags $qarg" compiler_flags="$compiler_flags $qarg" prev= - compile_command="$compile_command $qarg" - finalize_command="$finalize_command $qarg" + func_append compile_command " $qarg" + func_append finalize_command " $qarg" continue ;; - shrext) - shrext_cmds="$arg" + xcompiler) + compiler_flags="$compiler_flags $qarg" prev= + func_append compile_command " $qarg" + func_append finalize_command " $qarg" continue ;; - darwin_framework|darwin_framework_skip) - test "$prev" = "darwin_framework" && compiler_flags="$compiler_flags $arg" - compile_command="$compile_command $arg" - finalize_command="$finalize_command $arg" + xlinker) + linker_flags="$linker_flags $qarg" + compiler_flags="$compiler_flags $wl$qarg" prev= + func_append compile_command " $wl$qarg" + func_append finalize_command " $wl$qarg" continue ;; *) @@ -1438,16 +4409,16 @@ EOF case $arg in -all-static) if test -n "$link_static_flag"; then - compile_command="$compile_command $link_static_flag" - finalize_command="$finalize_command $link_static_flag" + # See comment for -static flag below, for more details. + func_append compile_command " $link_static_flag" + func_append finalize_command " $link_static_flag" fi continue ;; -allow-undefined) # FIXME: remove this flag sometime in the future. - $echo "$modename: \`-allow-undefined' is deprecated because it is the default" 1>&2 - continue + func_fatal_error "\`-allow-undefined' must not be used because it is the default" ;; -avoid-version) @@ -1472,8 +4443,7 @@ EOF -export-symbols | -export-symbols-regex) if test -n "$export_symbols" || test -n "$export_symbols_regex"; then - $echo "$modename: more than one -exported-symbols argument is not allowed" - exit $EXIT_FAILURE + func_fatal_error "more than one -exported-symbols argument is not allowed" fi if test "X$arg" = "X-export-symbols"; then prev=expsyms @@ -1483,15 +4453,8 @@ EOF continue ;; - -framework|-arch|-isysroot) - case " $CC " in - *" ${arg} ${1} "* | *" ${arg} ${1} "*) - prev=darwin_framework_skip ;; - *) compiler_flags="$compiler_flags $arg" - prev=darwin_framework ;; - esac - compile_command="$compile_command $arg" - finalize_command="$finalize_command $arg" + -framework) + prev=framework continue ;; @@ -1505,25 +4468,30 @@ EOF -L[A-Z][A-Z]*:*) case $with_gcc/$host in no/*-*-irix* | /*-*-irix*) - compile_command="$compile_command $arg" - finalize_command="$finalize_command $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" ;; esac continue ;; -L*) - dir=`$echo "X$arg" | $Xsed -e 's/^-L//'` + func_stripname '-L' '' "$arg" + dir=$func_stripname_result + if test -z "$dir"; then + if test "$#" -gt 0; then + func_fatal_error "require no space between \`-L' and \`$1'" + else + func_fatal_error "need path for \`-L' option" + fi + fi # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) absdir=`cd "$dir" && pwd` - if test -z "$absdir"; then - $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2 - absdir="$dir" - notinst_path="$notinst_path $dir" - fi + test -z "$absdir" && \ + func_fatal_error "cannot determine absolute directory name of \`$dir'" dir="$absdir" ;; esac @@ -1535,14 +4503,16 @@ EOF ;; esac case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*) - testbindir=`$echo "X$dir" | $Xsed -e 's*/lib$*/bin*'` + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + testbindir=`$ECHO "X$dir" | $Xsed -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$dir:"*) ;; + ::) dllsearchpath=$dir;; *) dllsearchpath="$dllsearchpath:$dir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; + ::) dllsearchpath=$testbindir;; *) dllsearchpath="$dllsearchpath:$testbindir";; esac ;; @@ -1553,7 +4523,7 @@ EOF -l*) if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos*) + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc*) # These systems don't actually have a C or math library (as such) continue ;; @@ -1567,7 +4537,7 @@ EOF ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework - deplibs="$deplibs -framework System" + deplibs="$deplibs System.ltframework" continue ;; *-*-sco3.2v5* | *-*-sco5v6*) @@ -1591,57 +4561,35 @@ EOF continue ;; - # Tru64 UNIX uses -model [arg] to determine the layout of C++ - # classes, name mangling, and exception handling. - -model) - compile_command="$compile_command $arg" - compiler_flags="$compiler_flags $arg" - finalize_command="$finalize_command $arg" - prev=xcompiler - continue - ;; - - -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe) - compiler_flags="$compiler_flags $arg" - compile_command="$compile_command $arg" - finalize_command="$finalize_command $arg" - continue - ;; - -module) module=yes continue ;; - # -64, -mips[0-9] enable 64-bit mode on the SGI compiler - # -r[0-9][0-9]* specifies the processor on the SGI compiler - # -xarch=*, -xtarget=* enable 64-bit mode on the Sun compiler - # +DA*, +DD* enable 64-bit mode on the HP compiler - # -q* pass through compiler args for the IBM compiler - # -m* pass through architecture-specific compiler args for GCC - # -m*, -t[45]*, -txscale* pass through architecture-specific - # compiler args for GCC - # -pg pass through profiling flag for GCC - # @file GCC response files - -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*|-pg| \ - -t[45]*|-txscale*|@*) + # Tru64 UNIX uses -model [arg] to determine the layout of C++ + # classes, name mangling, and exception handling. + # Darwin uses the -arch flag to determine output architecture. + -model|-arch|-isysroot) + compiler_flags="$compiler_flags $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + prev=xcompiler + continue + ;; - # Unknown arguments in both finalize_command and compile_command need - # to be aesthetically quoted because they are evaled later. - arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` - case $arg in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - arg="\"$arg\"" - ;; + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads) + compiler_flags="$compiler_flags $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + case "$new_inherited_linker_flags " in + *" $arg "*) ;; + * ) new_inherited_linker_flags="$new_inherited_linker_flags $arg" ;; esac - compile_command="$compile_command $arg" - finalize_command="$finalize_command $arg" - compiler_flags="$compiler_flags $arg" - continue - ;; + continue + ;; - -shrext) - prev=shrext + -multi_module) + single_module="${wl}-multi_module" continue ;; @@ -1652,11 +4600,11 @@ EOF -no-install) case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*) + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) # The PATH hackery in wrapper scripts is required on Windows - # in order for the loader to find any dlls it needs. - $echo "$modename: warning: \`-no-install' is ignored for $host" 1>&2 - $echo "$modename: warning: assuming \`-no-fast-install' instead" 1>&2 + # and Darwin in order for the loader to find any dlls it needs. + func_warning "\`-no-install' is ignored for $host" + func_warning "assuming \`-no-fast-install' instead" fast_install=no ;; *) no_install=yes ;; @@ -1697,13 +4645,13 @@ EOF ;; -R*) - dir=`$echo "X$arg" | $Xsed -e 's/^-R//'` + func_stripname '-R' '' "$arg" + dir=$func_stripname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) - $echo "$modename: only absolute run-paths are allowed" 1>&2 - exit $EXIT_FAILURE + func_fatal_error "only absolute run-paths are allowed" ;; esac case "$xrpath " in @@ -1713,7 +4661,17 @@ EOF continue ;; - -static) + -shared) + # The effects of -shared are defined in a previous loop. + continue + ;; + + -shrext) + prev=shrext + continue + ;; + + -static | -static-libtool-libs) # The effects of -static are defined in a previous loop. # We used to do the same as -all-static on platforms that # didn't have a PIC flag, but the assumption that the effects @@ -1731,47 +4689,49 @@ EOF prev=vinfo continue ;; + -version-number) prev=vinfo vinfo_number=yes continue ;; + -weak) + prev=weak + continue + ;; + -Wc,*) - args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wc,//'` + func_stripname '-Wc,' '' "$arg" + args=$func_stripname_result arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" - case $flag in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - flag="\"$flag\"" - ;; - esac - arg="$arg $wl$flag" - compiler_flags="$compiler_flags $flag" + func_quote_for_eval "$flag" + arg="$arg $wl$func_quote_for_eval_result" + compiler_flags="$compiler_flags $func_quote_for_eval_result" done IFS="$save_ifs" - arg=`$echo "X$arg" | $Xsed -e "s/^ //"` + func_stripname ' ' '' "$arg" + arg=$func_stripname_result ;; -Wl,*) - args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'` + func_stripname '-Wl,' '' "$arg" + args=$func_stripname_result arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" - case $flag in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - flag="\"$flag\"" - ;; - esac - arg="$arg $wl$flag" - compiler_flags="$compiler_flags $wl$flag" - linker_flags="$linker_flags $flag" + func_quote_for_eval "$flag" + arg="$arg $wl$func_quote_for_eval_result" + compiler_flags="$compiler_flags $wl$func_quote_for_eval_result" + linker_flags="$linker_flags $func_quote_for_eval_result" done IFS="$save_ifs" - arg=`$echo "X$arg" | $Xsed -e "s/^ //"` + func_stripname ' ' '' "$arg" + arg=$func_stripname_result ;; -Xcompiler) @@ -1789,16 +4749,36 @@ EOF continue ;; + # -msg_* for osf cc + -msg_*) + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + ;; + + # -64, -mips[0-9] enable 64-bit mode on the SGI compiler + # -r[0-9][0-9]* specifies the processor on the SGI compiler + # -xarch=*, -xtarget=* enable 64-bit mode on the Sun compiler + # +DA*, +DD* enable 64-bit mode on the HP compiler + # -q* pass through compiler args for the IBM compiler + # -m*, -t[45]*, -txscale* pass through architecture-specific + # compiler args for GCC + # -F/path gives path to uninstalled frameworks, gcc on darwin + # -p, -pg, --coverage, -fprofile-* pass through profiling flag for GCC + # @file GCC response files + -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ + -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*) + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + func_append compile_command " $arg" + func_append finalize_command " $arg" + compiler_flags="$compiler_flags $arg" + continue + ;; + # Some other compiler flag. -* | +*) - # Unknown arguments in both finalize_command and compile_command need - # to be aesthetically quoted because they are evaled later. - arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` - case $arg in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - arg="\"$arg\"" - ;; - esac + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" ;; *.$objext) @@ -1810,32 +4790,23 @@ EOF # A libtool-controlled object. # Check to see that this really is a libtool object. - if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then + if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file - # If there is no directory component, then add one. - case $arg in - */* | *\\*) . $arg ;; - *) . ./$arg ;; - esac + func_source "$arg" - if test -z "$pic_object" || \ + if test -z "$pic_object" || test -z "$non_pic_object" || - test "$pic_object" = none && \ + test "$pic_object" = none && test "$non_pic_object" = none; then - $echo "$modename: cannot find name of object for \`$arg'" 1>&2 - exit $EXIT_FAILURE + func_fatal_error "cannot find name of object for \`$arg'" fi # Extract subdirectory from the argument. - xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` - if test "X$xdir" = "X$arg"; then - xdir= - else - xdir="$xdir/" - fi + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. @@ -1860,7 +4831,7 @@ EOF fi # A PIC object. - libobjs="$libobjs $pic_object" + func_append libobjs " $pic_object" arg="$pic_object" fi @@ -1870,7 +4841,7 @@ EOF non_pic_object="$xdir$non_pic_object" # A standard non-PIC object - non_pic_objects="$non_pic_objects $non_pic_object" + func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi @@ -1878,28 +4849,22 @@ EOF # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object="$pic_object" - non_pic_objects="$non_pic_objects $non_pic_object" + func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. - if test -z "$run"; then - $echo "$modename: \`$arg' is not a valid libtool object" 1>&2 - exit $EXIT_FAILURE - else - # Dry-run case. - + if $opt_dry_run; then # Extract subdirectory from the argument. - xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'` - if test "X$xdir" = "X$arg"; then - xdir= - else - xdir="$xdir/" - fi + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" - pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"` - non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"` - libobjs="$libobjs $pic_object" - non_pic_objects="$non_pic_objects $non_pic_object" + func_lo2o "$arg" + pic_object=$xdir$objdir/$func_lo2o_result + non_pic_object=$xdir$func_lo2o_result + func_append libobjs " $pic_object" + func_append non_pic_objects " $non_pic_object" + else + func_fatal_error "\`$arg' is not a valid libtool object" fi fi ;; @@ -1932,70 +4897,51 @@ EOF *) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. - arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` - case $arg in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - arg="\"$arg\"" - ;; - esac + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" ;; esac # arg # Now actually substitute the argument into the commands. if test -n "$arg"; then - compile_command="$compile_command $arg" - finalize_command="$finalize_command $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" fi done # argument parsing loop - if test -n "$prev"; then - $echo "$modename: the \`$prevarg' option requires an argument" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - fi + test -n "$prev" && \ + func_fatal_help "the \`$prevarg' option requires an argument" if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" - compile_command="$compile_command $arg" - finalize_command="$finalize_command $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" fi oldlibs= # calculate the name of the file, without its directory - outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'` + func_basename "$output" + outputname="$func_basename_result" libobjs_save="$libobjs" if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var - eval shlib_search_path=\`\$echo \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\` + eval shlib_search_path=\`\$ECHO \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" - output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'` - if test "X$output_objdir" = "X$output"; then - output_objdir="$objdir" - else - output_objdir="$output_objdir/$objdir" - fi + func_dirname "$output" "/" "" + output_objdir="$func_dirname_result$objdir" # Create the object directory. - if test ! -d "$output_objdir"; then - $show "$mkdir $output_objdir" - $run $mkdir $output_objdir - exit_status=$? - if test "$exit_status" -ne 0 && test ! -d "$output_objdir"; then - exit $exit_status - fi - fi + func_mkdir_p "$output_objdir" # Determine the type of output case $output in "") - $echo "$modename: you must specify an output file" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE + func_fatal_help "you must specify an output file" ;; *.$libext) linkmode=oldlib ;; *.lo | *.$objext) linkmode=obj ;; @@ -2003,22 +4949,13 @@ EOF *) linkmode=prog ;; # Anything else should be a program. esac - case $host in - *cygwin* | *mingw* | *pw32*) - # don't eliminate duplications in $postdeps and $predeps - duplicate_compiler_generated_deps=yes - ;; - *) - duplicate_compiler_generated_deps=$duplicate_deps - ;; - esac specialdeplibs= libs= # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do - if test "X$duplicate_deps" = "Xyes" ; then + if $opt_duplicate_deps ; then case "$libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac @@ -2033,7 +4970,7 @@ EOF # $postdeps and mark them as special (i.e., whose duplicates are # not to be eliminated). pre_post_deps= - if test "X$duplicate_compiler_generated_deps" = "Xyes" ; then + if $opt_duplicate_compiler_generated_deps; then for pre_post_dep in $predeps $postdeps; do case "$pre_post_deps " in *" $pre_post_dep "*) specialdeplibs="$specialdeplibs $pre_post_deps" ;; @@ -2049,15 +4986,16 @@ EOF newlib_search_path= need_relink=no # whether we're linking any uninstalled libtool libraries notinst_deplibs= # not-installed libtool libraries + notinst_path= # paths that contain not-installed libtool libraries + case $linkmode in lib) - passes="conv link" + passes="conv dlpreopen link" for file in $dlfiles $dlprefiles; do case $file in *.la) ;; *) - $echo "$modename: libraries can \`-dlopen' only libtool libraries: $file" 1>&2 - exit $EXIT_FAILURE + func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file" ;; esac done @@ -2073,7 +5011,20 @@ EOF *) passes="conv" ;; esac + for pass in $passes; do + # The preopen pass in lib mode reverses $deplibs; put it back here + # so that -L comes before libs that need it for instance... + if test "$linkmode,$pass" = "lib,link"; then + ## FIXME: Find the place where the list is rebuilt in the wrong + ## order, and fix it there properly + tmp_deplibs= + for deplib in $deplibs; do + tmp_deplibs="$deplib $tmp_deplibs" + done + deplibs="$tmp_deplibs" + fi + if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan"; then libs="$deplibs" @@ -2086,31 +5037,65 @@ EOF link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; esac fi + if test "$linkmode,$pass" = "lib,dlpreopen"; then + # Collect and forward deplibs of preopened libtool libs + for lib in $dlprefiles; do + # Ignore non-libtool-libs + dependency_libs= + case $lib in + *.la) func_source "$lib" ;; + esac + + # Collect preopened libtool deplibs, except any this library + # has declared as weak libs + for deplib in $dependency_libs; do + deplib_base=`$ECHO "X$deplib" | $Xsed -e "$basename"` + case " $weak_libs " in + *" $deplib_base "*) ;; + *) deplibs="$deplibs $deplib" ;; + esac + done + done + libs="$dlprefiles" + fi if test "$pass" = dlopen; then # Collect dlpreopened libraries save_deplibs="$deplibs" deplibs= fi + for deplib in $libs; do lib= found=no case $deplib in - -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe) + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads) if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else compiler_flags="$compiler_flags $deplib" + if test "$linkmode" = lib ; then + case "$new_inherited_linker_flags " in + *" $deplib "*) ;; + * ) new_inherited_linker_flags="$new_inherited_linker_flags $deplib" ;; + esac + fi fi continue ;; -l*) if test "$linkmode" != lib && test "$linkmode" != prog; then - $echo "$modename: warning: \`-l' is ignored for archives/objects" 1>&2 + func_warning "\`-l' is ignored for archives/objects" continue fi - name=`$echo "X$deplib" | $Xsed -e 's/^-l//'` - for searchdir in $newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path; do + func_stripname '-l' '' "$deplib" + name=$func_stripname_result + if test "$linkmode" = lib; then + searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" + else + searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" + fi + for searchdir in $searchdirs; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library lib="$searchdir/lib${name}${search_ext}" @@ -2140,21 +5125,17 @@ EOF if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $deplib "*) - if (${SED} -e '2q' $lib | - grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then + if func_lalib_p "$lib"; then library_names= old_library= - case $lib in - */* | *\\*) . $lib ;; - *) . ./$lib ;; - esac + func_source "$lib" for l in $old_library $library_names; do ll="$l" done if test "X$ll" = "X$old_library" ; then # only static version available found=no - ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'` - test "X$ladir" = "X$lib" && ladir="." + func_dirname "$lib" "" "." + ladir="$func_dirname_result" lib=$ladir/$old_library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" @@ -2166,19 +5147,35 @@ EOF continue fi fi - ;; + ;; *) ;; esac fi fi ;; # -l + *.ltframework) + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + if test "$linkmode" = lib ; then + case "$new_inherited_linker_flags " in + *" $deplib "*) ;; + * ) new_inherited_linker_flags="$new_inherited_linker_flags $deplib" ;; + esac + fi + fi + continue + ;; -L*) case $linkmode in lib) deplibs="$deplib $deplibs" test "$pass" = conv && continue newdependency_libs="$deplib $newdependency_libs" - newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'` + func_stripname '-L' '' "$deplib" + newlib_search_path="$newlib_search_path $func_stripname_result" ;; prog) if test "$pass" = conv; then @@ -2191,17 +5188,19 @@ EOF compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi - newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'` + func_stripname '-L' '' "$deplib" + newlib_search_path="$newlib_search_path $func_stripname_result" ;; *) - $echo "$modename: warning: \`-L' is ignored for archives/objects" 1>&2 + func_warning "\`-L' is ignored for archives/objects" ;; esac # linkmode continue ;; # -L -R*) if test "$pass" = link; then - dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'` + func_stripname '-R' '' "$deplib" + dir=$func_stripname_result # Make sure the xrpath contains only unique directories. case "$xrpath " in *" $dir "*) ;; @@ -2219,35 +5218,41 @@ EOF fi case $linkmode in lib) - valid_a_lib=no - case $deplibs_check_method in - match_pattern*) - set dummy $deplibs_check_method - match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"` - if eval $echo \"$deplib\" 2>/dev/null \ - | $SED 10q \ + # Linking convenience modules into shared libraries is allowed, + # but linking other static libraries is non-portable. + case " $dlpreconveniencelibs " in + *" $deplib "*) ;; + *) + valid_a_lib=no + case $deplibs_check_method in + match_pattern*) + set dummy $deplibs_check_method; shift + match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` + if eval "\$ECHO \"X$deplib\"" 2>/dev/null | $Xsed -e 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then + valid_a_lib=yes + fi + ;; + pass_all) valid_a_lib=yes - fi ;; - pass_all) - valid_a_lib=yes - ;; - esac - if test "$valid_a_lib" != yes; then - $echo - $echo "*** Warning: Trying to link with static lib archive $deplib." - $echo "*** I have the capability to make that library automatically link in when" - $echo "*** you link to this library. But I can only do this if you have a" - $echo "*** shared version of the library, which you do not appear to have" - $echo "*** because the file extensions .$libext of this argument makes me believe" - $echo "*** that it is just a static archive that I should not used here." - else - $echo - $echo "*** Warning: Linking the shared library $output against the" - $echo "*** static library $deplib is not portable!" - deplibs="$deplib $deplibs" - fi + esac + if test "$valid_a_lib" != yes; then + $ECHO + $ECHO "*** Warning: Trying to link with static lib archive $deplib." + $ECHO "*** I have the capability to make that library automatically link in when" + $ECHO "*** you link to this library. But I can only do this if you have a" + $ECHO "*** shared version of the library, which you do not appear to have" + $ECHO "*** because the file extensions .$libext of this argument makes me believe" + $ECHO "*** that it is just a static archive that I should not use here." + else + $ECHO + $ECHO "*** Warning: Linking the shared library $output against the" + $ECHO "*** static library $deplib is not portable!" + deplibs="$deplib $deplibs" + fi + ;; + esac continue ;; prog) @@ -2282,21 +5287,18 @@ EOF continue ;; esac # case $deplib + if test "$found" = yes || test -f "$lib"; then : else - $echo "$modename: cannot find the library \`$lib' or unhandled argument \`$deplib'" 1>&2 - exit $EXIT_FAILURE + func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'" fi # Check to see that this really is a libtool archive. - if (${SED} -e '2q' $lib | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : - else - $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 - exit $EXIT_FAILURE - fi + func_lalib_unsafe_p "$lib" \ + || func_fatal_error "\`$lib' is not a valid libtool archive" - ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'` - test "X$ladir" = "X$lib" && ladir="." + func_dirname "$lib" "" "." + ladir="$func_dirname_result" dlname= dlopen= @@ -2304,6 +5306,7 @@ EOF libdir= library_names= old_library= + inherited_linker_flags= # If the library was installed with an old release of libtool, # it will not redefine variables installed, or shouldnotlink installed=yes @@ -2312,11 +5315,19 @@ EOF # Read the .la file - case $lib in - */* | *\\*) . $lib ;; - *) . ./$lib ;; - esac + func_source "$lib" + # Convert "-framework foo" to "foo.ltframework" + if test -n "$inherited_linker_flags"; then + tmp_inherited_linker_flags=`$ECHO "X$inherited_linker_flags" | $Xsed -e 's/-framework \([^ $]*\)/\1.ltframework/g'` + for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do + case " $new_inherited_linker_flags " in + *" $tmp_inherited_linker_flag "*) ;; + *) new_inherited_linker_flags="$new_inherited_linker_flags $tmp_inherited_linker_flag";; + esac + done + fi + dependency_libs=`$ECHO "X $dependency_libs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan" || { test "$linkmode" != prog && test "$linkmode" != lib; }; then @@ -2329,26 +5340,24 @@ EOF deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then - $echo "$modename: cannot find name of link library for \`$lib'" 1>&2 - exit $EXIT_FAILURE + func_fatal_error "cannot find name of link library for \`$lib'" fi # It is a libtool convenience library, so add in its objects. convenience="$convenience $ladir/$objdir/$old_library" old_convenience="$old_convenience $ladir/$objdir/$old_library" - tmp_libs= - for deplib in $dependency_libs; do - deplibs="$deplib $deplibs" - if test "X$duplicate_deps" = "Xyes" ; then - case "$tmp_libs " in - *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; - esac - fi - tmp_libs="$tmp_libs $deplib" - done elif test "$linkmode" != prog && test "$linkmode" != lib; then - $echo "$modename: \`$lib' is not a convenience library" 1>&2 - exit $EXIT_FAILURE + func_fatal_error "\`$lib' is not a convenience library" fi + tmp_libs= + for deplib in $dependency_libs; do + deplibs="$deplib $deplibs" + if $opt_duplicate_deps ; then + case "$tmp_libs " in + *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; + esac + fi + tmp_libs="$tmp_libs $deplib" + done continue fi # $pass = conv @@ -2359,15 +5368,13 @@ EOF linklib="$l" done if test -z "$linklib"; then - $echo "$modename: cannot find name of link library for \`$lib'" 1>&2 - exit $EXIT_FAILURE + func_fatal_error "cannot find name of link library for \`$lib'" fi # This library was specified with -dlopen. if test "$pass" = dlopen; then if test -z "$libdir"; then - $echo "$modename: cannot -dlopen a convenience library: \`$lib'" 1>&2 - exit $EXIT_FAILURE + func_fatal_error "cannot -dlopen a convenience library: \`$lib'" fi if test -z "$dlname" || test "$dlopen_support" != yes || @@ -2389,18 +5396,19 @@ EOF *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then - $echo "$modename: warning: cannot determine absolute directory name of \`$ladir'" 1>&2 - $echo "$modename: passing it literally to the linker, although it might fail" 1>&2 + func_warning "cannot determine absolute directory name of \`$ladir'" + func_warning "passing it literally to the linker, although it might fail" abs_ladir="$ladir" fi ;; esac - laname=`$echo "X$lib" | $Xsed -e 's%^.*/%%'` + func_basename "$lib" + laname="$func_basename_result" # Find the relevant object directory and library name. if test "X$installed" = Xyes; then if test ! -f "$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then - $echo "$modename: warning: library \`$lib' was moved." 1>&2 + func_warning "library \`$lib' was moved." dir="$ladir" absdir="$abs_ladir" libdir="$abs_ladir" @@ -2422,18 +5430,22 @@ EOF notinst_path="$notinst_path $abs_ladir" fi fi # $installed = yes - name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'` + func_stripname 'lib' '.la' "$laname" + name=$func_stripname_result # This library was specified with -dlpreopen. if test "$pass" = dlpreopen; then - if test -z "$libdir"; then - $echo "$modename: cannot -dlpreopen a convenience library: \`$lib'" 1>&2 - exit $EXIT_FAILURE + if test -z "$libdir" && test "$linkmode" = prog; then + func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'" fi # Prefer using a static library (so that no silly _DYNAMIC symbols # are required to link). if test -n "$old_library"; then newdlprefiles="$newdlprefiles $dir/$old_library" + # Keep a list of preopened convenience libraries to check + # that they are being used correctly in the link pass. + test -z "$libdir" && \ + dlpreconveniencelibs="$dlpreconveniencelibs $dir/$old_library" # Otherwise, use the dlname, so that lt_dlopen finds it. elif test -n "$dlname"; then newdlprefiles="$newdlprefiles $dir/$dlname" @@ -2469,7 +5481,9 @@ EOF tmp_libs= for deplib in $dependency_libs; do case $deplib in - -L*) newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`;; ### testsuite: skip nested quoting test + -L*) func_stripname '-L' '' "$deplib" + newlib_search_path="$newlib_search_path $func_stripname_result" + ;; esac # Need to link against all dependency_libs? if test "$linkalldeplibs" = yes; then @@ -2479,7 +5493,7 @@ EOF # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi - if test "X$duplicate_deps" = "Xyes" ; then + if $opt_duplicate_deps ; then case "$tmp_libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac @@ -2491,14 +5505,15 @@ EOF if test "$linkmode,$pass" = "prog,link"; then if test -n "$library_names" && - { test "$prefer_static_libs" = no || test -z "$old_library"; }; then + { { test "$prefer_static_libs" = no || + test "$prefer_static_libs,$installed" = "built,yes"; } || + test -z "$old_library"; }; then # We need to hardcode the library path if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then # Make sure the rpath contains only unique directories. - case "$temp_rpath " in - *" $dir "*) ;; - *" $absdir "*) ;; - *) temp_rpath="$temp_rpath $absdir" ;; + case "$temp_rpath:" in + *"$absdir:"*) ;; + *) temp_rpath="$temp_rpath$absdir:" ;; esac fi @@ -2536,27 +5551,43 @@ EOF link_static=no # Whether the deplib will be linked statically use_static_libs=$prefer_static_libs - if test "$use_static_libs" = built && test "$installed" = yes ; then + if test "$use_static_libs" = built && test "$installed" = yes; then use_static_libs=no fi if test -n "$library_names" && { test "$use_static_libs" = no || test -z "$old_library"; }; then - if test "$installed" = no; then - notinst_deplibs="$notinst_deplibs $lib" - need_relink=yes - fi + case $host in + *cygwin* | *mingw* | *cegcc*) + # No point in relinking DLLs because paths are not encoded + notinst_deplibs="$notinst_deplibs $lib" + need_relink=no + ;; + *) + if test "$installed" = no; then + notinst_deplibs="$notinst_deplibs $lib" + need_relink=yes + fi + ;; + esac # This is a shared library - # Warn about portability, can't link against -module's on - # some systems (darwin) - if test "$shouldnotlink" = yes && test "$pass" = link ; then - $echo - if test "$linkmode" = prog; then - $echo "*** Warning: Linking the executable $output against the loadable module" - else - $echo "*** Warning: Linking the shared library $output against the loadable module" + # Warn about portability, can't link against -module's on some + # systems (darwin). Don't bleat about dlopened modules though! + dlopenmodule="" + for dlpremoduletest in $dlprefiles; do + if test "X$dlpremoduletest" = "X$lib"; then + dlopenmodule="$dlpremoduletest" + break fi - $echo "*** $linklib is not portable!" + done + if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then + $ECHO + if test "$linkmode" = prog; then + $ECHO "*** Warning: Linking the executable $output against the loadable module" + else + $ECHO "*** Warning: Linking the shared library $output against the loadable module" + fi + $ECHO "*** $linklib is not portable!" fi if test "$linkmode" = lib && test "$hardcode_into_libs" = yes; then @@ -2586,17 +5617,19 @@ EOF if test -n "$old_archive_from_expsyms_cmds"; then # figure out the soname set dummy $library_names - realname="$2" - shift; shift - libname=`eval \\$echo \"$libname_spec\"` + shift + realname="$1" + shift + libname=`eval "\\$ECHO \"$libname_spec\""` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then soname="$dlname" elif test -n "$soname_spec"; then # bleh windows case $host in - *cygwin* | mingw*) - major=`expr $current - $age` + *cygwin* | mingw* | *cegcc*) + func_arith $current - $age + major=$func_arith_result versuffix="-$major" ;; esac @@ -2607,36 +5640,22 @@ EOF # Make a new name for the extract_expsyms_cmds to use soroot="$soname" - soname=`$echo $soroot | ${SED} -e 's/^.*\///'` - newlib="libimp-`$echo $soname | ${SED} 's/^lib//;s/\.dll$//'`.a" + func_basename "$soroot" + soname="$func_basename_result" + func_stripname 'lib' '.dll' "$soname" + newlib=libimp-$func_stripname_result.a # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else - $show "extracting exported symbol list from \`$soname'" - save_ifs="$IFS"; IFS='~' - cmds=$extract_expsyms_cmds - for cmd in $cmds; do - IFS="$save_ifs" - eval cmd=\"$cmd\" - $show "$cmd" - $run eval "$cmd" || exit $? - done - IFS="$save_ifs" + func_verbose "extracting exported symbol list from \`$soname'" + func_execute_cmds "$extract_expsyms_cmds" 'exit $?' fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else - $show "generating import library for \`$soname'" - save_ifs="$IFS"; IFS='~' - cmds=$old_archive_from_expsyms_cmds - for cmd in $cmds; do - IFS="$save_ifs" - eval cmd=\"$cmd\" - $show "$cmd" - $run eval "$cmd" || exit $? - done - IFS="$save_ifs" + func_verbose "generating import library for \`$soname'" + func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' fi # make sure the library variables are pointing to the new library dir=$output_objdir @@ -2658,17 +5677,21 @@ EOF *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ *-*-unixware7*) add_dir="-L$dir" ;; *-*-darwin* ) - # if the lib is a module then we can not link against - # it, someone is ignoring the new warnings I added + # if the lib is a (non-dlopened) module then we can not + # link against it, someone is ignoring the earlier warnings if /usr/bin/file -L $add 2> /dev/null | - $EGREP ": [^:]* bundle" >/dev/null ; then - $echo "** Warning, lib $linklib is a module, not a shared library" - if test -z "$old_library" ; then - $echo - $echo "** And there doesn't seem to be a static archive available" - $echo "** The link will probably fail, sorry" - else - add="$dir/$old_library" + $GREP ": [^:]* bundle" >/dev/null ; then + if test "X$dlopenmodule" != "X$lib"; then + $ECHO "*** Warning: lib $linklib is a module, not a shared library" + if test -z "$old_library" ; then + $ECHO + $ECHO "*** And there doesn't seem to be a static archive available" + $ECHO "*** The link will probably fail, sorry" + else + add="$dir/$old_library" + fi + elif test -n "$old_library"; then + add="$dir/$old_library" fi fi esac @@ -2686,7 +5709,8 @@ EOF fi ;; relink) - if test "$hardcode_direct" = yes; then + if test "$hardcode_direct" = yes && + test "$hardcode_direct_absolute" = no; then add="$dir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$dir" @@ -2710,8 +5734,7 @@ EOF esac if test "$lib_linked" != yes; then - $echo "$modename: configuration error: unsupported hardcode properties" - exit $EXIT_FAILURE + func_fatal_configuration "unsupported hardcode properties" fi if test -n "$add_shlibpath"; then @@ -2726,8 +5749,8 @@ EOF else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" - if test "$hardcode_direct" != yes && \ - test "$hardcode_minus_L" != yes && \ + if test "$hardcode_direct" != yes && + test "$hardcode_minus_L" != yes && test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; @@ -2742,7 +5765,8 @@ EOF add_dir= add= # Finalize command for both is simple: just hardcode it. - if test "$hardcode_direct" = yes; then + if test "$hardcode_direct" = yes && + test "$hardcode_direct_absolute" = no; then add="$libdir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$libdir" @@ -2756,9 +5780,9 @@ EOF elif test "$hardcode_automatic" = yes; then if test -n "$inst_prefix_dir" && test -f "$inst_prefix_dir$libdir/$linklib" ; then - add="$inst_prefix_dir$libdir/$linklib" + add="$inst_prefix_dir$libdir/$linklib" else - add="$libdir/$linklib" + add="$libdir/$linklib" fi else # We cannot seem to hardcode it, guess we'll fake it. @@ -2802,21 +5826,21 @@ EOF # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. - $echo - $echo "*** Warning: This system can not link to static lib archive $lib." - $echo "*** I have the capability to make that library automatically link in when" - $echo "*** you link to this library. But I can only do this if you have a" - $echo "*** shared version of the library, which you do not appear to have." + $ECHO + $ECHO "*** Warning: This system can not link to static lib archive $lib." + $ECHO "*** I have the capability to make that library automatically link in when" + $ECHO "*** you link to this library. But I can only do this if you have a" + $ECHO "*** shared version of the library, which you do not appear to have." if test "$module" = yes; then - $echo "*** But as you try to build a module library, libtool will still create " - $echo "*** a static module, that should work as long as the dlopening application" - $echo "*** is linked with the -dlopen flag to resolve symbols at runtime." + $ECHO "*** But as you try to build a module library, libtool will still create " + $ECHO "*** a static module, that should work as long as the dlopening application" + $ECHO "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then - $echo - $echo "*** However, this would only work if libtool was able to extract symbol" - $echo "*** lists from a program, using \`nm' or equivalent, but libtool could" - $echo "*** not find such a program. So, this module is probably useless." - $echo "*** \`nm' from GNU binutils and a full rebuild may help." + $ECHO + $ECHO "*** However, this would only work if libtool was able to extract symbol" + $ECHO "*** lists from a program, using \`nm' or equivalent, but libtool could" + $ECHO "*** not find such a program. So, this module is probably useless." + $ECHO "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then build_libtool_libs=module @@ -2840,7 +5864,8 @@ EOF temp_deplibs= for libdir in $dependency_libs; do case $libdir in - -R*) temp_xrpath=`$echo "X$libdir" | $Xsed -e 's/^-R//'` + -R*) func_stripname '-R' '' "$libdir" + temp_xrpath=$func_stripname_result case " $xrpath " in *" $temp_xrpath "*) ;; *) xrpath="$xrpath $temp_xrpath";; @@ -2858,7 +5883,7 @@ EOF tmp_libs= for deplib in $dependency_libs; do newdependency_libs="$deplib $newdependency_libs" - if test "X$duplicate_deps" = "Xyes" ; then + if $opt_duplicate_deps ; then case "$tmp_libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac @@ -2872,88 +5897,71 @@ EOF case $deplib in -L*) path="$deplib" ;; *.la) - dir=`$echo "X$deplib" | $Xsed -e 's%/[^/]*$%%'` - test "X$dir" = "X$deplib" && dir="." + func_dirname "$deplib" "" "." + dir="$func_dirname_result" # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then - $echo "$modename: warning: cannot determine absolute directory name of \`$dir'" 1>&2 + func_warning "cannot determine absolute directory name of \`$dir'" absdir="$dir" fi ;; esac - if grep "^installed=no" $deplib > /dev/null; then - path="$absdir/$objdir" - else - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` - if test -z "$libdir"; then - $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2 - exit $EXIT_FAILURE - fi - if test "$absdir" != "$libdir"; then - $echo "$modename: warning: \`$deplib' seems to be moved" 1>&2 - fi - path="$absdir" - fi - depdepl= + if $GREP "^installed=no" $deplib > /dev/null; then case $host in *-*-darwin*) - # we do not want to link against static libs, - # but need to link against shared + depdepl= eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` if test -n "$deplibrary_names" ; then for tmp in $deplibrary_names ; do depdepl=$tmp done - if test -f "$path/$depdepl" ; then - depdepl="$path/$depdepl" + if test -f "$absdir/$objdir/$depdepl" ; then + depdepl="$absdir/$objdir/$depdepl" + darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + if test -z "$darwin_install_name"; then + darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + fi + compiler_flags="$compiler_flags ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}" + linker_flags="$linker_flags -dylib_file ${darwin_install_name}:${depdepl}" + path= fi - # do not add paths which are already there - case " $newlib_search_path " in - *" $path "*) ;; - *) newlib_search_path="$newlib_search_path $path";; - esac fi - path="" ;; *) - path="-L$path" + path="-L$absdir/$objdir" ;; esac + else + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` + test -z "$libdir" && \ + func_fatal_error "\`$deplib' is not a valid libtool archive" + test "$absdir" != "$libdir" && \ + func_warning "\`$deplib' seems to be moved" + + path="-L$absdir" + fi ;; - -l*) - case $host in - *-*-darwin*) - # Again, we only want to link against shared libraries - eval tmp_libs=`$echo "X$deplib" | $Xsed -e "s,^\-l,,"` - for tmp in $newlib_search_path ; do - if test -f "$tmp/lib$tmp_libs.dylib" ; then - eval depdepl="$tmp/lib$tmp_libs.dylib" - break - fi - done - path="" - ;; - *) continue ;; - esac - ;; - *) continue ;; esac case " $deplibs " in *" $path "*) ;; *) deplibs="$path $deplibs" ;; esac - case " $deplibs " in - *" $depdepl "*) ;; - *) deplibs="$depdepl $deplibs" ;; - esac done fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs + if test "$pass" = link; then + if test "$linkmode" = "prog"; then + compile_deplibs="$new_inherited_linker_flags $compile_deplibs" + finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" + else + compiler_flags="$compiler_flags "`$ECHO "X $new_inherited_linker_flags" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` + fi + fi dependency_libs="$newdependency_libs" if test "$pass" = dlpreopen; then # Link the dlpreopened libraries before other libraries @@ -3052,38 +6060,36 @@ EOF done # for pass if test "$linkmode" = prog; then dlfiles="$newdlfiles" + fi + if test "$linkmode" = prog || test "$linkmode" = lib; then dlprefiles="$newdlprefiles" fi case $linkmode in oldlib) - if test -n "$deplibs"; then - $echo "$modename: warning: \`-l' and \`-L' are ignored for archives" 1>&2 - fi - if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then - $echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2 + func_warning "\`-dlopen' is ignored for archives" fi - if test -n "$rpath"; then - $echo "$modename: warning: \`-rpath' is ignored for archives" 1>&2 - fi + case " $deplibs" in + *\ -l* | *\ -L*) + func_warning "\`-l' and \`-L' are ignored for archives" ;; + esac - if test -n "$xrpath"; then - $echo "$modename: warning: \`-R' is ignored for archives" 1>&2 - fi + test -n "$rpath" && \ + func_warning "\`-rpath' is ignored for archives" - if test -n "$vinfo"; then - $echo "$modename: warning: \`-version-info/-version-number' is ignored for archives" 1>&2 - fi + test -n "$xrpath" && \ + func_warning "\`-R' is ignored for archives" - if test -n "$release"; then - $echo "$modename: warning: \`-release' is ignored for archives" 1>&2 - fi + test -n "$vinfo" && \ + func_warning "\`-version-info/-version-number' is ignored for archives" - if test -n "$export_symbols" || test -n "$export_symbols_regex"; then - $echo "$modename: warning: \`-export-symbols' is ignored for archives" 1>&2 - fi + test -n "$release" && \ + func_warning "\`-release' is ignored for archives" + + test -n "$export_symbols$export_symbols_regex" && \ + func_warning "\`-export-symbols' is ignored for archives" # Now set the variables for building old libraries. build_libtool_libs=no @@ -3095,48 +6101,48 @@ EOF # Make sure we only generate libraries of the form `libNAME.la'. case $outputname in lib*) - name=`$echo "X$outputname" | $Xsed -e 's/\.la$//' -e 's/^lib//'` + func_stripname 'lib' '.la' "$outputname" + name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" ;; *) - if test "$module" = no; then - $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - fi + test "$module" = no && \ + func_fatal_help "libtool library \`$output' must begin with \`lib'" + if test "$need_lib_prefix" != no; then # Add the "lib" prefix for modules if required - name=`$echo "X$outputname" | $Xsed -e 's/\.la$//'` + func_stripname '' '.la' "$outputname" + name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" else - libname=`$echo "X$outputname" | $Xsed -e 's/\.la$//'` + func_stripname '' '.la' "$outputname" + libname=$func_stripname_result fi ;; esac if test -n "$objs"; then if test "$deplibs_check_method" != pass_all; then - $echo "$modename: cannot build libtool library \`$output' from non-libtool objects on this host:$objs" 2>&1 - exit $EXIT_FAILURE + func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs" else - $echo - $echo "*** Warning: Linking the shared library $output against the non-libtool" - $echo "*** objects $objs is not portable!" + $ECHO + $ECHO "*** Warning: Linking the shared library $output against the non-libtool" + $ECHO "*** objects $objs is not portable!" libobjs="$libobjs $objs" fi fi - if test "$dlself" != no; then - $echo "$modename: warning: \`-dlopen self' is ignored for libtool libraries" 1>&2 - fi + test "$dlself" != no && \ + func_warning "\`-dlopen self' is ignored for libtool libraries" set dummy $rpath - if test "$#" -gt 2; then - $echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2 - fi - install_libdir="$2" + shift + test "$#" -gt 1 && \ + func_warning "ignoring multiple \`-rpath's for a libtool library" + + install_libdir="$1" oldlibs= if test -z "$rpath"; then @@ -3150,25 +6156,21 @@ EOF build_old_libs=yes fi - if test -n "$vinfo"; then - $echo "$modename: warning: \`-version-info/-version-number' is ignored for convenience libraries" 1>&2 - fi + test -n "$vinfo" && \ + func_warning "\`-version-info/-version-number' is ignored for convenience libraries" - if test -n "$release"; then - $echo "$modename: warning: \`-release' is ignored for convenience libraries" 1>&2 - fi + test -n "$release" && \ + func_warning "\`-release' is ignored for convenience libraries" else # Parse the version information argument. save_ifs="$IFS"; IFS=':' set dummy $vinfo 0 0 0 + shift IFS="$save_ifs" - if test -n "$8"; then - $echo "$modename: too many parameters to \`-version-info'" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - fi + test -n "$7" && \ + func_fatal_help "too many parameters to \`-version-info'" # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts @@ -3176,9 +6178,9 @@ EOF case $vinfo_number in yes) - number_major="$2" - number_minor="$3" - number_revision="$4" + number_major="$1" + number_minor="$2" + number_revision="$3" # # There are really only two kinds -- those that # use the current revision as the major version @@ -3187,8 +6189,9 @@ EOF # which has an extra 1 added just for fun # case $version_type in - darwin|linux|osf|windows) - current=`expr $number_major + $number_minor` + darwin|linux|osf|windows|none) + func_arith $number_major + $number_minor + current=$func_arith_result age="$number_minor" revision="$number_revision" ;; @@ -3198,16 +6201,18 @@ EOF age="0" ;; irix|nonstopux) - current=`expr $number_major + $number_minor - 1` + func_arith $number_major + $number_minor + current=$func_arith_result age="$number_minor" revision="$number_minor" + lt_irix_increment=no ;; esac ;; no) - current="$2" - revision="$3" - age="$4" + current="$1" + revision="$2" + age="$3" ;; esac @@ -3215,34 +6220,30 @@ EOF case $current in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) - $echo "$modename: CURRENT \`$current' must be a nonnegative integer" 1>&2 - $echo "$modename: \`$vinfo' is not valid version information" 1>&2 - exit $EXIT_FAILURE + func_error "CURRENT \`$current' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" ;; esac case $revision in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) - $echo "$modename: REVISION \`$revision' must be a nonnegative integer" 1>&2 - $echo "$modename: \`$vinfo' is not valid version information" 1>&2 - exit $EXIT_FAILURE + func_error "REVISION \`$revision' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" ;; esac case $age in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) - $echo "$modename: AGE \`$age' must be a nonnegative integer" 1>&2 - $echo "$modename: \`$vinfo' is not valid version information" 1>&2 - exit $EXIT_FAILURE + func_error "AGE \`$age' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" ;; esac if test "$age" -gt "$current"; then - $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2 - $echo "$modename: \`$vinfo' is not valid version information" 1>&2 - exit $EXIT_FAILURE + func_error "AGE \`$age' is greater than the current interface number \`$current'" + func_fatal_error "\`$vinfo' is not valid version information" fi # Calculate the version variables. @@ -3255,11 +6256,14 @@ EOF darwin) # Like Linux, but with the current version available in # verstring for coding it into the library header - major=.`expr $current - $age` + func_arith $current - $age + major=.$func_arith_result versuffix="$major.$age.$revision" # Darwin ld doesn't like 0 for these options... - minor_current=`expr $current + 1` - verstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" + func_arith $current + 1 + minor_current=$func_arith_result + xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" + verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" ;; freebsd-aout) @@ -3269,11 +6273,16 @@ EOF freebsd-elf) major=".$current" - versuffix=".$current"; + versuffix=".$current" ;; irix | nonstopux) - major=`expr $current - $age + 1` + if test "X$lt_irix_increment" = "Xno"; then + func_arith $current - $age + else + func_arith $current - $age + 1 + fi + major=$func_arith_result case $version_type in nonstopux) verstring_prefix=nonstopux ;; @@ -3284,8 +6293,10 @@ EOF # Add in all the interfaces that we are compatible with. loop=$revision while test "$loop" -ne 0; do - iface=`expr $revision - $loop` - loop=`expr $loop - 1` + func_arith $revision - $loop + iface=$func_arith_result + func_arith $loop - 1 + loop=$func_arith_result verstring="$verstring_prefix$major.$iface:$verstring" done @@ -3295,20 +6306,24 @@ EOF ;; linux) - major=.`expr $current - $age` + func_arith $current - $age + major=.$func_arith_result versuffix="$major.$age.$revision" ;; osf) - major=.`expr $current - $age` + func_arith $current - $age + major=.$func_arith_result versuffix=".$current.$age.$revision" verstring="$current.$age.$revision" # Add in all the interfaces that we are compatible with. loop=$age while test "$loop" -ne 0; do - iface=`expr $current - $loop` - loop=`expr $loop - 1` + func_arith $current - $loop + iface=$func_arith_result + func_arith $loop - 1 + loop=$func_arith_result verstring="$verstring:${iface}.0" done @@ -3316,6 +6331,11 @@ EOF verstring="$verstring:${current}.0" ;; + qnx) + major=".$current" + versuffix=".$current" + ;; + sunos) major=".$current" versuffix=".$current.$revision" @@ -3324,14 +6344,13 @@ EOF windows) # Use '-' rather than '.', since we only want one # extension on DOS 8.3 filesystems. - major=`expr $current - $age` + func_arith $current - $age + major=$func_arith_result versuffix="-$major" ;; *) - $echo "$modename: unknown library version type \`$version_type'" 1>&2 - $echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 - exit $EXIT_FAILURE + func_fatal_configuration "unknown library version type \`$version_type'" ;; esac @@ -3365,7 +6384,7 @@ EOF # Check to see if the archive will have undefined symbols. if test "$allow_undefined" = yes; then if test "$allow_undefined_flag" = unsupported; then - $echo "$modename: warning: undefined symbols not allowed in $host shared libraries" 1>&2 + func_warning "undefined symbols not allowed in $host shared libraries" build_libtool_libs=no build_old_libs=yes fi @@ -3373,21 +6392,26 @@ EOF # Don't allow undefined symbols. allow_undefined_flag="$no_undefined_flag" fi + fi + func_generate_dlsyms "$libname" "$libname" "yes" + libobjs="$libobjs $symfileobj" + test "X$libobjs" = "X " && libobjs= + if test "$mode" != relink; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= - tempremovelist=`$echo "$output_objdir/*"` + tempremovelist=`$ECHO "$output_objdir/*"` for p in $tempremovelist; do case $p in - *.$objext) + *.$objext | *.gcno) ;; $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) if test "X$precious_files_regex" != "X"; then - if echo $p | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 - then + if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 + then continue fi fi @@ -3396,10 +6420,8 @@ EOF *) ;; esac done - if test -n "$removelist"; then - $show "${rm}r $removelist" - $run ${rm}r $removelist - fi + test -n "$removelist" && \ + func_show_eval "${RM}r \$removelist" fi # Now set the variables for building old libraries. @@ -3407,15 +6429,15 @@ EOF oldlibs="$oldlibs $output_objdir/$libname.$libext" # Transform .lo files to .o files. - oldobjs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP` + oldobjs="$objs "`$ECHO "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP` fi # Eliminate all temporary directories. - for path in $notinst_path; do - lib_search_path=`$echo "$lib_search_path " | ${SED} -e "s% $path % %g"` - deplibs=`$echo "$deplibs " | ${SED} -e "s% -L$path % %g"` - dependency_libs=`$echo "$dependency_libs " | ${SED} -e "s% -L$path % %g"` - done + #for path in $notinst_path; do + # lib_search_path=`$ECHO "X$lib_search_path " | $Xsed -e "s% $path % %g"` + # deplibs=`$ECHO "X$deplibs " | $Xsed -e "s% -L$path % %g"` + # dependency_libs=`$ECHO "X$dependency_libs " | $Xsed -e "s% -L$path % %g"` + #done if test -n "$xrpath"; then # If the user specified any rpath flags, then add them. @@ -3455,12 +6477,12 @@ EOF if test "$build_libtool_libs" = yes; then if test -n "$rpath"; then case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos*) + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc*) # these systems don't actually have a c library (as such)! ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C library is in the System framework - deplibs="$deplibs -framework System" + deplibs="$deplibs System.ltframework" ;; *-*-netbsd*) # Don't link with libc until the a.out ld.so is fixed. @@ -3474,7 +6496,7 @@ EOF *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work ;; - *) + *) # Add libc to deplibs on all other systems if necessary. if test "$build_libtool_need_lc" = "yes"; then deplibs="$deplibs -lc" @@ -3511,18 +6533,18 @@ EOF # limits. Maybe even breaks it. We compile a program, linking it # against the deplibs as a proxy for the library. Then we can check # whether they linked in statically or dynamically with ldd. - $rm conftest.c + $opt_dry_run || $RM conftest.c cat > conftest.c </dev/null` for potent_lib in $potential_libs; do # Follow soft links. - if ls -lLd "$potent_lib" 2>/dev/null \ - | grep " -> " >/dev/null; then + if ls -lLd "$potent_lib" 2>/dev/null | + $GREP " -> " >/dev/null; then continue fi # The statement above tries to avoid entering an @@ -3640,12 +6666,12 @@ EOF potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` case $potliblink in [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; - *) potlib=`$echo "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";; + *) potlib=`$ECHO "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";; esac done - if eval $file_magic_cmd \"\$potlib\" 2>/dev/null \ - | ${SED} 10q \ - | $EGREP "$file_magic_regex" > /dev/null; then + if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | + $SED -e 10q | + $EGREP "$file_magic_regex" > /dev/null; then newdeplibs="$newdeplibs $a_deplib" a_deplib="" break 2 @@ -3655,32 +6681,35 @@ EOF fi if test -n "$a_deplib" ; then droppeddeps=yes - $echo - $echo "*** Warning: linker path does not have real file for library $a_deplib." - $echo "*** I have the capability to make that library automatically link in when" - $echo "*** you link to this library. But I can only do this if you have a" - $echo "*** shared version of the library, which you do not appear to have" - $echo "*** because I did check the linker path looking for a file starting" + $ECHO + $ECHO "*** Warning: linker path does not have real file for library $a_deplib." + $ECHO "*** I have the capability to make that library automatically link in when" + $ECHO "*** you link to this library. But I can only do this if you have a" + $ECHO "*** shared version of the library, which you do not appear to have" + $ECHO "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then - $echo "*** with $libname but no candidates were found. (...for file magic test)" + $ECHO "*** with $libname but no candidates were found. (...for file magic test)" else - $echo "*** with $libname and none of the candidates passed a file format test" - $echo "*** using a file magic. Last file checked: $potlib" + $ECHO "*** with $libname and none of the candidates passed a file format test" + $ECHO "*** using a file magic. Last file checked: $potlib" fi fi - else + ;; + *) # Add a -L argument. newdeplibs="$newdeplibs $a_deplib" - fi + ;; + esac done # Gone through all deplibs. ;; match_pattern*) - set dummy $deplibs_check_method - match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"` + set dummy $deplibs_check_method; shift + match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` for a_deplib in $deplibs; do - name=`expr $a_deplib : '-l\(.*\)'` - # If $name is empty we are operating on a -L argument. - if test -n "$name" && test "$name" != "0"; then + case $a_deplib in + -l*) + func_stripname -l '' "$a_deplib" + name=$func_stripname_result if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $a_deplib "*) @@ -3690,14 +6719,13 @@ EOF esac fi if test -n "$a_deplib" ; then - libname=`eval \\$echo \"$libname_spec\"` + libname=`eval "\\$ECHO \"$libname_spec\""` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do potlib="$potent_lib" # see symlink-check above in file_magic test - if eval $echo \"$potent_lib\" 2>/dev/null \ - | ${SED} 10q \ - | $EGREP "$match_pattern_regex" > /dev/null; then + if eval "\$ECHO \"X$potent_lib\"" 2>/dev/null | $Xsed -e 10q | \ + $EGREP "$match_pattern_regex" > /dev/null; then newdeplibs="$newdeplibs $a_deplib" a_deplib="" break 2 @@ -3707,44 +6735,46 @@ EOF fi if test -n "$a_deplib" ; then droppeddeps=yes - $echo - $echo "*** Warning: linker path does not have real file for library $a_deplib." - $echo "*** I have the capability to make that library automatically link in when" - $echo "*** you link to this library. But I can only do this if you have a" - $echo "*** shared version of the library, which you do not appear to have" - $echo "*** because I did check the linker path looking for a file starting" + $ECHO + $ECHO "*** Warning: linker path does not have real file for library $a_deplib." + $ECHO "*** I have the capability to make that library automatically link in when" + $ECHO "*** you link to this library. But I can only do this if you have a" + $ECHO "*** shared version of the library, which you do not appear to have" + $ECHO "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then - $echo "*** with $libname but no candidates were found. (...for regex pattern test)" + $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" else - $echo "*** with $libname and none of the candidates passed a file format test" - $echo "*** using a regex pattern. Last file checked: $potlib" + $ECHO "*** with $libname and none of the candidates passed a file format test" + $ECHO "*** using a regex pattern. Last file checked: $potlib" fi fi - else + ;; + *) # Add a -L argument. newdeplibs="$newdeplibs $a_deplib" - fi + ;; + esac done # Gone through all deplibs. ;; none | unknown | *) newdeplibs="" - tmp_deplibs=`$echo "X $deplibs" | $Xsed -e 's/ -lc$//' \ - -e 's/ -[LR][^ ]*//g'` + tmp_deplibs=`$ECHO "X $deplibs" | $Xsed \ + -e 's/ -lc$//' -e 's/ -[LR][^ ]*//g'` if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then for i in $predeps $postdeps ; do # can't use Xsed below, because $i might contain '/' - tmp_deplibs=`$echo "X $tmp_deplibs" | ${SED} -e "1s,^X,," -e "s,$i,,"` + tmp_deplibs=`$ECHO "X $tmp_deplibs" | $Xsed -e "s,$i,,"` done fi - if $echo "X $tmp_deplibs" | $Xsed -e 's/[ ]//g' \ - | grep . >/dev/null; then - $echo + if $ECHO "X $tmp_deplibs" | $Xsed -e 's/[ ]//g' | + $GREP . >/dev/null; then + $ECHO if test "X$deplibs_check_method" = "Xnone"; then - $echo "*** Warning: inter-library dependencies are not supported in this platform." + $ECHO "*** Warning: inter-library dependencies are not supported in this platform." else - $echo "*** Warning: inter-library dependencies are not known to be supported." + $ECHO "*** Warning: inter-library dependencies are not known to be supported." fi - $echo "*** All declared inter-library dependencies are being dropped." + $ECHO "*** All declared inter-library dependencies are being dropped." droppeddeps=yes fi ;; @@ -3757,24 +6787,24 @@ EOF case $host in *-*-rhapsody* | *-*-darwin1.[012]) - # On Rhapsody replace the C library is the System framework - newdeplibs=`$echo "X $newdeplibs" | $Xsed -e 's/ -lc / -framework System /'` + # On Rhapsody replace the C library with the System framework + newdeplibs=`$ECHO "X $newdeplibs" | $Xsed -e 's/ -lc / System.ltframework /'` ;; esac if test "$droppeddeps" = yes; then if test "$module" = yes; then - $echo - $echo "*** Warning: libtool could not satisfy all declared inter-library" - $echo "*** dependencies of module $libname. Therefore, libtool will create" - $echo "*** a static module, that should work as long as the dlopening" - $echo "*** application is linked with the -dlopen flag." + $ECHO + $ECHO "*** Warning: libtool could not satisfy all declared inter-library" + $ECHO "*** dependencies of module $libname. Therefore, libtool will create" + $ECHO "*** a static module, that should work as long as the dlopening" + $ECHO "*** application is linked with the -dlopen flag." if test -z "$global_symbol_pipe"; then - $echo - $echo "*** However, this would only work if libtool was able to extract symbol" - $echo "*** lists from a program, using \`nm' or equivalent, but libtool could" - $echo "*** not find such a program. So, this module is probably useless." - $echo "*** \`nm' from GNU binutils and a full rebuild may help." + $ECHO + $ECHO "*** However, this would only work if libtool was able to extract symbol" + $ECHO "*** lists from a program, using \`nm' or equivalent, but libtool could" + $ECHO "*** not find such a program. So, this module is probably useless." + $ECHO "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" @@ -3784,16 +6814,16 @@ EOF build_libtool_libs=no fi else - $echo "*** The inter-library dependencies that have been dropped here will be" - $echo "*** automatically added whenever a program is linked with this library" - $echo "*** or is declared to -dlopen it." + $ECHO "*** The inter-library dependencies that have been dropped here will be" + $ECHO "*** automatically added whenever a program is linked with this library" + $ECHO "*** or is declared to -dlopen it." if test "$allow_undefined" = no; then - $echo - $echo "*** Since this library must not contain undefined symbols," - $echo "*** because either the platform does not support them or" - $echo "*** it was explicitly requested with -no-undefined," - $echo "*** libtool will only create a static version of it." + $ECHO + $ECHO "*** Since this library must not contain undefined symbols," + $ECHO "*** because either the platform does not support them or" + $ECHO "*** it was explicitly requested with -no-undefined," + $ECHO "*** libtool will only create a static version of it." if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module @@ -3807,7 +6837,14 @@ EOF # Done checking deplibs! deplibs=$newdeplibs fi - + # Time to change all our "foo.ltframework" stuff back to "-framework foo" + case $host in + *-*-darwin*) + newdeplibs=`$ECHO "X $newdeplibs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` + new_inherited_linker_flags=`$ECHO "X $new_inherited_linker_flags" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` + deplibs=`$ECHO "X $deplibs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` + ;; + esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list @@ -3836,7 +6873,6 @@ EOF done deplibs="$new_libs" - # All the library-specific variables (install_libdir is set above). library_names= old_library= @@ -3907,8 +6943,9 @@ EOF eval shared_ext=\"$shrext_cmds\" eval library_names=\"$library_names_spec\" set dummy $library_names - realname="$2" - shift; shift + shift + realname="$1" + shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" @@ -3927,71 +6964,122 @@ EOF done # Use standard objects if they are pic - test -z "$pic_flag" && libobjs=`$echo "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` + test -z "$pic_flag" && libobjs=`$ECHO "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` + test "X$libobjs" = "X " && libobjs= + + delfiles= + if test -n "$export_symbols" && test -n "$include_expsyms"; then + $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" + export_symbols="$output_objdir/$libname.uexp" + delfiles="$delfiles $export_symbols" + fi + + orig_export_symbols= + case $host_os in + cygwin* | mingw* | cegcc*) + if test -n "$export_symbols" && test -z "$export_symbols_regex"; then + # exporting using user supplied symfile + if test "x`$SED 1q $export_symbols`" != xEXPORTS; then + # and it's NOT already a .def file. Must figure out + # which of the given symbols are data symbols and tag + # them as such. So, trigger use of export_symbols_cmds. + # export_symbols gets reassigned inside the "prepare + # the list of exported symbols" if statement, so the + # include_expsyms logic still works. + orig_export_symbols="$export_symbols" + export_symbols= + always_export_symbols=yes + fi + fi + ;; + esac # Prepare the list of exported symbols if test -z "$export_symbols"; then if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then - $show "generating symbol list for \`$libname.la'" + func_verbose "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" - $run $rm $export_symbols + $opt_dry_run || $RM $export_symbols cmds=$export_symbols_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" - if len=`expr "X$cmd" : ".*"` && - test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then - $show "$cmd" - $run eval "$cmd" || exit $? - skipped_export=false + func_len " $cmd" + len=$func_len_result + if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then + func_show_eval "$cmd" 'exit $?' + skipped_export=false else - # The command line is too long to execute in one step. - $show "using reloadable object file for export list..." - skipped_export=: + # The command line is too long to execute in one step. + func_verbose "using reloadable object file for export list..." + skipped_export=: # Break out early, otherwise skipped_export may be # set to false by a later but shorter cmd. break fi done IFS="$save_ifs" - if test -n "$export_symbols_regex"; then - $show "$EGREP -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\"" - $run eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' - $show "$mv \"${export_symbols}T\" \"$export_symbols\"" - $run eval '$mv "${export_symbols}T" "$export_symbols"' + if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then + func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' + func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi fi if test -n "$export_symbols" && test -n "$include_expsyms"; then - $run eval '$echo "X$include_expsyms" | $SP2NL >> "$export_symbols"' + tmp_export_symbols="$export_symbols" + test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" + $opt_dry_run || eval '$ECHO "X$include_expsyms" | $Xsed | $SP2NL >> "$tmp_export_symbols"' + fi + + if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then + # The given exports_symbols file has to be filtered, so filter it. + func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" + # FIXME: $output_objdir/$libname.filter potentially contains lots of + # 's' commands which not all seds can handle. GNU sed should be fine + # though. Also, the filter scales superlinearly with the number of + # global variables. join(1) would be nice here, but unfortunately + # isn't a blessed tool. + $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter + delfiles="$delfiles $export_symbols $output_objdir/$libname.filter" + export_symbols=$output_objdir/$libname.def + $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi tmp_deplibs= for test_deplib in $deplibs; do - case " $convenience " in - *" $test_deplib "*) ;; - *) - tmp_deplibs="$tmp_deplibs $test_deplib" - ;; - esac + case " $convenience " in + *" $test_deplib "*) ;; + *) + tmp_deplibs="$tmp_deplibs $test_deplib" + ;; + esac done deplibs="$tmp_deplibs" if test -n "$convenience"; then + if test -n "$whole_archive_flag_spec" && + test "$compiler_needs_object" = yes && + test -z "$libobjs"; then + # extract the archives, so we have objects to list. + # TODO: could optimize this to just extract one archive. + whole_archive_flag_spec= + fi if test -n "$whole_archive_flag_spec"; then save_libobjs=$libobjs eval libobjs=\"\$libobjs $whole_archive_flag_spec\" + test "X$libobjs" = "X " && libobjs= else gentop="$output_objdir/${outputname}x" generated="$generated $gentop" func_extract_archives $gentop $convenience libobjs="$libobjs $func_extract_archives_result" + test "X$libobjs" = "X " && libobjs= fi fi - + if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" linker_flags="$linker_flags $flag" @@ -3999,7 +7087,7 @@ EOF # Make a backup of the uninstalled library when relinking if test "$mode" = relink; then - $run eval '(cd $output_objdir && $rm ${realname}U && $mv $realname ${realname}U)' || exit $? + $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? fi # Do each of the archive commands. @@ -4012,22 +7100,24 @@ EOF cmds=$module_cmds fi else - if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then - eval test_cmds=\"$archive_expsym_cmds\" - cmds=$archive_expsym_cmds - else - eval test_cmds=\"$archive_cmds\" - cmds=$archive_cmds + if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then + eval test_cmds=\"$archive_expsym_cmds\" + cmds=$archive_expsym_cmds + else + eval test_cmds=\"$archive_cmds\" + cmds=$archive_cmds fi fi if test "X$skipped_export" != "X:" && - len=`expr "X$test_cmds" : ".*" 2>/dev/null` && - test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then + func_len " $test_cmds" && + len=$func_len_result && + test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then : else - # The command line is too long to link in one step, link piecewise. - $echo "creating reloadable object files..." + # The command line is too long to link in one step, link piecewise + # or, if using GNU ld and skipped_export is not :, use a linker + # script. # Save the value of $output and $libobjs because we want to # use them later. If we have whole_archive_flag_spec, we @@ -4041,77 +7131,162 @@ EOF save_libobjs=$libobjs fi save_output=$output - output_la=`$echo "X$output" | $Xsed -e "$basename"` + output_la=`$ECHO "X$output" | $Xsed -e "$basename"` # Clear the reloadable object creation command queue and # initialize k to one. test_cmds= concat_cmds= objlist= - delfiles= last_robj= k=1 - output=$output_objdir/$output_la-${k}.$objext - # Loop over the list of objects to be linked. - for obj in $save_libobjs - do - eval test_cmds=\"$reload_cmds $objlist $last_robj\" - if test "X$objlist" = X || - { len=`expr "X$test_cmds" : ".*" 2>/dev/null` && - test "$len" -le "$max_cmd_len"; }; then - objlist="$objlist $obj" - else - # The command $test_cmds is almost too long, add a - # command to the queue. - if test "$k" -eq 1 ; then - # The first file doesn't have a previous command to add. - eval concat_cmds=\"$reload_cmds $objlist $last_robj\" - else - # All subsequent reloadable object files will link in - # the last one created. - eval concat_cmds=\"\$concat_cmds~$reload_cmds $objlist $last_robj\" - fi - last_robj=$output_objdir/$output_la-${k}.$objext - k=`expr $k + 1` - output=$output_objdir/$output_la-${k}.$objext - objlist=$obj - len=1 + + if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then + output=${output_objdir}/${output_la}.lnkscript + func_verbose "creating GNU ld script: $output" + $ECHO 'INPUT (' > $output + for obj in $save_libobjs + do + $ECHO "$obj" >> $output + done + $ECHO ')' >> $output + delfiles="$delfiles $output" + elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then + output=${output_objdir}/${output_la}.lnk + func_verbose "creating linker input file list: $output" + : > $output + set x $save_libobjs + shift + firstobj= + if test "$compiler_needs_object" = yes; then + firstobj="$1 " + shift fi - done - # Handle the remaining objects by creating one last - # reloadable object file. All subsequent reloadable object - # files will link in the last one created. - test -z "$concat_cmds" || concat_cmds=$concat_cmds~ - eval concat_cmds=\"\${concat_cmds}$reload_cmds $objlist $last_robj\" + for obj + do + $ECHO "$obj" >> $output + done + delfiles="$delfiles $output" + output=$firstobj\"$file_list_spec$output\" + else + if test -n "$save_libobjs"; then + func_verbose "creating reloadable object files..." + output=$output_objdir/$output_la-${k}.$objext + eval test_cmds=\"$reload_cmds\" + func_len " $test_cmds" + len0=$func_len_result + len=$len0 - if ${skipped_export-false}; then - $show "generating symbol list for \`$libname.la'" - export_symbols="$output_objdir/$libname.exp" - $run $rm $export_symbols - libobjs=$output - # Append the command to create the export file. - eval concat_cmds=\"\$concat_cmds~$export_symbols_cmds\" - fi + # Loop over the list of objects to be linked. + for obj in $save_libobjs + do + func_len " $obj" + func_arith $len + $func_len_result + len=$func_arith_result + if test "X$objlist" = X || + test "$len" -lt "$max_cmd_len"; then + func_append objlist " $obj" + else + # The command $test_cmds is almost too long, add a + # command to the queue. + if test "$k" -eq 1 ; then + # The first file doesn't have a previous command to add. + eval concat_cmds=\"$reload_cmds $objlist $last_robj\" + else + # All subsequent reloadable object files will link in + # the last one created. + eval concat_cmds=\"\$concat_cmds~$reload_cmds $objlist $last_robj~\$RM $last_robj\" + fi + last_robj=$output_objdir/$output_la-${k}.$objext + func_arith $k + 1 + k=$func_arith_result + output=$output_objdir/$output_la-${k}.$objext + objlist=$obj + func_len " $last_robj" + func_arith $len0 + $func_len_result + len=$func_arith_result + fi + done + # Handle the remaining objects by creating one last + # reloadable object file. All subsequent reloadable object + # files will link in the last one created. + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + eval concat_cmds=\"\${concat_cmds}$reload_cmds $objlist $last_robj\" + if test -n "$last_robj"; then + eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\" + fi + delfiles="$delfiles $output" - # Set up a command to remove the reloadable object files - # after they are used. - i=0 - while test "$i" -lt "$k" - do - i=`expr $i + 1` - delfiles="$delfiles $output_objdir/$output_la-${i}.$objext" - done + else + output= + fi - $echo "creating a temporary reloadable object file: $output" + if ${skipped_export-false}; then + func_verbose "generating symbol list for \`$libname.la'" + export_symbols="$output_objdir/$libname.exp" + $opt_dry_run || $RM $export_symbols + libobjs=$output + # Append the command to create the export file. + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" + if test -n "$last_robj"; then + eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" + fi + fi - # Loop through the commands generated above and execute them. - save_ifs="$IFS"; IFS='~' - for cmd in $concat_cmds; do + test -n "$save_libobjs" && + func_verbose "creating a temporary reloadable object file: $output" + + # Loop through the commands generated above and execute them. + save_ifs="$IFS"; IFS='~' + for cmd in $concat_cmds; do + IFS="$save_ifs" + $opt_silent || { + func_quote_for_expand "$cmd" + eval "func_echo $func_quote_for_expand_result" + } + $opt_dry_run || eval "$cmd" || { + lt_exit=$? + + # Restore the uninstalled library and exit + if test "$mode" = relink; then + ( cd "$output_objdir" && \ + $RM "${realname}T" && \ + $MV "${realname}U" "$realname" ) + fi + + exit $lt_exit + } + done IFS="$save_ifs" - $show "$cmd" - $run eval "$cmd" || exit $? - done - IFS="$save_ifs" + + if test -n "$export_symbols_regex" && ${skipped_export-false}; then + func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' + func_show_eval '$MV "${export_symbols}T" "$export_symbols"' + fi + fi + + if ${skipped_export-false}; then + if test -n "$export_symbols" && test -n "$include_expsyms"; then + tmp_export_symbols="$export_symbols" + test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" + $opt_dry_run || eval '$ECHO "X$include_expsyms" | $Xsed | $SP2NL >> "$tmp_export_symbols"' + fi + + if test -n "$orig_export_symbols"; then + # The given exports_symbols file has to be filtered, so filter it. + func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" + # FIXME: $output_objdir/$libname.filter potentially contains lots of + # 's' commands which not all seds can handle. GNU sed should be fine + # though. Also, the filter scales superlinearly with the number of + # global variables. join(1) would be nice here, but unfortunately + # isn't a blessed tool. + $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter + delfiles="$delfiles $export_symbols $output_objdir/$libname.filter" + export_symbols=$output_objdir/$libname.def + $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols + fi + fi libobjs=$output # Restore the value of output. @@ -4119,6 +7294,7 @@ EOF if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then eval libobjs=\"\$libobjs $whole_archive_flag_spec\" + test "X$libobjs" = "X " && libobjs= fi # Expand the library linking commands again to reset the # value of $libobjs for piecewise linking. @@ -4131,28 +7307,45 @@ EOF cmds=$module_cmds fi else - if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then - cmds=$archive_expsym_cmds - else - cmds=$archive_cmds + if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then + cmds=$archive_expsym_cmds + else + cmds=$archive_cmds fi fi - - # Append the command to remove the reloadable object files - # to the just-reset $cmds. - eval cmds=\"\$cmds~\$rm $delfiles\" fi + + if test -n "$delfiles"; then + # Append the command to remove temporary files to $cmds. + eval cmds=\"\$cmds~\$RM $delfiles\" + fi + + # Add any objects from preloaded convenience libraries + if test -n "$dlprefiles"; then + gentop="$output_objdir/${outputname}x" + generated="$generated $gentop" + + func_extract_archives $gentop $dlprefiles + libobjs="$libobjs $func_extract_archives_result" + test "X$libobjs" = "X " && libobjs= + fi + save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" - $show "$cmd" - $run eval "$cmd" || { + $opt_silent || { + func_quote_for_expand "$cmd" + eval "func_echo $func_quote_for_expand_result" + } + $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test "$mode" = relink; then - $run eval '(cd $output_objdir && $rm ${realname}T && $mv ${realname}U $realname)' + ( cd "$output_objdir" && \ + $RM "${realname}T" && \ + $MV "${realname}U" "$realname" ) fi exit $lt_exit @@ -4162,12 +7355,11 @@ EOF # Restore the uninstalled library and exit if test "$mode" = relink; then - $run eval '(cd $output_objdir && $rm ${realname}T && $mv $realname ${realname}T && $mv "$realname"U $realname)' || exit $? + $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? if test -n "$convenience"; then if test -z "$whole_archive_flag_spec"; then - $show "${rm}r $gentop" - $run ${rm}r "$gentop" + func_show_eval '${RM}r "$gentop"' fi fi @@ -4177,8 +7369,7 @@ EOF # Create links to the real library. for linkname in $linknames; do if test "$realname" != "$linkname"; then - $show "(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)" - $run eval '(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)' || exit $? + func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' fi done @@ -4191,38 +7382,35 @@ EOF ;; obj) - if test -n "$deplibs"; then - $echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2 - fi - if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then - $echo "$modename: warning: \`-dlopen' is ignored for objects" 1>&2 + func_warning "\`-dlopen' is ignored for objects" fi - if test -n "$rpath"; then - $echo "$modename: warning: \`-rpath' is ignored for objects" 1>&2 - fi + case " $deplibs" in + *\ -l* | *\ -L*) + func_warning "\`-l' and \`-L' are ignored for objects" ;; + esac - if test -n "$xrpath"; then - $echo "$modename: warning: \`-R' is ignored for objects" 1>&2 - fi + test -n "$rpath" && \ + func_warning "\`-rpath' is ignored for objects" - if test -n "$vinfo"; then - $echo "$modename: warning: \`-version-info' is ignored for objects" 1>&2 - fi + test -n "$xrpath" && \ + func_warning "\`-R' is ignored for objects" - if test -n "$release"; then - $echo "$modename: warning: \`-release' is ignored for objects" 1>&2 - fi + test -n "$vinfo" && \ + func_warning "\`-version-info' is ignored for objects" + + test -n "$release" && \ + func_warning "\`-release' is ignored for objects" case $output in *.lo) - if test -n "$objs$old_deplibs"; then - $echo "$modename: cannot build library object \`$output' from non-libtool objects" 1>&2 - exit $EXIT_FAILURE - fi - libobj="$output" - obj=`$echo "X$output" | $Xsed -e "$lo2o"` + test -n "$objs$old_deplibs" && \ + func_fatal_error "cannot build library object \`$output' from non-libtool objects" + + libobj=$output + func_lo2o "$libobj" + obj=$func_lo2o_result ;; *) libobj= @@ -4231,7 +7419,7 @@ EOF esac # Delete the old objects. - $run $rm $obj $libobj + $opt_dry_run || $RM $obj $libobj # Objects from convenience libraries. This assumes # single-version convenience libraries. Whenever we create @@ -4240,12 +7428,14 @@ EOF reload_conv_objs= gentop= # reload_cmds runs $LD directly, so let us get rid of - # -Wl from whole_archive_flag_spec + # -Wl from whole_archive_flag_spec and hope we can get by with + # turning comma into space.. wl= if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then - eval reload_conv_objs=\"\$reload_objs $whole_archive_flag_spec\" + eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" + reload_conv_objs=$reload_objs\ `$ECHO "X$tmp_whole_archive_flags" | $Xsed -e 's|,| |g'` else gentop="$output_objdir/${obj}x" generated="$generated $gentop" @@ -4256,24 +7446,15 @@ EOF fi # Create the old-style object. - reload_objs="$objs$old_deplibs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test + reload_objs="$objs$old_deplibs "`$ECHO "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test output="$obj" - cmds=$reload_cmds - save_ifs="$IFS"; IFS='~' - for cmd in $cmds; do - IFS="$save_ifs" - eval cmd=\"$cmd\" - $show "$cmd" - $run eval "$cmd" || exit $? - done - IFS="$save_ifs" + func_execute_cmds "$reload_cmds" 'exit $?' # Exit if we aren't doing a library object file. if test -z "$libobj"; then if test -n "$gentop"; then - $show "${rm}r $gentop" - $run ${rm}r $gentop + func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS @@ -4281,14 +7462,13 @@ EOF if test "$build_libtool_libs" != yes; then if test -n "$gentop"; then - $show "${rm}r $gentop" - $run ${rm}r $gentop + func_show_eval '${RM}r "$gentop"' fi # Create an invalid libtool object if no PIC, so that we don't # accidentally link it into a program. # $show "echo timestamp > $libobj" - # $run eval "echo timestamp > $libobj" || exit $? + # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS fi @@ -4296,20 +7476,11 @@ EOF # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" output="$libobj" - cmds=$reload_cmds - save_ifs="$IFS"; IFS='~' - for cmd in $cmds; do - IFS="$save_ifs" - eval cmd=\"$cmd\" - $show "$cmd" - $run eval "$cmd" || exit $? - done - IFS="$save_ifs" + func_execute_cmds "$reload_cmds" 'exit $?' fi if test -n "$gentop"; then - $show "${rm}r $gentop" - $run ${rm}r $gentop + func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS @@ -4317,39 +7488,45 @@ EOF prog) case $host in - *cygwin*) output=`$echo $output | ${SED} -e 's,.exe$,,;s,$,.exe,'` ;; + *cygwin*) func_stripname '' '.exe' "$output" + output=$func_stripname_result.exe;; esac - if test -n "$vinfo"; then - $echo "$modename: warning: \`-version-info' is ignored for programs" 1>&2 - fi + test -n "$vinfo" && \ + func_warning "\`-version-info' is ignored for programs" - if test -n "$release"; then - $echo "$modename: warning: \`-release' is ignored for programs" 1>&2 - fi + test -n "$release" && \ + func_warning "\`-release' is ignored for programs" - if test "$preload" = yes; then - if test "$dlopen_support" = unknown && test "$dlopen_self" = unknown && - test "$dlopen_self_static" = unknown; then - $echo "$modename: warning: \`AC_LIBTOOL_DLOPEN' not used. Assuming no dlopen support." - fi - fi + test "$preload" = yes \ + && test "$dlopen_support" = unknown \ + && test "$dlopen_self" = unknown \ + && test "$dlopen_self_static" = unknown && \ + func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support." case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework - compile_deplibs=`$echo "X $compile_deplibs" | $Xsed -e 's/ -lc / -framework System /'` - finalize_deplibs=`$echo "X $finalize_deplibs" | $Xsed -e 's/ -lc / -framework System /'` + compile_deplibs=`$ECHO "X $compile_deplibs" | $Xsed -e 's/ -lc / System.ltframework /'` + finalize_deplibs=`$ECHO "X $finalize_deplibs" | $Xsed -e 's/ -lc / System.ltframework /'` ;; esac case $host in - *darwin*) - # Don't allow lazy linking, it breaks C++ global constructors - if test "$tagname" = CXX ; then - compile_command="$compile_command ${wl}-bind_at_load" - finalize_command="$finalize_command ${wl}-bind_at_load" - fi - ;; + *-*-darwin*) + # Don't allow lazy linking, it breaks C++ global constructors + # But is supposedly fixed on 10.4 or later (yay!). + if test "$tagname" = CXX ; then + case ${MACOSX_DEPLOYMENT_TARGET-10.0} in + 10.[0123]) + compile_command="$compile_command ${wl}-bind_at_load" + finalize_command="$finalize_command ${wl}-bind_at_load" + ;; + esac + fi + # Time to change all our "foo.ltframework" stuff back to "-framework foo" + compile_deplibs=`$ECHO "X $compile_deplibs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` + finalize_deplibs=`$ECHO "X $finalize_deplibs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` + ;; esac @@ -4424,14 +7601,16 @@ EOF esac fi case $host in - *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*) - testbindir=`$echo "X$libdir" | $Xsed -e 's*/lib$*/bin*'` + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$libdir:"*) ;; + ::) dllsearchpath=$libdir;; *) dllsearchpath="$dllsearchpath:$libdir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; + ::) dllsearchpath=$testbindir;; *) dllsearchpath="$dllsearchpath:$testbindir";; esac ;; @@ -4483,281 +7662,51 @@ EOF if test -n "$libobjs" && test "$build_old_libs" = yes; then # Transform all the library objects into standard objects. - compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` - finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` + compile_command=`$ECHO "X$compile_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` + finalize_command=`$ECHO "X$finalize_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` fi - dlsyms= - if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then - if test -n "$NM" && test -n "$global_symbol_pipe"; then - dlsyms="${outputname}S.c" - else - $echo "$modename: not configured to extract global symbols from dlpreopened files" 1>&2 - fi + func_generate_dlsyms "$outputname" "@PROGRAM@" "no" + + # template prelinking step + if test -n "$prelink_cmds"; then + func_execute_cmds "$prelink_cmds" 'exit $?' fi - if test -n "$dlsyms"; then - case $dlsyms in - "") ;; - *.c) - # Discover the nlist of each of the dlfiles. - nlist="$output_objdir/${outputname}.nm" - - $show "$rm $nlist ${nlist}S ${nlist}T" - $run $rm "$nlist" "${nlist}S" "${nlist}T" - - # Parse the name list into a source file. - $show "creating $output_objdir/$dlsyms" - - test -z "$run" && $echo > "$output_objdir/$dlsyms" "\ -/* $dlsyms - symbol resolution table for \`$outputname' dlsym emulation. */ -/* Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP */ - -#ifdef __cplusplus -extern \"C\" { -#endif - -/* Prevent the only kind of declaration conflicts we can make. */ -#define lt_preloaded_symbols some_other_symbol - -/* External symbol declarations for the compiler. */\ -" - - if test "$dlself" = yes; then - $show "generating symbol list for \`$output'" - - test -z "$run" && $echo ': @PROGRAM@ ' > "$nlist" - - # Add our own program objects to the symbol list. - progfiles=`$echo "X$objs$old_deplibs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` - for arg in $progfiles; do - $show "extracting global C symbols from \`$arg'" - $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'" - done - - if test -n "$exclude_expsyms"; then - $run eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' - $run eval '$mv "$nlist"T "$nlist"' - fi - - if test -n "$export_symbols_regex"; then - $run eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' - $run eval '$mv "$nlist"T "$nlist"' - fi - - # Prepare the list of exported symbols - if test -z "$export_symbols"; then - export_symbols="$output_objdir/$outputname.exp" - $run $rm $export_symbols - $run eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' - case $host in - *cygwin* | *mingw* ) - $run eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' - $run eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' - ;; - esac - else - $run eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' - $run eval 'grep -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' - $run eval 'mv "$nlist"T "$nlist"' - case $host in - *cygwin* | *mingw* ) - $run eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' - $run eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' - ;; - esac - fi - fi - - for arg in $dlprefiles; do - $show "extracting global C symbols from \`$arg'" - name=`$echo "$arg" | ${SED} -e 's%^.*/%%'` - $run eval '$echo ": $name " >> "$nlist"' - $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'" - done - - if test -z "$run"; then - # Make sure we have at least an empty file. - test -f "$nlist" || : > "$nlist" - - if test -n "$exclude_expsyms"; then - $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T - $mv "$nlist"T "$nlist" - fi - - # Try sorting and uniquifying the output. - if grep -v "^: " < "$nlist" | - if sort -k 3 /dev/null 2>&1; then - sort -k 3 - else - sort +2 - fi | - uniq > "$nlist"S; then - : - else - grep -v "^: " < "$nlist" > "$nlist"S - fi - - if test -f "$nlist"S; then - eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$dlsyms"' - else - $echo '/* NONE */' >> "$output_objdir/$dlsyms" - fi - - $echo >> "$output_objdir/$dlsyms" "\ - -#undef lt_preloaded_symbols - -#if defined (__STDC__) && __STDC__ -# define lt_ptr void * -#else -# define lt_ptr char * -# define const -#endif - -/* The mapping between symbol names and symbols. */ -" - - case $host in - *cygwin* | *mingw* ) - $echo >> "$output_objdir/$dlsyms" "\ -/* DATA imports from DLLs on WIN32 can't be const, because - runtime relocations are performed -- see ld's documentation - on pseudo-relocs */ -struct { -" - ;; - * ) - $echo >> "$output_objdir/$dlsyms" "\ -const struct { -" - ;; - esac - - - $echo >> "$output_objdir/$dlsyms" "\ - const char *name; - lt_ptr address; -} -lt_preloaded_symbols[] = -{\ -" - - eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$dlsyms" - - $echo >> "$output_objdir/$dlsyms" "\ - {0, (lt_ptr) 0} -}; - -/* This works around a problem in FreeBSD linker */ -#ifdef FREEBSD_WORKAROUND -static const void *lt_preloaded_setup() { - return lt_preloaded_symbols; -} -#endif - -#ifdef __cplusplus -} -#endif\ -" - fi - - pic_flag_for_symtable= - case $host in - # compiling the symbol table file with pic_flag works around - # a FreeBSD bug that causes programs to crash when -lm is - # linked before any other PIC object. But we must not use - # pic_flag when linking with -static. The problem exists in - # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. - *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) - case "$compile_command " in - *" -static "*) ;; - *) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND";; - esac;; - *-*-hpux*) - case "$compile_command " in - *" -static "*) ;; - *) pic_flag_for_symtable=" $pic_flag";; - esac - esac - - # Now compile the dynamic symbol file. - $show "(cd $output_objdir && $LTCC $LTCFLAGS -c$no_builtin_flag$pic_flag_for_symtable \"$dlsyms\")" - $run eval '(cd $output_objdir && $LTCC $LTCFLAGS -c$no_builtin_flag$pic_flag_for_symtable "$dlsyms")' || exit $? - - # Clean up the generated files. - $show "$rm $output_objdir/$dlsyms $nlist ${nlist}S ${nlist}T" - $run $rm "$output_objdir/$dlsyms" "$nlist" "${nlist}S" "${nlist}T" - - # Transform the symbol file into the correct name. - case $host in - *cygwin* | *mingw* ) - if test -f "$output_objdir/${outputname}.def" ; then - compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}.def $output_objdir/${outputname}S.${objext}%"` - finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}.def $output_objdir/${outputname}S.${objext}%"` - else - compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"` - finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"` - fi - ;; - * ) - compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"` - finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"` - ;; - esac - ;; - *) - $echo "$modename: unknown suffix for \`$dlsyms'" 1>&2 - exit $EXIT_FAILURE - ;; - esac - else - # We keep going just in case the user didn't refer to - # lt_preloaded_symbols. The linker will fail if global_symbol_pipe - # really was required. - - # Nullify the symbol file. - compile_command=`$echo "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"` - finalize_command=`$echo "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"` - fi - - if test "$need_relink" = no || test "$build_libtool_libs" != yes; then + wrappers_required=yes + case $host in + *cygwin* | *mingw* ) + if test "$build_libtool_libs" != yes; then + wrappers_required=no + fi + ;; + *cegcc) + # Disable wrappers for cegcc, we are cross compiling anyway. + wrappers_required=no + ;; + *) + if test "$need_relink" = no || test "$build_libtool_libs" != yes; then + wrappers_required=no + fi + ;; + esac + if test "$wrappers_required" = no; then # Replace the output file specification. - compile_command=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'` + compile_command=`$ECHO "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'` link_command="$compile_command$compile_rpath" # We have no uninstalled library dependencies, so finalize right now. - $show "$link_command" - $run eval "$link_command" - exit_status=$? + exit_status=0 + func_show_eval "$link_command" 'exit_status=$?' # Delete the generated files. - if test -n "$dlsyms"; then - $show "$rm $output_objdir/${outputname}S.${objext}" - $run $rm "$output_objdir/${outputname}S.${objext}" + if test -f "$output_objdir/${outputname}S.${objext}"; then + func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"' fi exit $exit_status fi - if test -n "$shlibpath_var"; then - # We should set the shlibpath_var - rpath= - for dir in $temp_rpath; do - case $dir in - [\\/]* | [A-Za-z]:[\\/]*) - # Absolute path. - rpath="$rpath$dir:" - ;; - *) - # Relative path: add a thisdir entry. - rpath="$rpath\$thisdir/$dir:" - ;; - esac - done - temp_rpath="$rpath" - fi - if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" fi @@ -4790,12 +7739,11 @@ static const void *lt_preloaded_setup() { # We don't need to create a wrapper script. link_command="$compile_var$compile_command$compile_rpath" # Replace the output file specification. - link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'` + link_command=`$ECHO "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. - $run $rm $output + $opt_dry_run || $RM $output # Link the executable and exit - $show "$link_command" - $run eval "$link_command" || exit $? + func_show_eval "$link_command" 'exit $?' exit $EXIT_SUCCESS fi @@ -4804,13 +7752,13 @@ static const void *lt_preloaded_setup() { link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" - $echo "$modename: warning: this platform does not like uninstalled shared libraries" 1>&2 - $echo "$modename: \`$output' will be relinked during installation" 1>&2 + func_warning "this platform does not like uninstalled shared libraries" + func_warning "\`$output' will be relinked during installation" else if test "$fast_install" != no; then link_command="$finalize_var$compile_command$finalize_rpath" if test "$fast_install" = yes; then - relink_command=`$echo "X$compile_var$compile_command$compile_rpath" | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g'` + relink_command=`$ECHO "X$compile_var$compile_command$compile_rpath" | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g'` else # fast_install is set to needless relink_command= @@ -4822,594 +7770,103 @@ static const void *lt_preloaded_setup() { fi # Replace the output file specification. - link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` + link_command=`$ECHO "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` # Delete the old output files. - $run $rm $output $output_objdir/$outputname $output_objdir/lt-$outputname + $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname - $show "$link_command" - $run eval "$link_command" || exit $? + func_show_eval "$link_command" 'exit $?' # Now create the wrapper script. - $show "creating $output" + func_verbose "creating $output" # Quote the relink command for shipping. if test -n "$relink_command"; then # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then - relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command" + relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else - var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"` - relink_command="$var=\"$var_value\"; export $var; $relink_command" + func_quote_for_eval "$var_value" + relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done relink_command="(cd `pwd`; $relink_command)" - relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"` + relink_command=`$ECHO "X$relink_command" | $Xsed -e "$sed_quote_subst"` fi - # Quote $echo for shipping. - if test "X$echo" = "X$SHELL $progpath --fallback-echo"; then + # Quote $ECHO for shipping. + if test "X$ECHO" = "X$SHELL $progpath --fallback-echo"; then case $progpath in [\\/]* | [A-Za-z]:[\\/]*) qecho="$SHELL $progpath --fallback-echo";; *) qecho="$SHELL `pwd`/$progpath --fallback-echo";; esac - qecho=`$echo "X$qecho" | $Xsed -e "$sed_quote_subst"` + qecho=`$ECHO "X$qecho" | $Xsed -e "$sed_quote_subst"` else - qecho=`$echo "X$echo" | $Xsed -e "$sed_quote_subst"` + qecho=`$ECHO "X$ECHO" | $Xsed -e "$sed_quote_subst"` fi - # Only actually do things if our run command is non-null. - if test -z "$run"; then + # Only actually do things if not in dry run mode. + $opt_dry_run || { # win32 will think the script is a binary if it has # a .exe suffix, so we strip it off here. case $output in - *.exe) output=`$echo $output|${SED} 's,.exe$,,'` ;; + *.exe) func_stripname '' '.exe' "$output" + output=$func_stripname_result ;; esac # test for cygwin because mv fails w/o .exe extensions case $host in *cygwin*) exeext=.exe - outputname=`$echo $outputname|${SED} 's,.exe$,,'` ;; + func_stripname '' '.exe' "$outputname" + outputname=$func_stripname_result ;; *) exeext= ;; esac case $host in *cygwin* | *mingw* ) - output_name=`basename $output` - output_path=`dirname $output` - cwrappersource="$output_path/$objdir/lt-$output_name.c" - cwrapper="$output_path/$output_name.exe" - $rm $cwrappersource $cwrapper - trap "$rm $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 - - cat > $cwrappersource <> $cwrappersource<<"EOF" -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#if defined(PATH_MAX) -# define LT_PATHMAX PATH_MAX -#elif defined(MAXPATHLEN) -# define LT_PATHMAX MAXPATHLEN -#else -# define LT_PATHMAX 1024 -#endif - -#ifndef DIR_SEPARATOR -# define DIR_SEPARATOR '/' -# define PATH_SEPARATOR ':' -#endif - -#if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ - defined (__OS2__) -# define HAVE_DOS_BASED_FILE_SYSTEM -# ifndef DIR_SEPARATOR_2 -# define DIR_SEPARATOR_2 '\\' -# endif -# ifndef PATH_SEPARATOR_2 -# define PATH_SEPARATOR_2 ';' -# endif -#endif - -#ifndef DIR_SEPARATOR_2 -# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) -#else /* DIR_SEPARATOR_2 */ -# define IS_DIR_SEPARATOR(ch) \ - (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) -#endif /* DIR_SEPARATOR_2 */ - -#ifndef PATH_SEPARATOR_2 -# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) -#else /* PATH_SEPARATOR_2 */ -# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) -#endif /* PATH_SEPARATOR_2 */ - -#define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) -#define XFREE(stale) do { \ - if (stale) { free ((void *) stale); stale = 0; } \ -} while (0) - -/* -DDEBUG is fairly common in CFLAGS. */ -#undef DEBUG -#if defined DEBUGWRAPPER -# define DEBUG(format, ...) fprintf(stderr, format, __VA_ARGS__) -#else -# define DEBUG(format, ...) -#endif - -const char *program_name = NULL; - -void * xmalloc (size_t num); -char * xstrdup (const char *string); -const char * base_name (const char *name); -char * find_executable(const char *wrapper); -int check_executable(const char *path); -char * strendzap(char *str, const char *pat); -void lt_fatal (const char *message, ...); - -int -main (int argc, char *argv[]) -{ - char **newargz; - int i; - - program_name = (char *) xstrdup (base_name (argv[0])); - DEBUG("(main) argv[0] : %s\n",argv[0]); - DEBUG("(main) program_name : %s\n",program_name); - newargz = XMALLOC(char *, argc+2); -EOF - - cat >> $cwrappersource <> $cwrappersource <<"EOF" - newargz[1] = find_executable(argv[0]); - if (newargz[1] == NULL) - lt_fatal("Couldn't find %s", argv[0]); - DEBUG("(main) found exe at : %s\n",newargz[1]); - /* we know the script has the same name, without the .exe */ - /* so make sure newargz[1] doesn't end in .exe */ - strendzap(newargz[1],".exe"); - for (i = 1; i < argc; i++) - newargz[i+1] = xstrdup(argv[i]); - newargz[argc+1] = NULL; - - for (i=0; i> $cwrappersource <> $cwrappersource <> $cwrappersource <<"EOF" - return 127; -} - -void * -xmalloc (size_t num) -{ - void * p = (void *) malloc (num); - if (!p) - lt_fatal ("Memory exhausted"); - - return p; -} - -char * -xstrdup (const char *string) -{ - return string ? strcpy ((char *) xmalloc (strlen (string) + 1), string) : NULL -; -} - -const char * -base_name (const char *name) -{ - const char *base; - -#if defined (HAVE_DOS_BASED_FILE_SYSTEM) - /* Skip over the disk name in MSDOS pathnames. */ - if (isalpha ((unsigned char)name[0]) && name[1] == ':') - name += 2; -#endif - - for (base = name; *name; name++) - if (IS_DIR_SEPARATOR (*name)) - base = name + 1; - return base; -} - -int -check_executable(const char * path) -{ - struct stat st; - - DEBUG("(check_executable) : %s\n", path ? (*path ? path : "EMPTY!") : "NULL!"); - if ((!path) || (!*path)) - return 0; - - if ((stat (path, &st) >= 0) && - ( - /* MinGW & native WIN32 do not support S_IXOTH or S_IXGRP */ -#if defined (S_IXOTH) - ((st.st_mode & S_IXOTH) == S_IXOTH) || -#endif -#if defined (S_IXGRP) - ((st.st_mode & S_IXGRP) == S_IXGRP) || -#endif - ((st.st_mode & S_IXUSR) == S_IXUSR)) - ) - return 1; - else - return 0; -} - -/* Searches for the full path of the wrapper. Returns - newly allocated full path name if found, NULL otherwise */ -char * -find_executable (const char* wrapper) -{ - int has_slash = 0; - const char* p; - const char* p_next; - /* static buffer for getcwd */ - char tmp[LT_PATHMAX + 1]; - int tmp_len; - char* concat_name; - - DEBUG("(find_executable) : %s\n", wrapper ? (*wrapper ? wrapper : "EMPTY!") : "NULL!"); - - if ((wrapper == NULL) || (*wrapper == '\0')) - return NULL; - - /* Absolute path? */ -#if defined (HAVE_DOS_BASED_FILE_SYSTEM) - if (isalpha ((unsigned char)wrapper[0]) && wrapper[1] == ':') - { - concat_name = xstrdup (wrapper); - if (check_executable(concat_name)) - return concat_name; - XFREE(concat_name); - } - else - { -#endif - if (IS_DIR_SEPARATOR (wrapper[0])) - { - concat_name = xstrdup (wrapper); - if (check_executable(concat_name)) - return concat_name; - XFREE(concat_name); - } -#if defined (HAVE_DOS_BASED_FILE_SYSTEM) - } -#endif - - for (p = wrapper; *p; p++) - if (*p == '/') - { - has_slash = 1; - break; - } - if (!has_slash) - { - /* no slashes; search PATH */ - const char* path = getenv ("PATH"); - if (path != NULL) - { - for (p = path; *p; p = p_next) - { - const char* q; - size_t p_len; - for (q = p; *q; q++) - if (IS_PATH_SEPARATOR(*q)) - break; - p_len = q - p; - p_next = (*q == '\0' ? q : q + 1); - if (p_len == 0) - { - /* empty path: current directory */ - if (getcwd (tmp, LT_PATHMAX) == NULL) - lt_fatal ("getcwd failed"); - tmp_len = strlen(tmp); - concat_name = XMALLOC(char, tmp_len + 1 + strlen(wrapper) + 1); - memcpy (concat_name, tmp, tmp_len); - concat_name[tmp_len] = '/'; - strcpy (concat_name + tmp_len + 1, wrapper); - } - else - { - concat_name = XMALLOC(char, p_len + 1 + strlen(wrapper) + 1); - memcpy (concat_name, p, p_len); - concat_name[p_len] = '/'; - strcpy (concat_name + p_len + 1, wrapper); - } - if (check_executable(concat_name)) - return concat_name; - XFREE(concat_name); - } - } - /* not found in PATH; assume curdir */ - } - /* Relative path | not found in path: prepend cwd */ - if (getcwd (tmp, LT_PATHMAX) == NULL) - lt_fatal ("getcwd failed"); - tmp_len = strlen(tmp); - concat_name = XMALLOC(char, tmp_len + 1 + strlen(wrapper) + 1); - memcpy (concat_name, tmp, tmp_len); - concat_name[tmp_len] = '/'; - strcpy (concat_name + tmp_len + 1, wrapper); - - if (check_executable(concat_name)) - return concat_name; - XFREE(concat_name); - return NULL; -} - -char * -strendzap(char *str, const char *pat) -{ - size_t len, patlen; - - assert(str != NULL); - assert(pat != NULL); - - len = strlen(str); - patlen = strlen(pat); - - if (patlen <= len) - { - str += len - patlen; - if (strcmp(str, pat) == 0) - *str = '\0'; - } - return str; -} - -static void -lt_error_core (int exit_status, const char * mode, - const char * message, va_list ap) -{ - fprintf (stderr, "%s: %s: ", program_name, mode); - vfprintf (stderr, message, ap); - fprintf (stderr, ".\n"); - - if (exit_status >= 0) - exit (exit_status); -} - -void -lt_fatal (const char *message, ...) -{ - va_list ap; - va_start (ap, message); - lt_error_core (EXIT_FAILURE, "FATAL", message, ap); - va_end (ap); -} -EOF - # we should really use a build-platform specific compiler - # here, but OTOH, the wrappers (shell script and this C one) - # are only useful if you want to execute the "real" binary. - # Since the "real" binary is built for $host, then this - # wrapper might as well be built for $host, too. - $run $LTCC $LTCFLAGS -s -o $cwrapper $cwrappersource - ;; - esac - $rm $output - trap "$rm $output; exit $EXIT_FAILURE" 1 2 15 - - $echo > $output "\ -#! $SHELL - -# $output - temporary wrapper script for $objdir/$outputname -# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP -# -# The $output program cannot be directly executed until all the libtool -# libraries that it depends on are installed. -# -# This wrapper script should never be moved out of the build directory. -# If it is, it will not operate correctly. - -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -Xsed='${SED} -e 1s/^X//' -sed_quote_subst='$sed_quote_subst' - -# The HP-UX ksh and POSIX shell print the target directory to stdout -# if CDPATH is set. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH - -relink_command=\"$relink_command\" - -# This environment variable determines our operation mode. -if test \"\$libtool_install_magic\" = \"$magic\"; then - # install mode needs the following variable: - notinst_deplibs='$notinst_deplibs' -else - # When we are sourced in execute mode, \$file and \$echo are already set. - if test \"\$libtool_execute_magic\" != \"$magic\"; then - echo=\"$qecho\" - file=\"\$0\" - # Make sure echo works. - if test \"X\$1\" = X--no-reexec; then - # Discard the --no-reexec flag, and continue. - shift - elif test \"X\`(\$echo '\t') 2>/dev/null\`\" = 'X\t'; then - # Yippee, \$echo works! - : - else - # Restart under the correct shell, and then maybe \$echo will work. - exec $SHELL \"\$0\" --no-reexec \${1+\"\$@\"} - fi - fi\ -" - $echo >> $output "\ - - # Find the directory that this script lives in. - thisdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\` - test \"x\$thisdir\" = \"x\$file\" && thisdir=. - - # Follow symbolic links until we get to the real thisdir. - file=\`ls -ld \"\$file\" | ${SED} -n 's/.*-> //p'\` - while test -n \"\$file\"; do - destdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\` - - # If there was a directory component, then change thisdir. - if test \"x\$destdir\" != \"x\$file\"; then - case \"\$destdir\" in - [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; - *) thisdir=\"\$thisdir/\$destdir\" ;; - esac - fi - - file=\`\$echo \"X\$file\" | \$Xsed -e 's%^.*/%%'\` - file=\`ls -ld \"\$thisdir/\$file\" | ${SED} -n 's/.*-> //p'\` - done - - # Try to get the absolute directory name. - absdir=\`cd \"\$thisdir\" && pwd\` - test -n \"\$absdir\" && thisdir=\"\$absdir\" -" - - if test "$fast_install" = yes; then - $echo >> $output "\ - program=lt-'$outputname'$exeext - progdir=\"\$thisdir/$objdir\" - - if test ! -f \"\$progdir/\$program\" || \\ - { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ - test \"X\$file\" != \"X\$progdir/\$program\"; }; then - - file=\"\$\$-\$program\" - - if test ! -d \"\$progdir\"; then - $mkdir \"\$progdir\" - else - $rm \"\$progdir/\$file\" - fi" - - $echo >> $output "\ - - # relink executable if necessary - if test -n \"\$relink_command\"; then - if relink_command_output=\`eval \$relink_command 2>&1\`; then : - else - $echo \"\$relink_command_output\" >&2 - $rm \"\$progdir/\$file\" - exit $EXIT_FAILURE - fi - fi - - $mv \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || - { $rm \"\$progdir/\$program\"; - $mv \"\$progdir/\$file\" \"\$progdir/\$program\"; } - $rm \"\$progdir/\$file\" - fi" - else - $echo >> $output "\ - program='$outputname' - progdir=\"\$thisdir/$objdir\" -" - fi - - $echo >> $output "\ - - if test -f \"\$progdir/\$program\"; then" - - # Export our shlibpath_var if we have one. - if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then - $echo >> $output "\ - # Add our own library path to $shlibpath_var - $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" - - # Some systems cannot cope with colon-terminated $shlibpath_var - # The second colon is a workaround for a bug in BeOS R4 sed - $shlibpath_var=\`\$echo \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\` - - export $shlibpath_var -" - fi - - # fixup the dll searchpath if we need to. - if test -n "$dllsearchpath"; then - $echo >> $output "\ - # Add the dll search path components to the executable PATH - PATH=$dllsearchpath:\$PATH -" - fi - - $echo >> $output "\ - if test \"\$libtool_execute_magic\" != \"$magic\"; then - # Run the actual program with our arguments. -" - case $host in - # Backslashes separate directories on plain windows - *-*-mingw | *-*-os2*) - $echo >> $output "\ - exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} -" + func_dirname_and_basename "$output" "" "." + output_name=$func_basename_result + output_path=$func_dirname_result + cwrappersource="$output_path/$objdir/lt-$output_name.c" + cwrapper="$output_path/$output_name.exe" + $RM $cwrappersource $cwrapper + trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 + + func_emit_cwrapperexe_src > $cwrappersource + + # The wrapper executable is built using the $host compiler, + # because it contains $host paths and files. If cross- + # compiling, it, like the target executable, must be + # executed on the $host or under an emulation environment. + $opt_dry_run || { + $LTCC $LTCFLAGS -o $cwrapper $cwrappersource + $STRIP $cwrapper + } + + # Now, create the wrapper script for func_source use: + func_ltwrapper_scriptname $cwrapper + $RM $func_ltwrapper_scriptname_result + trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 + $opt_dry_run || { + # note: this script will not be executed, so do not chmod. + if test "x$build" = "x$host" ; then + $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result + else + func_emit_wrapper no > $func_ltwrapper_scriptname_result + fi + } ;; + * ) + $RM $output + trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 - *) - $echo >> $output "\ - exec \"\$progdir/\$program\" \${1+\"\$@\"} -" + func_emit_wrapper no > $output + chmod +x $output ;; esac - $echo >> $output "\ - \$echo \"\$0: cannot exec \$program \${1+\"\$@\"}\" - exit $EXIT_FAILURE - fi - else - # The program doesn't exist. - \$echo \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 - \$echo \"This script is just a wrapper for \$program.\" 1>&2 - $echo \"See the $PACKAGE documentation for more information.\" 1>&2 - exit $EXIT_FAILURE - fi -fi\ -" - chmod +x $output - fi + } exit $EXIT_SUCCESS ;; esac @@ -5418,7 +7875,7 @@ fi\ for oldlib in $oldlibs; do if test "$build_libtool_libs" = convenience; then - oldobjs="$libobjs_save" + oldobjs="$libobjs_save $symfileobj" addlibs="$convenience" build_libtool_libs=no else @@ -5427,6 +7884,9 @@ fi\ build_libtool_libs=no else oldobjs="$old_deplibs $non_pic_objects" + if test "$preload" = yes && test -f "$symfileobj"; then + oldobjs="$oldobjs $symfileobj" + fi fi addlibs="$old_convenience" fi @@ -5441,8 +7901,18 @@ fi\ # Do each command in the archive commands. if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then - cmds=$old_archive_from_new_cmds + cmds=$old_archive_from_new_cmds else + + # Add any objects from preloaded convenience libraries + if test -n "$dlprefiles"; then + gentop="$output_objdir/${outputname}x" + generated="$generated $gentop" + + func_extract_archives $gentop $dlprefiles + oldobjs="$oldobjs $func_extract_archives_result" + fi + # POSIX demands no paths to be encoded in archives. We have # to avoid creating archives with duplicate basenames if we # might have to extract them afterwards, e.g., when creating a @@ -5451,32 +7921,22 @@ fi\ # not supported by libtool). if (for obj in $oldobjs do - $echo "X$obj" | $Xsed -e 's%^.*/%%' + func_basename "$obj" + $ECHO "$func_basename_result" done | sort | sort -uc >/dev/null 2>&1); then : else - $echo "copying selected object files to avoid basename conflicts..." - - if test -z "$gentop"; then - gentop="$output_objdir/${outputname}x" - generated="$generated $gentop" - - $show "${rm}r $gentop" - $run ${rm}r "$gentop" - $show "$mkdir $gentop" - $run $mkdir "$gentop" - exit_status=$? - if test "$exit_status" -ne 0 && test ! -d "$gentop"; then - exit $exit_status - fi - fi - + $ECHO "copying selected object files to avoid basename conflicts..." + gentop="$output_objdir/${outputname}x" + generated="$generated $gentop" + func_mkdir_p "$gentop" save_oldobjs=$oldobjs oldobjs= counter=1 for obj in $save_oldobjs do - objbase=`$echo "X$obj" | $Xsed -e 's%^.*/%%'` + func_basename "$obj" + objbase="$func_basename_result" case " $oldobjs " in " ") oldobjs=$obj ;; *[\ /]"$objbase "*) @@ -5484,58 +7944,62 @@ fi\ # Make sure we don't pick an alternate name that also # overlaps. newobj=lt$counter-$objbase - counter=`expr $counter + 1` + func_arith $counter + 1 + counter=$func_arith_result case " $oldobjs " in *[\ /]"$newobj "*) ;; *) if test ! -f "$gentop/$newobj"; then break; fi ;; esac done - $show "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" - $run ln "$obj" "$gentop/$newobj" || - $run cp "$obj" "$gentop/$newobj" + func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" oldobjs="$oldobjs $gentop/$newobj" ;; *) oldobjs="$oldobjs $obj" ;; esac done fi - eval cmds=\"$old_archive_cmds\" - if len=`expr "X$cmds" : ".*"` && - test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then + func_len " $cmds" + len=$func_len_result + if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then cmds=$old_archive_cmds else # the command line is too long to link in one step, link in parts - $echo "using piecewise archive linking..." + func_verbose "using piecewise archive linking..." save_RANLIB=$RANLIB RANLIB=: objlist= concat_cmds= save_oldobjs=$oldobjs - + oldobjs= # Is there a better way of finding the last object in the list? for obj in $save_oldobjs do last_oldobj=$obj done + eval test_cmds=\"$old_archive_cmds\" + func_len " $test_cmds" + len0=$func_len_result + len=$len0 for obj in $save_oldobjs do - oldobjs="$objlist $obj" - objlist="$objlist $obj" - eval test_cmds=\"$old_archive_cmds\" - if len=`expr "X$test_cmds" : ".*" 2>/dev/null` && - test "$len" -le "$max_cmd_len"; then + func_len " $obj" + func_arith $len + $func_len_result + len=$func_arith_result + func_append objlist " $obj" + if test "$len" -lt "$max_cmd_len"; then : else # the above command should be used before it gets too long oldobjs=$objlist if test "$obj" = "$last_oldobj" ; then - RANLIB=$save_RANLIB + RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" objlist= + len=$len0 fi done RANLIB=$save_RANLIB @@ -5547,49 +8011,39 @@ fi\ fi fi fi - save_ifs="$IFS"; IFS='~' - for cmd in $cmds; do - eval cmd=\"$cmd\" - IFS="$save_ifs" - $show "$cmd" - $run eval "$cmd" || exit $? - done - IFS="$save_ifs" + func_execute_cmds "$cmds" 'exit $?' done - if test -n "$generated"; then - $show "${rm}r$generated" - $run ${rm}r$generated - fi + test -n "$generated" && \ + func_show_eval "${RM}r$generated" # Now create the libtool archive. case $output in *.la) old_library= test "$build_old_libs" = yes && old_library="$libname.$libext" - $show "creating $output" + func_verbose "creating $output" # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then - relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command" + relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else - var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"` - relink_command="$var=\"$var_value\"; export $var; $relink_command" + func_quote_for_eval "$var_value" + relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done # Quote the link command for shipping. relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" - relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"` + relink_command=`$ECHO "X$relink_command" | $Xsed -e "$sed_quote_subst"` if test "$hardcode_automatic" = yes ; then relink_command= fi - # Only create the output if not a dry run. - if test -z "$run"; then + $opt_dry_run || { for installed in no yes; do if test "$installed" = yes; then if test -z "$install_libdir"; then @@ -5601,12 +8055,11 @@ fi\ for deplib in $dependency_libs; do case $deplib in *.la) - name=`$echo "X$deplib" | $Xsed -e 's%^.*/%%'` + func_basename "$deplib" + name="$func_basename_result" eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` - if test -z "$libdir"; then - $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2 - exit $EXIT_FAILURE - fi + test -z "$libdir" && \ + func_fatal_error "\`$deplib' is not a valid libtool archive" newdependency_libs="$newdependency_libs $libdir/$name" ;; *) newdependency_libs="$newdependency_libs $deplib" ;; @@ -5614,25 +8067,37 @@ fi\ done dependency_libs="$newdependency_libs" newdlfiles= + for lib in $dlfiles; do - name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'` - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` - if test -z "$libdir"; then - $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 - exit $EXIT_FAILURE - fi - newdlfiles="$newdlfiles $libdir/$name" + case $lib in + *.la) + func_basename "$lib" + name="$func_basename_result" + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + test -z "$libdir" && \ + func_fatal_error "\`$lib' is not a valid libtool archive" + newdlfiles="$newdlfiles $libdir/$name" + ;; + *) newdlfiles="$newdlfiles $lib" ;; + esac done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do - name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'` - eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` - if test -z "$libdir"; then - $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 - exit $EXIT_FAILURE - fi - newdlprefiles="$newdlprefiles $libdir/$name" + case $lib in + *.la) + # Only pass preopened files to the pseudo-archive (for + # eventual linking with the app. that links it) if we + # didn't already link the preopened objects directly into + # the library: + func_basename "$lib" + name="$func_basename_result" + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + test -z "$libdir" && \ + func_fatal_error "\`$lib' is not a valid libtool archive" + newdlprefiles="$newdlprefiles $libdir/$name" + ;; + esac done dlprefiles="$newdlprefiles" else @@ -5655,15 +8120,15 @@ fi\ done dlprefiles="$newdlprefiles" fi - $rm $output + $RM $output # place dlname in correct position for cygwin tdlname=$dlname case $host,$output,$installed,$module,$dlname in - *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll) tdlname=../bin/$dlname ;; + *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) tdlname=../bin/$dlname ;; esac - $echo > $output "\ + $ECHO > $output "\ # $outputname - a libtool library file -# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP +# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION # # Please DO NOT delete this file! # It is necessary for linking the library. @@ -5677,9 +8142,15 @@ library_names='$library_names' # The name of the static archive. old_library='$old_library' +# Linker flags that can not go in dependency_libs. +inherited_linker_flags='$new_inherited_linker_flags' + # Libraries that this one depends upon. dependency_libs='$dependency_libs' +# Names of additional weak libraries provided by this library +weak_library_names='$weak_libs' + # Version information for $libname. current=$current age=$age @@ -5698,746 +8169,29 @@ dlpreopen='$dlprefiles' # Directory that this library needs to be installed in: libdir='$install_libdir'" if test "$installed" = no && test "$need_relink" = yes; then - $echo >> $output "\ + $ECHO >> $output "\ relink_command=\"$relink_command\"" fi done - fi + } # Do a symbolic link so that the libtool archive can be found in # LD_LIBRARY_PATH before the program is installed. - $show "(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)" - $run eval '(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)' || exit $? + func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' ;; esac exit $EXIT_SUCCESS - ;; +} - # libtool install mode - install) - modename="$modename: install" +{ test "$mode" = link || test "$mode" = relink; } && + func_mode_link ${1+"$@"} - # There may be an optional sh(1) argument at the beginning of - # install_prog (especially on Windows NT). - if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || - # Allow the use of GNU shtool's install command. - $echo "X$nonopt" | grep shtool > /dev/null; then - # Aesthetically quote it. - arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"` - case $arg in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - arg="\"$arg\"" - ;; - esac - install_prog="$arg " - arg="$1" - shift - else - install_prog= - arg=$nonopt - fi - # The real first argument should be the name of the installation program. - # Aesthetically quote it. - arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` - case $arg in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - arg="\"$arg\"" - ;; - esac - install_prog="$install_prog$arg" - - # We need to accept at least all the BSD install flags. - dest= - files= - opts= - prev= - install_type= - isdir=no - stripme= - for arg - do - if test -n "$dest"; then - files="$files $dest" - dest=$arg - continue - fi - - case $arg in - -d) isdir=yes ;; - -f) - case " $install_prog " in - *[\\\ /]cp\ *) ;; - *) prev=$arg ;; - esac - ;; - -g | -m | -o) prev=$arg ;; - -s) - stripme=" -s" - continue - ;; - -*) - ;; - *) - # If the previous option needed an argument, then skip it. - if test -n "$prev"; then - prev= - else - dest=$arg - continue - fi - ;; - esac - - # Aesthetically quote the argument. - arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` - case $arg in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") - arg="\"$arg\"" - ;; - esac - install_prog="$install_prog $arg" - done - - if test -z "$install_prog"; then - $echo "$modename: you must specify an install program" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - fi - - if test -n "$prev"; then - $echo "$modename: the \`$prev' option requires an argument" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - fi - - if test -z "$files"; then - if test -z "$dest"; then - $echo "$modename: no file or destination specified" 1>&2 - else - $echo "$modename: you must specify a destination" 1>&2 - fi - $echo "$help" 1>&2 - exit $EXIT_FAILURE - fi - - # Strip any trailing slash from the destination. - dest=`$echo "X$dest" | $Xsed -e 's%/$%%'` - - # Check to see that the destination is a directory. - test -d "$dest" && isdir=yes - if test "$isdir" = yes; then - destdir="$dest" - destname= - else - destdir=`$echo "X$dest" | $Xsed -e 's%/[^/]*$%%'` - test "X$destdir" = "X$dest" && destdir=. - destname=`$echo "X$dest" | $Xsed -e 's%^.*/%%'` - - # Not a directory, so check to see that there is only one file specified. - set dummy $files - if test "$#" -gt 2; then - $echo "$modename: \`$dest' is not a directory" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - fi - fi - case $destdir in - [\\/]* | [A-Za-z]:[\\/]*) ;; - *) - for file in $files; do - case $file in - *.lo) ;; - *) - $echo "$modename: \`$destdir' must be an absolute directory name" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - ;; - esac - done - ;; - esac - - # This variable tells wrapper scripts just to set variables rather - # than running their programs. - libtool_install_magic="$magic" - - staticlibs= - future_libdirs= - current_libdirs= - for file in $files; do - - # Do each installation. - case $file in - *.$libext) - # Do the static libraries later. - staticlibs="$staticlibs $file" - ;; - - *.la) - # Check to see that this really is a libtool archive. - if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : - else - $echo "$modename: \`$file' is not a valid libtool archive" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - fi - - library_names= - old_library= - relink_command= - # If there is no directory component, then add one. - case $file in - */* | *\\*) . $file ;; - *) . ./$file ;; - esac - - # Add the libdir to current_libdirs if it is the destination. - if test "X$destdir" = "X$libdir"; then - case "$current_libdirs " in - *" $libdir "*) ;; - *) current_libdirs="$current_libdirs $libdir" ;; - esac - else - # Note the libdir as a future libdir. - case "$future_libdirs " in - *" $libdir "*) ;; - *) future_libdirs="$future_libdirs $libdir" ;; - esac - fi - - dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/ - test "X$dir" = "X$file/" && dir= - dir="$dir$objdir" - - if test -n "$relink_command"; then - # Determine the prefix the user has applied to our future dir. - inst_prefix_dir=`$echo "$destdir" | $SED "s%$libdir\$%%"` - - # Don't allow the user to place us outside of our expected - # location b/c this prevents finding dependent libraries that - # are installed to the same prefix. - # At present, this check doesn't affect windows .dll's that - # are installed into $libdir/../bin (currently, that works fine) - # but it's something to keep an eye on. - if test "$inst_prefix_dir" = "$destdir"; then - $echo "$modename: error: cannot install \`$file' to a directory not ending in $libdir" 1>&2 - exit $EXIT_FAILURE - fi - - if test -n "$inst_prefix_dir"; then - # Stick the inst_prefix_dir data into the link command. - relink_command=`$echo "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` - else - relink_command=`$echo "$relink_command" | $SED "s%@inst_prefix_dir@%%"` - fi - - $echo "$modename: warning: relinking \`$file'" 1>&2 - $show "$relink_command" - if $run eval "$relink_command"; then : - else - $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2 - exit $EXIT_FAILURE - fi - fi - - # See the names of the shared library. - set dummy $library_names - if test -n "$2"; then - realname="$2" - shift - shift - - srcname="$realname" - test -n "$relink_command" && srcname="$realname"T - - # Install the shared library and build the symlinks. - $show "$install_prog $dir/$srcname $destdir/$realname" - $run eval "$install_prog $dir/$srcname $destdir/$realname" || exit $? - if test -n "$stripme" && test -n "$striplib"; then - $show "$striplib $destdir/$realname" - $run eval "$striplib $destdir/$realname" || exit $? - fi - - if test "$#" -gt 0; then - # Delete the old symlinks, and create new ones. - # Try `ln -sf' first, because the `ln' binary might depend on - # the symlink we replace! Solaris /bin/ln does not understand -f, - # so we also need to try rm && ln -s. - for linkname - do - if test "$linkname" != "$realname"; then - $show "(cd $destdir && { $LN_S -f $realname $linkname || { $rm $linkname && $LN_S $realname $linkname; }; })" - $run eval "(cd $destdir && { $LN_S -f $realname $linkname || { $rm $linkname && $LN_S $realname $linkname; }; })" - fi - done - fi - - # Do each command in the postinstall commands. - lib="$destdir/$realname" - cmds=$postinstall_cmds - save_ifs="$IFS"; IFS='~' - for cmd in $cmds; do - IFS="$save_ifs" - eval cmd=\"$cmd\" - $show "$cmd" - $run eval "$cmd" || { - lt_exit=$? - - # Restore the uninstalled library and exit - if test "$mode" = relink; then - $run eval '(cd $output_objdir && $rm ${realname}T && $mv ${realname}U $realname)' - fi - - exit $lt_exit - } - done - IFS="$save_ifs" - fi - - # Install the pseudo-library for information purposes. - name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - instname="$dir/$name"i - $show "$install_prog $instname $destdir/$name" - $run eval "$install_prog $instname $destdir/$name" || exit $? - - # Maybe install the static library, too. - test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" - ;; - - *.lo) - # Install (i.e. copy) a libtool object. - - # Figure out destination file name, if it wasn't already specified. - if test -n "$destname"; then - destfile="$destdir/$destname" - else - destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - destfile="$destdir/$destfile" - fi - - # Deduce the name of the destination old-style object file. - case $destfile in - *.lo) - staticdest=`$echo "X$destfile" | $Xsed -e "$lo2o"` - ;; - *.$objext) - staticdest="$destfile" - destfile= - ;; - *) - $echo "$modename: cannot copy a libtool object to \`$destfile'" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - ;; - esac - - # Install the libtool object if requested. - if test -n "$destfile"; then - $show "$install_prog $file $destfile" - $run eval "$install_prog $file $destfile" || exit $? - fi - - # Install the old object if enabled. - if test "$build_old_libs" = yes; then - # Deduce the name of the old-style object file. - staticobj=`$echo "X$file" | $Xsed -e "$lo2o"` - - $show "$install_prog $staticobj $staticdest" - $run eval "$install_prog \$staticobj \$staticdest" || exit $? - fi - exit $EXIT_SUCCESS - ;; - - *) - # Figure out destination file name, if it wasn't already specified. - if test -n "$destname"; then - destfile="$destdir/$destname" - else - destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - destfile="$destdir/$destfile" - fi - - # If the file is missing, and there is a .exe on the end, strip it - # because it is most likely a libtool script we actually want to - # install - stripped_ext="" - case $file in - *.exe) - if test ! -f "$file"; then - file=`$echo $file|${SED} 's,.exe$,,'` - stripped_ext=".exe" - fi - ;; - esac - - # Do a test to see if this is really a libtool program. - case $host in - *cygwin*|*mingw*) - wrapper=`$echo $file | ${SED} -e 's,.exe$,,'` - ;; - *) - wrapper=$file - ;; - esac - if (${SED} -e '4q' $wrapper | grep "^# Generated by .*$PACKAGE")>/dev/null 2>&1; then - notinst_deplibs= - relink_command= - - # Note that it is not necessary on cygwin/mingw to append a dot to - # foo even if both foo and FILE.exe exist: automatic-append-.exe - # behavior happens only for exec(3), not for open(2)! Also, sourcing - # `FILE.' does not work on cygwin managed mounts. - # - # If there is no directory component, then add one. - case $wrapper in - */* | *\\*) . ${wrapper} ;; - *) . ./${wrapper} ;; - esac - - # Check the variables that should have been set. - if test -z "$notinst_deplibs"; then - $echo "$modename: invalid libtool wrapper script \`$wrapper'" 1>&2 - exit $EXIT_FAILURE - fi - - finalize=yes - for lib in $notinst_deplibs; do - # Check to see that each library is installed. - libdir= - if test -f "$lib"; then - # If there is no directory component, then add one. - case $lib in - */* | *\\*) . $lib ;; - *) . ./$lib ;; - esac - fi - libfile="$libdir/"`$echo "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test - if test -n "$libdir" && test ! -f "$libfile"; then - $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2 - finalize=no - fi - done - - relink_command= - # Note that it is not necessary on cygwin/mingw to append a dot to - # foo even if both foo and FILE.exe exist: automatic-append-.exe - # behavior happens only for exec(3), not for open(2)! Also, sourcing - # `FILE.' does not work on cygwin managed mounts. - # - # If there is no directory component, then add one. - case $wrapper in - */* | *\\*) . ${wrapper} ;; - *) . ./${wrapper} ;; - esac - - outputname= - if test "$fast_install" = no && test -n "$relink_command"; then - if test "$finalize" = yes && test -z "$run"; then - tmpdir=`func_mktempdir` - file=`$echo "X$file$stripped_ext" | $Xsed -e 's%^.*/%%'` - outputname="$tmpdir/$file" - # Replace the output file specification. - relink_command=`$echo "X$relink_command" | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g'` - - $show "$relink_command" - if $run eval "$relink_command"; then : - else - $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2 - ${rm}r "$tmpdir" - continue - fi - file="$outputname" - else - $echo "$modename: warning: cannot relink \`$file'" 1>&2 - fi - else - # Install the binary that we compiled earlier. - file=`$echo "X$file$stripped_ext" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"` - fi - fi - - # remove .exe since cygwin /usr/bin/install will append another - # one anyway - case $install_prog,$host in - */usr/bin/install*,*cygwin*) - case $file:$destfile in - *.exe:*.exe) - # this is ok - ;; - *.exe:*) - destfile=$destfile.exe - ;; - *:*.exe) - destfile=`$echo $destfile | ${SED} -e 's,.exe$,,'` - ;; - esac - ;; - esac - $show "$install_prog$stripme $file $destfile" - $run eval "$install_prog\$stripme \$file \$destfile" || exit $? - test -n "$outputname" && ${rm}r "$tmpdir" - ;; - esac - done - - for file in $staticlibs; do - name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - - # Set up the ranlib parameters. - oldlib="$destdir/$name" - - $show "$install_prog $file $oldlib" - $run eval "$install_prog \$file \$oldlib" || exit $? - - if test -n "$stripme" && test -n "$old_striplib"; then - $show "$old_striplib $oldlib" - $run eval "$old_striplib $oldlib" || exit $? - fi - - # Do each command in the postinstall commands. - cmds=$old_postinstall_cmds - save_ifs="$IFS"; IFS='~' - for cmd in $cmds; do - IFS="$save_ifs" - eval cmd=\"$cmd\" - $show "$cmd" - $run eval "$cmd" || exit $? - done - IFS="$save_ifs" - done - - if test -n "$future_libdirs"; then - $echo "$modename: warning: remember to run \`$progname --finish$future_libdirs'" 1>&2 - fi - - if test -n "$current_libdirs"; then - # Maybe just do a dry run. - test -n "$run" && current_libdirs=" -n$current_libdirs" - exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' - else - exit $EXIT_SUCCESS - fi - ;; - - # libtool finish mode - finish) - modename="$modename: finish" - libdirs="$nonopt" - admincmds= - - if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then - for dir - do - libdirs="$libdirs $dir" - done - - for libdir in $libdirs; do - if test -n "$finish_cmds"; then - # Do each command in the finish commands. - cmds=$finish_cmds - save_ifs="$IFS"; IFS='~' - for cmd in $cmds; do - IFS="$save_ifs" - eval cmd=\"$cmd\" - $show "$cmd" - $run eval "$cmd" || admincmds="$admincmds - $cmd" - done - IFS="$save_ifs" - fi - if test -n "$finish_eval"; then - # Do the single finish_eval. - eval cmds=\"$finish_eval\" - $run eval "$cmds" || admincmds="$admincmds - $cmds" - fi - done - fi - - # Exit here if they wanted silent mode. - test "$show" = : && exit $EXIT_SUCCESS - - $echo "X----------------------------------------------------------------------" | $Xsed - $echo "Libraries have been installed in:" - for libdir in $libdirs; do - $echo " $libdir" - done - $echo - $echo "If you ever happen to want to link against installed libraries" - $echo "in a given directory, LIBDIR, you must either use libtool, and" - $echo "specify the full pathname of the library, or use the \`-LLIBDIR'" - $echo "flag during linking and do at least one of the following:" - if test -n "$shlibpath_var"; then - $echo " - add LIBDIR to the \`$shlibpath_var' environment variable" - $echo " during execution" - fi - if test -n "$runpath_var"; then - $echo " - add LIBDIR to the \`$runpath_var' environment variable" - $echo " during linking" - fi - if test -n "$hardcode_libdir_flag_spec"; then - libdir=LIBDIR - eval flag=\"$hardcode_libdir_flag_spec\" - - $echo " - use the \`$flag' linker flag" - fi - if test -n "$admincmds"; then - $echo " - have your system administrator run these commands:$admincmds" - fi - if test -f /etc/ld.so.conf; then - $echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" - fi - $echo - $echo "See any operating system documentation about shared libraries for" - $echo "more information, such as the ld(1) and ld.so(8) manual pages." - $echo "X----------------------------------------------------------------------" | $Xsed - exit $EXIT_SUCCESS - ;; - - # libtool execute mode - execute) - modename="$modename: execute" - - # The first argument is the command name. - cmd="$nonopt" - if test -z "$cmd"; then - $echo "$modename: you must specify a COMMAND" 1>&2 - $echo "$help" - exit $EXIT_FAILURE - fi - - # Handle -dlopen flags immediately. - for file in $execute_dlfiles; do - if test ! -f "$file"; then - $echo "$modename: \`$file' is not a file" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - fi - - dir= - case $file in - *.la) - # Check to see that this really is a libtool archive. - if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then : - else - $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - fi - - # Read the libtool library. - dlname= - library_names= - - # If there is no directory component, then add one. - case $file in - */* | *\\*) . $file ;; - *) . ./$file ;; - esac - - # Skip this library if it cannot be dlopened. - if test -z "$dlname"; then - # Warn if it was a shared library. - test -n "$library_names" && $echo "$modename: warning: \`$file' was not linked with \`-export-dynamic'" - continue - fi - - dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` - test "X$dir" = "X$file" && dir=. - - if test -f "$dir/$objdir/$dlname"; then - dir="$dir/$objdir" - else - $echo "$modename: cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" 1>&2 - exit $EXIT_FAILURE - fi - ;; - - *.lo) - # Just add the directory containing the .lo file. - dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` - test "X$dir" = "X$file" && dir=. - ;; - - *) - $echo "$modename: warning \`-dlopen' is ignored for non-libtool libraries and objects" 1>&2 - continue - ;; - esac - - # Get the absolute pathname. - absdir=`cd "$dir" && pwd` - test -n "$absdir" && dir="$absdir" - - # Now add the directory to shlibpath_var. - if eval "test -z \"\$$shlibpath_var\""; then - eval "$shlibpath_var=\"\$dir\"" - else - eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" - fi - done - - # This variable tells wrapper scripts just to set shlibpath_var - # rather than running their programs. - libtool_execute_magic="$magic" - - # Check if any of the arguments is a wrapper script. - args= - for file - do - case $file in - -*) ;; - *) - # Do a test to see if this is really a libtool program. - if (${SED} -e '4q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then - # If there is no directory component, then add one. - case $file in - */* | *\\*) . $file ;; - *) . ./$file ;; - esac - - # Transform arg to wrapped name. - file="$progdir/$program" - fi - ;; - esac - # Quote arguments (to preserve shell metacharacters). - file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"` - args="$args \"$file\"" - done - - if test -z "$run"; then - if test -n "$shlibpath_var"; then - # Export the shlibpath_var. - eval "export $shlibpath_var" - fi - - # Restore saved environment variables - if test "${save_LC_ALL+set}" = set; then - LC_ALL="$save_LC_ALL"; export LC_ALL - fi - if test "${save_LANG+set}" = set; then - LANG="$save_LANG"; export LANG - fi - - # Now prepare to actually exec the command. - exec_cmd="\$cmd$args" - else - # Display what would be done. - if test -n "$shlibpath_var"; then - eval "\$echo \"\$shlibpath_var=\$$shlibpath_var\"" - $echo "export $shlibpath_var" - fi - $echo "$cmd$args" - exit $EXIT_SUCCESS - fi - ;; - - # libtool clean and uninstall mode - clean | uninstall) - modename="$modename: $mode" - rm="$nonopt" +# func_mode_uninstall arg... +func_mode_uninstall () +{ + $opt_debug + RM="$nonopt" files= rmforce= exit_status=0 @@ -6449,30 +8203,28 @@ relink_command=\"$relink_command\"" for arg do case $arg in - -f) rm="$rm $arg"; rmforce=yes ;; - -*) rm="$rm $arg" ;; + -f) RM="$RM $arg"; rmforce=yes ;; + -*) RM="$RM $arg" ;; *) files="$files $arg" ;; esac done - if test -z "$rm"; then - $echo "$modename: you must specify an RM program" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - fi + test -z "$RM" && \ + func_fatal_help "you must specify an RM program" rmdirs= origobjdir="$objdir" for file in $files; do - dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'` - if test "X$dir" = "X$file"; then - dir=. + func_dirname "$file" "" "." + dir="$func_dirname_result" + if test "X$dir" = X.; then objdir="$origobjdir" else objdir="$dir/$origobjdir" fi - name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` + func_basename "$file" + name="$func_basename_result" test "$mode" = uninstall && objdir="$dir" # Remember objdir for removal later, being careful to avoid duplicates @@ -6484,9 +8236,9 @@ relink_command=\"$relink_command\"" fi # Don't error if the file doesn't exist and rm -f was used. - if (test -L "$file") >/dev/null 2>&1 \ - || (test -h "$file") >/dev/null 2>&1 \ - || test -f "$file"; then + if { test -L "$file"; } >/dev/null 2>&1 || + { test -h "$file"; } >/dev/null 2>&1 || + test -f "$file"; then : elif test -d "$file"; then exit_status=1 @@ -6500,8 +8252,8 @@ relink_command=\"$relink_command\"" case $name in *.la) # Possibly a libtool archive, so verify it. - if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then - . $dir/$name + if func_lalib_p "$file"; then + func_source $dir/$name # Delete the libtool libraries and symlinks. for n in $library_names; do @@ -6516,39 +8268,17 @@ relink_command=\"$relink_command\"" *" $dlname "*) ;; *) rmfiles="$rmfiles $objdir/$dlname" ;; esac - test -n "$libdir" && rmfiles="$rmfiles $objdir/$name $objdir/${name}i" + test -n "$libdir" && rmfiles="$rmfiles $objdir/$name $objdir/${name}i" ;; uninstall) if test -n "$library_names"; then # Do each command in the postuninstall commands. - cmds=$postuninstall_cmds - save_ifs="$IFS"; IFS='~' - for cmd in $cmds; do - IFS="$save_ifs" - eval cmd=\"$cmd\" - $show "$cmd" - $run eval "$cmd" - if test "$?" -ne 0 && test "$rmforce" != yes; then - exit_status=1 - fi - done - IFS="$save_ifs" + func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. - cmds=$old_postuninstall_cmds - save_ifs="$IFS"; IFS='~' - for cmd in $cmds; do - IFS="$save_ifs" - eval cmd=\"$cmd\" - $show "$cmd" - $run eval "$cmd" - if test "$?" -ne 0 && test "$rmforce" != yes; then - exit_status=1 - fi - done - IFS="$save_ifs" + func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' fi # FIXME: should reinstall the best remaining shared library. ;; @@ -6558,20 +8288,20 @@ relink_command=\"$relink_command\"" *.lo) # Possibly a libtool object, so verify it. - if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then + if func_lalib_p "$file"; then # Read the .lo file - . $dir/$name + func_source $dir/$name # Add PIC object to the list of files to remove. - if test -n "$pic_object" \ - && test "$pic_object" != none; then + if test -n "$pic_object" && + test "$pic_object" != none; then rmfiles="$rmfiles $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. - if test -n "$non_pic_object" \ - && test "$non_pic_object" != none; then + if test -n "$non_pic_object" && + test "$non_pic_object" != none; then rmfiles="$rmfiles $dir/$non_pic_object" fi fi @@ -6582,17 +8312,26 @@ relink_command=\"$relink_command\"" noexename=$name case $file in *.exe) - file=`$echo $file|${SED} 's,.exe$,,'` - noexename=`$echo $name|${SED} 's,.exe$,,'` + func_stripname '' '.exe' "$file" + file=$func_stripname_result + func_stripname '' '.exe' "$name" + noexename=$func_stripname_result # $file with .exe has already been added to rmfiles, # add $file without .exe rmfiles="$rmfiles $file" ;; esac # Do a test to see if this is a libtool program. - if (${SED} -e '4q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then - relink_command= - . $dir/$noexename + if func_ltwrapper_p "$file"; then + if func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + relink_command= + func_source $func_ltwrapper_scriptname_result + rmfiles="$rmfiles $func_ltwrapper_scriptname_result" + else + relink_command= + func_source $dir/$noexename + fi # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles @@ -6607,237 +8346,38 @@ relink_command=\"$relink_command\"" fi ;; esac - $show "$rm $rmfiles" - $run $rm $rmfiles || exit_status=1 + func_show_eval "$RM $rmfiles" 'exit_status=1' done objdir="$origobjdir" # Try to remove the ${objdir}s in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then - $show "rmdir $dir" - $run rmdir $dir >/dev/null 2>&1 + func_show_eval "rmdir $dir >/dev/null 2>&1" fi done exit $exit_status - ;; +} - "") - $echo "$modename: you must specify a MODE" 1>&2 - $echo "$generic_help" 1>&2 - exit $EXIT_FAILURE - ;; - esac +{ test "$mode" = uninstall || test "$mode" = clean; } && + func_mode_uninstall ${1+"$@"} - if test -z "$exec_cmd"; then - $echo "$modename: invalid operation mode \`$mode'" 1>&2 - $echo "$generic_help" 1>&2 - exit $EXIT_FAILURE - fi -fi # test -z "$show_help" +test -z "$mode" && { + help="$generic_help" + func_fatal_help "you must specify a MODE" +} + +test -z "$exec_cmd" && \ + func_fatal_help "invalid operation mode \`$mode'" if test -n "$exec_cmd"; then - eval exec $exec_cmd + eval exec "$exec_cmd" exit $EXIT_FAILURE fi -# We need to display help for each of the modes. -case $mode in -"") $echo \ -"Usage: $modename [OPTION]... [MODE-ARG]... +exit $exit_status -Provide generalized library-building support services. - - --config show all configuration variables - --debug enable verbose shell tracing --n, --dry-run display commands without modifying any files - --features display basic configuration information and exit - --finish same as \`--mode=finish' - --help display this help message and exit - --mode=MODE use operation mode MODE [default=inferred from MODE-ARGS] - --quiet same as \`--silent' - --silent don't print informational messages - --tag=TAG use configuration variables from tag TAG - --version print version information - -MODE must be one of the following: - - clean remove files from the build directory - compile compile a source file into a libtool object - execute automatically set library path, then run a program - finish complete the installation of libtool libraries - install install libraries or executables - link create a library or an executable - uninstall remove libraries from an installed directory - -MODE-ARGS vary depending on the MODE. Try \`$modename --help --mode=MODE' for -a more detailed description of MODE. - -Report bugs to ." - exit $EXIT_SUCCESS - ;; - -clean) - $echo \ -"Usage: $modename [OPTION]... --mode=clean RM [RM-OPTION]... FILE... - -Remove files from the build directory. - -RM is the name of the program to use to delete files associated with each FILE -(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed -to RM. - -If FILE is a libtool library, object or program, all the files associated -with it are deleted. Otherwise, only FILE itself is deleted using RM." - ;; - -compile) - $echo \ -"Usage: $modename [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE - -Compile a source file into a libtool library object. - -This mode accepts the following additional options: - - -o OUTPUT-FILE set the output file name to OUTPUT-FILE - -prefer-pic try to building PIC objects only - -prefer-non-pic try to building non-PIC objects only - -static always build a \`.o' file suitable for static linking - -COMPILE-COMMAND is a command to be used in creating a \`standard' object file -from the given SOURCEFILE. - -The output file name is determined by removing the directory component from -SOURCEFILE, then substituting the C source code suffix \`.c' with the -library object suffix, \`.lo'." - ;; - -execute) - $echo \ -"Usage: $modename [OPTION]... --mode=execute COMMAND [ARGS]... - -Automatically set library path, then run a program. - -This mode accepts the following additional options: - - -dlopen FILE add the directory containing FILE to the library path - -This mode sets the library path environment variable according to \`-dlopen' -flags. - -If any of the ARGS are libtool executable wrappers, then they are translated -into their corresponding uninstalled binary, and any of their required library -directories are added to the library path. - -Then, COMMAND is executed, with ARGS as arguments." - ;; - -finish) - $echo \ -"Usage: $modename [OPTION]... --mode=finish [LIBDIR]... - -Complete the installation of libtool libraries. - -Each LIBDIR is a directory that contains libtool libraries. - -The commands that this mode executes may require superuser privileges. Use -the \`--dry-run' option if you just want to see what would be executed." - ;; - -install) - $echo \ -"Usage: $modename [OPTION]... --mode=install INSTALL-COMMAND... - -Install executables or libraries. - -INSTALL-COMMAND is the installation command. The first component should be -either the \`install' or \`cp' program. - -The rest of the components are interpreted as arguments to that command (only -BSD-compatible install options are recognized)." - ;; - -link) - $echo \ -"Usage: $modename [OPTION]... --mode=link LINK-COMMAND... - -Link object files or libraries together to form another library, or to -create an executable program. - -LINK-COMMAND is a command using the C compiler that you would use to create -a program from several object files. - -The following components of LINK-COMMAND are treated specially: - - -all-static do not do any dynamic linking at all - -avoid-version do not add a version suffix if possible - -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime - -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols - -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) - -export-symbols SYMFILE - try to export only the symbols listed in SYMFILE - -export-symbols-regex REGEX - try to export only the symbols matching REGEX - -LLIBDIR search LIBDIR for required installed libraries - -lNAME OUTPUT-FILE requires the installed library libNAME - -module build a library that can dlopened - -no-fast-install disable the fast-install mode - -no-install link a not-installable executable - -no-undefined declare that a library does not refer to external symbols - -o OUTPUT-FILE create OUTPUT-FILE from the specified objects - -objectlist FILE Use a list of object files found in FILE to specify objects - -precious-files-regex REGEX - don't remove output files matching REGEX - -release RELEASE specify package release information - -rpath LIBDIR the created library will eventually be installed in LIBDIR - -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries - -static do not do any dynamic linking of libtool libraries - -version-info CURRENT[:REVISION[:AGE]] - specify library version info [each variable defaults to 0] - -All other options (arguments beginning with \`-') are ignored. - -Every other argument is treated as a filename. Files ending in \`.la' are -treated as uninstalled libtool libraries, other files are standard or library -object files. - -If the OUTPUT-FILE ends in \`.la', then a libtool library is created, -only library objects (\`.lo' files) may be specified, and \`-rpath' is -required, except when creating a convenience library. - -If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created -using \`ar' and \`ranlib', or on Windows using \`lib'. - -If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file -is created, otherwise an executable program is created." - ;; - -uninstall) - $echo \ -"Usage: $modename [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... - -Remove libraries from an installation directory. - -RM is the name of the program to use to delete files associated with each FILE -(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed -to RM. - -If FILE is a libtool library, all the files associated with it are deleted. -Otherwise, only FILE itself is deleted using RM." - ;; - -*) - $echo "$modename: invalid operation mode \`$mode'" 1>&2 - $echo "$help" 1>&2 - exit $EXIT_FAILURE - ;; -esac - -$echo -$echo "Try \`$modename --help' for more information about other modes." - -exit $? # The TAGs below are defined such that we never get into a situation # in which we disable both kinds of libraries. Given conflicting @@ -6851,14 +8391,17 @@ exit $? # configuration. But we'll never go from static-only to shared-only. # ### BEGIN LIBTOOL TAG CONFIG: disable-shared -disable_libs=shared +build_libtool_libs=no +build_old_libs=yes # ### END LIBTOOL TAG CONFIG: disable-shared # ### BEGIN LIBTOOL TAG CONFIG: disable-static -disable_libs=static +build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` # ### END LIBTOOL TAG CONFIG: disable-static # Local Variables: # mode:shell-script # sh-indentation:2 # End: +# vi:sw=2 + diff --git a/build-scripts/makedep.sh b/build-scripts/makedep.sh index cebc36f1c..3b3863b4c 100755 --- a/build-scripts/makedep.sh +++ b/build-scripts/makedep.sh @@ -43,7 +43,11 @@ do echo "Generating dependencies for $src" ext=`echo $src | sed 's|.*\.\(.*\)|\1|'` obj=`echo $src | sed "s|^.*/\([^ ]*\)\..*|\1.lo|g"` echo "\$(objects)/$obj: $src \\" >>${output}.new - search_deps $src | sort | uniq >>${output}.new + + # No search to be done with Windows resource files + if test x"$ext" != x"rc"; then + search_deps $src | sort | uniq >>${output}.new + fi case $ext in c) cat >>${output}.new <<__EOF__ @@ -65,7 +69,7 @@ __EOF__ ;; asm) cat >>${output}.new <<__EOF__ - \$(LIBTOOL) --tag=CC --mode=compile \$(auxdir)/strip_fPIC.sh \$(NASM) $src -o \$@ + \$(LIBTOOL) --tag=CC --mode=compile \$(auxdir)/strip_fPIC.sh \$(NASM) -I\$(srcdir)/src/hermes/ $src -o \$@ __EOF__ ;; @@ -73,6 +77,12 @@ __EOF__ \$(LIBTOOL) --mode=compile \$(CC) \$(CFLAGS) \$(EXTRA_CFLAGS) -c $src -o \$@ +__EOF__ + ;; + rc) cat >>${output}.new <<__EOF__ + + \$(LIBTOOL) --tag=RC --mode=compile \$(WINDRES) $src -o \$@ + __EOF__ ;; *) echo "Unknown file extension: $ext";; diff --git a/build-scripts/strip_fPIC.sh b/build-scripts/strip_fPIC.sh index 8719b896e..45d34ba47 100755 --- a/build-scripts/strip_fPIC.sh +++ b/build-scripts/strip_fPIC.sh @@ -5,8 +5,8 @@ command="" while [ $# -gt 0 ]; do case "$1" in - -?PIC) - # Ignore -fPIC and -DPIC options + -fPIC) + # Ignore -fPIC option ;; -fno-common) # Ignore -fPIC and -DPIC options diff --git a/configure.in b/configure.in index 79cac877f..08c8e1e97 100644 --- a/configure.in +++ b/configure.in @@ -2,6 +2,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(README) AC_CONFIG_HEADER(include/SDL_config.h) AC_GNU_SOURCE +AC_CONFIG_AUX_DIRS($srcdir/build-scripts) dnl Set various version strings - taken gratefully from the GTk sources # @@ -16,9 +17,9 @@ dnl Set various version strings - taken gratefully from the GTk sources # SDL_MAJOR_VERSION=1 SDL_MINOR_VERSION=2 -SDL_MICRO_VERSION=11 -SDL_INTERFACE_AGE=0 -SDL_BINARY_AGE=11 +SDL_MICRO_VERSION=15 +SDL_INTERFACE_AGE=4 +SDL_BINARY_AGE=15 SDL_VERSION=$SDL_MAJOR_VERSION.$SDL_MINOR_VERSION.$SDL_MICRO_VERSION AC_SUBST(SDL_MAJOR_VERSION) @@ -29,10 +30,13 @@ AC_SUBST(SDL_BINARY_AGE) AC_SUBST(SDL_VERSION) # libtool versioning +LT_INIT([win32-dll]) + LT_RELEASE=$SDL_MAJOR_VERSION.$SDL_MINOR_VERSION LT_CURRENT=`expr $SDL_MICRO_VERSION - $SDL_INTERFACE_AGE` LT_REVISION=$SDL_INTERFACE_AGE LT_AGE=`expr $SDL_BINARY_AGE - $SDL_INTERFACE_AGE` +m4_pattern_allow([^LT_]) AC_SUBST(LT_RELEASE) AC_SUBST(LT_CURRENT) @@ -40,8 +44,8 @@ AC_SUBST(LT_REVISION) AC_SUBST(LT_AGE) dnl Detect the canonical build and host environments -AC_CONFIG_AUX_DIRS($srcdir/build-scripts) -AC_CANONICAL_HOST +AC_CONFIG_AUX_DIR([build-scripts]) +dnl AC_CANONICAL_HOST AC_C_BIGENDIAN if test x$ac_cv_c_bigendian = xyes; then AC_DEFINE(SDL_BYTEORDER, 4321) @@ -49,6 +53,14 @@ else AC_DEFINE(SDL_BYTEORDER, 1234) fi +dnl Check for tools +AC_PROG_LIBTOOL +AC_PROG_CC +AC_PROG_CXX +AC_PROG_INSTALL +AC_PROG_MAKE_SET +AC_CHECK_TOOL(WINDRES, [windres], [:]) + dnl Set up the compiler and linker flags INCLUDE="-I$srcdir/include" if test x$srcdir != x.; then @@ -74,8 +86,8 @@ BUILD_CFLAGS="$CFLAGS $CPPFLAGS" EXTRA_CFLAGS="$INCLUDE $BASE_CFLAGS" BUILD_LDFLAGS="$LDFLAGS" EXTRA_LDFLAGS="$BASE_LDFLAGS" -# I can't remember why I added this. I'm sure it'll come to me... -#for path in /usr/local; do +## These are common directories to find software packages +#for path in /usr/freeware /usr/pkg /usr/X11R6 /usr/local; do # if test -d $path/include; then # EXTRA_CFLAGS="$EXTRA_CFLAGS -I$path/include" # fi @@ -89,13 +101,28 @@ CPPFLAGS="$CPPFLAGS $EXTRA_CFLAGS" CFLAGS="$CFLAGS $EXTRA_CFLAGS" LDFLAGS="$LDFLAGS $EXTRA_LDFLAGS" -dnl Check for tools -AC_LIBTOOL_WIN32_DLL -AC_PROG_LIBTOOL -AC_PROG_CC -AC_PROG_CXX -AC_PROG_INSTALL -AC_PROG_MAKE_SET +dnl set this to use on systems that use lib64 instead of lib +base_libdir=`echo \${libdir} | sed 's/.*\/\(.*\)/\1/; q'` + +dnl Function to find a library in the compiler search path +find_lib() +{ + gcc_bin_path=[`$CC -print-search-dirs 2>/dev/null | fgrep programs: | sed 's/[^=]*=\(.*\)/\1/' | sed 's/:/ /g'`] + gcc_lib_path=[`$CC -print-search-dirs 2>/dev/null | fgrep libraries: | sed 's/[^=]*=\(.*\)/\1/' | sed 's/:/ /g'`] + env_lib_path=[`echo $LIBS $LDFLAGS $* | sed 's/-L[ ]*//g'`] + if test "$cross_compiling" = yes; then + host_lib_path="" + else + host_lib_path="/usr/$base_libdir /usr/local/$base_libdir" + fi + for path in $gcc_bin_path $gcc_lib_path $env_lib_path $host_lib_path; do + lib=[`ls -- $path/$1 2>/dev/null | sort | sed 's/.*\/\(.*\)/\1/; q'`] + if test x$lib != x; then + echo $lib + return + fi + done +} dnl Check for compiler characteristics AC_C_CONST @@ -124,7 +151,14 @@ if test x$enable_libc = xyes; then fi dnl Checks for library functions. - AC_FUNC_ALLOCA + case "$host" in + *-*-cygwin* | *-*-mingw32*) + ;; + *) + AC_FUNC_ALLOCA + ;; + esac + AC_FUNC_MEMCMP if test x$ac_cv_func_memcmp_working = xyes; then AC_DEFINE(HAVE_MEMCMP) @@ -133,10 +167,21 @@ if test x$enable_libc = xyes; then if test x$ac_cv_func_strtod = xyes; then AC_DEFINE(HAVE_STRTOD) fi + AC_CHECK_FUNC(mprotect, + AC_TRY_COMPILE([ + #include + #include + ],[ + ],[ + AC_DEFINE(HAVE_MPROTECT) + ]), + ) AC_CHECK_FUNCS(malloc calloc realloc free getenv 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 iconv sigaction setjmp nanosleep) AC_CHECK_LIB(iconv, libiconv_open, [EXTRA_LDFLAGS="$EXTRA_LDFLAGS -liconv"]) AC_CHECK_LIB(m, pow, [EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lm"]) + + AC_CHECK_MEMBER(struct sigaction.sa_sigaction,[AC_DEFINE(HAVE_SA_SIGACTION)], ,[#include ]) fi if test x$have_inttypes != xyes; then @@ -189,7 +234,6 @@ SOURCES="$SOURCES $srcdir/src/cdrom/*.c" SOURCES="$SOURCES $srcdir/src/cpuinfo/*.c" SOURCES="$SOURCES $srcdir/src/events/*.c" SOURCES="$SOURCES $srcdir/src/file/*.c" -SOURCES="$SOURCES $srcdir/src/joystick/*.c" SOURCES="$SOURCES $srcdir/src/stdlib/*.c" SOURCES="$SOURCES $srcdir/src/thread/*.c" SOURCES="$SOURCES $srcdir/src/timer/*.c" @@ -220,6 +264,8 @@ 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) +else + SOURCES="$SOURCES $srcdir/src/joystick/*.c" fi AC_ARG_ENABLE(cdrom, AC_HELP_STRING([--enable-cdrom], [Enable the cdrom subsystem [[default=yes]]]), @@ -324,18 +370,7 @@ AC_HELP_STRING([--enable-alsa], [support the ALSA audio API [[default=yes]]]), AC_ARG_ENABLE(alsa-shared, AC_HELP_STRING([--enable-alsa-shared], [dynamically load ALSA audio support [[default=yes]]]), , enable_alsa_shared=yes) - if test "x`echo $ALSA_LIBS | grep -- -L`" = "x"; then - if test "x`ls /lib/libasound.so.* 2> /dev/null`" != "x"; then - ALSA_LIBS="-L/lib $ALSA_LIBS" - elif test "x`ls /usr/lib/libasound.so.* 2> /dev/null`" != "x"; then - ALSA_LIBS="-L/usr/lib $ALSA_LIBS" - elif test "x`ls /usr/local/lib/libasound.so.* 2> /dev/null`" != "x"; then - ALSA_LIBS="-L/usr/local/lib $ALSA_LIBS" - fi - fi - alsa_lib_spec=`echo $ALSA_LIBS | sed 's/.*-L\([[^ ]]*\).*/\1\/libasound.so.*/'` - alsa_lib=`ls -- $alsa_lib_spec | sed 's/.*\/\(.*\)/\1/; q'` - echo "-- $alsa_lib_spec -> $alsa_lib" + alsa_lib=[`find_lib "libasound.so.*" "$ALSA_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`] AC_DEFINE(SDL_AUDIO_DRIVER_ALSA) SOURCES="$SOURCES $srcdir/src/audio/alsa/*.c" @@ -346,6 +381,7 @@ AC_HELP_STRING([--enable-alsa-shared], [dynamically load ALSA audio support [[de fi 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") else EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ALSA_LIBS" @@ -429,9 +465,7 @@ AC_HELP_STRING([--enable-esd], [support the Enlightened Sound Daemon [[default=y AC_ARG_ENABLE(esd-shared, AC_HELP_STRING([--enable-esd-shared], [dynamically load ESD audio support [[default=yes]]]), , enable_esd_shared=yes) - esd_lib_spec=`echo $ESD_LIBS | sed 's/.*-L\([[^ ]]*\).*/\1\/libesd.so.*/'` - esd_lib=`ls -- $esd_lib_spec | sed 's/.*\/\(.*\)/\1/; q'` - echo "-- $esd_lib_spec -> $esd_lib" + esd_lib=[`find_lib "libesd.so.*" "$ESD_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`] AC_DEFINE(SDL_AUDIO_DRIVER_ESD) SOURCES="$SOURCES $srcdir/src/audio/esd/*.c" @@ -442,6 +476,7 @@ AC_HELP_STRING([--enable-esd-shared], [dynamically load ESD audio support [[defa fi 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") else EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ESD_LIBS" @@ -451,6 +486,53 @@ AC_HELP_STRING([--enable-esd-shared], [dynamically load ESD audio support [[defa fi } +dnl Find PulseAudio +CheckPulseAudio() +{ + AC_ARG_ENABLE(pulseaudio, +AC_HELP_STRING([--enable-pulseaudio], [use PulseAudio [[default=yes]]]), + , enable_pulseaudio=yes) + if test x$enable_audio = xyes -a x$enable_pulseaudio = xyes; then + audio_pulse=no + + PULSE_REQUIRED_VERSION=0.9 + + AC_PATH_PROG(PKG_CONFIG, pkg-config, no) + AC_MSG_CHECKING(for PulseAudio $PULSE_REQUIRED_VERSION support) + if test x$PKG_CONFIG != xno; then + if $PKG_CONFIG --atleast-pkgconfig-version 0.7 && $PKG_CONFIG --atleast-version $PULSE_REQUIRED_VERSION libpulse-simple; then + PULSE_CFLAGS=`$PKG_CONFIG --cflags libpulse-simple` + PULSE_LIBS=`$PKG_CONFIG --libs libpulse-simple` + audio_pulse=yes + fi + fi + AC_MSG_RESULT($audio_pulse) + + if test x$audio_pulse = xyes; then + AC_ARG_ENABLE(pulseaudio-shared, +AC_HELP_STRING([--enable-pulseaudio-shared], [dynamically load PulseAudio support [[default=yes]]]), + , enable_pulseaudio_shared=yes) + pulse_lib=[`find_lib "libpulse-simple.so.*" "$PULSE_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`] + + AC_DEFINE(SDL_AUDIO_DRIVER_PULSE) + SOURCES="$SOURCES $srcdir/src/audio/pulse/*.c" + EXTRA_CFLAGS="$EXTRA_CFLAGS $PULSE_CFLAGS" + if test x$have_loadso != xyes && \ + test x$enable_pulseaudio_shared = xyes; then + AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic PulseAudio loading]) + fi + if test x$have_loadso = xyes && \ + test x$enable_pulseaudio_shared = xyes && test x$pulse_lib != x; then + echo "-- dynamic libpulse-simple -> $pulse_lib" + AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_PULSE_DYNAMIC, "$pulse_lib") + else + EXTRA_LDFLAGS="$EXTRA_LDFLAGS $PULSE_LIBS" + fi + have_audio=yes + fi + fi +} + CheckARTSC() { AC_ARG_ENABLE(arts, @@ -463,7 +545,6 @@ AC_HELP_STRING([--enable-arts], [support the Analog Real Time Synthesizer [[defa else ARTS_CFLAGS=`$ARTSCONFIG --cflags` ARTS_LIBS=`$ARTSCONFIG --libs` - ARTS_PREFIX=`$ARTSCONFIG --arts-prefix` AC_MSG_CHECKING(for aRts development environment) audio_arts=no save_CFLAGS="$CFLAGS" @@ -481,9 +562,7 @@ AC_HELP_STRING([--enable-arts], [support the Analog Real Time Synthesizer [[defa AC_ARG_ENABLE(arts-shared, AC_HELP_STRING([--enable-arts-shared], [dynamically load aRts audio support [[default=yes]]]), , enable_arts_shared=yes) - arts_lib_spec="$ARTS_PREFIX/lib/libartsc.so.*" - arts_lib=`ls -- $arts_lib_spec | sed 's/.*\/\(.*\)/\1/; q'` - echo "-- $arts_lib_spec -> $arts_lib" + arts_lib=[`find_lib "libartsc.so.*" "$ARTS_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`] AC_DEFINE(SDL_AUDIO_DRIVER_ARTS) SOURCES="$SOURCES $srcdir/src/audio/arts/*.c" @@ -494,6 +573,7 @@ AC_HELP_STRING([--enable-arts-shared], [dynamically load aRts audio support [[de fi 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") else EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ARTS_LIBS" @@ -511,9 +591,17 @@ CheckNAS() AC_HELP_STRING([--enable-nas], [support the NAS audio API [[default=yes]]]), , enable_nas=yes) if test x$enable_audio = xyes -a x$enable_nas = xyes; then + AC_CHECK_HEADER(audio/audiolib.h, have_nas_hdr=yes) + AC_CHECK_LIB(audio, AuOpenServer, have_nas_lib=yes) + AC_MSG_CHECKING(for NAS audio support) have_nas=no - if test -r /usr/X11R6/include/audio/audiolib.h; then + + if test x$have_nas_hdr = xyes -a x$have_nas_lib = xyes; then + have_nas=yes + NAS_LIBS="-laudio" + + elif test -r /usr/X11R6/include/audio/audiolib.h; then have_nas=yes NAS_CFLAGS="-I/usr/X11R6/include/" NAS_LIBS="-L/usr/X11R6/lib -laudio -lXt" @@ -525,12 +613,30 @@ AC_HELP_STRING([--enable-nas], [support the NAS audio API [[default=yes]]]), have_nas=yes NAS_LIBS="-lnas -lXt" fi + AC_MSG_RESULT($have_nas) + if test x$have_nas = xyes; then + AC_ARG_ENABLE(nas-shared, +AC_HELP_STRING([--enable-nas-shared], [dynamically load NAS audio support [[default=yes]]]), + , enable_nas_shared=yes) + nas_lib=[`find_lib "libaudio.so.*" "$NAS_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`] + + if test x$have_loadso != xyes && \ + test x$enable_nas_shared = xyes; then + AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic NAS loading]) + fi + 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") + else + EXTRA_LDFLAGS="$EXTRA_LDFLAGS $NAS_LIBS" + fi + AC_DEFINE(SDL_AUDIO_DRIVER_NAS) SOURCES="$SOURCES $srcdir/src/audio/nas/*.c" EXTRA_CFLAGS="$EXTRA_CFLAGS $NAS_CFLAGS" - EXTRA_LDFLAGS="$EXTRA_LDFLAGS $NAS_LIBS" have_audio=yes fi fi @@ -592,43 +698,62 @@ CheckNASM() return ;; esac + + dnl Mac OS X might report itself as "i386" but generate x86_64 code. + dnl So see what size we think a pointer is, and bail if not 32-bit. + AC_CHECK_SIZEOF([void *], 4) + if test x$ac_cv_sizeof_void_p != x4; then + return + fi + dnl Check for NASM (for assembly blit routines) AC_ARG_ENABLE(nasm, AC_HELP_STRING([--enable-nasm], [use nasm assembly blitters on x86 [[default=yes]]]), , enable_nasm=yes) if test x$enable_video = xyes -a x$enable_assembly = xyes -a x$enable_nasm = xyes; then - AC_PATH_PROG(NASM, yasm) - if test "x$NASM" = x -o "x$NASM" = x'"$NASM"'; then - AC_PATH_PROG(NASM, nasm) + CompileNASM() + { + # Usage: CompileNASM + AC_MSG_CHECKING(to see if $NASM supports $1) + if $NASM $NASMFLAGS $1 -o $1.o >&AS_MESSAGE_LOG_FD 2>&1; then + CompileNASM_ret="yes" + else + CompileNASM_ret="no" + fi + rm -f $1 $1.o + AC_MSG_RESULT($CompileNASM_ret) + test "$CompileNASM_ret" = "yes" + } + + if test x"$NASMFLAGS" = x; then + case $ARCH in + win32) + NASMFLAGS="-f win32" + ;; + macosx) + NASMFLAGS="-f macho" + ;; + *) + NASMFLAGS="-f elf32" + ;; + esac fi + + AC_PATH_PROG(NASM, nasm) + echo "%ifidn __OUTPUT_FORMAT__,elf32" > unquoted-sections + echo "section .note.GNU-stack noalloc noexec nowrite progbits" >> unquoted-sections + echo "%endif" >> unquoted-sections + CompileNASM unquoted-sections || NASM="" + if test "x$NASM" != x -a "x$NASM" != x'"$NASM"'; then AC_DEFINE(SDL_HERMES_BLITTERS) SOURCES="$SOURCES $srcdir/src/hermes/*.asm" - if test x"$NASMFLAGS" = x; then - case $ARCH in - win32) - NASMFLAGS="-f win32" - ;; - openbsd) - NASMFLAGS="-f aoutb" - ;; - macosx) - NASMFLAGS="-f macho" - ;; - *) - NASMFLAGS="-f elf" - ;; - esac - fi - NASMFLAGS="$NASMFLAGS -i $srcdir/src/hermes/" + NASMFLAGS="$NASMFLAGS -I $srcdir/src/hermes/" dnl See if hidden visibility is supported - echo "GLOBAL _bar:function hidden" > nasm_vis.asm - echo "_bar:" >>nasm_vis.asm - if $NASM $NASMFLAGS nasm_vis.asm -o nasm_vis.o >&AS_MESSAGE_LOG_FD 2>&1; then - NASMFLAGS="$NASMFLAGS -DHIDDEN_VISIBILITY" - fi - rm -f nasm_vis.asm nasm_vis.o + echo "GLOBAL _bar:function hidden" > symbol-visibility + echo "_bar:" >> symbol-visibility + CompileNASM symbol-visibility && NASMFLAGS="$NASMFLAGS -DHIDDEN_VISIBILITY" AC_SUBST(NASM) AC_SUBST(NASMFLAGS) @@ -651,64 +776,66 @@ CheckAltivec() AC_HELP_STRING([--enable-altivec], [use altivec assembly blitters on PPC [[default=yes]]]), , enable_altivec=yes) if test x$enable_video = xyes -a x$enable_assembly = xyes -a x$enable_altivec = xyes; then - have_altivec_h_hdr=no - AC_CHECK_HEADER(altivec.h, have_altivec_h_hdr=yes) - save_CFLAGS="$CFLAGS" have_gcc_altivec=no - AC_MSG_CHECKING(for Altivec with GCC -maltivec option) + have_altivec_h_hdr=no altivec_CFLAGS="-maltivec" CFLAGS="$save_CFLAGS $altivec_CFLAGS" - if test x$have_altivec_h_hdr = xyes; then - AC_TRY_COMPILE([ - #include - vector unsigned int vzero() { - return vec_splat_u32(0); - } - ],[ - ],[ - have_gcc_altivec=yes - ]) - AC_MSG_RESULT($have_gcc_altivec) - else - AC_TRY_COMPILE([ - vector unsigned int vzero() { - return vec_splat_u32(0); - } - ],[ - ],[ - have_gcc_altivec=yes - ]) - AC_MSG_RESULT($have_gcc_altivec) + AC_MSG_CHECKING(for Altivec with GCC altivec.h and -maltivec option) + AC_TRY_COMPILE([ + #include + vector unsigned int vzero() { + return vec_splat_u32(0); + } + ],[ + ],[ + have_gcc_altivec=yes + have_altivec_h_hdr=yes + ]) + AC_MSG_RESULT($have_gcc_altivec) + + if test x$have_gcc_altivec = xno; then + AC_MSG_CHECKING(for Altivec with GCC -maltivec option) + AC_TRY_COMPILE([ + vector unsigned int vzero() { + return vec_splat_u32(0); + } + ],[ + ],[ + have_gcc_altivec=yes + ]) + AC_MSG_RESULT($have_gcc_altivec) fi if test x$have_gcc_altivec = xno; then - AC_MSG_CHECKING(for Altivec with GCC -faltivec option) + AC_MSG_CHECKING(for Altivec with GCC altivec.h and -faltivec option) altivec_CFLAGS="-faltivec" CFLAGS="$save_CFLAGS $altivec_CFLAGS" - if test x$have_altivec_h_hdr = xyes; then - AC_TRY_COMPILE([ - #include - vector unsigned int vzero() { - return vec_splat_u32(0); - } - ],[ - ],[ - have_gcc_altivec=yes - ]) - AC_MSG_RESULT($have_gcc_altivec) - else - AC_TRY_COMPILE([ - vector unsigned int vzero() { - return vec_splat_u32(0); - } - ],[ - ],[ - have_gcc_altivec=yes - ]) - AC_MSG_RESULT($have_gcc_altivec) - fi + AC_TRY_COMPILE([ + #include + vector unsigned int vzero() { + return vec_splat_u32(0); + } + ],[ + ],[ + have_gcc_altivec=yes + have_altivec_h_hdr=yes + ]) + AC_MSG_RESULT($have_gcc_altivec) + fi + + if test x$have_gcc_altivec = xno; then + AC_MSG_CHECKING(for Altivec with GCC -faltivec option) + AC_TRY_COMPILE([ + vector unsigned int vzero() { + return vec_splat_u32(0); + } + ],[ + ],[ + have_gcc_altivec=yes + ]) + AC_MSG_RESULT($have_gcc_altivec) fi CFLAGS="$save_CFLAGS" @@ -731,7 +858,7 @@ CheckVisibilityHidden() visibility_CFLAGS="-fvisibility=hidden" save_CFLAGS="$CFLAGS" - CFLAGS="$save_CFLAGS $visibility_CFLAGS" + CFLAGS="$save_CFLAGS $visibility_CFLAGS -Werror" AC_TRY_COMPILE([ #if !defined(__GNUC__) || __GNUC__ < 4 #error SDL only uses visibility attributes in GCC 4 or newer @@ -748,13 +875,48 @@ CheckVisibilityHidden() fi } +dnl See if GCC's -Wall is supported. +CheckWarnAll() +{ + AC_MSG_CHECKING(for GCC -Wall option) + have_gcc_Wall=no + + save_CFLAGS="$CFLAGS" + CFLAGS="$save_CFLAGS -Wall" + AC_TRY_COMPILE([ + int x = 0; + ],[ + ],[ + have_gcc_Wall=yes + ]) + AC_MSG_RESULT($have_gcc_Wall) + CFLAGS="$save_CFLAGS" + + if test x$have_gcc_Wall = xyes; then + EXTRA_CFLAGS="$EXTRA_CFLAGS -Wall" + + dnl Haiku headers use multicharacter constants all over the place. Ignore these warnings when using -Wall. + AC_MSG_CHECKING(for necessary GCC -Wno-multichar option) + need_gcc_Wno_multichar=no + case "$host" in + *-*-beos* | *-*-haiku*) + need_gcc_Wno_multichar=yes + ;; + esac + AC_MSG_RESULT($need_gcc_Wno_multichar) + if test x$need_gcc_Wno_multichar = xyes; then + EXTRA_CFLAGS="$EXTRA_CFLAGS -Wno-multichar" + fi + fi +} + dnl Do the iPod thing CheckIPod() { AC_ARG_ENABLE(ipod, -AC_HELP_STRING([--enable-ipod], [configure SDL to work with iPodLinux [default=yes on arm-elf]]), - , enable_ipod=yes) +AC_HELP_STRING([--enable-ipod], [configure SDL to work with iPodLinux [[default=no]]]), + , enable_ipod=no) if test x$enable_ipod = xyes; then EXTRA_CFLAGS="$EXTRA_CFLAGS -DIPOD" @@ -844,33 +1006,10 @@ AC_HELP_STRING([--enable-x11-shared], [dynamically load X11 support [[default=ma x11ext_lib='libXext.so' ;; *) - x11_lib_spec=[`echo $X_LIBS | sed 's/.*-L\([^ ]*\).*/\1/'`] - for path in $x11_lib_path /usr/lib /usr/X11/lib /usr/X11R6/lib; do - if test "x$x11_lib" = "x"; then - x11_lib=[`ls -- $path/libX11.so.[0-9] 2>/dev/null | sort -r | sed 's/.*\/\(.*\)/\1/; q'`] - if test "x$x11_lib" = "x"; then - x11_lib=[`ls -- $path/libX11.so.[0-9]* 2>/dev/null | sort -r | sed 's/.*\/\(.*\)/\1/; q'`] - fi - fi - if test "x$x11ext_lib" = "x"; then - x11ext_lib=[`ls -- $path/libXext.so.[0-9] 2>/dev/null | sort -r | sed 's/.*\/\(.*\)/\1/; q'`] - if test "x$x11ext_lib" = "x"; then - x11ext_lib=[`ls -- $path/libXext.so.[0-9]* 2>/dev/null | sort -r | sed 's/.*\/\(.*\)/\1/; q'`] - fi - fi - if test "x$xrender_lib" = "x"; then - xrender_lib=[`ls -- $path/libXrender.so.[0-9] 2>/dev/null | sort -r | sed 's/.*\/\(.*\)/\1/; q'`] - if test "x$xrender_lib" = "x"; then - xrender_lib=[`ls -- $path/libXrender.so.[0-9]* 2>/dev/null | sort -r | sed 's/.*\/\(.*\)/\1/; q'`] - fi - fi - if test "x$xrandr_lib" = "x"; then - xrandr_lib=[`ls -- $path/libXrandr.so.[0-9] 2>/dev/null | sort -r | sed 's/.*\/\(.*\)/\1/; q'`] - if test "x$xrandr_lib" = "x"; then - xrandr_lib=[`ls -- $path/libXrandr.so.[0-9]* 2>/dev/null | sort -r | sed 's/.*\/\(.*\)/\1/; q'`] - fi - fi - done + x11_lib=[`find_lib "libX11.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`] + x11ext_lib=[`find_lib "libXext.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`] + xrender_lib=[`find_lib "libXrender.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`] + xrandr_lib=[`find_lib "libXrandr.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`] ;; esac @@ -988,19 +1127,6 @@ AC_HELP_STRING([--enable-video-x11-xrandr], [enable X11 Xrandr extension for ful if test x$definitely_enable_video_x11_xrandr = xyes; then AC_DEFINE(SDL_VIDEO_DRIVER_X11_XRANDR) fi - AC_ARG_ENABLE(video-x11-dpms, -AC_HELP_STRING([--enable-video-x11-dpms], [enable X11 DPMS extension [[default=yes]]]), - , enable_video_x11_dpms=yes) - if test x$enable_video_x11_dpms = xyes; then - AC_CHECK_HEADER(X11/extensions/dpms.h, - have_dpms_h_hdr=yes, - have_dpms_h_hdr=no, - [#include - ]) - if test x$have_dpms_h_hdr = xyes; then - AC_DEFINE(SDL_VIDEO_DRIVER_X11_DPMS) - fi - fi fi fi } @@ -1118,6 +1244,7 @@ AC_HELP_STRING([--enable-video-fbcon], [use framebuffer console video driver [[d ]) AC_MSG_RESULT($video_fbcon) if test x$video_fbcon = xyes; then + AC_CHECK_FUNCS(getpagesize) AC_DEFINE(SDL_VIDEO_DRIVER_FBCON) SOURCES="$SOURCES $srcdir/src/video/fbcon/*.c" have_video=yes @@ -1139,7 +1266,6 @@ AC_HELP_STRING([--enable-video-directfb], [use DirectFB video driver [[default=y AC_PATH_PROG(DIRECTFBCONFIG, directfb-config, no) if test x$DIRECTFBCONFIG = xno; then AC_PATH_PROG(PKG_CONFIG, pkg-config, no) - AC_MSG_CHECKING(for DirectFB $DIRECTFB_REQUIRED_VERSION support) if test x$PKG_CONFIG != xno; then if $PKG_CONFIG --atleast-pkgconfig-version 0.7 && $PKG_CONFIG --atleast-version $DIRECTFB_REQUIRED_VERSION directfb; then DIRECTFB_CFLAGS=`$PKG_CONFIG --cflags directfb` @@ -1147,9 +1273,7 @@ AC_HELP_STRING([--enable-video-directfb], [use DirectFB video driver [[default=y video_directfb=yes fi fi - AC_MSG_RESULT($video_directfb) else - AC_MSG_CHECKING(for DirectFB $DIRECTFB_REQUIRED_VERSION support) set -- `echo $DIRECTFB_REQUIRED_VERSION | sed 's/\./ /g'` NEED_VERSION=`expr $1 \* 10000 + $2 \* 100 + $3` set -- `directfb-config --version | sed 's/\./ /g'` @@ -1159,8 +1283,17 @@ AC_HELP_STRING([--enable-video-directfb], [use DirectFB video driver [[default=y DIRECTFB_LIBS=`$DIRECTFBCONFIG --libs` video_directfb=yes fi - AC_MSG_RESULT($video_directfb) fi + if test x$video_directfb = xyes; then + # SuSE 11.1 installs directfb-config without directfb-devel + save_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS $DIRECTFB_CFLAGS" + AC_CHECK_HEADER(directfb.h, have_directfb_hdr=yes, have_directfb_hdr=no) + CFLAGS="$save_CFLAGS" + video_directfb=$have_directfb_hdr + fi + AC_MSG_CHECKING(for DirectFB $DIRECTFB_REQUIRED_VERSION support) + AC_MSG_RESULT($video_directfb) if test x$video_directfb = xyes; then AC_DEFINE(SDL_VIDEO_DRIVER_DIRECTFB) @@ -1197,6 +1330,34 @@ AC_HELP_STRING([--enable-video-ps2gs], [use PlayStation 2 GS video driver [[defa fi } +dnl See if we're running on PlayStation 3 Cell hardware +CheckPS3() +{ + AC_ARG_ENABLE(video-ps3, + AC_HELP_STRING([--enable-video-ps3], [use PlayStation 3 Cell driver [[default=yes]]]), + , enable_video_ps3=yes) + if test x$enable_video = xyes -a x$enable_video_ps3 = xyes; then + AC_MSG_CHECKING(for PlayStation 3 Cell support) + video_ps3=no + AC_TRY_COMPILE([ + #include + #include + #include + ],[ + ],[ + video_ps3=yes + ]) + AC_MSG_RESULT($video_ps3) + if test x$video_ps3 = xyes; then + AC_DEFINE(SDL_VIDEO_DRIVER_PS3) + SOURCES="$SOURCES $srcdir/src/video/ps3/*.c" + EXTRA_CFLAGS="$EXTRA_CFLAGS -I/opt/cell/sdk/usr/include" + EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lbilin_scaler_spu -lfb_writer_spu -lyuv2rgb_spu -L/opt/cell/sdk/usr/lib -lspe2" + have_video=yes + fi + fi +} + dnl Find the GGI includes CheckGGI() { @@ -1338,6 +1499,38 @@ AC_HELP_STRING([--enable-video-aalib], [use AAlib video driver [[default=no]]]), fi } +dnl Find the libcaca includes +CheckCaca() +{ + AC_ARG_ENABLE(video-caca, +AC_HELP_STRING([--enable-video-caca], [use libcaca video driver [[default=no]]]), + , enable_video_caca=no) + if test x$enable_video = xyes -a x$enable_video_caca = xyes; then + video_caca=no + AC_PATH_PROG(CACACONFIG, caca-config, no) + if test x$CACACONFIG != xno; then + AC_MSG_CHECKING(for libcaca support) + CACA_CFLAGS=`$CACACONFIG --cflags` + CACA_LDFLAGS=`$CACACONFIG --libs` + save_CFLAGS="$CFLAGS" + AC_TRY_COMPILE([ + #include + ],[ + ],[ + video_caca=yes + ]) + CFLAGS="$save_CFLAGS" + AC_MSG_RESULT($video_caca) + if test x$video_caca = xyes; then + AC_DEFINE(SDL_VIDEO_DRIVER_CACA) + EXTRA_CFLAGS="$EXTRA_CFLAGS $CACA_CFLAGS" + EXTRA_LDFLAGS="$EXTRA_LDFLAGS $CACA_LDFLAGS" + SOURCES="$SOURCES $srcdir/src/video/caca/*.c" + fi + fi + fi +} + dnl Set up the QTopia video driver if enabled CheckQtopia() { @@ -1363,6 +1556,7 @@ AC_HELP_STRING([--enable-video-qtopia], [use Qtopia video driver [[default=no]]] AC_DEFINE(SDL_VIDEO_DRIVER_QTOPIA) SOURCES="$SOURCES $srcdir/src/video/qtopia/*.cc" SDLMAIN_SOURCES="$srcdir/src/main/qtopia/*.cc" + SDLMAIN_LDFLAGS="-static" EXTRA_CFLAGS="$EXTRA_CFLAGS $QTOPIA_FLAGS" SDL_CFLAGS="$SDL_CFLAGS -DQWS -Dmain=SDL_main" SDL_LIBS="-lSDLmain $SDL_LIBS -L${QPEDIR}/lib -L${QTDIR}/lib/ -lqpe -lqte" @@ -1466,6 +1660,7 @@ CheckOpenGLX11() AC_TRY_COMPILE([ #include #include + #include ],[ ],[ video_opengl=yes @@ -1569,6 +1764,13 @@ AC_HELP_STRING([--enable-osmesa-shared], [dynamically load OSMesa OpenGL support fi } +AC_ARG_ENABLE(screensaver, +AC_HELP_STRING([--enable-screensaver], [enable screensaver by default while any SDL application is running [[default=no]]]), + , enable_screensaver=no) +if test x$enable_screensaver = xno; then + AC_DEFINE(SDL_VIDEO_DISABLE_SCREENSAVER) +fi + dnl See if we can use the new unified event interface in Linux 2.4 CheckInputEvents() { @@ -1676,7 +1878,7 @@ AC_HELP_STRING([--enable-pthread-sem], [use pthread semaphores [[default=yes]]]) ;; *-*-netbsd*) pthread_cflags="-D_REENTRANT -D_THREAD_SAFE" - pthread_lib="-L/usr/lib -lpthread" + pthread_lib="-lpthread" ;; *-*-openbsd*) pthread_cflags="-D_REENTRANT" @@ -1792,6 +1994,20 @@ AC_HELP_STRING([--enable-pthread-sem], [use pthread semaphores [[default=yes]]]) ]) AC_MSG_RESULT($have_pthread_sem) fi + if test x$have_pthread_sem = xyes; then + AC_MSG_CHECKING(for sem_timedwait) + have_sem_timedwait=no + AC_TRY_LINK([ + #include + #include + ],[ + sem_timedwait(NULL, NULL); + ],[ + have_sem_timedwait=yes + AC_DEFINE(HAVE_SEM_TIMEDWAIT) + ]) + AC_MSG_RESULT($have_sem_timedwait) + fi # Restore the compiler flags and libraries CFLAGS="$ac_save_cflags"; LIBS="$ac_save_libs" @@ -1902,10 +2118,6 @@ 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_CHECK_LIB(dl, dlvsym, have_dlvsym=yes) - if test x$have_dlvsym = xyes; then - AC_DEFINE(HAVE_DLVSYM) - fi AC_DEFINE(SDL_LOADSO_DLOPEN) SOURCES="$SOURCES $srcdir/src/loadso/dlopen/*.c" have_loadso=yes @@ -2019,8 +2231,13 @@ CheckUSBHID() #if defined(HAVE_USB_H) #include #endif + #ifdef __DragonFly__ + #include + #include + #else #include #include + #endif #if defined(HAVE_USBHID_H) #include #elif defined(HAVE_LIBUSB_H) @@ -2141,17 +2358,20 @@ case "$host" in CheckALSA CheckARTSC CheckESD + CheckPulseAudio CheckNAS CheckX11 CheckNANOX CheckFBCON CheckDirectFB CheckPS2GS + CheckPS3 CheckGGI CheckSVGA CheckVGL CheckWscons CheckAAlib + CheckCaca CheckQtopia CheckPicoGUI CheckOpenGLX11 @@ -2278,7 +2498,7 @@ case "$host" in ARCH=win32 if test "$build" != "$host"; then # cross-compiling # Default cross-compile location - ac_default_prefix=/usr/local/cross-tools/i386-mingw32msvc + ac_default_prefix=/usr/local/cross-tools/i386-mingw32 else # Look for the location of the tools and install there if test "$BUILD_PREFIX" != ""; then @@ -2341,11 +2561,57 @@ case "$host" in EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ldxguid" fi # The Win32 platform requires special setup + SOURCES="$SOURCES $srcdir/src/main/win32/*.rc" SDLMAIN_SOURCES="$srcdir/src/main/win32/*.c" + SDLMAIN_LDFLAGS="-static" SDL_CFLAGS="$SDL_CFLAGS -Dmain=SDL_main" SDL_LIBS="-lmingw32 -lSDLmain $SDL_LIBS -mwindows" ;; - *-*-beos*) + *-wince*) + ARCH=win32 + CheckDummyVideo + CheckDiskAudio + CheckDummyAudio + CheckWIN32 + CheckNASM + SOURCES="$SOURCES $srcdir/src/video/gapi/*.c" + EXTRA_CFLAGS="$EXTRA_CFLAGS -D_WIN32_WCE=0x420" + if test x$enable_audio = xyes; then + AC_DEFINE(SDL_AUDIO_DRIVER_WAVEOUT) + SOURCES="$SOURCES $srcdir/src/audio/windib/*.c" + have_audio=yes + fi + # Set up files for the thread library + if test x$enable_threads = xyes; then + AC_DEFINE(SDL_THREAD_WIN32) + SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_sysmutex.c" + SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_syssem.c" + SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_systhread.c" + SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syscond.c" + have_threads=yes + fi + # Set up files for the timer library + if test x$enable_timers = xyes; then + AC_DEFINE(SDL_TIMER_WINCE) + SOURCES="$SOURCES $srcdir/src/timer/wince/*.c" + EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lcoredll -lmmtimer" + have_timers=yes + fi + # Set up files for the shared object loading library + if test x$enable_loadso = xyes; then + AC_DEFINE(SDL_LOADSO_WIN32) + SOURCES="$SOURCES $srcdir/src/loadso/win32/*.c" + have_loadso=yes + fi + # Set up the system libraries we need + EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lcoredll -lcommctrl" + # The Win32 platform requires special setup + SDLMAIN_SOURCES="$srcdir/src/main/win32/*.c" + SDLMAIN_LDFLAGS="-static" + SDL_CFLAGS="$SDL_CFLAGS -Dmain=SDL_main -D_WIN32_WCE=0x420" + SDL_LIBS="-lSDLmain $SDL_LIBS" + ;; + *-*-beos* | *-*-haiku*) ARCH=beos ac_default_prefix=/boot/develop/tools/gnupro CheckDummyVideo @@ -2388,8 +2654,16 @@ case "$host" in fi # Set up files for the shared object loading library if test x$enable_loadso = xyes; then - AC_DEFINE(SDL_LOADSO_BEOS) - SOURCES="$SOURCES $srcdir/src/loadso/beos/*.c" + case "$host" in + *-*-beos*) + AC_DEFINE(SDL_LOADSO_BEOS) + SOURCES="$SOURCES $srcdir/src/loadso/beos/*.c" + ;; + *-*-haiku*) + AC_DEFINE(SDL_LOADSO_DLOPEN) + SOURCES="$SOURCES $srcdir/src/loadso/dlopen/*.c" + ;; + esac have_loadso=yes fi # The BeOS platform requires special setup. @@ -2417,10 +2691,7 @@ case "$host" in CheckDiskAudio CheckDummyAudio CheckDLOPEN - - # Temporarily disabled: - # ld: mmxp2_32.o has external relocation entries in non-writable section (__TEXT,__text) for symbols: _mmxreturn - #CheckNASM + CheckNASM # Set up files for the shared object loading library # (this needs to be done before the dynamic X11 check) @@ -2445,16 +2716,14 @@ case "$host" in if test x$enable_audio = xyes; then AC_DEFINE(SDL_AUDIO_DRIVER_COREAUDIO) SOURCES="$SOURCES $srcdir/src/audio/macosx/*.c" - AC_DEFINE(SDL_AUDIO_DRIVER_SNDMGR) - SOURCES="$SOURCES $srcdir/src/audio/macrom/*.c" have_audio=yes fi # Set up files for the joystick library if test x$enable_joystick = xyes; then AC_DEFINE(SDL_JOYSTICK_IOKIT) SOURCES="$SOURCES $srcdir/src/joystick/darwin/*.c" - EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,IOKit" have_joystick=yes + need_iokit_framework=yes fi # Set up files for the cdrom library if test x$enable_cdrom = xyes; then @@ -2470,20 +2739,26 @@ case "$host" in fi # The Mac OS X platform requires special setup. SDLMAIN_SOURCES="$srcdir/src/main/macosx/*.m" + SDLMAIN_LDFLAGS="-static" EXTRA_CFLAGS="$EXTRA_CFLAGS -fpascal-strings" SDL_LIBS="-lSDLmain $SDL_LIBS" if test x$enable_video_cocoa = xyes; then EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Cocoa" + need_iokit_framework=yes fi if test x$enable_video_carbon = xyes -o x$enable_video_cocoa = xyes; then - # The Cocoa backend still needs Carbon, and the YUV code QuickTime - EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,QuickTime -Wl,-framework,ApplicationServices" + # The Cocoa backend still needs Carbon + EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,ApplicationServices" EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Carbon" fi # If either the audio or CD driver is used, add the AudioUnit framework if test x$enable_audio = xyes -o x$enable_cdrom = xyes; then EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,AudioToolbox -Wl,-framework,AudioUnit" fi + # Some subsystems reference IOKit... + if test x$need_iokit_framework = xyes; then + EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,IOKit" + fi ;; *-*-mint*) ARCH=mint @@ -2563,12 +2838,17 @@ case "$host" in ;; esac +dnl Do this on all platforms, after everything else. +CheckWarnAll + # Verify that we have all the platform specific files we need -if test x$have_joystick != xyes; then - if test x$enable_joystick = xyes; then - AC_DEFINE(SDL_JOYSTICK_DISABLED) - fi + +if test x$enable_joystick = xyes; then + if test x$have_joystick != xyes; then + # Wants joystick subsystem, but doesn't have a platform-specific backend... + AC_DEFINE(SDL_JOYSTICK_DUMMY) SOURCES="$SOURCES $srcdir/src/joystick/dummy/*.c" + fi fi if test x$have_cdrom != xyes; then if test x$enable_cdrom = xyes; then @@ -2596,6 +2876,7 @@ if test x$have_loadso != xyes; then fi if test x$SDLMAIN_SOURCES = x; then SDLMAIN_SOURCES="$srcdir/src/main/dummy/*.c" + SDLMAIN_LDFLAGS="-static" fi OBJECTS=`echo $SOURCES | sed 's,[[^ ]]*/\([[^ ]]*\)\.asm,$(objects)/\1.lo,g'` @@ -2603,19 +2884,20 @@ OBJECTS=`echo $OBJECTS | sed 's,[[^ ]]*/\([[^ ]]*\)\.cc,$(objects)/\1.lo,g'` OBJECTS=`echo $OBJECTS | sed 's,[[^ ]]*/\([[^ ]]*\)\.m,$(objects)/\1.lo,g'` OBJECTS=`echo $OBJECTS | sed 's,[[^ ]]*/\([[^ ]]*\)\.c,$(objects)/\1.lo,g'` OBJECTS=`echo $OBJECTS | sed 's,[[^ ]]*/\([[^ ]]*\)\.S,$(objects)/\1.lo,g'` +OBJECTS=`echo $OBJECTS | sed 's,[[^ ]]*/\([[^ ]]*\)\.rc,$(objects)/\1.lo,g'` -SDLMAIN_OBJECTS=`echo $SDLMAIN_SOURCES | sed 's,[[^ ]]*/\([[^ ]]*\)\.cc,$(objects)/\1.o,g'` -SDLMAIN_OBJECTS=`echo $SDLMAIN_OBJECTS | sed 's,[[^ ]]*/\([[^ ]]*\)\.m,$(objects)/\1.o,g'` -SDLMAIN_OBJECTS=`echo $SDLMAIN_OBJECTS | sed 's,[[^ ]]*/\([[^ ]]*\)\.c,$(objects)/\1.o,g'` +SDLMAIN_OBJECTS=`echo $SDLMAIN_SOURCES | sed 's,[[^ ]]*/\([[^ ]]*\)\.cc,$(objects)/\1.lo,g'` +SDLMAIN_OBJECTS=`echo $SDLMAIN_OBJECTS | sed 's,[[^ ]]*/\([[^ ]]*\)\.m,$(objects)/\1.lo,g'` +SDLMAIN_OBJECTS=`echo $SDLMAIN_OBJECTS | sed 's,[[^ ]]*/\([[^ ]]*\)\.c,$(objects)/\1.lo,g'` # Set runtime shared library paths as needed if test "x$enable_rpath" = "xyes"; then if test $ARCH = bsdi -o $ARCH = freebsd -o $ARCH = irix -o $ARCH = linux -o $ARCH = netbsd; then - SDL_RLD_FLAGS="-Wl,-rpath,\${exec_prefix}/lib" + SDL_RLD_FLAGS="-Wl,-rpath,\${libdir}" fi if test $ARCH = solaris; then - SDL_RLD_FLAGS="-R\${exec_prefix}/lib" + SDL_RLD_FLAGS="-R\${libdir}" fi else SDL_RLD_FLAGS="" @@ -2630,10 +2912,10 @@ case "$ARCH" in SDL_LIBS="$SDL_LIBS -Wl,-framework,Carbon" fi # Evil hack to allow static linking on Mac OS X - SDL_STATIC_LIBS="\${exec_prefix}/lib/libSDLmain.a \${exec_prefix}/lib/libSDL.a $EXTRA_LDFLAGS" + SDL_STATIC_LIBS="\${libdir}/libSDLmain.a \${libdir}/libSDL.a $EXTRA_LDFLAGS" ;; *) - SDL_STATIC_LIBS="$SDL_LIBS" + SDL_STATIC_LIBS="$SDL_LIBS $EXTRA_LDFLAGS" ;; esac @@ -2668,10 +2950,12 @@ AC_SUBST(SOURCES) AC_SUBST(OBJECTS) AC_SUBST(SDLMAIN_SOURCES) AC_SUBST(SDLMAIN_OBJECTS) +AC_SUBST(SDLMAIN_LDFLAGS) AC_SUBST(BUILD_CFLAGS) AC_SUBST(EXTRA_CFLAGS) AC_SUBST(BUILD_LDFLAGS) AC_SUBST(EXTRA_LDFLAGS) +AC_SUBST(WINDRES) AC_OUTPUT([ Makefile sdl-config SDL.spec SDL.qpg sdl.pc diff --git a/docs.html b/docs.html index 8b00610c8..7916dfa1d 100644 --- a/docs.html +++ b/docs.html @@ -14,6 +14,470 @@ The latest stable release may be found on the

API Documentation

+[separator] + +

SDL 1.2.15 Release Notes

+

+SDL 1.2.15 is a minor bug fix release. +

+ +

General Notes

+ +
+

+ Fixed assembly register clobbering in CPU info routines +

+

+ Fixed memory stomp when using stretch blit on large images +

+

+ Fixed pixel corruption with overlapping blits +

+

+ SDL_JOYSTICK_DEVICE can be a colon separated list of joystick devices +

+

+ Disabled MMX blitters since they don't compile on modern compilers +

+
+ +

Unix Notes

+ +
+

+ Fixed crash in joystick code on newer Linux kernels +

+

+ Fixed channel swizzling for ALSA target with 6-channel output +

+

+ Use the OpenGL GLX_EXT_swap_control extension if available +

+

+ XRandR support is disabled by default because it causes desktop reconfiguring. It can be enabled with the SDL_VIDEO_X11_XRANDR=1 environment variable, or by applying this patch: http://hg.libsdl.org/SDL/raw-rev/8ec3036098df +

+
+ +

Windows Notes

+ +
+

+ Fixed SDL_GL_ACCELERATED_VISUAL handling +

+

+ Fixed application state handling with ALT-Tab +

+

+ Fixed occasional crash handling WM_ACTIVATEAPP in Direct X code +

+

+ Fixed UTF-8 decoding of Russian characters +

+
+ +

Mac OS X Notes

+ +
+

+ Fixed building and running on Mac OS X 10.7 (Lion) +

+
+ +[separator] + +

SDL 1.2.14 Release Notes

+

+SDL 1.2.14 is a significant bug fix release and a recommended update. +

+ +

General Notes

+ +
+

+ Fixed flicker when resizing the SDL window +

+

+ Fixed crash in SDL_SetGammaRamp() +

+

+ Fixed freeze in SDL_memset() with 0 length when assembly code is disabled. +

+

+ Added SDL_DISABLE_LOCK_KEYS environment variable to enable normal up/down events for Caps-Lock and Num-Lock keys. +

+

+ Fixed audio quality problem when converting between 22050 Hz and 44100 Hz. +

+

+ Fixed a threading crash when a few threads are rapidly created and complete. +

+

+ Increased accuracy of alpha blending routines. +

+

+ Fixed crash loading BMP files saved with the scanlines inverted. +

+

+ Fixed mouse coordinate clamping if SDL_SetVideoMode() isn't called in response to SDL_VIDEORESIZE event. +

+

+ Added doxygen documentation for the SDL API headers. +

+
+ +

Unix Notes

+ +
+

+ Fixed potential memory corruption due to assembly bug with SDL_revcpy() +

+

+ Fixed crashes trying to detect SSE features on x86_64 architecture. +

+

+ Fixed assembly for GCC optimized 50% alpha blending blits. +

+

+ Added configure option --enable-screensaver, to allow enabling the screensaver by default. +

+

+ Use XResetScreenSaver() instead of disabling screensaver entirely. +

+

+ Removed the maximum window size limitation on X11. +

+

+ Fixed SDL_GL_SWAP_CONTROL on X11. +

+

+ Fixed setting the X11 window input hint. +

+

+ Fixed distorted X11 window icon for some visuals. +

+

+ Fixed detecting X11 libraries for dynamic loading on 64-bit Linux. +

+

+ SDL_GL_GetAttribute(SDL_GL_SWAP_CONTROL) returns the correct value with GLX_SGI_swap_control. +

+

+ Added SDL_VIDEO_FULLSCREEN_DISPLAY as a preferred synonym for SDL_VIDEO_FULLSCREEN_HEAD on X11. +

+

+ The SDL_VIDEO_FULLSCREEN_DISPLAY environment variable can be set to 0 to place fullscreen SDL windows on the first Xinerama screen. +

+

+ Added the SDL_VIDEO_FBCON_ROTATION environment variable to control output orientation on the framebuffer console. +
+ Valid values are: +

    +
  • not set - Not rotating, no shadow. +
  • "NONE" - Not rotating, but still using shadow. +
  • "CW" - Rotating screen clockwise. +
  • "UD" - Rotating screen upside down. +
  • "CCW" - Rotating screen counter clockwise. +
+

+

+ Fixed DirectFB detection on some Linux distributions. +

+

+ Added code to use the PS3 SPE processors for YUV conversion on Linux. +

+

+ Updated ALSA support to the latest stable API +

+

+ ALSA is now preferred over OSS audio. (SDL_AUDIODRIVER=dsp will restore the previous behavior.) +

+

+ Improved support for PulseAudio +

+

+ The Network Audio System support is now dynamically loaded at runtime. +

+

+ Fixed crash with the MP-8866 Dual USB Joypad on newer Linux kernels. +

+

+ Fixed crash in SDL_Quit() when a joystick has been unplugged. +

+
+ +

Windows Notes

+ +
+

+ Verified 100% compatibility with Windows 7. +

+

+ Prevent loss of OpenGL context when setting the video mode in response to a window resize event. +

+

+ Fixed video initialization with SDL_WINDOWID on Windows XP. +

+

+ Improved mouse input responsiveness for first-person-shooter games. +

+

+ IME messages are now generated for localized input. +

+

+ SDL_RWFromFile() takes a UTF-8 filename when opening a file. +

+

+ The SDL_STDIO_REDIRECT environment variable can be used to override whether SDL redirects stdio to stdout.txt and stderr.txt. +

+

+ Fixed dynamic object loading on Windows CE. +

+
+ +

Mac OS X Notes

+ +
+

+ SDL now builds on Mac OS X 10.6 (Snow Leopard). +
+ Eric Wing posted a good rundown on the numerous changes here: http://playcontrol.net/ewing/jibberjabber/big_behind-the-scenes_chang.html +

+

+ The X11 video driver is built by default. +

+

+ Fixed SDL_VIDEO_WINDOW_POS environment variable for Quartz target. +

+

+ Fixed setting the starting working directory in release builds. +

+
+ +[separator] + +

SDL 1.2.13 Release Notes

+

+SDL 1.2.13 is a minor bug fix release. +

+ +

General Notes

+ +
+

+ Fixed link error when building with Intel Compiler 10. +

+

+ Removed stray C++ comment from public headers. +

+
+ +

Unix Notes

+ +
+

+ Fixed crash in SDL_SoftStretch() on secure operating systems. +

+

+ Fixed undefined symbol on X11 implementations without UTF-8 support. +

+

+ Worked around BadAlloc error when using XVideo on the XFree86 Intel Integrated Graphics driver. +

+

+ Scan for all joysticks on Linux instead of stopping at one that was removed. +

+

+ Fixed use of sdl-config arguments in sdl.m4 +

+
+ +

Windows Notes

+ +
+

+ Fixed crash when a video driver reports higher than 32 bpp video modes. +

+

+ Fixed restoring the desktop after setting a 24-bit OpenGL video mode. +

+

+ Fixed window titles on Windows 95/98/ME. +

+

+ Added SDL_BUTTON_X1 and SDL_BUTTON_X2 constants for extended mouse buttons. +

+

+ Added support for quoted command line arguments. +

+
+ +

Mac OS X Notes

+ +
+

+ SDL now builds on Mac OS X 10.5 (Leopard). +

+

+ Fixed high frequency crash involving text input. +

+

+ Fixed beeping when the escape key is pressed and UNICODE translation is enabled. +

+

+ Improved trackpad scrolling support. +

+

+ Fixed joystick hat reporting for certain joysticks. +

+
+ +[separator] + +

SDL 1.2.12 Release Notes

+

+SDL 1.2.12 is a minor bug fix release. +

+ +

General Notes

+ +
+

+ Added support for the PulseAudio sound server: http://www.pulseaudio.org/ +

+

+ Added SDL_VIDEO_ALLOW_SCREENSAVER to override SDL's disabling of the screensaver on Mac OS X, Windows, and X11. +

+

+ Fixed buffer overrun crash when resampling audio rates. +

+

+ Fixed audio bug where converting to mono was doubling the volume. +

+

+ Fixed off-by-one error in the C implementation of SDL_revcpy() +

+

+ Fixed compiling with Sun Studio. +

+

+ Support for AmigaOS has been removed from the main SDL code. +

+

+ Support for Nokia 9210 "EPOC" driver has been removed from the main SDL code. +

+

+ Unofficial support for the S60/SymbianOS platform has been added. +

+

+ Unofficial support for the Nintendo DS platform has been added. +

+

+ Reenabled MMX assembly for YUV overlay processing (GNU C Compiler only). +

+
+ +

Unix Notes

+ +
+

+ Fixed detection of X11 DGA mouse support. +

+

+ Improved XIM support for asian character sets. +

+

+ The GFX_Display has been added to the X11 window information in SDL_syswm.h. +

+

+ Fixed PAGE_SIZE compile error in the fbcon video driver on newer Linux kernels. +

+

+ Fixed hang or crash at startup if aRts can't access the hardware. +

+

+ Fixed relative mouse mode when the cursor starts outside the X11 window. +

+

+ Fixed accidental free of stack memory in X11 mouse acceleration code. +

+

+ Closed minor memory leak in XME code. +

+

+ Fixed TEXTRELs in the library to resolve some PIC issues. +

+
+ +

Windows Notes

+ +
+

+ The GDI video driver makes better use of the palette in 8-bit modes. +

+

+ The windib driver now supports more mouse buttons with WM_XBUTTON events. +

+

+ On Windows, SDL_SetVideoMode() will re-create the window instead of failing if the multisample settings are changed. +

+

+ Added support for UTF-8 window titles on Windows. +

+

+ Fixed joystick detection on Windows. +

+

+ Improved performance with Win32 file I/O. +

+

+ Fixed HBITMAP leak in GAPI driver. +

+
+ +

Mac OS X Notes

+ +
+

+ Added support for multi-axis controllers like 3Dconnxion's SpaceNavigator on Mac OS X. +

+

+ Fixed YUV overlay crash inside Quicktime on Intel Mac OS X. +

+

+ Fixed blitting alignment in Altivec alpha blit functions. +

+

+ Keys F13, F14, and F15 are now usable on Apple keyboards under Mac OS X. +

+

+ Fixed joystick calibration code on Mac OS X. +

+

+ Fixed mouse jitter when multiple motion events are queued up in Mac OS X. +

+

+ Fixed changing the cursor in fullscreen mode on Mac OS X. +

+
+ +

Mac OS Classic Notes

+ +
+

+ Added support for gamma ramps to both toolbox and DrawSprocket video drivers. +

+
+ +

BeOS Notes

+ +
+

+ Implemented mouse grabbing and mouse relative mode on BeOS. +

+
+ +[separator] +

SDL 1.2.11 Release Notes

SDL 1.2.11 is a minor bug fix release. diff --git a/docs/html/guideinput.html b/docs/html/guideinput.html index 4a82b6761..9b9bbe1e6 100644 --- a/docs/html/guideinput.html +++ b/docs/html/guideinput.html @@ -266,7 +266,7 @@ CLASS="FUNCTION" > with the SDL_ENABLE flag. Next you must open the joysticks that you want to receive envents from. This is done with the flag. Next you must open the joysticks that you want to receive events from. This is done with the

Note: Force Feedback is not yet support. Sam (slouken@libsdl.org) is soliciting suggestions from people with force-feedback experience on the best wat to desgin the API.

Force Feedback is not yet supported. Sam (slouken@libsdl.org) is soliciting suggestions from people with force-feedback experience on the best way to design the API.

epoc

(Epoc)

dummy

If set, the linux fbcon driver will not use a mouse at all.

SDL_NO_LOCK_KEYS

Disable CAPS-LOCK and NUM-LOCK suppression of down+up key events, +suitable for games where the player needs these keys to do more than just toggle. +A value of 1 will effect both CAPS-LOCK and NUM-LOCK. +A value of 2 will effect only CAPS-LOCK. +A value of 3 will effect only NUM-LOCK. +All other values have no effect. +

pulse

(PulseAudio daemon)

audio
\ No newline at end of file +> diff --git a/docs/html/sdlsetcursor.html b/docs/html/sdlsetcursor.html index e6480a9e1..9c5443e53 100644 --- a/docs/html/sdlsetcursor.html +++ b/docs/html/sdlsetcursor.html @@ -102,7 +102,7 @@ CLASS="FUNCSYNOPSISINFO" >void *void SDL_SetCursor \ No newline at end of file +> diff --git a/docs/html/thread.html b/docs/html/thread.html index c66018eff..8ef2c9285 100644 --- a/docs/html/thread.html +++ b/docs/html/thread.html @@ -242,7 +242,7 @@ CLASS="NOTE" >

Note: SDL's threading is not implemented on MacOS, due to that lack of preemptive thread support (Mac OS X dos nt suffer from this problem)

SDL's threading is not implemented on MacOS, due to the lack of preemptive thread support on that OS (Mac OS X doesn't suffer from this problem)

0){ .SH "SEE ALSO" .PP \fI\fBSDL_JoystickClose\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff --git a/docs/man3/SDL_JoystickOpened.3 b/docs/man3/SDL_JoystickOpened.3 index 435775b1c..9d82e09b3 100644 --- a/docs/man3/SDL_JoystickOpened.3 +++ b/docs/man3/SDL_JoystickOpened.3 @@ -1,6 +1,6 @@ .TH "SDL_JoystickOpened" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_JoystickOpened\- Determine if a joystick has been opened +SDL_JoystickOpened \- Determine if a joystick has been opened .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -15,4 +15,4 @@ Returns \fB1\fR if the joystick has been opened, or \fB0\fR if it has not\&. .SH "SEE ALSO" .PP \fI\fBSDL_JoystickOpen\fP\fR, \fI\fBSDL_JoystickClose\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff --git a/docs/man3/SDL_JoystickUpdate.3 b/docs/man3/SDL_JoystickUpdate.3 index 35b7cda5a..7d1035b1c 100644 --- a/docs/man3/SDL_JoystickUpdate.3 +++ b/docs/man3/SDL_JoystickUpdate.3 @@ -1,6 +1,6 @@ .TH "SDL_JoystickUpdate" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_JoystickUpdate\- Updates the state of all joysticks +SDL_JoystickUpdate \- Updates the state of all joysticks .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -12,4 +12,4 @@ Updates the state(position, buttons, etc\&.) of all open joysticks\&. If joystic .SH "SEE ALSO" .PP \fI\fBSDL_JoystickEventState\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff --git a/docs/man3/SDL_KeyboardEvent.3 b/docs/man3/SDL_KeyboardEvent.3 index 652dc3cd6..4aeea7922 100644 --- a/docs/man3/SDL_KeyboardEvent.3 +++ b/docs/man3/SDL_KeyboardEvent.3 @@ -1,6 +1,6 @@ .TH "SDL_KeyboardEvent" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_KeyboardEvent\- Keyboard event structure +SDL_KeyboardEvent \- Keyboard event structure .SH "STRUCTURE DEFINITION" .PP .nf @@ -35,4 +35,4 @@ Repeating \fBSDL_KEYDOWN\fP events will occur if key repeat is enabled (see \fI\ .SH "SEE ALSO" .PP \fI\fBSDL_Event\fR\fR, \fI\fBSDL_keysym\fR\fR, \fI\fBSDL_EnableKeyRepeat\fP\fR, \fI\fBSDL_EnableUNICODE\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 diff --git a/docs/man3/SDL_KillThread.3 b/docs/man3/SDL_KillThread.3 index 4ece02676..2a34f11f8 100644 --- a/docs/man3/SDL_KillThread.3 +++ b/docs/man3/SDL_KillThread.3 @@ -1,6 +1,6 @@ .TH "SDL_KillThread" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_KillThread\- Gracelessly terminates the thread\&. +SDL_KillThread \- Gracelessly terminates the thread\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -13,4 +13,4 @@ SDL_KillThread\- Gracelessly terminates the thread\&. .SH "SEE ALSO" .PP \fI\fBSDL_CreateThread\fP\fR, \fI\fBSDL_WaitThread\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff --git a/docs/man3/SDL_ListModes.3 b/docs/man3/SDL_ListModes.3 index c0b9c28d4..3cc9376af 100644 --- a/docs/man3/SDL_ListModes.3 +++ b/docs/man3/SDL_ListModes.3 @@ -1,6 +1,6 @@ .TH "SDL_ListModes" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_ListModes\- Returns a pointer to an array of available screen dimensions for the given format and video flags +SDL_ListModes \- Returns a pointer to an array of available screen dimensions for the given format and video flags .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -50,4 +50,4 @@ else{ .SH "SEE ALSO" .PP \fI\fBSDL_SetVideoMode\fP\fR, \fI\fBSDL_GetVideoInfo\fP\fR, \fI\fBSDL_Rect\fR\fR, \fI\fBSDL_PixelFormat\fR\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_LoadBMP.3 b/docs/man3/SDL_LoadBMP.3 index 0dc725386..7e3b4af3a 100644 --- a/docs/man3/SDL_LoadBMP.3 +++ b/docs/man3/SDL_LoadBMP.3 @@ -1,6 +1,6 @@ .TH "SDL_LoadBMP" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_LoadBMP\- Load a Windows BMP file into an SDL_Surface\&. +SDL_LoadBMP \- Load a Windows BMP file into an SDL_Surface\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -15,4 +15,4 @@ Returns the new surface, or \fBNULL\fP if there was an error\&. .SH "SEE ALSO" .PP \fI\fBSDL_SaveBMP\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_LoadWAV.3 b/docs/man3/SDL_LoadWAV.3 index b1d758a37..490ff67ef 100644 --- a/docs/man3/SDL_LoadWAV.3 +++ b/docs/man3/SDL_LoadWAV.3 @@ -1,6 +1,6 @@ .TH "SDL_LoadWAV" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_LoadWAV\- Load a WAVE file +SDL_LoadWAV \- Load a WAVE file .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -39,4 +39,4 @@ SDL_FreeWAV(wav_buffer);\fR .SH "SEE ALSO" .PP \fI\fBSDL_AudioSpec\fR\fR, \fI\fBSDL_OpenAudio\fP\fR, \fI\fBSDL_FreeWAV\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:58 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:58 diff --git a/docs/man3/SDL_LockAudio.3 b/docs/man3/SDL_LockAudio.3 index 08aa8f3cb..8c141fd67 100644 --- a/docs/man3/SDL_LockAudio.3 +++ b/docs/man3/SDL_LockAudio.3 @@ -1,6 +1,6 @@ .TH "SDL_LockAudio" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_LockAudio\- Lock out the callback function +SDL_LockAudio \- Lock out the callback function .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -12,4 +12,4 @@ The lock manipulated by these functions protects the callback function\&. During .SH "SEE ALSO" .PP \fI\fBSDL_OpenAudio\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:58 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:58 diff --git a/docs/man3/SDL_LockSurface.3 b/docs/man3/SDL_LockSurface.3 index cb6b95419..6db3ad7bd 100644 --- a/docs/man3/SDL_LockSurface.3 +++ b/docs/man3/SDL_LockSurface.3 @@ -1,6 +1,6 @@ .TH "SDL_LockSurface" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_LockSurface\- Lock a surface for directly access\&. +SDL_LockSurface \- Lock a surface for directly access\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -45,4 +45,4 @@ It should be noted, that since SDL 1\&.1\&.8 surface locks are recursive\&. This .SH "SEE ALSO" .PP \fI\fBSDL_UnlockSurface\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_LockYUVOverlay.3 b/docs/man3/SDL_LockYUVOverlay.3 index 4e2c9e8c7..286d96fde 100644 --- a/docs/man3/SDL_LockYUVOverlay.3 +++ b/docs/man3/SDL_LockYUVOverlay.3 @@ -1,6 +1,6 @@ .TH "SDL_LockYUVOverlay" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_LockYUVOverlay\- Lock an overlay +SDL_LockYUVOverlay \- Lock an overlay .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -15,4 +15,4 @@ Returns \fB0\fR on success, or \fB-1\fR on an error\&. .SH "SEE ALSO" .PP \fI\fBSDL_UnlockYUVOverlay\fP\fR, \fI\fBSDL_CreateYUVOverlay\fP\fR, \fI\fBSDL_Overlay\fR\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_MapRGB.3 b/docs/man3/SDL_MapRGB.3 index 2d5337589..1e4c963b4 100644 --- a/docs/man3/SDL_MapRGB.3 +++ b/docs/man3/SDL_MapRGB.3 @@ -1,6 +1,6 @@ .TH "SDL_MapRGB" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_MapRGB\- Map a RGB color value to a pixel format\&. +SDL_MapRGB \- Map a RGB color value to a pixel format\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -19,4 +19,4 @@ A pixel value best approximating the given RGB color value for a given pixel for .SH "SEE ALSO" .PP \fI\fBSDL_GetRGB\fP\fR, \fI\fBSDL_GetRGBA\fP\fR, \fI\fBSDL_MapRGBA\fP\fR, \fI\fBSDL_PixelFormat\fR\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_MapRGBA.3 b/docs/man3/SDL_MapRGBA.3 index d5620fb2f..03d78d8c0 100644 --- a/docs/man3/SDL_MapRGBA.3 +++ b/docs/man3/SDL_MapRGBA.3 @@ -1,6 +1,6 @@ .TH "SDL_MapRGBA" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_MapRGBA\- Map a RGBA color value to a pixel format\&. +SDL_MapRGBA \- Map a RGBA color value to a pixel format\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -19,4 +19,4 @@ A pixel value best approximating the given RGBA color value for a given pixel fo .SH "SEE ALSO" .PP \fISDL_GetRGB\fR, \fISDL_GetRGBA\fR, \fISDL_MapRGB\fR, \fISDL_PixelFormat\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_MixAudio.3 b/docs/man3/SDL_MixAudio.3 index 633854fe9..b98660df6 100644 --- a/docs/man3/SDL_MixAudio.3 +++ b/docs/man3/SDL_MixAudio.3 @@ -1,6 +1,6 @@ .TH "SDL_MixAudio" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_MixAudio\- Mix audio data +SDL_MixAudio \- Mix audio data .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -18,4 +18,4 @@ Do not use this function for mixing together more than two streams of sample dat .SH "SEE ALSO" .PP \fI\fBSDL_OpenAudio\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:58 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:58 diff --git a/docs/man3/SDL_MouseButtonEvent.3 b/docs/man3/SDL_MouseButtonEvent.3 index a57f15eb8..d2d34a02b 100644 --- a/docs/man3/SDL_MouseButtonEvent.3 +++ b/docs/man3/SDL_MouseButtonEvent.3 @@ -1,6 +1,6 @@ .TH "SDL_MouseButtonEvent" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_MouseButtonEvent\- Mouse button event structure +SDL_MouseButtonEvent \- Mouse button event structure .SH "STRUCTURE DEFINITION" .PP .nf @@ -33,4 +33,4 @@ When a mouse button press or release is detected then number of the button press .SH "SEE ALSO" .PP \fI\fBSDL_Event\fR\fR, \fI\fBSDL_MouseMotionEvent\fR\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 diff --git a/docs/man3/SDL_MouseMotionEvent.3 b/docs/man3/SDL_MouseMotionEvent.3 index 06f424d47..c1b036d2a 100644 --- a/docs/man3/SDL_MouseMotionEvent.3 +++ b/docs/man3/SDL_MouseMotionEvent.3 @@ -1,6 +1,6 @@ .TH "SDL_MouseMotionEvent" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_MouseMotionEvent\- Mouse motion event structure +SDL_MouseMotionEvent \- Mouse motion event structure .SH "STRUCTURE DEFINITION" .PP .nf @@ -35,4 +35,4 @@ If the cursor is hidden (\fI\fBSDL_ShowCursor\fP(0)\fR) and the input is grabbed .SH "SEE ALSO" .PP \fI\fBSDL_Event\fR\fR, \fI\fBSDL_MouseButtonEvent\fR\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 diff --git a/docs/man3/SDL_NumJoysticks.3 b/docs/man3/SDL_NumJoysticks.3 index 3d90b4ad7..c737a1c5c 100644 --- a/docs/man3/SDL_NumJoysticks.3 +++ b/docs/man3/SDL_NumJoysticks.3 @@ -1,6 +1,6 @@ .TH "SDL_NumJoysticks" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_NumJoysticks\- Count available joysticks\&. +SDL_NumJoysticks \- Count available joysticks\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -15,4 +15,4 @@ Returns the number of attached joysticks .SH "SEE ALSO" .PP \fI\fBSDL_JoystickName\fP\fR, \fI\fBSDL_JoystickOpen\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff --git a/docs/man3/SDL_OpenAudio.3 b/docs/man3/SDL_OpenAudio.3 index c78baa01a..38a232ce7 100644 --- a/docs/man3/SDL_OpenAudio.3 +++ b/docs/man3/SDL_OpenAudio.3 @@ -1,6 +1,6 @@ .TH "SDL_OpenAudio" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_OpenAudio\- Opens the audio device with the desired parameters\&. +SDL_OpenAudio \- Opens the audio device with the desired parameters\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -94,4 +94,4 @@ SDL_PauseAudio(0);\fR .SH "SEE ALSO" .PP \fI\fBSDL_AudioSpec\fP\fR, \fI\fBSDL_LockAudio\fP\fR, \fI\fBSDL_UnlockAudio\fP\fR, \fI\fBSDL_PauseAudio\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:58 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:58 diff --git a/docs/man3/SDL_Overlay.3 b/docs/man3/SDL_Overlay.3 index f555e5274..a852e918f 100644 --- a/docs/man3/SDL_Overlay.3 +++ b/docs/man3/SDL_Overlay.3 @@ -1,6 +1,6 @@ .TH "SDL_Overlay" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_Overlay\- YUV video overlay +SDL_Overlay \- YUV video overlay .SH "STRUCTURE DEFINITION" .PP .nf @@ -49,4 +49,4 @@ A \fBSDL_Overlay\fR is similar to a \fI\fBSDL_Surface\fR\fR except it stores a Y .SH "SEE ALSO" .PP \fI\fBSDL_CreateYUVOverlay\fP\fR, \fI\fBSDL_LockYUVOverlay\fP\fR, \fI\fBSDL_UnlockYUVOverlay\fP\fR, \fI\fBSDL_FreeYUVOverlay\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_Palette.3 b/docs/man3/SDL_Palette.3 index 234aef9f8..ea5e406d5 100644 --- a/docs/man3/SDL_Palette.3 +++ b/docs/man3/SDL_Palette.3 @@ -1,6 +1,6 @@ .TH "SDL_Palette" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_Palette\- Color palette for 8-bit pixel formats +SDL_Palette \- Color palette for 8-bit pixel formats .SH "STRUCTURE DEFINITION" .PP .nf @@ -23,4 +23,4 @@ Each pixel in an 8-bit surface is an index into the \fBcolors\fR field of the \f .SH "SEE ALSO" .PP \fI\fBSDL_Color\fR\fR, \fI\fBSDL_Surface\fR\fR, \fI\fBSDL_SetColors\fP\fR \fI\fBSDL_SetPalette\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_PauseAudio.3 b/docs/man3/SDL_PauseAudio.3 index 799a3a5c8..1ca979a81 100644 --- a/docs/man3/SDL_PauseAudio.3 +++ b/docs/man3/SDL_PauseAudio.3 @@ -1,6 +1,6 @@ .TH "SDL_PauseAudio" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_PauseAudio\- Pauses and unpauses the audio callback processing +SDL_PauseAudio \- Pauses and unpauses the audio callback processing .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -12,4 +12,4 @@ This function pauses and unpauses the audio callback processing\&. It should be .SH "SEE ALSO" .PP \fI\fBSDL_GetAudioStatus\fP\fR, \fI\fBSDL_OpenAudio\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:58 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:58 diff --git a/docs/man3/SDL_PeepEvents.3 b/docs/man3/SDL_PeepEvents.3 index 984a22faa..016542df8 100644 --- a/docs/man3/SDL_PeepEvents.3 +++ b/docs/man3/SDL_PeepEvents.3 @@ -1,6 +1,6 @@ .TH "SDL_PeepEvents" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_PeepEvents\- Checks the event queue for messages and optionally returns them\&. +SDL_PeepEvents \- Checks the event queue for messages and optionally returns them\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -23,4 +23,4 @@ This function returns the number of events actually stored, or \fB-1\fR if there .SH "SEE ALSO" .PP \fI\fBSDL_Event\fR\fR, \fI\fBSDL_PollEvent\fP\fR, \fI\fBSDL_PushEvent\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 diff --git a/docs/man3/SDL_PixelFormat.3 b/docs/man3/SDL_PixelFormat.3 index 0f4550e3c..f91593ebb 100644 --- a/docs/man3/SDL_PixelFormat.3 +++ b/docs/man3/SDL_PixelFormat.3 @@ -1,6 +1,6 @@ .TH "SDL_PixelFormat" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_PixelFormat\- Stores surface format information +SDL_PixelFormat \- Stores surface format information .SH "STRUCTURE DEFINITION" .PP .nf @@ -137,4 +137,4 @@ printf("Pixel Color -> R: %d, G: %d, B: %d, A: %d .SH "SEE ALSO" .PP \fI\fBSDL_Surface\fR\fR, \fI\fBSDL_MapRGB\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_PollEvent.3 b/docs/man3/SDL_PollEvent.3 index 689f64c60..6197f7e1b 100644 --- a/docs/man3/SDL_PollEvent.3 +++ b/docs/man3/SDL_PollEvent.3 @@ -1,6 +1,6 @@ .TH "SDL_PollEvent" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_PollEvent\- Polls for currently pending events\&. +SDL_PollEvent \- Polls for currently pending events\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -41,4 +41,4 @@ while(SDL_PollEvent(&event)){ /* Loop until there are no events left on the que .SH "SEE ALSO" .PP \fI\fBSDL_Event\fR\fR, \fI\fBSDL_WaitEvent\fP\fR, \fI\fBSDL_PeepEvents\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 diff --git a/docs/man3/SDL_PumpEvents.3 b/docs/man3/SDL_PumpEvents.3 index ccd9496ba..62cc13d9e 100644 --- a/docs/man3/SDL_PumpEvents.3 +++ b/docs/man3/SDL_PumpEvents.3 @@ -1,6 +1,6 @@ .TH "SDL_PumpEvents" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_PumpEvents\- Pumps the event loop, gathering events from the input devices\&. +SDL_PumpEvents \- Pumps the event loop, gathering events from the input devices\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -20,4 +20,4 @@ You can only call this function in the thread that set the video mode\&. .SH "SEE ALSO" .PP \fI\fBSDL_PollEvent\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 diff --git a/docs/man3/SDL_PushEvent.3 b/docs/man3/SDL_PushEvent.3 index 9faf8a249..4be188f12 100644 --- a/docs/man3/SDL_PushEvent.3 +++ b/docs/man3/SDL_PushEvent.3 @@ -1,6 +1,6 @@ .TH "SDL_PushEvent" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_PushEvent\- Pushes an event onto the event queue +SDL_PushEvent \- Pushes an event onto the event queue .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -24,4 +24,4 @@ See \fI\fBSDL_Event\fR\fR\&. .SH "SEE ALSO" .PP \fI\fBSDL_PollEvent\fP\fR, \fI\fBSDL_PeepEvents\fP\fR, \fI\fBSDL_Event\fR\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 diff --git a/docs/man3/SDL_Quit.3 b/docs/man3/SDL_Quit.3 index 2ebad0e15..42fe8c1b2 100644 --- a/docs/man3/SDL_Quit.3 +++ b/docs/man3/SDL_Quit.3 @@ -1,6 +1,6 @@ .TH "SDL_Quit" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_Quit\- Shut down SDL +SDL_Quit \- Shut down SDL .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -26,4 +26,4 @@ While using \fBatexit\fP maybe be fine for small programs, more advanced users s .SH "SEE ALSO" .PP \fI\fBSDL_QuitSubsystem\fP\fR, \fI\fBSDL_Init\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff --git a/docs/man3/SDL_QuitEvent.3 b/docs/man3/SDL_QuitEvent.3 index 7060601eb..c357e2a31 100644 --- a/docs/man3/SDL_QuitEvent.3 +++ b/docs/man3/SDL_QuitEvent.3 @@ -1,6 +1,6 @@ .TH "SDL_QuitEvent" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_QuitEvent\- Quit requested event +SDL_QuitEvent \- Quit requested event .SH "STRUCTURE DEFINITION" .PP .nf @@ -27,4 +27,4 @@ The macro \fBSDL_QuitRequested\fP will return non-zero if a quit event is pendin .SH "SEE ALSO" .PP \fI\fBSDL_Event\fR\fR, \fI\fBSDL_SetEventFilter\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 diff --git a/docs/man3/SDL_QuitSubSystem.3 b/docs/man3/SDL_QuitSubSystem.3 index 1d26fb05f..79e3ca592 100644 --- a/docs/man3/SDL_QuitSubSystem.3 +++ b/docs/man3/SDL_QuitSubSystem.3 @@ -1,6 +1,6 @@ .TH "SDL_QuitSubSystem" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_QuitSubSystem\- Shut down a subsystem +SDL_QuitSubSystem \- Shut down a subsystem .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -12,4 +12,4 @@ SDL_QuitSubSystem\- Shut down a subsystem .SH "SEE ALSO" .PP \fI\fBSDL_Quit\fP\fR, \fI\fBSDL_Init\fP\fR, \fI\fBSDL_InitSubSystem\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff --git a/docs/man3/SDL_RWFromFile.3 b/docs/man3/SDL_RWFromFile.3 index c810a13ee..9ea68b93d 100644 --- a/docs/man3/SDL_RWFromFile.3 +++ b/docs/man3/SDL_RWFromFile.3 @@ -1,6 +1,6 @@ .TH "SDL_FunctionName" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_FunctionName\- Short description of function +SDL_FunctionName \- Short description of function .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -15,4 +15,4 @@ examples here .SH "SEE ALSO" .PP \fISDL_AnotherFunction\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff --git a/docs/man3/SDL_Rect.3 b/docs/man3/SDL_Rect.3 index a976cd15a..8db224de6 100644 --- a/docs/man3/SDL_Rect.3 +++ b/docs/man3/SDL_Rect.3 @@ -1,6 +1,6 @@ .TH "SDL_Rect" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_Rect\- Defines a rectangular area +SDL_Rect \- Defines a rectangular area .SH "STRUCTURE DEFINITION" .PP .nf @@ -23,4 +23,4 @@ A \fBSDL_Rect\fR defines a rectangular area of pixels\&. It is used by \fI\fBSDL .SH "SEE ALSO" .PP \fI\fBSDL_BlitSurface\fP\fR, \fI\fBSDL_UpdateRect\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_RemoveTimer.3 b/docs/man3/SDL_RemoveTimer.3 index a67f62beb..1203c6f54 100644 --- a/docs/man3/SDL_RemoveTimer.3 +++ b/docs/man3/SDL_RemoveTimer.3 @@ -1,6 +1,6 @@ .TH "SDL_RemoveTimer" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_RemoveTimer\- Remove a timer which was added with \fISDL_AddTimer\fR\&. +SDL_RemoveTimer \- Remove a timer which was added with \fISDL_AddTimer\fR\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -22,4 +22,4 @@ Returns a boolean value indicating success\&. .SH "SEE ALSO" .PP \fI\fBSDL_AddTimer\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_ResizeEvent.3 b/docs/man3/SDL_ResizeEvent.3 index f6dcc0c23..7b0a5e265 100644 --- a/docs/man3/SDL_ResizeEvent.3 +++ b/docs/man3/SDL_ResizeEvent.3 @@ -1,6 +1,6 @@ .TH "SDL_ResizeEvent" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_ResizeEvent\- Window resize event structure +SDL_ResizeEvent \- Window resize event structure .SH "STRUCTURE DEFINITION" .PP .nf @@ -25,4 +25,4 @@ When \fBSDL_RESIZABLE\fP is passed as a \fBflag\fR to \fI\fBSDL_SetVideoMode\fP\ .SH "SEE ALSO" .PP \fI\fBSDL_Event\fR\fR, \fI\fBSDL_SetVideoMode\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 diff --git a/docs/man3/SDL_SaveBMP.3 b/docs/man3/SDL_SaveBMP.3 index 1a113c338..61e00dd51 100644 --- a/docs/man3/SDL_SaveBMP.3 +++ b/docs/man3/SDL_SaveBMP.3 @@ -1,6 +1,6 @@ .TH "SDL_SaveBMP" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_SaveBMP\- Save an SDL_Surface as a Windows BMP file\&. +SDL_SaveBMP \- Save an SDL_Surface as a Windows BMP file\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -15,4 +15,4 @@ Returns \fB0\fR if successful or \fB-1\fR if there was an error\&. .SH "SEE ALSO" .PP \fI\fBSDL_LoadBMP\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_SemPost.3 b/docs/man3/SDL_SemPost.3 index ced0d79ad..5487d2d5a 100644 --- a/docs/man3/SDL_SemPost.3 +++ b/docs/man3/SDL_SemPost.3 @@ -1,6 +1,6 @@ .TH "SDL_SemPost" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_SemPost\- Unlock a semaphore\&. +SDL_SemPost \- Unlock a semaphore\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -25,4 +25,4 @@ Returns \fB0\fR if successful or \fB-1\fR if there was an error (leaving the sem .SH "SEE ALSO" .PP \fI\fBSDL_CreateSemaphore\fP\fR, \fI\fBSDL_DestroySemaphore\fP\fR, \fI\fBSDL_SemWait\fP\fR, \fI\fBSDL_SemTryWait\fP\fR, \fI\fBSDL_SemWaitTimeout\fP\fR, \fI\fBSDL_SemValue\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff --git a/docs/man3/SDL_SemTryWait.3 b/docs/man3/SDL_SemTryWait.3 index ad515b219..aee9aff19 100644 --- a/docs/man3/SDL_SemTryWait.3 +++ b/docs/man3/SDL_SemTryWait.3 @@ -1,6 +1,6 @@ .TH "SDL_SemTryWait" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_SemTryWait\- Attempt to lock a semaphore but don\&'t suspend the thread\&. +SDL_SemTryWait \- Attempt to lock a semaphore but don\&'t suspend the thread\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -38,4 +38,4 @@ SDL_SemPost(my_sem);\fR .SH "SEE ALSO" .PP \fI\fBSDL_CreateSemaphore\fP\fR, \fI\fBSDL_DestroySemaphore\fP\fR, \fI\fBSDL_SemWait\fP\fR, \fI\fBSDL_SemWaitTimeout\fP\fR, \fI\fBSDL_SemPost\fP\fR, \fI\fBSDL_SemValue\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff --git a/docs/man3/SDL_SemValue.3 b/docs/man3/SDL_SemValue.3 index 8c98875c8..070314399 100644 --- a/docs/man3/SDL_SemValue.3 +++ b/docs/man3/SDL_SemValue.3 @@ -1,6 +1,6 @@ .TH "SDL_SemValue" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_SemValue\- Return the current value of a semaphore\&. +SDL_SemValue \- Return the current value of a semaphore\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -23,4 +23,4 @@ Returns current value of the semaphore\&. .SH "SEE ALSO" .PP \fI\fBSDL_CreateSemaphore\fP\fR, \fI\fBSDL_DestroySemaphore\fP\fR, \fI\fBSDL_SemWait\fP\fR, \fI\fBSDL_SemTryWait\fP\fR, \fI\fBSDL_SemWaitTimeout\fP\fR, \fI\fBSDL_SemPost\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff --git a/docs/man3/SDL_SemWait.3 b/docs/man3/SDL_SemWait.3 index a0cb71baa..b7bba3fb7 100644 --- a/docs/man3/SDL_SemWait.3 +++ b/docs/man3/SDL_SemWait.3 @@ -1,6 +1,6 @@ .TH "SDL_SemWait" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_SemWait\- Lock a semaphore and suspend the thread if the semaphore value is zero\&. +SDL_SemWait \- Lock a semaphore and suspend the thread if the semaphore value is zero\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -31,4 +31,4 @@ SDL_SemPost(my_sem);\fR .SH "SEE ALSO" .PP \fI\fBSDL_CreateSemaphore\fP\fR, \fI\fBSDL_DestroySemaphore\fP\fR, \fI\fBSDL_SemTryWait\fP\fR, \fI\fBSDL_SemWaitTimeout\fP\fR, \fI\fBSDL_SemPost\fP\fR, \fI\fBSDL_SemValue\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff --git a/docs/man3/SDL_SemWaitTimeout.3 b/docs/man3/SDL_SemWaitTimeout.3 index 215ad16f0..8afd1cb60 100644 --- a/docs/man3/SDL_SemWaitTimeout.3 +++ b/docs/man3/SDL_SemWaitTimeout.3 @@ -1,6 +1,6 @@ .TH "SDL_SemWaitTimeout" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_SemWaitTimeout\- Lock a semaphore, but only wait up to a specified maximum time\&. +SDL_SemWaitTimeout \- Lock a semaphore, but only wait up to a specified maximum time\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -38,4 +38,4 @@ SDL_SemPost(my_sem);\fR .SH "SEE ALSO" .PP \fI\fBSDL_CreateSemaphore\fP\fR, \fI\fBSDL_DestroySemaphore\fP\fR, \fI\fBSDL_SemWait\fP\fR, \fI\fBSDL_SemTryWait\fP\fR, \fI\fBSDL_SemPost\fP\fR, \fI\fBSDL_SemValue\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff --git a/docs/man3/SDL_SetAlpha.3 b/docs/man3/SDL_SetAlpha.3 index 503fe8e8d..282ecdedc 100644 --- a/docs/man3/SDL_SetAlpha.3 +++ b/docs/man3/SDL_SetAlpha.3 @@ -1,6 +1,6 @@ .TH "SDL_SetAlpha" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_SetAlpha\- Adjust the alpha properties of a surface +SDL_SetAlpha \- Adjust the alpha properties of a surface .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -63,4 +63,4 @@ This function returns \fB0\fR, or \fB-1\fR if there was an error\&. .SH "SEE ALSO" .PP \fI\fBSDL_MapRGBA\fP\fR, \fI\fBSDL_GetRGBA\fP\fR, \fI\fBSDL_DisplayFormatAlpha\fP\fR, \fI\fBSDL_BlitSurface\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_SetClipRect.3 b/docs/man3/SDL_SetClipRect.3 index 71b6ceea2..a1bde0818 100644 --- a/docs/man3/SDL_SetClipRect.3 +++ b/docs/man3/SDL_SetClipRect.3 @@ -1,6 +1,6 @@ .TH "SDL_SetClipRect" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_SetClipRect\- Sets the clipping rectangle for a surface\&. +SDL_SetClipRect \- Sets the clipping rectangle for a surface\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -16,4 +16,4 @@ If \fBrect\fR is \fBNULL\fP the clipping rectangle will be set to the full size .SH "SEE ALSO" .PP \fI\fBSDL_GetClipRect\fP\fR, \fI\fBSDL_BlitSurface\fP\fR, \fI\fBSDL_Surface\fR\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_SetColorKey.3 b/docs/man3/SDL_SetColorKey.3 index 837f790a6..36f88934a 100644 --- a/docs/man3/SDL_SetColorKey.3 +++ b/docs/man3/SDL_SetColorKey.3 @@ -1,6 +1,6 @@ .TH "SDL_SetColorKey" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_SetColorKey\- Sets the color key (transparent pixel) in a blittable surface and RLE acceleration\&. +SDL_SetColorKey \- Sets the color key (transparent pixel) in a blittable surface and RLE acceleration\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -23,4 +23,4 @@ This function returns \fB0\fR, or \fB-1\fR if there was an error\&. .SH "SEE ALSO" .PP \fI\fBSDL_BlitSurface\fP\fR, \fI\fBSDL_DisplayFormat\fP\fR, \fI\fBSDL_MapRGB\fP\fR, \fI\fBSDL_SetAlpha\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_SetColors.3 b/docs/man3/SDL_SetColors.3 index 0134f917c..7137a6c37 100644 --- a/docs/man3/SDL_SetColors.3 +++ b/docs/man3/SDL_SetColors.3 @@ -1,6 +1,6 @@ .TH "SDL_SetColors" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_SetColors\- Sets a portion of the colormap for the given 8-bit surface\&. +SDL_SetColors \- Sets a portion of the colormap for the given 8-bit surface\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -54,4 +54,4 @@ SDL_SetColors(screen, colors, 0, 256); .SH "SEE ALSO" .PP \fI\fBSDL_Color\fR\fR \fI\fBSDL_Surface\fR\fR, \fI\fBSDL_SetPalette\fP\fR, \fI\fBSDL_SetVideoMode\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_SetCursor.3 b/docs/man3/SDL_SetCursor.3 index 6711274ff..78c4cf9f5 100644 --- a/docs/man3/SDL_SetCursor.3 +++ b/docs/man3/SDL_SetCursor.3 @@ -1,15 +1,15 @@ .TH "SDL_SetCursor" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_SetCursor\- Set the currently active mouse cursor\&. +SDL_SetCursor \- Set the currently active mouse cursor\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" .sp -\fBvoid *\fBSDL_SetCursor\fP\fR(\fBSDL_Cursor *cursor\fR); +\fBvoid \fBSDL_SetCursor\fP\fR(\fBSDL_Cursor *cursor\fR); .SH "DESCRIPTION" .PP Sets the currently active cursor to the specified one\&. If the cursor is currently visible, the change will be immediately represented on the display\&. .SH "SEE ALSO" .PP \fI\fBSDL_GetCursor\fP\fR, \fI\fBSDL_CreateCursor\fP\fR, \fI\fBSDL_ShowCursor\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_SetEventFilter.3 b/docs/man3/SDL_SetEventFilter.3 index 15eee4a29..8d3ed034e 100644 --- a/docs/man3/SDL_SetEventFilter.3 +++ b/docs/man3/SDL_SetEventFilter.3 @@ -1,6 +1,6 @@ .TH "SDL_SetEventFilter" "3" "Tue 11 Sep 2001, 22:59" "SDL" "SDL API Reference" .SH "NAME" -SDL_SetEventFilter\- Sets up a filter to process all events before they are posted to the event queue\&. +SDL_SetEventFilter \- Sets up a filter to process all events before they are posted to the event queue\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -32,4 +32,4 @@ Events pushed onto the queue with \fI\fBSDL_PushEvent\fP\fR or \fI\fBSDL_PeepEve .SH "SEE ALSO" .PP \fI\fBSDL_Event\fR\fR, \fI\fBSDL_GetEventFilter\fP\fR, \fI\fBSDL_PushEvent\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:59 diff --git a/docs/man3/SDL_SetGamma.3 b/docs/man3/SDL_SetGamma.3 index 7237c5ea0..4897272d0 100644 --- a/docs/man3/SDL_SetGamma.3 +++ b/docs/man3/SDL_SetGamma.3 @@ -1,6 +1,6 @@ .TH "SDL_SetGamma" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_SetGamma\- Sets the color gamma function for the display +SDL_SetGamma \- Sets the color gamma function for the display .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -19,4 +19,4 @@ Returns -1 on error (or if gamma adjustment is not supported)\&. .SH "SEE ALSO" .PP \fISDL_GetGammaRamp\fR \fISDL_SetGammaRamp\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_SetGammaRamp.3 b/docs/man3/SDL_SetGammaRamp.3 index c6978ac4a..52bf9f591 100644 --- a/docs/man3/SDL_SetGammaRamp.3 +++ b/docs/man3/SDL_SetGammaRamp.3 @@ -1,6 +1,6 @@ .TH "SDL_SetGammaRamp" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_SetGammaRamp\- Sets the color gamma lookup tables for the display +SDL_SetGammaRamp \- Sets the color gamma lookup tables for the display .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -19,4 +19,4 @@ Returns -1 on error (or if gamma adjustment is not supported)\&. .SH "SEE ALSO" .PP \fISDL_SetGamma\fR \fISDL_GetGammaRamp\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_SetModState.3 b/docs/man3/SDL_SetModState.3 index 1777b1fda..f356ca1e5 100644 --- a/docs/man3/SDL_SetModState.3 +++ b/docs/man3/SDL_SetModState.3 @@ -1,6 +1,6 @@ .TH "SDL_SetModState" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_SetModState\- Set the current key modifier state +SDL_SetModState \- Set the current key modifier state .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -32,4 +32,4 @@ Simply pass your desired modifier states into \fBmodstate\fR\&. This value my be .SH "SEE ALSO" .PP \fI\fBSDL_GetModState\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff --git a/docs/man3/SDL_SetPalette.3 b/docs/man3/SDL_SetPalette.3 index 90387f0e6..a2ca3f618 100644 --- a/docs/man3/SDL_SetPalette.3 +++ b/docs/man3/SDL_SetPalette.3 @@ -1,6 +1,6 @@ .TH "SDL_SetPalette" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_SetPalette\- Sets the colors in the palette of an 8-bit surface\&. +SDL_SetPalette \- Sets the colors in the palette of an 8-bit surface\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -56,4 +56,4 @@ If \fBsurface\fR is not a palettized surface, this function does nothing, return .SH "SEE ALSO" .PP \fISDL_SetColors\fR, \fISDL_SetVideoMode\fR, \fISDL_Surface\fR, \fISDL_Color\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_SetTimer.3 b/docs/man3/SDL_SetTimer.3 index dac4650dd..418ac86b7 100644 --- a/docs/man3/SDL_SetTimer.3 +++ b/docs/man3/SDL_SetTimer.3 @@ -1,6 +1,6 @@ .TH "SDL_SetTimer" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_SetTimer\- Set a callback to run after the specified number of milliseconds has elapsed\&. +SDL_SetTimer \- Set a callback to run after the specified number of milliseconds has elapsed\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -36,4 +36,4 @@ This function is kept for compatibility but has been superseded by the new timer .SH "SEE ALSO" .PP \fI\fBSDL_AddTimer\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_SetVideoMode.3 b/docs/man3/SDL_SetVideoMode.3 index f83d1012a..95defb183 100644 --- a/docs/man3/SDL_SetVideoMode.3 +++ b/docs/man3/SDL_SetVideoMode.3 @@ -1,6 +1,6 @@ .TH "SDL_SetVideoMode" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_SetVideoMode\- Set up a video mode with the specified width, height and bits-per-pixel\&. +SDL_SetVideoMode \- Set up a video mode with the specified width, height and bits-per-pixel\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -64,4 +64,4 @@ The framebuffer surface, or \fBNULL\fR if it fails\&. The surface returned is fr .SH "SEE ALSO" .PP \fI\fBSDL_LockSurface\fP\fR, \fI\fBSDL_SetColors\fP\fR, \fI\fBSDL_Flip\fP\fR, \fI\fBSDL_Surface\fR\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_ShowCursor.3 b/docs/man3/SDL_ShowCursor.3 index 0b42ed57f..0376415c0 100644 --- a/docs/man3/SDL_ShowCursor.3 +++ b/docs/man3/SDL_ShowCursor.3 @@ -1,6 +1,6 @@ .TH "SDL_ShowCursor" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_ShowCursor\- Toggle whether or not the cursor is shown on the screen\&. +SDL_ShowCursor \- Toggle whether or not the cursor is shown on the screen\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -17,4 +17,4 @@ Returns the current state of the cursor\&. .SH "SEE ALSO" .PP \fI\fBSDL_CreateCursor\fP\fR, \fI\fBSDL_SetCursor\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_Surface.3 b/docs/man3/SDL_Surface.3 index a627d0644..03d6ff9dc 100644 --- a/docs/man3/SDL_Surface.3 +++ b/docs/man3/SDL_Surface.3 @@ -1,6 +1,6 @@ .TH "SDL_Surface" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_Surface\- Graphical Surface Structure +SDL_Surface \- Graphical Surface Structure .SH "STRUCTURE DEFINITION" .PP .nf @@ -93,4 +93,4 @@ Surface uses preallocated memory .SH "SEE ALSO" .PP \fI\fBSDL_PixelFormat\fR\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_SysWMEvent.3 b/docs/man3/SDL_SysWMEvent.3 index 84b629ba9..ca1b7abff 100644 --- a/docs/man3/SDL_SysWMEvent.3 +++ b/docs/man3/SDL_SysWMEvent.3 @@ -1,6 +1,6 @@ .TH "SDL_SysWMEvent" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_SysWMEvent\- Platform-dependent window manager event\&. +SDL_SysWMEvent \- Platform-dependent window manager event\&. .SH "DESCRIPTION" .PP The system window manager event contains a pointer to system-specific information about unknown window manager events\&. If you enable this event using \fI\fBSDL_EventState()\fP\fR, it will be generated whenever unhandled events are received from the window manager\&. This can be used, for example, to implement cut-and-paste in your application\&. @@ -18,4 +18,4 @@ The system window manager event contains a pointer to system-specific informatio .SH "SEE ALSO" .PP \fI\fBSDL_EventState\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff --git a/docs/man3/SDL_ThreadID.3 b/docs/man3/SDL_ThreadID.3 index 1658c7125..10e2cf832 100644 --- a/docs/man3/SDL_ThreadID.3 +++ b/docs/man3/SDL_ThreadID.3 @@ -1,6 +1,6 @@ .TH "SDL_ThreadID" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_ThreadID\- Get the 32-bit thread identifier for the current thread\&. +SDL_ThreadID \- Get the 32-bit thread identifier for the current thread\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -10,4 +10,4 @@ SDL_ThreadID\- Get the 32-bit thread identifier for the current thread\&. .SH "DESCRIPTION" .PP Get the 32-bit thread identifier for the current thread\&. -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff --git a/docs/man3/SDL_UnlockAudio.3 b/docs/man3/SDL_UnlockAudio.3 index 4d385bf2e..85063191a 100644 --- a/docs/man3/SDL_UnlockAudio.3 +++ b/docs/man3/SDL_UnlockAudio.3 @@ -1,6 +1,6 @@ .TH "SDL_UnlockAudio" "3" "Tue 11 Sep 2001, 22:58" "SDL" "SDL API Reference" .SH "NAME" -SDL_UnlockAudio\- Unlock the callback function +SDL_UnlockAudio \- Unlock the callback function .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -12,4 +12,4 @@ Unlocks a previous \fI\fBSDL_LockAudio\fP\fR call\&. .SH "SEE ALSO" .PP \fI\fBSDL_OpenAudio\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:58 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 22:58 diff --git a/docs/man3/SDL_UnlockSurface.3 b/docs/man3/SDL_UnlockSurface.3 index 3661467dd..a3fe5c9b6 100644 --- a/docs/man3/SDL_UnlockSurface.3 +++ b/docs/man3/SDL_UnlockSurface.3 @@ -1,6 +1,6 @@ .TH "SDL_UnlockSurface" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_UnlockSurface\- Unlocks a previously locked surface\&. +SDL_UnlockSurface \- Unlocks a previously locked surface\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -14,4 +14,4 @@ It should be noted that since 1\&.1\&.8, surface locks are recursive\&. See \fI\ .SH "SEE ALSO" .PP \fI\fBSDL_LockSurface\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_UnlockYUVOverlay.3 b/docs/man3/SDL_UnlockYUVOverlay.3 index 5cda838f8..1e6b7217e 100644 --- a/docs/man3/SDL_UnlockYUVOverlay.3 +++ b/docs/man3/SDL_UnlockYUVOverlay.3 @@ -1,6 +1,6 @@ .TH "SDL_UnlockYUVOverlay" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_UnlockYUVOverlay\- Unlock an overlay +SDL_UnlockYUVOverlay \- Unlock an overlay .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -12,4 +12,4 @@ The opposite to \fI\fBSDL_LockYUVOverlay\fP\fR\&. Unlocks a previously locked ov .SH "SEE ALSO" .PP \fI\fBSDL_UnlockYUVOverlay\fP\fR, \fI\fBSDL_CreateYUVOverlay\fP\fR, \fI\fBSDL_Overlay\fR\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_UpdateRect.3 b/docs/man3/SDL_UpdateRect.3 index fbb334038..a101a8386 100644 --- a/docs/man3/SDL_UpdateRect.3 +++ b/docs/man3/SDL_UpdateRect.3 @@ -1,6 +1,6 @@ .TH "SDL_UpdateRect" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_UpdateRect\- Makes sure the given area is updated on the given screen\&. +SDL_UpdateRect \- Makes sure the given area is updated on the given screen\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -16,4 +16,4 @@ This function should not be called while \&'\fBscreen\fR\&' is \fIlocked\fR\&. .SH "SEE ALSO" .PP \fI\fBSDL_UpdateRects\fP\fR, \fI\fBSDL_Rect\fR\fR, \fI\fBSDL_Surface\fR\fR, \fI\fBSDL_LockSurface\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_UpdateRects.3 b/docs/man3/SDL_UpdateRects.3 index 0db2dee89..9ffdb08e0 100644 --- a/docs/man3/SDL_UpdateRects.3 +++ b/docs/man3/SDL_UpdateRects.3 @@ -1,6 +1,6 @@ .TH "SDL_UpdateRects" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_UpdateRects\- Makes sure the given list of rectangles is updated on the given screen\&. +SDL_UpdateRects \- Makes sure the given list of rectangles is updated on the given screen\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -22,4 +22,4 @@ The rectangles are not automatically merged or checked for overlap\&. In general .SH "SEE ALSO" .PP \fI\fBSDL_UpdateRect\fP\fR, \fI\fBSDL_Rect\fR\fR, \fI\fBSDL_Surface\fR\fR, \fI\fBSDL_LockSurface\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_UserEvent.3 b/docs/man3/SDL_UserEvent.3 index ed25ea0db..d92ec5356 100644 --- a/docs/man3/SDL_UserEvent.3 +++ b/docs/man3/SDL_UserEvent.3 @@ -1,6 +1,6 @@ .TH "SDL_UserEvent" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_UserEvent\- A user-defined event type +SDL_UserEvent \- A user-defined event type .SH "STRUCTURE DEFINITION" .PP .nf @@ -44,4 +44,4 @@ SDL_PushEvent(&event);\fR .SH "SEE ALSO" .PP \fI\fBSDL_Event\fR\fR, \fI\fBSDL_PushEvent\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff --git a/docs/man3/SDL_VideoDriverName.3 b/docs/man3/SDL_VideoDriverName.3 index 52b116574..e8563b650 100644 --- a/docs/man3/SDL_VideoDriverName.3 +++ b/docs/man3/SDL_VideoDriverName.3 @@ -1,6 +1,6 @@ .TH "SDL_VideoDriverName" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_VideoDriverName\- Obtain the name of the video driver +SDL_VideoDriverName \- Obtain the name of the video driver .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -15,4 +15,4 @@ Returns \fBNULL\fP if video has not been initialised with \fBSDL_Init\fP or a po .SH "SEE ALSO" .PP \fI\fBSDL_Init\fP\fR \fI\fBSDL_InitSubSystem\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_VideoInfo.3 b/docs/man3/SDL_VideoInfo.3 index ed11835e1..c62e1ffdd 100644 --- a/docs/man3/SDL_VideoInfo.3 +++ b/docs/man3/SDL_VideoInfo.3 @@ -1,6 +1,6 @@ .TH "SDL_VideoInfo" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_VideoInfo\- Video Target information +SDL_VideoInfo \- Video Target information .SH "STRUCTURE DEFINITION" .PP .nf @@ -59,4 +59,4 @@ This (read-only) structure is returned by \fI\fBSDL_GetVideoInfo\fP\fR\&. It con .SH "SEE ALSO" .PP \fI\fBSDL_PixelFormat\fR\fR, \fI\fBSDL_GetVideoInfo\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_VideoModeOK.3 b/docs/man3/SDL_VideoModeOK.3 index 8245ae6e6..72c9a9073 100644 --- a/docs/man3/SDL_VideoModeOK.3 +++ b/docs/man3/SDL_VideoModeOK.3 @@ -1,6 +1,6 @@ .TH "SDL_VideoModeOK" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_VideoModeOK\- Check to see if a particular video mode is supported\&. +SDL_VideoModeOK \- Check to see if a particular video mode is supported\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -41,4 +41,4 @@ screen=SDL_SetVideoMode(640, 480, bpp, SDL_HWSURFACE); .SH "SEE ALSO" .PP \fI\fBSDL_SetVideoMode\fP\fR, \fI\fBSDL_GetVideoInfo\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_WM_GetCaption.3 b/docs/man3/SDL_WM_GetCaption.3 index 4507cab6a..68ed8b232 100644 --- a/docs/man3/SDL_WM_GetCaption.3 +++ b/docs/man3/SDL_WM_GetCaption.3 @@ -1,6 +1,6 @@ .TH "SDL_WM_GetCaption" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_WM_GetCaption\- Gets the window title and icon name\&. +SDL_WM_GetCaption \- Gets the window title and icon name\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -12,4 +12,4 @@ Set pointers to the window \fBtitle\fR and \fBicon\fR name\&. .SH "SEE ALSO" .PP \fI\fBSDL_WM_SetCaption\fP\fR, \fI\fBSDL_WM_SetIcon\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_WM_GrabInput.3 b/docs/man3/SDL_WM_GrabInput.3 index 3948af7ec..556681e70 100644 --- a/docs/man3/SDL_WM_GrabInput.3 +++ b/docs/man3/SDL_WM_GrabInput.3 @@ -1,6 +1,6 @@ .TH "SDL_WM_GrabInput" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_WM_GrabInput\- Grabs mouse and keyboard input\&. +SDL_WM_GrabInput \- Grabs mouse and keyboard input\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -25,4 +25,4 @@ When \fBmode\fR is \fBSDL_GRAB_QUERY\fP the grab mode is not changed, but the cu .SH "RETURN VALUE" .PP The current/new \fBSDL_GrabMode\fR\&. -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_WM_IconifyWindow.3 b/docs/man3/SDL_WM_IconifyWindow.3 index dea10eb12..922df8f53 100644 --- a/docs/man3/SDL_WM_IconifyWindow.3 +++ b/docs/man3/SDL_WM_IconifyWindow.3 @@ -1,6 +1,6 @@ .TH "SDL_WM_IconifyWindow" "3" "Tue 11 Sep 2001, 23:02" "SDL" "SDL API Reference" .SH "NAME" -SDL_WM_IconifyWindow\- Iconify/Minimise the window +SDL_WM_IconifyWindow \- Iconify/Minimise the window .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -12,4 +12,4 @@ If the application is running in a window managed environment SDL attempts to ic .SH "RETURN VALUE" .PP Returns non-zero on success or \fB0\fR if iconification is not support or was refused by the window manager\&. -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:02 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:02 diff --git a/docs/man3/SDL_WM_SetCaption.3 b/docs/man3/SDL_WM_SetCaption.3 index d21ef4f40..847ff5d45 100644 --- a/docs/man3/SDL_WM_SetCaption.3 +++ b/docs/man3/SDL_WM_SetCaption.3 @@ -1,6 +1,6 @@ .TH "SDL_WM_SetCaption" "3" "Tue 11 Sep 2001, 23:02" "SDL" "SDL API Reference" .SH "NAME" -SDL_WM_SetCaption\- Sets the window tile and icon name\&. +SDL_WM_SetCaption \- Sets the window tile and icon name\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -12,4 +12,4 @@ Sets the title-bar and icon name of the display window\&. .SH "SEE ALSO" .PP \fI\fBSDL_WM_GetCaption\fP\fR, \fI\fBSDL_WM_SetIcon\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:02 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:02 diff --git a/docs/man3/SDL_WM_SetIcon.3 b/docs/man3/SDL_WM_SetIcon.3 index fccebe503..3f3a51966 100644 --- a/docs/man3/SDL_WM_SetIcon.3 +++ b/docs/man3/SDL_WM_SetIcon.3 @@ -1,6 +1,6 @@ .TH "SDL_WM_SetIcon" "3" "Tue 11 Sep 2001, 23:02" "SDL" "SDL API Reference" .SH "NAME" -SDL_WM_SetIcon\- Sets the icon for the display window\&. +SDL_WM_SetIcon \- Sets the icon for the display window\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -24,4 +24,4 @@ If \fBmask\fR is \fBNULL\fP, the entire icon surface will be used as the icon\&. .SH "SEE ALSO" .PP \fI\fBSDL_SetVideoMode\fP\fR, \fI\fBSDL_WM_SetCaption\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:02 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:02 diff --git a/docs/man3/SDL_WM_ToggleFullScreen.3 b/docs/man3/SDL_WM_ToggleFullScreen.3 index a1def8e3f..d4cf8de15 100644 --- a/docs/man3/SDL_WM_ToggleFullScreen.3 +++ b/docs/man3/SDL_WM_ToggleFullScreen.3 @@ -1,6 +1,6 @@ .TH "SDL_WM_ToggleFullScreen" "3" "Tue 11 Sep 2001, 23:02" "SDL" "SDL API Reference" .SH "NAME" -SDL_WM_ToggleFullScreen\- Toggles fullscreen mode +SDL_WM_ToggleFullScreen \- Toggles fullscreen mode .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -12,4 +12,4 @@ Toggles the application between windowed and fullscreen mode, if supported\&. (X .SH "RETURN VALUE" .PP Returns \fB0\fR on failure or \fB1\fR on success\&. -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:02 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:02 diff --git a/docs/man3/SDL_WaitEvent.3 b/docs/man3/SDL_WaitEvent.3 index 181cb94a4..adadb4aa6 100644 --- a/docs/man3/SDL_WaitEvent.3 +++ b/docs/man3/SDL_WaitEvent.3 @@ -1,6 +1,6 @@ .TH "SDL_WaitEvent" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_WaitEvent\- Waits indefinitely for the next available event\&. +SDL_WaitEvent \- Waits indefinitely for the next available event\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -14,4 +14,4 @@ If \fBevent\fR is not \fBNULL\fP, the next event is removed from the queue and s .SH "SEE ALSO" .PP \fI\fBSDL_Event\fR\fR, \fI\fBSDL_PollEvent\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff --git a/docs/man3/SDL_WaitThread.3 b/docs/man3/SDL_WaitThread.3 index 501ba614a..11679fc2b 100644 --- a/docs/man3/SDL_WaitThread.3 +++ b/docs/man3/SDL_WaitThread.3 @@ -1,6 +1,6 @@ .TH "SDL_WaitThread" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_WaitThread\- Wait for a thread to finish\&. +SDL_WaitThread \- Wait for a thread to finish\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -16,4 +16,4 @@ The return code for the thread function is placed in the area pointed to by \fBs .SH "SEE ALSO" .PP \fI\fBSDL_CreateThread\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_WarpMouse.3 b/docs/man3/SDL_WarpMouse.3 index 2306f1b54..5cab3cef0 100644 --- a/docs/man3/SDL_WarpMouse.3 +++ b/docs/man3/SDL_WarpMouse.3 @@ -1,6 +1,6 @@ .TH "SDL_WarpMouse" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_WarpMouse\- Set the position of the mouse cursor\&. +SDL_WarpMouse \- Set the position of the mouse cursor\&. .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -12,4 +12,4 @@ Set the position of the mouse cursor (generates a mouse motion event)\&. .SH "SEE ALSO" .PP \fI\fBSDL_MouseMotionEvent\fR\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_WasInit.3 b/docs/man3/SDL_WasInit.3 index 80e56296b..5bc75c5ed 100644 --- a/docs/man3/SDL_WasInit.3 +++ b/docs/man3/SDL_WasInit.3 @@ -1,6 +1,6 @@ .TH "SDL_WasInit" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_WasInit\- Check which subsystems are initialized +SDL_WasInit \- Check which subsystems are initialized .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -60,4 +60,4 @@ else .SH "SEE ALSO" .PP \fI\fBSDL_Init\fP\fR, \fI\fBSDL_Subsystem\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff --git a/docs/man3/SDL_keysym.3 b/docs/man3/SDL_keysym.3 index c5fdf4ac5..52065c15a 100644 --- a/docs/man3/SDL_keysym.3 +++ b/docs/man3/SDL_keysym.3 @@ -1,6 +1,6 @@ .TH "SDL_keysym" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" .SH "NAME" -SDL_keysym\- Keysym structure +SDL_keysym \- Keysym structure .SH "STRUCTURE DEFINITION" .PP .nf @@ -66,4 +66,4 @@ else { .SH "SEE ALSO" .PP \fI\fBSDLKey\fR\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00 diff --git a/docs/man3/SDL_mutexP.3 b/docs/man3/SDL_mutexP.3 index 612bfde76..3f2171629 100644 --- a/docs/man3/SDL_mutexP.3 +++ b/docs/man3/SDL_mutexP.3 @@ -1,6 +1,6 @@ .TH "SDL_mutexP" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_mutexP\- Lock a mutex +SDL_mutexP \- Lock a mutex .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -15,4 +15,4 @@ SDL also defines a macro \fB#define SDL_LockMutex(m) SDL_mutexP(m)\fP\&. .SH "SEE ALSO" .PP \fI\fBSDL_CreateMutex\fP\fR, \fI\fBSDL_mutexV\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/docs/man3/SDL_mutexV.3 b/docs/man3/SDL_mutexV.3 index 90c7545d5..e914abb7d 100644 --- a/docs/man3/SDL_mutexV.3 +++ b/docs/man3/SDL_mutexV.3 @@ -1,6 +1,6 @@ .TH "SDL_mutexV" "3" "Tue 11 Sep 2001, 23:01" "SDL" "SDL API Reference" .SH "NAME" -SDL_mutexV\- Unlock a mutex +SDL_mutexV \- Unlock a mutex .SH "SYNOPSIS" .PP \fB#include "SDL\&.h" @@ -15,4 +15,4 @@ SDL also defines a macro \fB#define SDL_UnlockMutex(m) SDL_mutexV(m)\fP\&. .SH "SEE ALSO" .PP \fI\fBSDL_CreateMutex\fP\fR, \fI\fBSDL_mutexP\fP\fR -...\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 +.\" created by instant / docbook-to-man, Tue 11 Sep 2001, 23:01 diff --git a/include/SDL.h b/include/SDL.h index 60ac26ce4..6087b7cdd 100644 --- a/include/SDL.h +++ b/include/SDL.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -20,7 +20,9 @@ slouken@libsdl.org */ -/* Main include header for the SDL library */ +/** @file SDL.h + * Main include header for the SDL library + */ #ifndef _SDL_H #define _SDL_H @@ -47,41 +49,46 @@ extern "C" { #endif -/* As of version 0.5, SDL is loaded dynamically into the application */ +/** @file SDL.h + * @note As of version 0.5, SDL is loaded dynamically into the application + */ -/* These are the flags which may be passed to SDL_Init() -- you should - specify the subsystems which you will be using in your application. -*/ +/** @name SDL_INIT Flags + * These are the flags which may be passed to SDL_Init() -- you should + * specify the subsystems which you will be using in your application. + */ +/*@{*/ #define SDL_INIT_TIMER 0x00000001 #define SDL_INIT_AUDIO 0x00000010 #define SDL_INIT_VIDEO 0x00000020 #define SDL_INIT_CDROM 0x00000100 #define SDL_INIT_JOYSTICK 0x00000200 -#define SDL_INIT_NOPARACHUTE 0x00100000 /* Don't catch fatal signals */ -#define SDL_INIT_EVENTTHREAD 0x01000000 /* Not supported on all OS's */ +#define SDL_INIT_NOPARACHUTE 0x00100000 /**< Don't catch fatal signals */ +#define SDL_INIT_EVENTTHREAD 0x01000000 /**< Not supported on all OS's */ #define SDL_INIT_EVERYTHING 0x0000FFFF +/*@}*/ -/* This function loads the SDL dynamically linked library and initializes - * the subsystems specified by 'flags' (and those satisfying dependencies) - * Unless the SDL_INIT_NOPARACHUTE flag is set, it will install cleanup - * signal handlers for some commonly ignored fatal signals (like SIGSEGV) +/** This function loads the SDL dynamically linked library and initializes + * the subsystems specified by 'flags' (and those satisfying dependencies) + * Unless the SDL_INIT_NOPARACHUTE flag is set, it will install cleanup + * signal handlers for some commonly ignored fatal signals (like SIGSEGV) */ extern DECLSPEC int SDLCALL SDL_Init(Uint32 flags); -/* This function initializes specific SDL subsystems */ +/** This function initializes specific SDL subsystems */ extern DECLSPEC int SDLCALL SDL_InitSubSystem(Uint32 flags); -/* This function cleans up specific SDL subsystems */ +/** This function cleans up specific SDL subsystems */ extern DECLSPEC void SDLCALL SDL_QuitSubSystem(Uint32 flags); -/* This function returns mask of the specified subsystems which have - been initialized. - If 'flags' is 0, it returns a mask of all initialized subsystems. -*/ +/** This function returns mask of the specified subsystems which have + * been initialized. + * If 'flags' is 0, it returns a mask of all initialized subsystems. + */ extern DECLSPEC Uint32 SDLCALL SDL_WasInit(Uint32 flags); -/* This function cleans up all initialized subsystems and unloads the - * dynamically linked library. You should call it upon all exit conditions. +/** This function cleans up all initialized subsystems and unloads the + * dynamically linked library. You should call it upon all exit conditions. */ extern DECLSPEC void SDLCALL SDL_Quit(void); diff --git a/include/SDL_active.h b/include/SDL_active.h index 2cf474c5a..cd854e892 100644 --- a/include/SDL_active.h +++ b/include/SDL_active.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -20,7 +20,10 @@ slouken@libsdl.org */ -/* Include file for SDL application focus event handling */ +/** + * @file SDL_active.h + * Include file for SDL application focus event handling + */ #ifndef _SDL_active_h #define _SDL_active_h @@ -34,13 +37,15 @@ extern "C" { #endif -/* The available application states */ -#define SDL_APPMOUSEFOCUS 0x01 /* The app has mouse coverage */ -#define SDL_APPINPUTFOCUS 0x02 /* The app has input focus */ -#define SDL_APPACTIVE 0x04 /* The application is active */ +/** @name The available application states */ +/*@{*/ +#define SDL_APPMOUSEFOCUS 0x01 /**< The app has mouse coverage */ +#define SDL_APPINPUTFOCUS 0x02 /**< The app has input focus */ +#define SDL_APPACTIVE 0x04 /**< The application is active */ +/*@}*/ /* Function prototypes */ -/* +/** * This function returns the current state of the application, which is a * bitwise combination of SDL_APPMOUSEFOCUS, SDL_APPINPUTFOCUS, and * SDL_APPACTIVE. If SDL_APPACTIVE is set, then the user is able to diff --git a/include/SDL_audio.h b/include/SDL_audio.h index 68ec4759d..e879c9896 100644 --- a/include/SDL_audio.h +++ b/include/SDL_audio.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -20,7 +20,10 @@ slouken@libsdl.org */ -/* Access to the raw audio mixing buffer for the SDL library */ +/** + * @file SDL_audio.h + * Access to the raw audio mixing buffer for the SDL library + */ #ifndef _SDL_audio_h #define _SDL_audio_h @@ -38,89 +41,11 @@ extern "C" { #endif -/* The calculated values in this structure are calculated by SDL_OpenAudio() */ -typedef struct SDL_AudioSpec { - int freq; /* DSP frequency -- samples per second */ - Uint16 format; /* Audio data format */ - Uint8 channels; /* Number of channels: 1 mono, 2 stereo */ - Uint8 silence; /* Audio buffer silence value (calculated) */ - Uint16 samples; /* Audio buffer size in samples (power of 2) */ - Uint16 padding; /* Necessary for some compile environments */ - Uint32 size; /* Audio buffer size in bytes (calculated) */ - /* This function is called when the audio device needs more data. - 'stream' is a pointer to the audio data buffer - 'len' is the length of that buffer in bytes. - Once the callback returns, the buffer will no longer be valid. - Stereo samples are stored in a LRLRLR ordering. - */ - void (SDLCALL *callback)(void *userdata, Uint8 *stream, int len); - void *userdata; -} SDL_AudioSpec; - -/* Audio format flags (defaults to LSB byte order) */ -#define AUDIO_U8 0x0008 /* Unsigned 8-bit samples */ -#define AUDIO_S8 0x8008 /* Signed 8-bit samples */ -#define AUDIO_U16LSB 0x0010 /* Unsigned 16-bit samples */ -#define AUDIO_S16LSB 0x8010 /* Signed 16-bit samples */ -#define AUDIO_U16MSB 0x1010 /* As above, but big-endian byte order */ -#define AUDIO_S16MSB 0x9010 /* As above, but big-endian byte order */ -#define AUDIO_U16 AUDIO_U16LSB -#define AUDIO_S16 AUDIO_S16LSB - -/* Native audio byte ordering */ -#if SDL_BYTEORDER == SDL_LIL_ENDIAN -#define AUDIO_U16SYS AUDIO_U16LSB -#define AUDIO_S16SYS AUDIO_S16LSB -#else -#define AUDIO_U16SYS AUDIO_U16MSB -#define AUDIO_S16SYS AUDIO_S16MSB -#endif - - -/* A structure to hold a set of audio conversion filters and buffers */ -typedef struct SDL_AudioCVT { - int needed; /* Set to 1 if conversion possible */ - Uint16 src_format; /* Source audio format */ - Uint16 dst_format; /* Target audio format */ - double rate_incr; /* Rate conversion increment */ - Uint8 *buf; /* Buffer to hold entire audio data */ - int len; /* Length of original audio buffer */ - int len_cvt; /* Length of converted audio buffer */ - int len_mult; /* buffer must be len*len_mult big */ - double len_ratio; /* Given len, final size is len*len_ratio */ - void (SDLCALL *filters[10])(struct SDL_AudioCVT *cvt, Uint16 format); - int filter_index; /* Current audio conversion function */ -} SDL_AudioCVT; - - -/* Function prototypes */ - -/* These functions are used internally, and should not be used unless you - * have a specific need to specify the audio driver you want to use. - * You should normally use SDL_Init() or SDL_InitSubSystem(). - */ -extern DECLSPEC int SDLCALL SDL_AudioInit(const char *driver_name); -extern DECLSPEC void SDLCALL SDL_AudioQuit(void); - -/* This function fills the given character buffer with the name of the - * current audio driver, and returns a pointer to it if the audio driver has - * been initialized. It returns NULL if no driver has been initialized. - */ -extern DECLSPEC char * SDLCALL SDL_AudioDriverName(char *namebuf, int maxlen); - -/* - * This function opens the audio device with the desired parameters, and - * returns 0 if successful, placing the actual hardware parameters in the - * structure pointed to by 'obtained'. If 'obtained' is NULL, the audio - * data passed to the callback function will be guaranteed to be in the - * requested format, and will be automatically converted to the hardware - * audio format if necessary. This function returns -1 if it failed - * to open the audio device, or couldn't set up the audio thread. - * +/** * When filling in the desired audio spec structure, - * 'desired->freq' should be the desired audio frequency in samples-per-second. - * 'desired->format' should be the desired audio format. - * 'desired->samples' is the desired size of the audio buffer, in samples. + * - 'desired->freq' should be the desired audio frequency in samples-per-second. + * - 'desired->format' should be the desired audio format. + * - 'desired->samples' is the desired size of the audio buffer, in samples. * This number should be a power of two, and may be adjusted by the audio * driver to a value more suitable for the hardware. Good values seem to * range between 512 and 8096 inclusive, depending on the application and @@ -130,38 +55,138 @@ extern DECLSPEC char * SDLCALL SDL_AudioDriverName(char *namebuf, int maxlen); * and left channels in LR ordering. * Note that the number of samples is directly related to time by the * following formula: ms = (samples*1000)/freq - * 'desired->size' is the size in bytes of the audio buffer, and is + * - 'desired->size' is the size in bytes of the audio buffer, and is * calculated by SDL_OpenAudio(). - * 'desired->silence' is the value used to set the buffer to silence, + * - 'desired->silence' is the value used to set the buffer to silence, * and is calculated by SDL_OpenAudio(). - * 'desired->callback' should be set to a function that will be called + * - 'desired->callback' should be set to a function that will be called * when the audio device is ready for more data. It is passed a pointer * to the audio buffer, and the length in bytes of the audio buffer. * This function usually runs in a separate thread, and so you should * protect data structures that it accesses by calling SDL_LockAudio() * and SDL_UnlockAudio() in your code. - * 'desired->userdata' is passed as the first parameter to your callback + * - 'desired->userdata' is passed as the first parameter to your callback * function. * + * @note The calculated values in this structure are calculated by SDL_OpenAudio() + * + */ +typedef struct SDL_AudioSpec { + int freq; /**< DSP frequency -- samples per second */ + Uint16 format; /**< Audio data format */ + Uint8 channels; /**< Number of channels: 1 mono, 2 stereo */ + Uint8 silence; /**< Audio buffer silence value (calculated) */ + Uint16 samples; /**< Audio buffer size in samples (power of 2) */ + Uint16 padding; /**< Necessary for some compile environments */ + Uint32 size; /**< Audio buffer size in bytes (calculated) */ + /** + * This function is called when the audio device needs more data. + * + * @param[out] stream A pointer to the audio data buffer + * @param[in] len The length of the audio buffer in bytes. + * + * Once the callback returns, the buffer will no longer be valid. + * Stereo samples are stored in a LRLRLR ordering. + */ + void (SDLCALL *callback)(void *userdata, Uint8 *stream, int len); + void *userdata; +} SDL_AudioSpec; + +/** + * @name Audio format flags + * defaults to LSB byte order + */ +/*@{*/ +#define AUDIO_U8 0x0008 /**< Unsigned 8-bit samples */ +#define AUDIO_S8 0x8008 /**< Signed 8-bit samples */ +#define AUDIO_U16LSB 0x0010 /**< Unsigned 16-bit samples */ +#define AUDIO_S16LSB 0x8010 /**< Signed 16-bit samples */ +#define AUDIO_U16MSB 0x1010 /**< As above, but big-endian byte order */ +#define AUDIO_S16MSB 0x9010 /**< As above, but big-endian byte order */ +#define AUDIO_U16 AUDIO_U16LSB +#define AUDIO_S16 AUDIO_S16LSB + +/** + * @name Native audio byte ordering + */ +/*@{*/ +#if SDL_BYTEORDER == SDL_LIL_ENDIAN +#define AUDIO_U16SYS AUDIO_U16LSB +#define AUDIO_S16SYS AUDIO_S16LSB +#else +#define AUDIO_U16SYS AUDIO_U16MSB +#define AUDIO_S16SYS AUDIO_S16MSB +#endif +/*@}*/ + +/*@}*/ + + +/** A structure to hold a set of audio conversion filters and buffers */ +typedef struct SDL_AudioCVT { + int needed; /**< Set to 1 if conversion possible */ + Uint16 src_format; /**< Source audio format */ + Uint16 dst_format; /**< Target audio format */ + double rate_incr; /**< Rate conversion increment */ + Uint8 *buf; /**< Buffer to hold entire audio data */ + int len; /**< Length of original audio buffer */ + int len_cvt; /**< Length of converted audio buffer */ + int len_mult; /**< buffer must be len*len_mult big */ + double len_ratio; /**< Given len, final size is len*len_ratio */ + void (SDLCALL *filters[10])(struct SDL_AudioCVT *cvt, Uint16 format); + int filter_index; /**< Current audio conversion function */ +} SDL_AudioCVT; + + +/* Function prototypes */ + +/** + * @name Audio Init and Quit + * These functions are used internally, and should not be used unless you + * have a specific need to specify the audio driver you want to use. + * You should normally use SDL_Init() or SDL_InitSubSystem(). + */ +/*@{*/ +extern DECLSPEC int SDLCALL SDL_AudioInit(const char *driver_name); +extern DECLSPEC void SDLCALL SDL_AudioQuit(void); +/*@}*/ + +/** + * This function fills the given character buffer with the name of the + * current audio driver, and returns a pointer to it if the audio driver has + * been initialized. It returns NULL if no driver has been initialized. + */ +extern DECLSPEC char * SDLCALL SDL_AudioDriverName(char *namebuf, int maxlen); + +/** + * This function opens the audio device with the desired parameters, and + * returns 0 if successful, placing the actual hardware parameters in the + * structure pointed to by 'obtained'. If 'obtained' is NULL, the audio + * data passed to the callback function will be guaranteed to be in the + * requested format, and will be automatically converted to the hardware + * audio format if necessary. This function returns -1 if it failed + * to open the audio device, or couldn't set up the audio thread. + * * The audio device starts out playing silence when it's opened, and should * be enabled for playing by calling SDL_PauseAudio(0) when you are ready * for your audio callback function to be called. Since the audio driver * may modify the requested size of the audio buffer, you should allocate * any local mixing buffers after you open the audio device. + * + * @sa SDL_AudioSpec */ extern DECLSPEC int SDLCALL SDL_OpenAudio(SDL_AudioSpec *desired, SDL_AudioSpec *obtained); -/* - * Get the current audio state: - */ typedef enum { SDL_AUDIO_STOPPED = 0, SDL_AUDIO_PLAYING, SDL_AUDIO_PAUSED } SDL_audiostatus; + +/** Get the current audio state */ extern DECLSPEC SDL_audiostatus SDLCALL SDL_GetAudioStatus(void); -/* +/** * This function pauses and unpauses the audio callback processing. * It should be called with a parameter of 0 after opening the audio * device to start playing sound. This is so you can safely initialize @@ -170,11 +195,11 @@ extern DECLSPEC SDL_audiostatus SDLCALL SDL_GetAudioStatus(void); */ extern DECLSPEC void SDLCALL SDL_PauseAudio(int pause_on); -/* +/** * This function loads a WAVE from the data source, automatically freeing * that source if 'freesrc' is non-zero. For example, to load a WAVE file, * you could do: - * SDL_LoadWAV_RW(SDL_RWFromFile("sample.wav", "rb"), 1, ...); + * @code SDL_LoadWAV_RW(SDL_RWFromFile("sample.wav", "rb"), 1, ...); @endcode * * If this function succeeds, it returns the given SDL_AudioSpec, * filled with the audio data format of the wave data, and sets @@ -189,27 +214,29 @@ extern DECLSPEC void SDLCALL SDL_PauseAudio(int pause_on); */ extern DECLSPEC SDL_AudioSpec * SDLCALL SDL_LoadWAV_RW(SDL_RWops *src, int freesrc, SDL_AudioSpec *spec, Uint8 **audio_buf, Uint32 *audio_len); -/* Compatibility convenience function -- loads a WAV from a file */ +/** Compatibility convenience function -- loads a WAV from a file */ #define SDL_LoadWAV(file, spec, audio_buf, audio_len) \ SDL_LoadWAV_RW(SDL_RWFromFile(file, "rb"),1, spec,audio_buf,audio_len) -/* +/** * This function frees data previously allocated with SDL_LoadWAV_RW() */ extern DECLSPEC void SDLCALL SDL_FreeWAV(Uint8 *audio_buf); -/* +/** * This function takes a source format and rate and a destination format * and rate, and initializes the 'cvt' structure with information needed * by SDL_ConvertAudio() to convert a buffer of audio data from one format * to the other. - * This function returns 0, or -1 if there was an error. + * + * @return This function returns 0, or -1 if there was an error. */ extern DECLSPEC int SDLCALL SDL_BuildAudioCVT(SDL_AudioCVT *cvt, Uint16 src_format, Uint8 src_channels, int src_rate, Uint16 dst_format, Uint8 dst_channels, int dst_rate); -/* Once you have initialized the 'cvt' structure using SDL_BuildAudioCVT(), +/** + * Once you have initialized the 'cvt' structure using SDL_BuildAudioCVT(), * created an audio buffer cvt->buf, and filled it with cvt->len bytes of * audio data in the source format, this function will convert it in-place * to the desired format. @@ -219,26 +246,30 @@ extern DECLSPEC int SDLCALL SDL_BuildAudioCVT(SDL_AudioCVT *cvt, */ extern DECLSPEC int SDLCALL SDL_ConvertAudio(SDL_AudioCVT *cvt); -/* + +#define SDL_MIX_MAXVOLUME 128 +/** * This takes two audio buffers of the playing audio format and mixes * them, performing addition, volume adjustment, and overflow clipping. * The volume ranges from 0 - 128, and should be set to SDL_MIX_MAXVOLUME * for full audio volume. Note this does not change hardware volume. * This is provided for convenience -- you can mix your own audio data. */ -#define SDL_MIX_MAXVOLUME 128 extern DECLSPEC void SDLCALL SDL_MixAudio(Uint8 *dst, const Uint8 *src, Uint32 len, int volume); -/* +/** + * @name Audio Locks * The lock manipulated by these functions protects the callback function. * During a LockAudio/UnlockAudio pair, you can be guaranteed that the * callback function is not running. Do not call these from the callback * function or you will cause deadlock. */ +/*@{*/ extern DECLSPEC void SDLCALL SDL_LockAudio(void); extern DECLSPEC void SDLCALL SDL_UnlockAudio(void); +/*@}*/ -/* +/** * This function shuts down audio processing and closes the audio device. */ extern DECLSPEC void SDLCALL SDL_CloseAudio(void); diff --git a/include/SDL_byteorder.h b/include/SDL_byteorder.h index 3871cfed5..47332c3df 100644 --- a/include/SDL_byteorder.h +++ b/include/SDL_byteorder.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -20,5 +20,10 @@ slouken@libsdl.org */ +/** + * @file SDL_byteorder.h + * @deprecated Use SDL_endian.h instead + */ + /* DEPRECATED */ #include "SDL_endian.h" diff --git a/include/SDL_cdrom.h b/include/SDL_cdrom.h index 5f8f0c62a..febb19dcc 100644 --- a/include/SDL_cdrom.h +++ b/include/SDL_cdrom.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -20,7 +20,10 @@ slouken@libsdl.org */ -/* This is the CD-audio control API for Simple DirectMedia Layer */ +/** + * @file SDL_cdrom.h + * This is the CD-audio control API for Simple DirectMedia Layer + */ #ifndef _SDL_cdrom_h #define _SDL_cdrom_h @@ -34,19 +37,25 @@ extern "C" { #endif -/* In order to use these functions, SDL_Init() must have been called - with the SDL_INIT_CDROM flag. This causes SDL to scan the system - for CD-ROM drives, and load appropriate drivers. -*/ +/** + * @file SDL_cdrom.h + * In order to use these functions, SDL_Init() must have been called + * with the SDL_INIT_CDROM flag. This causes SDL to scan the system + * for CD-ROM drives, and load appropriate drivers. + */ -/* The maximum number of CD-ROM tracks on a disk */ +/** The maximum number of CD-ROM tracks on a disk */ #define SDL_MAX_TRACKS 99 -/* The types of CD-ROM track possible */ +/** @name Track Types + * The types of CD-ROM track possible + */ +/*@{*/ #define SDL_AUDIO_TRACK 0x00 #define SDL_DATA_TRACK 0x04 +/*@}*/ -/* The possible states which a CD-ROM drive can be in. */ +/** The possible states which a CD-ROM drive can be in. */ typedef enum { CD_TRAYEMPTY, CD_STOPPED, @@ -55,30 +64,35 @@ typedef enum { CD_ERROR = -1 } CDstatus; -/* Given a status, returns true if there's a disk in the drive */ +/** Given a status, returns true if there's a disk in the drive */ #define CD_INDRIVE(status) ((int)(status) > 0) typedef struct SDL_CDtrack { - Uint8 id; /* Track number */ - Uint8 type; /* Data or audio track */ + Uint8 id; /**< Track number */ + Uint8 type; /**< Data or audio track */ Uint16 unused; - Uint32 length; /* Length, in frames, of this track */ - Uint32 offset; /* Offset, in frames, from start of disk */ + Uint32 length; /**< Length, in frames, of this track */ + Uint32 offset; /**< Offset, in frames, from start of disk */ } SDL_CDtrack; -/* This structure is only current as of the last call to SDL_CDStatus() */ +/** This structure is only current as of the last call to SDL_CDStatus() */ typedef struct SDL_CD { - int id; /* Private drive identifier */ - CDstatus status; /* Current drive status */ + int id; /**< Private drive identifier */ + CDstatus status; /**< Current drive status */ - /* The rest of this structure is only valid if there's a CD in drive */ - int numtracks; /* Number of tracks on disk */ - int cur_track; /* Current track position */ - int cur_frame; /* Current frame offset within current track */ + /** The rest of this structure is only valid if there's a CD in drive */ + /*@{*/ + int numtracks; /**< Number of tracks on disk */ + int cur_track; /**< Current track position */ + int cur_frame; /**< Current frame offset within current track */ SDL_CDtrack track[SDL_MAX_TRACKS+1]; + /*@}*/ } SDL_CD; -/* Conversion functions from frames to Minute/Second/Frames and vice versa */ +/** @name Frames / MSF Conversion Functions + * Conversion functions from frames to Minute/Second/Frames and vice versa + */ +/*@{*/ #define CD_FPS 75 #define FRAMES_TO_MSF(f, M,S,F) { \ int value = f; \ @@ -89,76 +103,93 @@ typedef struct SDL_CD { *(M) = value; \ } #define MSF_TO_FRAMES(M, S, F) ((M)*60*CD_FPS+(S)*CD_FPS+(F)) +/*@}*/ /* CD-audio API functions: */ -/* Returns the number of CD-ROM drives on the system, or -1 if - SDL_Init() has not been called with the SDL_INIT_CDROM flag. +/** + * Returns the number of CD-ROM drives on the system, or -1 if + * SDL_Init() has not been called with the SDL_INIT_CDROM flag. */ extern DECLSPEC int SDLCALL SDL_CDNumDrives(void); -/* Returns a human-readable, system-dependent identifier for the CD-ROM. - Example: - "/dev/cdrom" - "E:" - "/dev/disk/ide/1/master" -*/ +/** + * Returns a human-readable, system-dependent identifier for the CD-ROM. + * Example: + * - "/dev/cdrom" + * - "E:" + * - "/dev/disk/ide/1/master" + */ extern DECLSPEC const char * SDLCALL SDL_CDName(int drive); -/* Opens a CD-ROM drive for access. It returns a drive handle on success, - or NULL if the drive was invalid or busy. This newly opened CD-ROM - becomes the default CD used when other CD functions are passed a NULL - CD-ROM handle. - Drives are numbered starting with 0. Drive 0 is the system default CD-ROM. -*/ +/** + * Opens a CD-ROM drive for access. It returns a drive handle on success, + * or NULL if the drive was invalid or busy. This newly opened CD-ROM + * becomes the default CD used when other CD functions are passed a NULL + * CD-ROM handle. + * Drives are numbered starting with 0. Drive 0 is the system default CD-ROM. + */ extern DECLSPEC SDL_CD * SDLCALL SDL_CDOpen(int drive); -/* This function returns the current status of the given drive. - If the drive has a CD in it, the table of contents of the CD and current - play position of the CD will be stored in the SDL_CD structure. -*/ +/** + * This function returns the current status of the given drive. + * If the drive has a CD in it, the table of contents of the CD and current + * play position of the CD will be stored in the SDL_CD structure. + */ extern DECLSPEC CDstatus SDLCALL SDL_CDStatus(SDL_CD *cdrom); -/* Play the given CD starting at 'start_track' and 'start_frame' for 'ntracks' - tracks and 'nframes' frames. If both 'ntrack' and 'nframe' are 0, play - until the end of the CD. This function will skip data tracks. - This function should only be called after calling SDL_CDStatus() to - get track information about the CD. - For example: - // Play entire CD: - if ( CD_INDRIVE(SDL_CDStatus(cdrom)) ) - SDL_CDPlayTracks(cdrom, 0, 0, 0, 0); - // Play last track: - if ( CD_INDRIVE(SDL_CDStatus(cdrom)) ) { - SDL_CDPlayTracks(cdrom, cdrom->numtracks-1, 0, 0, 0); - } - // Play first and second track and 10 seconds of third track: - if ( CD_INDRIVE(SDL_CDStatus(cdrom)) ) - SDL_CDPlayTracks(cdrom, 0, 0, 2, 10); - - This function returns 0, or -1 if there was an error. -*/ +/** + * Play the given CD starting at 'start_track' and 'start_frame' for 'ntracks' + * tracks and 'nframes' frames. If both 'ntrack' and 'nframe' are 0, play + * until the end of the CD. This function will skip data tracks. + * This function should only be called after calling SDL_CDStatus() to + * get track information about the CD. + * For example: + * @code + * // Play entire CD: + * if ( CD_INDRIVE(SDL_CDStatus(cdrom)) ) + * SDL_CDPlayTracks(cdrom, 0, 0, 0, 0); + * // Play last track: + * if ( CD_INDRIVE(SDL_CDStatus(cdrom)) ) { + * SDL_CDPlayTracks(cdrom, cdrom->numtracks-1, 0, 0, 0); + * } + * // Play first and second track and 10 seconds of third track: + * if ( CD_INDRIVE(SDL_CDStatus(cdrom)) ) + * SDL_CDPlayTracks(cdrom, 0, 0, 2, 10); + * @endcode + * + * @return This function returns 0, or -1 if there was an error. + */ extern DECLSPEC int SDLCALL SDL_CDPlayTracks(SDL_CD *cdrom, int start_track, int start_frame, int ntracks, int nframes); -/* Play the given CD starting at 'start' frame for 'length' frames. - It returns 0, or -1 if there was an error. -*/ +/** + * Play the given CD starting at 'start' frame for 'length' frames. + * @return It returns 0, or -1 if there was an error. + */ extern DECLSPEC int SDLCALL SDL_CDPlay(SDL_CD *cdrom, int start, int length); -/* Pause play -- returns 0, or -1 on error */ +/** Pause play + * @return returns 0, or -1 on error + */ extern DECLSPEC int SDLCALL SDL_CDPause(SDL_CD *cdrom); -/* Resume play -- returns 0, or -1 on error */ +/** Resume play + * @return returns 0, or -1 on error + */ extern DECLSPEC int SDLCALL SDL_CDResume(SDL_CD *cdrom); -/* Stop play -- returns 0, or -1 on error */ +/** Stop play + * @return returns 0, or -1 on error + */ extern DECLSPEC int SDLCALL SDL_CDStop(SDL_CD *cdrom); -/* Eject CD-ROM -- returns 0, or -1 on error */ +/** Eject CD-ROM + * @return returns 0, or -1 on error + */ extern DECLSPEC int SDLCALL SDL_CDEject(SDL_CD *cdrom); -/* Closes the handle for the CD-ROM drive */ +/** Closes the handle for the CD-ROM drive */ extern DECLSPEC void SDLCALL SDL_CDClose(SDL_CD *cdrom); diff --git a/include/SDL_config.h.default b/include/SDL_config.h.default index 8970ec3d5..09ba38a71 100644 --- a/include/SDL_config.h.default +++ b/include/SDL_config.h.default @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -26,14 +26,14 @@ #include "SDL_platform.h" /* Add any platform that doesn't build using the configure system */ -#if defined(__AMIGA__) -#include "SDL_config_amiga.h" -#elif defined(__DREAMCAST__) +#if defined(__DREAMCAST__) #include "SDL_config_dreamcast.h" #elif defined(__MACOS__) #include "SDL_config_macos.h" #elif defined(__MACOSX__) #include "SDL_config_macosx.h" +#elif defined(__SYMBIAN32__) +#include "SDL_config_symbian.h" /* must be before win32! */ #elif defined(__WIN32__) #include "SDL_config_win32.h" #elif defined(__OS2__) diff --git a/include/SDL_config.h.in b/include/SDL_config.h.in index 6f89569c9..8bb1773c0 100644 --- a/include/SDL_config.h.in +++ b/include/SDL_config.h.in @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -28,6 +28,11 @@ /* General platform specific identifiers */ #include "SDL_platform.h" +/* Make sure that this isn't included by Visual C++ */ +#ifdef _MSC_VER +#error You should copy include/SDL_config.h.default to include/SDL_config.h +#endif + /* C language features */ #undef const #undef inline @@ -126,10 +131,13 @@ #undef HAVE_VSNPRINTF #undef HAVE_ICONV #undef HAVE_SIGACTION +#undef HAVE_SA_SIGACTION #undef HAVE_SETJMP #undef HAVE_NANOSLEEP #undef HAVE_CLOCK_GETTIME -#undef HAVE_DLVSYM +#undef HAVE_GETPAGESIZE +#undef HAVE_MPROTECT +#undef HAVE_SEM_TIMEDWAIT #else /* We may need some replacement for stdarg.h here */ @@ -149,7 +157,6 @@ #undef SDL_VIDEO_DISABLED /* Enable various audio drivers */ -#undef SDL_AUDIO_DRIVER_AHI #undef SDL_AUDIO_DRIVER_ALSA #undef SDL_AUDIO_DRIVER_ALSA_DYNAMIC #undef SDL_AUDIO_DRIVER_ARTS @@ -163,11 +170,14 @@ #undef SDL_AUDIO_DRIVER_DUMMY #undef SDL_AUDIO_DRIVER_DMEDIA #undef SDL_AUDIO_DRIVER_DSOUND +#undef SDL_AUDIO_DRIVER_PULSE +#undef SDL_AUDIO_DRIVER_PULSE_DYNAMIC #undef SDL_AUDIO_DRIVER_ESD #undef SDL_AUDIO_DRIVER_ESD_DYNAMIC #undef SDL_AUDIO_DRIVER_MINT #undef SDL_AUDIO_DRIVER_MMEAUDIO #undef SDL_AUDIO_DRIVER_NAS +#undef SDL_AUDIO_DRIVER_NAS_DYNAMIC #undef SDL_AUDIO_DRIVER_OSS #undef SDL_AUDIO_DRIVER_OSS_SOUNDCARD_H #undef SDL_AUDIO_DRIVER_PAUD @@ -194,14 +204,13 @@ #undef SDL_CDROM_WIN32 /* Enable various input drivers */ +#undef SDL_INPUT_LINUXEV #undef SDL_INPUT_TSLIB -#undef SDL_JOYSTICK_AMIGA #undef SDL_JOYSTICK_BEOS #undef SDL_JOYSTICK_DC #undef SDL_JOYSTICK_DUMMY #undef SDL_JOYSTICK_IOKIT #undef SDL_JOYSTICK_LINUX -#undef SDL_JOYSTICK_LINUXEV #undef SDL_JOYSTICK_MACOS #undef SDL_JOYSTICK_MINT #undef SDL_JOYSTICK_OS2 @@ -221,10 +230,8 @@ #undef SDL_LOADSO_WIN32 /* Enable various threading systems */ -#undef SDL_THREAD_AMIGA #undef SDL_THREAD_BEOS #undef SDL_THREAD_DC -#undef SDL_THREAD_EPOC #undef SDL_THREAD_OS2 #undef SDL_THREAD_PTH #undef SDL_THREAD_PTHREAD @@ -234,11 +241,9 @@ #undef SDL_THREAD_WIN32 /* Enable various timer systems */ -#undef SDL_TIMER_AMIGA #undef SDL_TIMER_BEOS #undef SDL_TIMER_DC #undef SDL_TIMER_DUMMY -#undef SDL_TIMER_EPOC #undef SDL_TIMER_MACOS #undef SDL_TIMER_MINT #undef SDL_TIMER_OS2 @@ -250,14 +255,13 @@ /* Enable various video drivers */ #undef SDL_VIDEO_DRIVER_AALIB #undef SDL_VIDEO_DRIVER_BWINDOW -#undef SDL_VIDEO_DRIVER_CYBERGRAPHICS +#undef SDL_VIDEO_DRIVER_CACA #undef SDL_VIDEO_DRIVER_DC #undef SDL_VIDEO_DRIVER_DDRAW #undef SDL_VIDEO_DRIVER_DGA #undef SDL_VIDEO_DRIVER_DIRECTFB #undef SDL_VIDEO_DRIVER_DRAWSPROCKET #undef SDL_VIDEO_DRIVER_DUMMY -#undef SDL_VIDEO_DRIVER_EPOC #undef SDL_VIDEO_DRIVER_FBCON #undef SDL_VIDEO_DRIVER_GAPI #undef SDL_VIDEO_DRIVER_GEM @@ -268,6 +272,7 @@ #undef SDL_VIDEO_DRIVER_PHOTON #undef SDL_VIDEO_DRIVER_PICOGUI #undef SDL_VIDEO_DRIVER_PS2GS +#undef SDL_VIDEO_DRIVER_PS3 #undef SDL_VIDEO_DRIVER_QTOPIA #undef SDL_VIDEO_DRIVER_QUARTZ #undef SDL_VIDEO_DRIVER_RISCOS @@ -278,7 +283,6 @@ #undef SDL_VIDEO_DRIVER_WSCONS #undef SDL_VIDEO_DRIVER_X11 #undef SDL_VIDEO_DRIVER_X11_DGAMOUSE -#undef SDL_VIDEO_DRIVER_X11_DPMS #undef SDL_VIDEO_DRIVER_X11_DYNAMIC #undef SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT #undef SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR @@ -297,6 +301,9 @@ #undef SDL_VIDEO_OPENGL_OSMESA #undef SDL_VIDEO_OPENGL_OSMESA_DYNAMIC +/* Disable screensaver */ +#undef SDL_VIDEO_DISABLE_SCREENSAVER + /* Enable assembly routines */ #undef SDL_ASSEMBLY_ROUTINES #undef SDL_HERMES_BLITTERS diff --git a/include/SDL_config_amiga.h b/include/SDL_config_amiga.h deleted file mode 100644 index 23e086192..000000000 --- a/include/SDL_config_amiga.h +++ /dev/null @@ -1,80 +0,0 @@ -/* - SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - - Sam Lantinga - slouken@libsdl.org -*/ - -#ifndef _SDL_config_amiga_h -#define _SDL_config_amiga_h - -#include "SDL_platform.h" - -/* This is a set of defines to configure the SDL features */ - -#define SDL_HAS_64BIT_TYPE 1 - -/* Useful headers */ -#define HAVE_SYS_TYPES_H 1 -#define HAVE_STDIO_H 1 -#define STDC_HEADERS 1 -#define HAVE_STRING_H 1 -#define HAVE_INTTYPES_H 1 -#define HAVE_SIGNAL_H 1 - -/* C library functions */ -#define HAVE_MALLOC 1 -#define HAVE_CALLOC 1 -#define HAVE_REALLOC 1 -#define HAVE_FREE 1 -#define HAVE_ALLOCA 1 -#define HAVE_GETENV 1 -#define HAVE_PUTENV 1 -#define HAVE_MEMSET 1 -#define HAVE_MEMCPY 1 -#define HAVE_MEMMOVE 1 -#define HAVE_MEMCMP 1 - -/* Enable various audio drivers */ -#define SDL_AUDIO_DRIVER_AHI 1 -#define SDL_AUDIO_DRIVER_DISK 1 -#define SDL_AUDIO_DRIVER_DUMMY 1 - -/* Enable various cdrom drivers */ -#define SDL_CDROM_DUMMY 1 - -/* Enable various input drivers */ -#define SDL_JOYSTICK_AMIGA 1 - -/* Enable various shared object loading systems */ -#define SDL_LOADSO_DUMMY 1 - -/* Enable various threading systems */ -#define SDL_THREAD_AMIGA 1 - -/* Enable various timer systems */ -#define SDL_TIMER_AMIGA 1 - -/* Enable various video drivers */ -#define SDL_VIDEO_DRIVER_CYBERGRAPHICS 1 -#define SDL_VIDEO_DRIVER_DUMMY 1 - -/* Enable OpenGL support */ -#define SDL_VIDEO_OPENGL 1 - -#endif /* _SDL_config_amiga_h */ diff --git a/include/SDL_config_dreamcast.h b/include/SDL_config_dreamcast.h index 9cbeea316..fb03098e7 100644 --- a/include/SDL_config_dreamcast.h +++ b/include/SDL_config_dreamcast.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/include/SDL_config_macos.h b/include/SDL_config_macos.h index c4a1c5980..4fe1715aa 100644 --- a/include/SDL_config_macos.h +++ b/include/SDL_config_macos.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/include/SDL_config_macosx.h b/include/SDL_config_macosx.h index 8f04930d5..84be61777 100644 --- a/include/SDL_config_macosx.h +++ b/include/SDL_config_macosx.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -25,6 +25,9 @@ #include "SDL_platform.h" +/* This gets us MAC_OS_X_VERSION_MIN_REQUIRED... */ +#include + /* This is a set of defines to configure the SDL features */ #define SDL_HAS_64BIT_TYPE 1 @@ -87,7 +90,6 @@ /* Enable various audio drivers */ #define SDL_AUDIO_DRIVER_COREAUDIO 1 -#define SDL_AUDIO_DRIVER_SNDMGR 1 #define SDL_AUDIO_DRIVER_DISK 1 #define SDL_AUDIO_DRIVER_DUMMY 1 @@ -114,14 +116,30 @@ /* Enable various video drivers */ #define SDL_VIDEO_DRIVER_DUMMY 1 -#if TARGET_API_MAC_CARBON +#if ((defined TARGET_API_MAC_CARBON) && (TARGET_API_MAC_CARBON)) #define SDL_VIDEO_DRIVER_TOOLBOX 1 #else #define SDL_VIDEO_DRIVER_QUARTZ 1 #endif +#define SDL_VIDEO_DRIVER_DGA 1 +#define SDL_VIDEO_DRIVER_X11 1 +#define SDL_VIDEO_DRIVER_X11_DGAMOUSE 1 +#define SDL_VIDEO_DRIVER_X11_DYNAMIC "/usr/X11R6/lib/libX11.6.dylib" +#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT "/usr/X11R6/lib/libXext.6.dylib" +#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR "/usr/X11R6/lib/libXrandr.2.dylib" +#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XRENDER "/usr/X11R6/lib/libXrender.1.dylib" +#define SDL_VIDEO_DRIVER_X11_VIDMODE 1 +#define SDL_VIDEO_DRIVER_X11_XINERAMA 1 +#define SDL_VIDEO_DRIVER_X11_XME 1 +#define SDL_VIDEO_DRIVER_X11_XRANDR 1 +#define SDL_VIDEO_DRIVER_X11_XV 1 /* Enable OpenGL support */ #define SDL_VIDEO_OPENGL 1 +#define SDL_VIDEO_OPENGL_GLX 1 + +/* Disable screensaver */ +#define SDL_VIDEO_DISABLE_SCREENSAVER 1 /* Enable assembly routines */ #define SDL_ASSEMBLY_ROUTINES 1 diff --git a/include/SDL_config_minimal.h b/include/SDL_config_minimal.h index 78b6148ca..d10db7c62 100644 --- a/include/SDL_config_minimal.h +++ b/include/SDL_config_minimal.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/include/SDL_config_nds.h b/include/SDL_config_nds.h new file mode 100644 index 000000000..cb4d61f69 --- /dev/null +++ b/include/SDL_config_nds.h @@ -0,0 +1,115 @@ +/* + SDL - Simple DirectMedia Layer + Copyright (C) 1997-2012 Sam Lantinga + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + + Sam Lantinga + slouken@libsdl.org +*/ + +#ifndef _SDL_config_nds_h +#define _SDL_config_nds_h + +#include "SDL_platform.h" + +/* This is a set of defines to configure the SDL features */ + +/* General platform specific identifiers */ +#include "SDL_platform.h" + +/* C datatypes */ +#define SDL_HAS_64BIT_TYPE 1 + +/* Endianness */ +#define SDL_BYTEORDER 1234 + +/* Useful headers */ +#define HAVE_ALLOCA_H 1 +#define HAVE_SYS_TYPES_H 1 +#define HAVE_STDIO_H 1 +#define STDC_HEADERS 1 +#define HAVE_STDLIB_H 1 +#define HAVE_STDARG_H 1 +#define HAVE_MALLOC_H 1 +#define HAVE_STRING_H 1 +#define HAVE_INTTYPES_H 1 +#define HAVE_STDINT_H 1 +#define HAVE_CTYPE_H 1 +#define HAVE_MATH_H 1 +#define HAVE_ICONV_H 1 +#define HAVE_SIGNAL_H 1 + +/* C library functions */ +#define HAVE_MALLOC 1 +#define HAVE_CALLOC 1 +#define HAVE_REALLOC 1 +#define HAVE_FREE 1 +#define HAVE_ALLOCA 1 +#define HAVE_GETENV 1 +#define HAVE_PUTENV 1 +#define HAVE_UNSETENV 1 +#define HAVE_QSORT 1 +#define HAVE_ABS 1 +#define HAVE_BCOPY 1 +#define HAVE_MEMSET 1 +#define HAVE_MEMCPY 1 +#define HAVE_MEMMOVE 1 +#define HAVE_STRLEN 1 +#define HAVE_STRLCPY 1 +#define HAVE_STRLCAT 1 +#define HAVE_STRDUP 1 +#define HAVE_STRCHR 1 +#define HAVE_STRRCHR 1 +#define HAVE_STRSTR 1 +#define HAVE_STRTOL 1 +#define HAVE_STRTOUL 1 +#define HAVE_STRTOLL 1 +#define HAVE_STRTOULL 1 +#define HAVE_ATOI 1 +#define HAVE_ATOF 1 +#define HAVE_STRCMP 1 +#define HAVE_STRNCMP 1 +#define HAVE_STRCASECMP 1 +#define HAVE_STRNCASECMP 1 +#define HAVE_SSCANF 1 +#define HAVE_SNPRINTF 1 +#define HAVE_VSNPRINTF 1 +#define HAVE_SETJMP 1 + +/* Enable various audio drivers */ +#define SDL_AUDIO_DRIVER_NDS 1 +#define SDL_AUDIO_DRIVER_DUMMY 1 + +/* Enable the stub cdrom driver (src/cdrom/dummy/\*.c) */ +#define SDL_CDROM_DISABLED 1 + +/* Enable various input drivers */ +#define SDL_JOYSTICK_NDS 1 + +/* Enable the stub shared object loader (src/loadso/dummy/\*.c) */ +#define SDL_LOADSO_DISABLED 1 + +/* Enable the stub thread support (src/thread/generic/\*.c) */ +#define SDL_THREADS_DISABLED 1 + +/* Enable various timer systems */ +#define SDL_TIMER_NDS 1 + +/* Enable various video drivers */ +#define SDL_VIDEO_DRIVER_NDS 1 +#define SDL_VIDEO_DRIVER_DUMMY 1 + +#endif /* _SDL_config_nds_h */ diff --git a/include/SDL_config_os2.h b/include/SDL_config_os2.h index 8cdea9ff2..42edd20e8 100644 --- a/include/SDL_config_os2.h +++ b/include/SDL_config_os2.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/include/SDL_config_symbian.h b/include/SDL_config_symbian.h new file mode 100644 index 000000000..e917ac6e7 --- /dev/null +++ b/include/SDL_config_symbian.h @@ -0,0 +1,146 @@ +/* + SDL - Simple DirectMedia Layer + Copyright (C) 1997-2012 Sam Lantinga + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + + Sam Lantinga + slouken@libsdl.org +*/ + +/* + +Symbian version Markus Mertama + +*/ + + +#ifndef _SDL_CONFIG_SYMBIAN_H +#define _SDL_CONFIG_SYMBIAN_H + +#include "SDL_platform.h" + +/* This is the minimal configuration that can be used to build SDL */ + + +#include +#include + + +#ifdef __GCCE__ +#define SYMBIAN32_GCCE +#endif + +#ifndef _SIZE_T_DEFINED +typedef unsigned int size_t; +#endif + +#ifndef _INTPTR_T_DECLARED +typedef unsigned int uintptr_t; +#endif + +#ifndef _INT8_T_DECLARED +typedef signed char int8_t; +#endif + +#ifndef _UINT8_T_DECLARED +typedef unsigned char uint8_t; +#endif + +#ifndef _INT16_T_DECLARED +typedef signed short int16_t; +#endif + +#ifndef _UINT16_T_DECLARED +typedef unsigned short uint16_t; +#endif + +#ifndef _INT32_T_DECLARED +typedef signed int int32_t; +#endif + +#ifndef _UINT32_T_DECLARED +typedef unsigned int uint32_t; +#endif + +#ifndef _INT64_T_DECLARED +typedef signed long long int64_t; +#endif + +#ifndef _UINT64_T_DECLARED +typedef unsigned long long uint64_t; +#endif + +#define SDL_AUDIO_DRIVER_EPOCAUDIO 1 + + +/* Enable the stub cdrom driver (src/cdrom/dummy/\*.c) */ +#define SDL_CDROM_DISABLED 1 + +/* Enable the stub joystick driver (src/joystick/dummy/\*.c) */ +#define SDL_JOYSTICK_DISABLED 1 + +/* Enable the stub shared object loader (src/loadso/dummy/\*.c) */ +#define SDL_LOADSO_DISABLED 1 + +#define SDL_THREAD_SYMBIAN 1 + +#define SDL_VIDEO_DRIVER_EPOC 1 + +#define SDL_VIDEO_OPENGL 0 + +#define SDL_HAS_64BIT_TYPE 1 + +#define HAVE_LIBC 1 +#define HAVE_STDIO_H 1 +#define STDC_HEADERS 1 +#define HAVE_STRING_H 1 +#define HAVE_CTYPE_H 1 +#define HAVE_MATH_H 1 + +#define HAVE_MALLOC 1 +#define HAVE_CALLOC 1 +#define HAVE_REALLOC 1 +#define HAVE_FREE 1 +/*#define HAVE_ALLOCA 1*/ +#define HAVE_QSORT 1 +#define HAVE_ABS 1 +#define HAVE_MEMSET 1 +#define HAVE_MEMCPY 1 +#define HAVE_MEMMOVE 1 +#define HAVE_MEMCMP 1 +#define HAVE_STRLEN 1 +#define HAVE__STRUPR 1 +#define HAVE_STRCHR 1 +#define HAVE_STRRCHR 1 +#define HAVE_STRSTR 1 +#define HAVE_ITOA 1 +#define HAVE_STRTOL 1 +#define HAVE_STRTOUL 1 +#define HAVE_STRTOLL 1 +#define HAVE_STRTOD 1 +#define HAVE_ATOI 1 +#define HAVE_ATOF 1 +#define HAVE_STRCMP 1 +#define HAVE_STRNCMP 1 +/*#define HAVE__STRICMP 1*/ +#define HAVE__STRNICMP 1 +#define HAVE_SSCANF 1 +#define HAVE_STDARG_H 1 +#define HAVE_STDDEF_H 1 + + + +#endif /* _SDL_CONFIG_SYMBIAN_H */ diff --git a/include/SDL_config_win32.h b/include/SDL_config_win32.h index 23e4868c2..da2c15dd7 100644 --- a/include/SDL_config_win32.h +++ b/include/SDL_config_win32.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -27,7 +27,7 @@ /* This is a set of defines to configure the SDL features */ -#ifdef __GNUC__ +#if defined(__GNUC__) || defined(__DMC__) #define HAVE_STDINT_H 1 #elif defined(_MSC_VER) typedef signed __int8 int8_t; @@ -46,6 +46,13 @@ typedef unsigned int uintptr_t; #endif #define _UINTPTR_T_DEFINED #endif +/* Older Visual C++ headers don't have the Win64-compatible typedefs... */ +#if ((_MSC_VER <= 1200) && (!defined(DWORD_PTR))) +#define DWORD_PTR DWORD +#endif +#if ((_MSC_VER <= 1200) && (!defined(LONG_PTR))) +#define LONG_PTR LONG +#endif #else /* !__GNUC__ && !_MSC_VER */ typedef signed char int8_t; typedef unsigned char uint8_t; @@ -165,6 +172,9 @@ typedef unsigned int uintptr_t; #define SDL_VIDEO_OPENGL_WGL 1 #endif +/* Disable screensaver */ +#define SDL_VIDEO_DISABLE_SCREENSAVER 1 + /* Enable assembly routines (Win64 doesn't have inline asm) */ #ifndef _WIN64 #define SDL_ASSEMBLY_ROUTINES 1 diff --git a/include/SDL_copying.h b/include/SDL_copying.h index 39e122db7..b5b64f299 100644 --- a/include/SDL_copying.h +++ b/include/SDL_copying.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/include/SDL_cpuinfo.h b/include/SDL_cpuinfo.h index 72acbdd8b..4200d6d17 100644 --- a/include/SDL_cpuinfo.h +++ b/include/SDL_cpuinfo.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -20,8 +20,10 @@ slouken@libsdl.org */ -/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* CPU feature detection for SDL */ +/** + * @file SDL_cpuinfo.h + * CPU feature detection for SDL + */ #ifndef _SDL_cpuinfo_h #define _SDL_cpuinfo_h @@ -34,36 +36,28 @@ extern "C" { #endif -/* This function returns true if the CPU has the RDTSC instruction - */ +/** This function returns true if the CPU has the RDTSC instruction */ extern DECLSPEC SDL_bool SDLCALL SDL_HasRDTSC(void); -/* This function returns true if the CPU has MMX features - */ +/** This function returns true if the CPU has MMX features */ extern DECLSPEC SDL_bool SDLCALL SDL_HasMMX(void); -/* This function returns true if the CPU has MMX Ext. features - */ +/** This function returns true if the CPU has MMX Ext. features */ extern DECLSPEC SDL_bool SDLCALL SDL_HasMMXExt(void); -/* This function returns true if the CPU has 3DNow features - */ +/** This function returns true if the CPU has 3DNow features */ extern DECLSPEC SDL_bool SDLCALL SDL_Has3DNow(void); -/* This function returns true if the CPU has 3DNow! Ext. features - */ +/** This function returns true if the CPU has 3DNow! Ext. features */ extern DECLSPEC SDL_bool SDLCALL SDL_Has3DNowExt(void); -/* This function returns true if the CPU has SSE features - */ +/** This function returns true if the CPU has SSE features */ extern DECLSPEC SDL_bool SDLCALL SDL_HasSSE(void); -/* This function returns true if the CPU has SSE2 features - */ +/** This function returns true if the CPU has SSE2 features */ extern DECLSPEC SDL_bool SDLCALL SDL_HasSSE2(void); -/* This function returns true if the CPU has AltiVec features - */ +/** This function returns true if the CPU has AltiVec features */ extern DECLSPEC SDL_bool SDLCALL SDL_HasAltiVec(void); /* Ends C function definitions when using C++ */ diff --git a/include/SDL_endian.h b/include/SDL_endian.h index 6257a649d..068da918f 100644 --- a/include/SDL_endian.h +++ b/include/SDL_endian.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -20,18 +20,29 @@ slouken@libsdl.org */ -/* Functions for reading and writing endian-specific values */ +/** + * @file SDL_endian.h + * Functions for reading and writing endian-specific values + */ #ifndef _SDL_endian_h #define _SDL_endian_h #include "SDL_stdinc.h" -/* The two types of endianness */ +/** @name SDL_ENDIANs + * The two types of endianness + */ +/*@{*/ #define SDL_LIL_ENDIAN 1234 #define SDL_BIG_ENDIAN 4321 +/*@}*/ #ifndef SDL_BYTEORDER /* Not defined in SDL_config.h? */ +#ifdef __linux__ +#include +#define SDL_BYTEORDER __BYTE_ORDER +#else /* __linux __ */ #if defined(__hppa__) || \ defined(__m68k__) || defined(mc68000) || defined(_M_M68K) || \ (defined(__MIPS__) && defined(__MISPEB__)) || \ @@ -41,6 +52,7 @@ #else #define SDL_BYTEORDER SDL_LIL_ENDIAN #endif +#endif /* __linux __ */ #endif /* !SDL_BYTEORDER */ @@ -50,13 +62,16 @@ extern "C" { #endif -/* Use inline functions for compilers that support them, and static - functions for those that do not. Because these functions become - static for compilers that do not support inline functions, this - header should only be included in files that actually use them. -*/ +/** + * @name SDL_Swap Functions + * Use inline functions for compilers that support them, and static + * functions for those that do not. Because these functions become + * static for compilers that do not support inline functions, this + * header should only be included in files that actually use them. + */ +/*@{*/ #if defined(__GNUC__) && defined(__i386__) && \ - !(__GNUC__ == 2 && __GNUC_MINOR__ == 95 /* broken gcc version */) + !(__GNUC__ == 2 && __GNUC_MINOR__ <= 95 /* broken gcc version */) static __inline__ Uint16 SDL_Swap16(Uint16 x) { __asm__("xchgb %b0,%h0" : "=q" (x) : "0" (x)); @@ -71,12 +86,12 @@ static __inline__ Uint16 SDL_Swap16(Uint16 x) #elif defined(__GNUC__) && (defined(__powerpc__) || defined(__ppc__)) static __inline__ Uint16 SDL_Swap16(Uint16 x) { - Uint16 result; + int result; __asm__("rlwimi %0,%2,8,16,23" : "=&r" (result) : "0" (x >> 8), "r" (x)); - return result; + return (Uint16)result; } -#elif defined(__GNUC__) && (defined(__M68000__) || defined(__M68020__)) +#elif defined(__GNUC__) && (defined(__m68k__) && !defined(__mcoldfire__)) static __inline__ Uint16 SDL_Swap16(Uint16 x) { __asm__("rorw #8,%0" : "=d" (x) : "0" (x) : "cc"); @@ -84,11 +99,12 @@ static __inline__ Uint16 SDL_Swap16(Uint16 x) } #else static __inline__ Uint16 SDL_Swap16(Uint16 x) { - return((x<<8)|(x>>8)); + return SDL_static_cast(Uint16, ((x<<8)|(x>>8))); } #endif -#if defined(__GNUC__) && defined(__i386__) +#if defined(__GNUC__) && defined(__i386__) && \ + !(__GNUC__ == 2 && __GNUC_MINOR__ <= 95 /* broken gcc version */) static __inline__ Uint32 SDL_Swap32(Uint32 x) { __asm__("bswap %0" : "=r" (x) : "0" (x)); @@ -110,7 +126,7 @@ static __inline__ Uint32 SDL_Swap32(Uint32 x) __asm__("rlwimi %0,%2,24,0,7" : "=&r" (result) : "0" (result), "r" (x)); return result; } -#elif defined(__GNUC__) && (defined(__M68000__) || defined(__M68020__)) +#elif defined(__GNUC__) && (defined(__m68k__) && !defined(__mcoldfire__)) static __inline__ Uint32 SDL_Swap32(Uint32 x) { __asm__("rorw #8,%0\n\tswap %0\n\trorw #8,%0" : "=d" (x) : "0" (x) : "cc"); @@ -118,12 +134,13 @@ static __inline__ Uint32 SDL_Swap32(Uint32 x) } #else static __inline__ Uint32 SDL_Swap32(Uint32 x) { - return((x<<24)|((x<<8)&0x00FF0000)|((x>>8)&0x0000FF00)|(x>>24)); + return SDL_static_cast(Uint32, ((x<<24)|((x<<8)&0x00FF0000)|((x>>8)&0x0000FF00)|(x>>24))); } #endif #ifdef SDL_HAS_64BIT_TYPE -#if defined(__GNUC__) && defined(__i386__) +#if defined(__GNUC__) && defined(__i386__) && \ + !(__GNUC__ == 2 && __GNUC_MINOR__ <= 95 /* broken gcc version */) static __inline__ Uint64 SDL_Swap64(Uint64 x) { union { @@ -148,25 +165,29 @@ static __inline__ Uint64 SDL_Swap64(Uint64 x) Uint32 hi, lo; /* Separate into high and low 32-bit values and swap them */ - lo = (Uint32)(x&0xFFFFFFFF); + lo = SDL_static_cast(Uint32, x & 0xFFFFFFFF); x >>= 32; - hi = (Uint32)(x&0xFFFFFFFF); + hi = SDL_static_cast(Uint32, x & 0xFFFFFFFF); x = SDL_Swap32(lo); x <<= 32; x |= SDL_Swap32(hi); - return(x); + return (x); } #endif #else /* This is mainly to keep compilers from complaining in SDL code. - If there is no real 64-bit datatype, then compilers will complain about - the fake 64-bit datatype that SDL provides when it compiles user code. -*/ + * If there is no real 64-bit datatype, then compilers will complain about + * the fake 64-bit datatype that SDL provides when it compiles user code. + */ #define SDL_Swap64(X) (X) #endif /* SDL_HAS_64BIT_TYPE */ +/*@}*/ - -/* Byteswap item from the specified endianness to the native endianness */ +/** + * @name SDL_SwapLE and SDL_SwapBE Functions + * Byteswap item from the specified endianness to the native endianness + */ +/*@{*/ #if SDL_BYTEORDER == SDL_LIL_ENDIAN #define SDL_SwapLE16(X) (X) #define SDL_SwapLE32(X) (X) @@ -182,6 +203,7 @@ static __inline__ Uint64 SDL_Swap64(Uint64 x) #define SDL_SwapBE32(X) (X) #define SDL_SwapBE64(X) (X) #endif +/*@}*/ /* Ends C function definitions when using C++ */ #ifdef __cplusplus diff --git a/include/SDL_error.h b/include/SDL_error.h index 26d6bfaef..4e1cce3b1 100644 --- a/include/SDL_error.h +++ b/include/SDL_error.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -20,7 +20,10 @@ slouken@libsdl.org */ -/* Simple error message routines for SDL */ +/** + * @file SDL_error.h + * Simple error message routines for SDL + */ #ifndef _SDL_error_h #define _SDL_error_h @@ -33,12 +36,20 @@ extern "C" { #endif -/* Public functions */ +/** + * @name Public functions + */ +/*@{*/ extern DECLSPEC void SDLCALL SDL_SetError(const char *fmt, ...); extern DECLSPEC char * SDLCALL SDL_GetError(void); extern DECLSPEC void SDLCALL SDL_ClearError(void); +/*@}*/ -/* Private error message function - used internally */ +/** + * @name Private functions + * @internal Private error message function - used internally + */ +/*@{*/ #define SDL_OutOfMemory() SDL_Error(SDL_ENOMEM) #define SDL_Unsupported() SDL_Error(SDL_UNSUPPORTED) typedef enum { @@ -50,7 +61,7 @@ typedef enum { SDL_LASTERROR } SDL_errorcode; extern DECLSPEC void SDLCALL SDL_Error(SDL_errorcode code); - +/*@}*/ /* Ends C function definitions when using C++ */ #ifdef __cplusplus diff --git a/include/SDL_events.h b/include/SDL_events.h index 9fe918c7b..94b420251 100644 --- a/include/SDL_events.h +++ b/include/SDL_events.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -20,7 +20,10 @@ slouken@libsdl.org */ -/* Include file for SDL event handling */ +/** + * @file SDL_events.h + * Include file for SDL event handling + */ #ifndef _SDL_events_h #define _SDL_events_h @@ -39,45 +42,48 @@ extern "C" { #endif -/* General keyboard/mouse state definitions */ +/** @name General keyboard/mouse state definitions */ +/*@{*/ #define SDL_RELEASED 0 #define SDL_PRESSED 1 +/*@}*/ -/* Event enumerations */ +/** Event enumerations */ typedef enum { - SDL_NOEVENT = 0, /* Unused (do not remove) */ - SDL_ACTIVEEVENT, /* Application loses/gains visibility */ - SDL_KEYDOWN, /* Keys pressed */ - SDL_KEYUP, /* Keys released */ - SDL_MOUSEMOTION, /* Mouse moved */ - SDL_MOUSEBUTTONDOWN, /* Mouse button pressed */ - SDL_MOUSEBUTTONUP, /* Mouse button released */ - SDL_JOYAXISMOTION, /* Joystick axis motion */ - SDL_JOYBALLMOTION, /* Joystick trackball motion */ - SDL_JOYHATMOTION, /* Joystick hat position change */ - SDL_JOYBUTTONDOWN, /* Joystick button pressed */ - SDL_JOYBUTTONUP, /* Joystick button released */ - SDL_QUIT, /* User-requested quit */ - SDL_SYSWMEVENT, /* System specific event */ - SDL_EVENT_RESERVEDA, /* Reserved for future use.. */ - SDL_EVENT_RESERVEDB, /* Reserved for future use.. */ - SDL_VIDEORESIZE, /* User resized video mode */ - SDL_VIDEOEXPOSE, /* Screen needs to be redrawn */ - SDL_EVENT_RESERVED2, /* Reserved for future use.. */ - SDL_EVENT_RESERVED3, /* Reserved for future use.. */ - SDL_EVENT_RESERVED4, /* Reserved for future use.. */ - SDL_EVENT_RESERVED5, /* Reserved for future use.. */ - SDL_EVENT_RESERVED6, /* Reserved for future use.. */ - SDL_EVENT_RESERVED7, /* Reserved for future use.. */ - /* Events SDL_USEREVENT through SDL_MAXEVENTS-1 are for your use */ + SDL_NOEVENT = 0, /**< Unused (do not remove) */ + SDL_ACTIVEEVENT, /**< Application loses/gains visibility */ + SDL_KEYDOWN, /**< Keys pressed */ + SDL_KEYUP, /**< Keys released */ + SDL_MOUSEMOTION, /**< Mouse moved */ + SDL_MOUSEBUTTONDOWN, /**< Mouse button pressed */ + SDL_MOUSEBUTTONUP, /**< Mouse button released */ + SDL_JOYAXISMOTION, /**< Joystick axis motion */ + SDL_JOYBALLMOTION, /**< Joystick trackball motion */ + SDL_JOYHATMOTION, /**< Joystick hat position change */ + SDL_JOYBUTTONDOWN, /**< Joystick button pressed */ + SDL_JOYBUTTONUP, /**< Joystick button released */ + SDL_QUIT, /**< User-requested quit */ + SDL_SYSWMEVENT, /**< System specific event */ + SDL_EVENT_RESERVEDA, /**< Reserved for future use.. */ + SDL_EVENT_RESERVEDB, /**< Reserved for future use.. */ + SDL_VIDEORESIZE, /**< User resized video mode */ + SDL_VIDEOEXPOSE, /**< Screen needs to be redrawn */ + SDL_EVENT_RESERVED2, /**< Reserved for future use.. */ + SDL_EVENT_RESERVED3, /**< Reserved for future use.. */ + SDL_EVENT_RESERVED4, /**< Reserved for future use.. */ + SDL_EVENT_RESERVED5, /**< Reserved for future use.. */ + SDL_EVENT_RESERVED6, /**< Reserved for future use.. */ + SDL_EVENT_RESERVED7, /**< Reserved for future use.. */ + /** Events SDL_USEREVENT through SDL_MAXEVENTS-1 are for your use */ SDL_USEREVENT = 24, - /* This last event is only for bounding internal arrays - It is the number of bits in the event mask datatype -- Uint32 + /** This last event is only for bounding internal arrays + * It is the number of bits in the event mask datatype -- Uint32 */ SDL_NUMEVENTS = 32 } SDL_EventType; -/* Predefined event masks */ +/** @name Predefined event masks */ +/*@{*/ #define SDL_EVENTMASK(X) (1<<(X)) typedef enum { SDL_ACTIVEEVENTMASK = SDL_EVENTMASK(SDL_ACTIVEEVENT), @@ -107,108 +113,109 @@ typedef enum { SDL_SYSWMEVENTMASK = SDL_EVENTMASK(SDL_SYSWMEVENT) } SDL_EventMask ; #define SDL_ALLEVENTS 0xFFFFFFFF +/*@}*/ -/* Application visibility event structure */ +/** Application visibility event structure */ typedef struct SDL_ActiveEvent { - Uint8 type; /* SDL_ACTIVEEVENT */ - Uint8 gain; /* Whether given states were gained or lost (1/0) */ - Uint8 state; /* A mask of the focus states */ + Uint8 type; /**< SDL_ACTIVEEVENT */ + Uint8 gain; /**< Whether given states were gained or lost (1/0) */ + Uint8 state; /**< A mask of the focus states */ } SDL_ActiveEvent; -/* Keyboard event structure */ +/** Keyboard event structure */ typedef struct SDL_KeyboardEvent { - Uint8 type; /* SDL_KEYDOWN or SDL_KEYUP */ - Uint8 which; /* The keyboard device index */ - Uint8 state; /* SDL_PRESSED or SDL_RELEASED */ + Uint8 type; /**< SDL_KEYDOWN or SDL_KEYUP */ + Uint8 which; /**< The keyboard device index */ + Uint8 state; /**< SDL_PRESSED or SDL_RELEASED */ SDL_keysym keysym; } SDL_KeyboardEvent; -/* Mouse motion event structure */ +/** Mouse motion event structure */ typedef struct SDL_MouseMotionEvent { - Uint8 type; /* SDL_MOUSEMOTION */ - Uint8 which; /* The mouse device index */ - Uint8 state; /* The current button state */ - Uint16 x, y; /* The X/Y coordinates of the mouse */ - Sint16 xrel; /* The relative motion in the X direction */ - Sint16 yrel; /* The relative motion in the Y direction */ + Uint8 type; /**< SDL_MOUSEMOTION */ + Uint8 which; /**< The mouse device index */ + Uint8 state; /**< The current button state */ + Uint16 x, y; /**< The X/Y coordinates of the mouse */ + Sint16 xrel; /**< The relative motion in the X direction */ + Sint16 yrel; /**< The relative motion in the Y direction */ } SDL_MouseMotionEvent; -/* Mouse button event structure */ +/** Mouse button event structure */ typedef struct SDL_MouseButtonEvent { - Uint8 type; /* SDL_MOUSEBUTTONDOWN or SDL_MOUSEBUTTONUP */ - Uint8 which; /* The mouse device index */ - Uint8 button; /* The mouse button index */ - Uint8 state; /* SDL_PRESSED or SDL_RELEASED */ - Uint16 x, y; /* The X/Y coordinates of the mouse at press time */ + Uint8 type; /**< SDL_MOUSEBUTTONDOWN or SDL_MOUSEBUTTONUP */ + Uint8 which; /**< The mouse device index */ + Uint8 button; /**< The mouse button index */ + Uint8 state; /**< SDL_PRESSED or SDL_RELEASED */ + Uint16 x, y; /**< The X/Y coordinates of the mouse at press time */ } SDL_MouseButtonEvent; -/* Joystick axis motion event structure */ +/** Joystick axis motion event structure */ typedef struct SDL_JoyAxisEvent { - Uint8 type; /* SDL_JOYAXISMOTION */ - Uint8 which; /* The joystick device index */ - Uint8 axis; /* The joystick axis index */ - Sint16 value; /* The axis value (range: -32768 to 32767) */ + Uint8 type; /**< SDL_JOYAXISMOTION */ + Uint8 which; /**< The joystick device index */ + Uint8 axis; /**< The joystick axis index */ + Sint16 value; /**< The axis value (range: -32768 to 32767) */ } SDL_JoyAxisEvent; -/* Joystick trackball motion event structure */ +/** Joystick trackball motion event structure */ typedef struct SDL_JoyBallEvent { - Uint8 type; /* SDL_JOYBALLMOTION */ - Uint8 which; /* The joystick device index */ - Uint8 ball; /* The joystick trackball index */ - Sint16 xrel; /* The relative motion in the X direction */ - Sint16 yrel; /* The relative motion in the Y direction */ + Uint8 type; /**< SDL_JOYBALLMOTION */ + Uint8 which; /**< The joystick device index */ + Uint8 ball; /**< The joystick trackball index */ + Sint16 xrel; /**< The relative motion in the X direction */ + Sint16 yrel; /**< The relative motion in the Y direction */ } SDL_JoyBallEvent; -/* Joystick hat position change event structure */ +/** Joystick hat position change event structure */ typedef struct SDL_JoyHatEvent { - Uint8 type; /* SDL_JOYHATMOTION */ - Uint8 which; /* The joystick device index */ - Uint8 hat; /* The joystick hat index */ - Uint8 value; /* The hat position value: - SDL_HAT_LEFTUP SDL_HAT_UP SDL_HAT_RIGHTUP - SDL_HAT_LEFT SDL_HAT_CENTERED SDL_HAT_RIGHT - SDL_HAT_LEFTDOWN SDL_HAT_DOWN SDL_HAT_RIGHTDOWN - Note that zero means the POV is centered. - */ + Uint8 type; /**< SDL_JOYHATMOTION */ + Uint8 which; /**< The joystick device index */ + Uint8 hat; /**< The joystick hat index */ + Uint8 value; /**< The hat position value: + * SDL_HAT_LEFTUP SDL_HAT_UP SDL_HAT_RIGHTUP + * SDL_HAT_LEFT SDL_HAT_CENTERED SDL_HAT_RIGHT + * SDL_HAT_LEFTDOWN SDL_HAT_DOWN SDL_HAT_RIGHTDOWN + * Note that zero means the POV is centered. + */ } SDL_JoyHatEvent; -/* Joystick button event structure */ +/** Joystick button event structure */ typedef struct SDL_JoyButtonEvent { - Uint8 type; /* SDL_JOYBUTTONDOWN or SDL_JOYBUTTONUP */ - Uint8 which; /* The joystick device index */ - Uint8 button; /* The joystick button index */ - Uint8 state; /* SDL_PRESSED or SDL_RELEASED */ + Uint8 type; /**< SDL_JOYBUTTONDOWN or SDL_JOYBUTTONUP */ + Uint8 which; /**< The joystick device index */ + Uint8 button; /**< The joystick button index */ + Uint8 state; /**< SDL_PRESSED or SDL_RELEASED */ } SDL_JoyButtonEvent; -/* The "window resized" event - When you get this event, you are responsible for setting a new video - mode with the new width and height. +/** The "window resized" event + * When you get this event, you are responsible for setting a new video + * mode with the new width and height. */ typedef struct SDL_ResizeEvent { - Uint8 type; /* SDL_VIDEORESIZE */ - int w; /* New width */ - int h; /* New height */ + Uint8 type; /**< SDL_VIDEORESIZE */ + int w; /**< New width */ + int h; /**< New height */ } SDL_ResizeEvent; -/* The "screen redraw" event */ +/** The "screen redraw" event */ typedef struct SDL_ExposeEvent { - Uint8 type; /* SDL_VIDEOEXPOSE */ + Uint8 type; /**< SDL_VIDEOEXPOSE */ } SDL_ExposeEvent; -/* The "quit requested" event */ +/** The "quit requested" event */ typedef struct SDL_QuitEvent { - Uint8 type; /* SDL_QUIT */ + Uint8 type; /**< SDL_QUIT */ } SDL_QuitEvent; -/* A user-defined event type */ +/** A user-defined event type */ typedef struct SDL_UserEvent { - Uint8 type; /* SDL_USEREVENT through SDL_NUMEVENTS-1 */ - int code; /* User defined event code */ - void *data1; /* User defined data pointer */ - void *data2; /* User defined data pointer */ + Uint8 type; /**< SDL_USEREVENT through SDL_NUMEVENTS-1 */ + int code; /**< User defined event code */ + void *data1; /**< User defined data pointer */ + void *data2; /**< User defined data pointer */ } SDL_UserEvent; -/* If you want to use this event, you should include SDL_syswm.h */ +/** If you want to use this event, you should include SDL_syswm.h */ struct SDL_SysWMmsg; typedef struct SDL_SysWMmsg SDL_SysWMmsg; typedef struct SDL_SysWMEvent { @@ -216,7 +223,7 @@ typedef struct SDL_SysWMEvent { SDL_SysWMmsg *msg; } SDL_SysWMEvent; -/* General event structure */ +/** General event structure */ typedef union SDL_Event { Uint8 type; SDL_ActiveEvent active; @@ -237,96 +244,108 @@ typedef union SDL_Event { /* Function prototypes */ -/* Pumps the event loop, gathering events from the input devices. - This function updates the event queue and internal input device state. - This should only be run in the thread that sets the video mode. -*/ +/** Pumps the event loop, gathering events from the input devices. + * This function updates the event queue and internal input device state. + * This should only be run in the thread that sets the video mode. + */ extern DECLSPEC void SDLCALL SDL_PumpEvents(void); -/* Checks the event queue for messages and optionally returns them. - If 'action' is SDL_ADDEVENT, up to 'numevents' events will be added to - the back of the event queue. - If 'action' is SDL_PEEKEVENT, up to 'numevents' events at the front - of the event queue, matching 'mask', will be returned and will not - be removed from the queue. - If 'action' is SDL_GETEVENT, up to 'numevents' events at the front - of the event queue, matching 'mask', will be returned and will be - removed from the queue. - This function returns the number of events actually stored, or -1 - if there was an error. This function is thread-safe. -*/ typedef enum { SDL_ADDEVENT, SDL_PEEKEVENT, SDL_GETEVENT } SDL_eventaction; -/* */ + +/** + * Checks the event queue for messages and optionally returns them. + * + * If 'action' is SDL_ADDEVENT, up to 'numevents' events will be added to + * the back of the event queue. + * If 'action' is SDL_PEEKEVENT, up to 'numevents' events at the front + * of the event queue, matching 'mask', will be returned and will not + * be removed from the queue. + * If 'action' is SDL_GETEVENT, up to 'numevents' events at the front + * of the event queue, matching 'mask', will be returned and will be + * removed from the queue. + * + * @return + * This function returns the number of events actually stored, or -1 + * if there was an error. + * + * This function is thread-safe. + */ extern DECLSPEC int SDLCALL SDL_PeepEvents(SDL_Event *events, int numevents, SDL_eventaction action, Uint32 mask); -/* Polls for currently pending events, and returns 1 if there are any pending - events, or 0 if there are none available. If 'event' is not NULL, the next - event is removed from the queue and stored in that area. +/** Polls for currently pending events, and returns 1 if there are any pending + * events, or 0 if there are none available. If 'event' is not NULL, the next + * event is removed from the queue and stored in that area. */ extern DECLSPEC int SDLCALL SDL_PollEvent(SDL_Event *event); -/* Waits indefinitely for the next available event, returning 1, or 0 if there - was an error while waiting for events. If 'event' is not NULL, the next - event is removed from the queue and stored in that area. +/** Waits indefinitely for the next available event, returning 1, or 0 if there + * was an error while waiting for events. If 'event' is not NULL, the next + * event is removed from the queue and stored in that area. */ extern DECLSPEC int SDLCALL SDL_WaitEvent(SDL_Event *event); -/* Add an event to the event queue. - This function returns 0 on success, or -1 if the event queue was full - or there was some other error. +/** Add an event to the event queue. + * This function returns 0 on success, or -1 if the event queue was full + * or there was some other error. */ extern DECLSPEC int SDLCALL SDL_PushEvent(SDL_Event *event); -/* - This function sets up a filter to process all events before they - change internal state and are posted to the internal event queue. - - The filter is protypted as: -*/ +/** @name Event Filtering */ +/*@{*/ typedef int (SDLCALL *SDL_EventFilter)(const SDL_Event *event); -/* - If the filter returns 1, then the event will be added to the internal queue. - If it returns 0, then the event will be dropped from the queue, but the - internal state will still be updated. This allows selective filtering of - dynamically arriving events. - - WARNING: Be very careful of what you do in the event filter function, as - it may run in a different thread! - - There is one caveat when dealing with the SDL_QUITEVENT event type. The - event filter is only called when the window manager desires to close the - application window. If the event filter returns 1, then the window will - be closed, otherwise the window will remain open if possible. - If the quit event is generated by an interrupt signal, it will bypass the - internal queue and be delivered to the application at the next event poll. -*/ +/** + * This function sets up a filter to process all events before they + * change internal state and are posted to the internal event queue. + * + * The filter is protypted as: + * @code typedef int (SDLCALL *SDL_EventFilter)(const SDL_Event *event); @endcode + * + * If the filter returns 1, then the event will be added to the internal queue. + * If it returns 0, then the event will be dropped from the queue, but the + * internal state will still be updated. This allows selective filtering of + * dynamically arriving events. + * + * @warning Be very careful of what you do in the event filter function, as + * it may run in a different thread! + * + * There is one caveat when dealing with the SDL_QUITEVENT event type. The + * event filter is only called when the window manager desires to close the + * application window. If the event filter returns 1, then the window will + * be closed, otherwise the window will remain open if possible. + * If the quit event is generated by an interrupt signal, it will bypass the + * internal queue and be delivered to the application at the next event poll. + */ extern DECLSPEC void SDLCALL SDL_SetEventFilter(SDL_EventFilter filter); -/* - Return the current event filter - can be used to "chain" filters. - If there is no event filter set, this function returns NULL. -*/ +/** + * Return the current event filter - can be used to "chain" filters. + * If there is no event filter set, this function returns NULL. + */ extern DECLSPEC SDL_EventFilter SDLCALL SDL_GetEventFilter(void); +/*@}*/ -/* - This function allows you to set the state of processing certain events. - If 'state' is set to SDL_IGNORE, that event will be automatically dropped - from the event queue and will not event be filtered. - If 'state' is set to SDL_ENABLE, that event will be processed normally. - If 'state' is set to SDL_QUERY, SDL_EventState() will return the - current processing state of the specified event. -*/ +/** @name Event State */ +/*@{*/ #define SDL_QUERY -1 #define SDL_IGNORE 0 #define SDL_DISABLE 0 #define SDL_ENABLE 1 -extern DECLSPEC Uint8 SDLCALL SDL_EventState(Uint8 type, int state); +/*@}*/ +/** +* This function allows you to set the state of processing certain events. +* If 'state' is set to SDL_IGNORE, that event will be automatically dropped +* from the event queue and will not event be filtered. +* If 'state' is set to SDL_ENABLE, that event will be processed normally. +* If 'state' is set to SDL_QUERY, SDL_EventState() will return the +* current processing state of the specified event. +*/ +extern DECLSPEC Uint8 SDLCALL SDL_EventState(Uint8 type, int state); /* Ends C function definitions when using C++ */ #ifdef __cplusplus diff --git a/include/SDL_getenv.h b/include/SDL_getenv.h index 853b9ce45..bea630077 100644 --- a/include/SDL_getenv.h +++ b/include/SDL_getenv.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -20,5 +20,9 @@ slouken@libsdl.org */ +/** @file SDL_getenv.h + * @deprecated Use SDL_stdinc.h instead + */ + /* DEPRECATED */ #include "SDL_stdinc.h" diff --git a/include/SDL_joystick.h b/include/SDL_joystick.h index e4f72f1a4..708d1a9f0 100644 --- a/include/SDL_joystick.h +++ b/include/SDL_joystick.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -20,7 +20,9 @@ slouken@libsdl.org */ -/* Include file for SDL joystick event handling */ +/** @file SDL_joystick.h + * Include file for SDL joystick event handling + */ #ifndef _SDL_joystick_h #define _SDL_joystick_h @@ -34,97 +36,108 @@ extern "C" { #endif -/* In order to use these functions, SDL_Init() must have been called - with the SDL_INIT_JOYSTICK flag. This causes SDL to scan the system - for joysticks, and load appropriate drivers. -*/ +/** @file SDL_joystick.h + * @note In order to use these functions, SDL_Init() must have been called + * with the SDL_INIT_JOYSTICK flag. This causes SDL to scan the system + * for joysticks, and load appropriate drivers. + */ -/* The joystick structure used to identify an SDL joystick */ +/** The joystick structure used to identify an SDL joystick */ struct _SDL_Joystick; typedef struct _SDL_Joystick SDL_Joystick; - /* Function prototypes */ -/* +/** * Count the number of joysticks attached to the system */ extern DECLSPEC int SDLCALL SDL_NumJoysticks(void); -/* +/** * Get the implementation dependent name of a joystick. + * * This can be called before any joysticks are opened. * If no name can be found, this function returns NULL. */ extern DECLSPEC const char * SDLCALL SDL_JoystickName(int device_index); -/* - * Open a joystick for use - the index passed as an argument refers to +/** + * Open a joystick for use. + * + * @param[in] device_index + * The index passed as an argument refers to * the N'th joystick on the system. This index is the value which will * identify this joystick in future joystick events. * - * This function returns a joystick identifier, or NULL if an error occurred. + * @return This function returns a joystick identifier, or NULL if an error occurred. */ extern DECLSPEC SDL_Joystick * SDLCALL SDL_JoystickOpen(int device_index); -/* +/** * Returns 1 if the joystick has been opened, or 0 if it has not. */ extern DECLSPEC int SDLCALL SDL_JoystickOpened(int device_index); -/* +/** * Get the device index of an opened joystick. */ extern DECLSPEC int SDLCALL SDL_JoystickIndex(SDL_Joystick *joystick); -/* +/** * Get the number of general axis controls on a joystick */ extern DECLSPEC int SDLCALL SDL_JoystickNumAxes(SDL_Joystick *joystick); -/* +/** * Get the number of trackballs on a joystick + * * Joystick trackballs have only relative motion events associated * with them and their state cannot be polled. */ extern DECLSPEC int SDLCALL SDL_JoystickNumBalls(SDL_Joystick *joystick); -/* +/** * Get the number of POV hats on a joystick */ extern DECLSPEC int SDLCALL SDL_JoystickNumHats(SDL_Joystick *joystick); -/* +/** * Get the number of buttons on a joystick */ extern DECLSPEC int SDLCALL SDL_JoystickNumButtons(SDL_Joystick *joystick); -/* +/** * Update the current state of the open joysticks. + * * This is called automatically by the event loop if any joystick * events are enabled. */ extern DECLSPEC void SDLCALL SDL_JoystickUpdate(void); -/* +/** * Enable/disable joystick event polling. + * * If joystick events are disabled, you must call SDL_JoystickUpdate() * yourself and check the state of the joystick when you want joystick * information. - * The state can be one of SDL_QUERY, SDL_ENABLE or SDL_IGNORE. + * + * @param[in] state The state can be one of SDL_QUERY, SDL_ENABLE or SDL_IGNORE. */ extern DECLSPEC int SDLCALL SDL_JoystickEventState(int state); -/* +/** * Get the current state of an axis control on a joystick - * The state is a value ranging from -32768 to 32767. - * The axis indices start at index 0. + * + * @param[in] axis The axis indices start at index 0. + * + * @return The state is a value ranging from -32768 to 32767. */ extern DECLSPEC Sint16 SDLCALL SDL_JoystickGetAxis(SDL_Joystick *joystick, int axis); -/* - * Get the current state of a POV hat on a joystick - * The return value is one of the following positions: +/** + * @name Hat Positions + * The return value of SDL_JoystickGetHat() is one of the following positions: */ +/*@{*/ #define SDL_HAT_CENTERED 0x00 #define SDL_HAT_UP 0x01 #define SDL_HAT_RIGHT 0x02 @@ -134,25 +147,32 @@ extern DECLSPEC Sint16 SDLCALL SDL_JoystickGetAxis(SDL_Joystick *joystick, int a #define SDL_HAT_RIGHTDOWN (SDL_HAT_RIGHT|SDL_HAT_DOWN) #define SDL_HAT_LEFTUP (SDL_HAT_LEFT|SDL_HAT_UP) #define SDL_HAT_LEFTDOWN (SDL_HAT_LEFT|SDL_HAT_DOWN) -/* - * The hat indices start at index 0. +/*@}*/ + +/** + * Get the current state of a POV hat on a joystick + * + * @param[in] hat The hat indices start at index 0. */ extern DECLSPEC Uint8 SDLCALL SDL_JoystickGetHat(SDL_Joystick *joystick, int hat); -/* +/** * Get the ball axis change since the last poll - * This returns 0, or -1 if you passed it invalid parameters. - * The ball indices start at index 0. + * + * @param[in] ball The ball indices start at index 0. + * + * @return This returns 0, or -1 if you passed it invalid parameters. */ extern DECLSPEC int SDLCALL SDL_JoystickGetBall(SDL_Joystick *joystick, int ball, int *dx, int *dy); -/* +/** * Get the current state of a button on a joystick - * The button indices start at index 0. + * + * @param[in] button The button indices start at index 0. */ extern DECLSPEC Uint8 SDLCALL SDL_JoystickGetButton(SDL_Joystick *joystick, int button); -/* +/** * Close a joystick previously opened with SDL_JoystickOpen() */ extern DECLSPEC void SDLCALL SDL_JoystickClose(SDL_Joystick *joystick); diff --git a/include/SDL_keyboard.h b/include/SDL_keyboard.h index 1ad7dcaa4..9d7129c52 100644 --- a/include/SDL_keyboard.h +++ b/include/SDL_keyboard.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -20,7 +20,9 @@ slouken@libsdl.org */ -/* Include file for SDL keyboard event handling */ +/** @file SDL_keyboard.h + * Include file for SDL keyboard event handling + */ #ifndef _SDL_keyboard_h #define _SDL_keyboard_h @@ -35,78 +37,90 @@ extern "C" { #endif -/* Keysym structure - - The scancode is hardware dependent, and should not be used by general - applications. If no hardware scancode is available, it will be 0. - - - The 'unicode' translated character is only available when character - translation is enabled by the SDL_EnableUNICODE() API. If non-zero, - this is a UNICODE character corresponding to the keypress. If the - high 9 bits of the character are 0, then this maps to the equivalent - ASCII character: - char ch; - if ( (keysym.unicode & 0xFF80) == 0 ) { - ch = keysym.unicode & 0x7F; - } else { - An international character.. - } +/** Keysym structure + * + * - The scancode is hardware dependent, and should not be used by general + * applications. If no hardware scancode is available, it will be 0. + * + * - The 'unicode' translated character is only available when character + * translation is enabled by the SDL_EnableUNICODE() API. If non-zero, + * this is a UNICODE character corresponding to the keypress. If the + * high 9 bits of the character are 0, then this maps to the equivalent + * ASCII character: + * @code + * char ch; + * if ( (keysym.unicode & 0xFF80) == 0 ) { + * ch = keysym.unicode & 0x7F; + * } else { + * An international character.. + * } + * @endcode */ typedef struct SDL_keysym { - Uint8 scancode; /* hardware specific scancode */ - SDLKey sym; /* SDL virtual keysym */ - SDLMod mod; /* current key modifiers */ - Uint16 unicode; /* translated character */ + Uint8 scancode; /**< hardware specific scancode */ + SDLKey sym; /**< SDL virtual keysym */ + SDLMod mod; /**< current key modifiers */ + Uint16 unicode; /**< translated character */ } SDL_keysym; -/* This is the mask which refers to all hotkey bindings */ +/** This is the mask which refers to all hotkey bindings */ #define SDL_ALL_HOTKEYS 0xFFFFFFFF /* Function prototypes */ -/* +/** * Enable/Disable UNICODE translation of keyboard input. + * * This translation has some overhead, so translation defaults off. + * + * @param[in] enable * If 'enable' is 1, translation is enabled. * If 'enable' is 0, translation is disabled. * If 'enable' is -1, the translation state is not changed. - * It returns the previous state of keyboard translation. + * + * @return It returns the previous state of keyboard translation. */ extern DECLSPEC int SDLCALL SDL_EnableUNICODE(int enable); -/* - * Enable/Disable keyboard repeat. Keyboard repeat defaults to off. - * 'delay' is the initial delay in ms between the time when a key is - * pressed, and keyboard repeat begins. - * 'interval' is the time in ms between keyboard repeat events. - */ #define SDL_DEFAULT_REPEAT_DELAY 500 #define SDL_DEFAULT_REPEAT_INTERVAL 30 -/* - * If 'delay' is set to 0, keyboard repeat is disabled. +/** + * Enable/Disable keyboard repeat. Keyboard repeat defaults to off. + * + * @param[in] delay + * 'delay' is the initial delay in ms between the time when a key is + * pressed, and keyboard repeat begins. + * + * @param[in] interval + * 'interval' is the time in ms between keyboard repeat events. + * + * If 'delay' is set to 0, keyboard repeat is disabled. */ extern DECLSPEC int SDLCALL SDL_EnableKeyRepeat(int delay, int interval); extern DECLSPEC void SDLCALL SDL_GetKeyRepeat(int *delay, int *interval); -/* +/** * Get a snapshot of the current state of the keyboard. * Returns an array of keystates, indexed by the SDLK_* syms. - * Used: + * Usage: + * @code * Uint8 *keystate = SDL_GetKeyState(NULL); - * if ( keystate[SDLK_RETURN] ) ... is pressed. + * if ( keystate[SDLK_RETURN] ) //... \ is pressed. + * @endcode */ extern DECLSPEC Uint8 * SDLCALL SDL_GetKeyState(int *numkeys); -/* +/** * Get the current key modifier state */ extern DECLSPEC SDLMod SDLCALL SDL_GetModState(void); -/* - * Set the current key modifier state +/** + * Set the current key modifier state. * This does not change the keyboard state, only the key modifier flags. */ extern DECLSPEC void SDLCALL SDL_SetModState(SDLMod modstate); -/* +/** * Get the name of an SDL virtual keysym */ extern DECLSPEC char * SDLCALL SDL_GetKeyName(SDLKey key); diff --git a/include/SDL_keysym.h b/include/SDL_keysym.h index ff44a035f..f2ad12b81 100644 --- a/include/SDL_keysym.h +++ b/include/SDL_keysym.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -23,14 +23,16 @@ #ifndef _SDL_keysym_h #define _SDL_keysym_h -/* What we really want is a mapping of every raw key on the keyboard. - To support international keyboards, we use the range 0xA1 - 0xFF - as international virtual keycodes. We'll follow in the footsteps of X11... - The names of the keys +/** What we really want is a mapping of every raw key on the keyboard. + * To support international keyboards, we use the range 0xA1 - 0xFF + * as international virtual keycodes. We'll follow in the footsteps of X11... + * @brief The names of the keys */ - typedef enum { - /* The keyboard syms have been cleverly chosen to map to ASCII */ + /** @name ASCII mapped keysyms + * The keyboard syms have been cleverly chosen to map to ASCII + */ + /*@{*/ SDLK_UNKNOWN = 0, SDLK_FIRST = 0, SDLK_BACKSPACE = 8, @@ -108,8 +110,10 @@ typedef enum { SDLK_z = 122, SDLK_DELETE = 127, /* End of ASCII mapped keysyms */ + /*@}*/ - /* International keyboard syms */ + /** @name International keyboard syms */ + /*@{*/ SDLK_WORLD_0 = 160, /* 0xA0 */ SDLK_WORLD_1 = 161, SDLK_WORLD_2 = 162, @@ -206,8 +210,10 @@ typedef enum { SDLK_WORLD_93 = 253, SDLK_WORLD_94 = 254, SDLK_WORLD_95 = 255, /* 0xFF */ + /*@}*/ - /* Numeric keypad */ + /** @name Numeric keypad */ + /*@{*/ SDLK_KP0 = 256, SDLK_KP1 = 257, SDLK_KP2 = 258, @@ -225,8 +231,10 @@ typedef enum { SDLK_KP_PLUS = 270, SDLK_KP_ENTER = 271, SDLK_KP_EQUALS = 272, + /*@}*/ - /* Arrows + Home/End pad */ + /** @name Arrows + Home/End pad */ + /*@{*/ SDLK_UP = 273, SDLK_DOWN = 274, SDLK_RIGHT = 275, @@ -236,8 +244,10 @@ typedef enum { SDLK_END = 279, SDLK_PAGEUP = 280, SDLK_PAGEDOWN = 281, + /*@}*/ - /* Function keys */ + /** @name Function keys */ + /*@{*/ SDLK_F1 = 282, SDLK_F2 = 283, SDLK_F3 = 284, @@ -253,8 +263,10 @@ typedef enum { SDLK_F13 = 294, SDLK_F14 = 295, SDLK_F15 = 296, + /*@}*/ - /* Key state modifier keys */ + /** @name Key state modifier keys */ + /*@{*/ SDLK_NUMLOCK = 300, SDLK_CAPSLOCK = 301, SDLK_SCROLLOCK = 302, @@ -266,27 +278,30 @@ typedef enum { SDLK_LALT = 308, SDLK_RMETA = 309, SDLK_LMETA = 310, - SDLK_LSUPER = 311, /* Left "Windows" key */ - SDLK_RSUPER = 312, /* Right "Windows" key */ - SDLK_MODE = 313, /* "Alt Gr" key */ - SDLK_COMPOSE = 314, /* Multi-key compose key */ + SDLK_LSUPER = 311, /**< Left "Windows" key */ + SDLK_RSUPER = 312, /**< Right "Windows" key */ + SDLK_MODE = 313, /**< "Alt Gr" key */ + SDLK_COMPOSE = 314, /**< Multi-key compose key */ + /*@}*/ - /* Miscellaneous function keys */ + /** @name Miscellaneous function keys */ + /*@{*/ SDLK_HELP = 315, SDLK_PRINT = 316, SDLK_SYSREQ = 317, SDLK_BREAK = 318, SDLK_MENU = 319, - SDLK_POWER = 320, /* Power Macintosh power key */ - SDLK_EURO = 321, /* Some european keyboards */ - SDLK_UNDO = 322, /* Atari keyboard has Undo */ + SDLK_POWER = 320, /**< Power Macintosh power key */ + SDLK_EURO = 321, /**< Some european keyboards */ + SDLK_UNDO = 322, /**< Atari keyboard has Undo */ + /*@}*/ /* Add any other keys here */ SDLK_LAST } SDLKey; -/* Enumeration of valid key mods (possibly OR'd together) */ +/** Enumeration of valid key mods (possibly OR'd together) */ typedef enum { KMOD_NONE = 0x0000, KMOD_LSHIFT= 0x0001, diff --git a/include/SDL_loadso.h b/include/SDL_loadso.h index ce9644949..0c5e5362d 100644 --- a/include/SDL_loadso.h +++ b/include/SDL_loadso.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -20,22 +20,24 @@ slouken@libsdl.org */ -/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* System dependent library loading routines */ +/** @file SDL_loadso.h + * System dependent library loading routines + */ -/* Some things to keep in mind: - - These functions only work on C function names. Other languages may - have name mangling and intrinsic language support that varies from - compiler to compiler. - - Make sure you declare your function pointers with the same calling - convention as the actual library function. Your code will crash - mysteriously if you do not do this. - - Avoid namespace collisions. If you load a symbol from the library, - it is not defined whether or not it goes into the global symbol - namespace for the application. If it does and it conflicts with - symbols in your code or other shared libraries, you will not get - the results you expect. :) -*/ +/** @file SDL_loadso.h + * Some things to keep in mind: + * - These functions only work on C function names. Other languages may + * have name mangling and intrinsic language support that varies from + * compiler to compiler. + * - Make sure you declare your function pointers with the same calling + * convention as the actual library function. Your code will crash + * mysteriously if you do not do this. + * - Avoid namespace collisions. If you load a symbol from the library, + * it is not defined whether or not it goes into the global symbol + * namespace for the application. If it does and it conflicts with + * symbols in your code or other shared libraries, you will not get + * the results you expect. :) + */ #ifndef _SDL_loadso_h @@ -50,19 +52,21 @@ extern "C" { #endif -/* This function dynamically loads a shared object and returns a pointer +/** + * This function dynamically loads a shared object and returns a pointer * to the object handle (or NULL if there was an error). * The 'sofile' parameter is a system dependent name of the object file. */ extern DECLSPEC void * SDLCALL SDL_LoadObject(const char *sofile); -/* Given an object handle, this function looks up the address of the +/** + * Given an object handle, this function looks up the address of the * named function in the shared object and returns it. This address * is no longer valid after calling SDL_UnloadObject(). */ extern DECLSPEC void * SDLCALL SDL_LoadFunction(void *handle, const char *name); -/* Unload a shared object from memory */ +/** Unload a shared object from memory */ extern DECLSPEC void SDLCALL SDL_UnloadObject(void *handle); /* Ends C function definitions when using C++ */ diff --git a/include/SDL_main.h b/include/SDL_main.h index cf8b728dc..ab50ef1e2 100644 --- a/include/SDL_main.h +++ b/include/SDL_main.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -25,7 +25,9 @@ #include "SDL_stdinc.h" -/* Redefine main() on Win32 and MacOS so that it is called by winmain.c */ +/** @file SDL_main.h + * Redefine main() on Win32 and MacOS so that it is called by winmain.c + */ #if defined(__WIN32__) || \ (defined(__MWERKS__) && !defined(__BEOS__)) || \ @@ -38,22 +40,25 @@ #define C_LINKAGE #endif /* __cplusplus */ -/* The application's main() function must be called with C linkage, - and should be declared like this: -#ifdef __cplusplus -extern "C" -#endif - int main(int argc, char *argv[]) - { - } +/** The application's main() function must be called with C linkage, + * and should be declared like this: + * @code + * #ifdef __cplusplus + * extern "C" + * #endif + * int main(int argc, char *argv[]) + * { + * } + * @endcode */ #define main SDL_main -/* The prototype for the application's main() function */ +/** The prototype for the application's main() function */ extern C_LINKAGE int SDL_main(int argc, char *argv[]); -/* From the SDL library code -- needed for registering the app on Win32 */ +/** @name From the SDL library code -- needed for registering the app on Win32 */ +/*@{*/ #ifdef __WIN32__ #include "begin_code.h" @@ -61,19 +66,21 @@ extern C_LINKAGE int SDL_main(int argc, char *argv[]); extern "C" { #endif -/* This should be called from your WinMain() function, if any */ +/** This should be called from your WinMain() function, if any */ extern DECLSPEC void SDLCALL SDL_SetModuleHandle(void *hInst); -/* This can also be called, but is no longer necessary */ +/** This can also be called, but is no longer necessary */ extern DECLSPEC int SDLCALL SDL_RegisterApp(char *name, Uint32 style, void *hInst); -/* This can also be called, but is no longer necessary (SDL_Quit calls it) */ +/** This can also be called, but is no longer necessary (SDL_Quit calls it) */ extern DECLSPEC void SDLCALL SDL_UnregisterApp(void); #ifdef __cplusplus } #endif #include "close_code.h" #endif +/*@}*/ -/* From the SDL library code -- needed for registering QuickDraw on MacOS */ +/** @name From the SDL library code -- needed for registering QuickDraw on MacOS */ +/*@{*/ #if defined(__MACOS__) #include "begin_code.h" @@ -81,10 +88,10 @@ extern DECLSPEC void SDLCALL SDL_UnregisterApp(void); extern "C" { #endif -/* Forward declaration so we don't need to include QuickDraw.h */ +/** Forward declaration so we don't need to include QuickDraw.h */ struct QDGlobals; -/* This should be called from your main() function, if any */ +/** This should be called from your main() function, if any */ extern DECLSPEC void SDLCALL SDL_InitQuickDraw(struct QDGlobals *the_qd); #ifdef __cplusplus @@ -92,6 +99,7 @@ extern DECLSPEC void SDLCALL SDL_InitQuickDraw(struct QDGlobals *the_qd); #endif #include "close_code.h" #endif +/*@}*/ #endif /* Need to redefine main()? */ diff --git a/include/SDL_mouse.h b/include/SDL_mouse.h index c2364d859..7c563b94d 100644 --- a/include/SDL_mouse.h +++ b/include/SDL_mouse.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -20,7 +20,9 @@ slouken@libsdl.org */ -/* Include file for SDL mouse event handling */ +/** @file SDL_mouse.h + * Include file for SDL mouse event handling + */ #ifndef _SDL_mouse_h #define _SDL_mouse_h @@ -35,18 +37,18 @@ extern "C" { #endif -typedef struct WMcursor WMcursor; /* Implementation dependent */ +typedef struct WMcursor WMcursor; /**< Implementation dependent */ typedef struct SDL_Cursor { - SDL_Rect area; /* The area of the mouse cursor */ - Sint16 hot_x, hot_y; /* The "tip" of the cursor */ - Uint8 *data; /* B/W cursor data */ - Uint8 *mask; /* B/W cursor mask */ - Uint8 *save[2]; /* Place to save cursor area */ - WMcursor *wm_cursor; /* Window-manager cursor */ + SDL_Rect area; /**< The area of the mouse cursor */ + Sint16 hot_x, hot_y; /**< The "tip" of the cursor */ + Uint8 *data; /**< B/W cursor data */ + Uint8 *mask; /**< B/W cursor mask */ + Uint8 *save[2]; /**< Place to save cursor area */ + WMcursor *wm_cursor; /**< Window-manager cursor */ } SDL_Cursor; /* Function prototypes */ -/* +/** * Retrieve the current state of the mouse. * The current button state is returned as a button bitmask, which can * be tested using the SDL_BUTTON(X) macros, and x and y are set to the @@ -54,7 +56,7 @@ typedef struct SDL_Cursor { */ extern DECLSPEC Uint8 SDLCALL SDL_GetMouseState(int *x, int *y); -/* +/** * Retrieve the current state of the mouse. * The current button state is returned as a button bitmask, which can * be tested using the SDL_BUTTON(X) macros, and x and y are set to the @@ -62,12 +64,12 @@ extern DECLSPEC Uint8 SDLCALL SDL_GetMouseState(int *x, int *y); */ extern DECLSPEC Uint8 SDLCALL SDL_GetRelativeMouseState(int *x, int *y); -/* +/** * Set the position of the mouse cursor (generates a mouse motion event) */ extern DECLSPEC void SDLCALL SDL_WarpMouse(Uint16 x, Uint16 y); -/* +/** * Create a cursor using the specified data and mask (in MSB format). * The cursor width must be a multiple of 8 bits. * @@ -83,24 +85,24 @@ extern DECLSPEC void SDLCALL SDL_WarpMouse(Uint16 x, Uint16 y); extern DECLSPEC SDL_Cursor * SDLCALL SDL_CreateCursor (Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y); -/* +/** * Set the currently active cursor to the specified one. * If the cursor is currently visible, the change will be immediately * represented on the display. */ extern DECLSPEC void SDLCALL SDL_SetCursor(SDL_Cursor *cursor); -/* +/** * Returns the currently active cursor. */ extern DECLSPEC SDL_Cursor * SDLCALL SDL_GetCursor(void); -/* +/** * Deallocates a cursor created with SDL_CreateCursor(). */ extern DECLSPEC void SDLCALL SDL_FreeCursor(SDL_Cursor *cursor); -/* +/** * Toggle whether or not the cursor is shown on the screen. * The cursor start off displayed, but can be turned off. * SDL_ShowCursor() returns 1 if the cursor was being displayed @@ -109,12 +111,13 @@ extern DECLSPEC void SDLCALL SDL_FreeCursor(SDL_Cursor *cursor); */ extern DECLSPEC int SDLCALL SDL_ShowCursor(int toggle); -/* Used as a mask when testing buttons in buttonstate - Button 1: Left mouse button - Button 2: Middle mouse button - Button 3: Right mouse button - Button 4: Mouse wheel up (may also be a real button) - Button 5: Mouse wheel down (may also be a real button) +/*@{*/ +/** Used as a mask when testing buttons in buttonstate + * Button 1: Left mouse button + * Button 2: Middle mouse button + * Button 3: Right mouse button + * Button 4: Mouse wheel up (may also be a real button) + * Button 5: Mouse wheel down (may also be a real button) */ #define SDL_BUTTON(X) (1 << ((X)-1)) #define SDL_BUTTON_LEFT 1 @@ -122,10 +125,14 @@ extern DECLSPEC int SDLCALL SDL_ShowCursor(int toggle); #define SDL_BUTTON_RIGHT 3 #define SDL_BUTTON_WHEELUP 4 #define SDL_BUTTON_WHEELDOWN 5 +#define SDL_BUTTON_X1 6 +#define SDL_BUTTON_X2 7 #define SDL_BUTTON_LMASK SDL_BUTTON(SDL_BUTTON_LEFT) #define SDL_BUTTON_MMASK SDL_BUTTON(SDL_BUTTON_MIDDLE) #define SDL_BUTTON_RMASK SDL_BUTTON(SDL_BUTTON_RIGHT) - +#define SDL_BUTTON_X1MASK SDL_BUTTON(SDL_BUTTON_X1) +#define SDL_BUTTON_X2MASK SDL_BUTTON(SDL_BUTTON_X2) +/*@}*/ /* Ends C function definitions when using C++ */ #ifdef __cplusplus diff --git a/include/SDL_mutex.h b/include/SDL_mutex.h index 00165281d..c8da9b1a0 100644 --- a/include/SDL_mutex.h +++ b/include/SDL_mutex.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -23,10 +23,11 @@ #ifndef _SDL_mutex_h #define _SDL_mutex_h -/* Functions to provide thread synchronization primitives - - These are independent of the other SDL routines. -*/ +/** @file SDL_mutex.h + * Functions to provide thread synchronization primitives + * + * @note These are independent of the other SDL routines. + */ #include "SDL_stdinc.h" #include "SDL_error.h" @@ -37,122 +38,135 @@ extern "C" { #endif -/* Synchronization functions which can time out return this value - if they time out. -*/ +/** Synchronization functions which can time out return this value + * if they time out. + */ #define SDL_MUTEX_TIMEDOUT 1 -/* This is the timeout value which corresponds to never time out */ +/** This is the timeout value which corresponds to never time out */ #define SDL_MUTEX_MAXWAIT (~(Uint32)0) /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Mutex functions */ +/** @name Mutex functions */ /*@{*/ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* The SDL mutex structure, defined in SDL_mutex.c */ +/** The SDL mutex structure, defined in SDL_mutex.c */ struct SDL_mutex; typedef struct SDL_mutex SDL_mutex; -/* Create a mutex, initialized unlocked */ +/** Create a mutex, initialized unlocked */ extern DECLSPEC SDL_mutex * SDLCALL SDL_CreateMutex(void); -/* Lock the mutex (Returns 0, or -1 on error) */ #define SDL_LockMutex(m) SDL_mutexP(m) +/** Lock the mutex + * @return 0, or -1 on error + */ extern DECLSPEC int SDLCALL SDL_mutexP(SDL_mutex *mutex); -/* Unlock the mutex (Returns 0, or -1 on error) - It is an error to unlock a mutex that has not been locked by - the current thread, and doing so results in undefined behavior. - */ #define SDL_UnlockMutex(m) SDL_mutexV(m) +/** Unlock the mutex + * @return 0, or -1 on error + * + * It is an error to unlock a mutex that has not been locked by + * the current thread, and doing so results in undefined behavior. + */ extern DECLSPEC int SDLCALL SDL_mutexV(SDL_mutex *mutex); -/* Destroy a mutex */ +/** Destroy a mutex */ extern DECLSPEC void SDLCALL SDL_DestroyMutex(SDL_mutex *mutex); +/*@}*/ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Semaphore functions */ +/** @name Semaphore functions */ /*@{*/ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* The SDL semaphore structure, defined in SDL_sem.c */ +/** The SDL semaphore structure, defined in SDL_sem.c */ struct SDL_semaphore; typedef struct SDL_semaphore SDL_sem; -/* Create a semaphore, initialized with value, returns NULL on failure. */ +/** Create a semaphore, initialized with value, returns NULL on failure. */ extern DECLSPEC SDL_sem * SDLCALL SDL_CreateSemaphore(Uint32 initial_value); -/* Destroy a semaphore */ +/** Destroy a semaphore */ extern DECLSPEC void SDLCALL SDL_DestroySemaphore(SDL_sem *sem); -/* This function suspends the calling thread until the semaphore pointed +/** + * This function suspends the calling thread until the semaphore pointed * to by sem has a positive count. It then atomically decreases the semaphore * count. */ extern DECLSPEC int SDLCALL SDL_SemWait(SDL_sem *sem); -/* Non-blocking variant of SDL_SemWait(), returns 0 if the wait succeeds, - SDL_MUTEX_TIMEDOUT if the wait would block, and -1 on error. -*/ +/** Non-blocking variant of SDL_SemWait(). + * @return 0 if the wait succeeds, + * SDL_MUTEX_TIMEDOUT if the wait would block, and -1 on error. + */ extern DECLSPEC int SDLCALL SDL_SemTryWait(SDL_sem *sem); -/* Variant of SDL_SemWait() with a timeout in milliseconds, returns 0 if - the wait succeeds, SDL_MUTEX_TIMEDOUT if the wait does not succeed in - the allotted time, and -1 on error. - On some platforms this function is implemented by looping with a delay - of 1 ms, and so should be avoided if possible. -*/ +/** Variant of SDL_SemWait() with a timeout in milliseconds, returns 0 if + * the wait succeeds, SDL_MUTEX_TIMEDOUT if the wait does not succeed in + * the allotted time, and -1 on error. + * + * On some platforms this function is implemented by looping with a delay + * of 1 ms, and so should be avoided if possible. + */ extern DECLSPEC int SDLCALL SDL_SemWaitTimeout(SDL_sem *sem, Uint32 ms); -/* Atomically increases the semaphore's count (not blocking), returns 0, - or -1 on error. +/** Atomically increases the semaphore's count (not blocking). + * @return 0, or -1 on error. */ extern DECLSPEC int SDLCALL SDL_SemPost(SDL_sem *sem); -/* Returns the current count of the semaphore */ +/** Returns the current count of the semaphore */ extern DECLSPEC Uint32 SDLCALL SDL_SemValue(SDL_sem *sem); +/*@}*/ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* Condition variable functions */ +/** @name Condition_variable_functions */ /*@{*/ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* The SDL condition variable structure, defined in SDL_cond.c */ +/*@{*/ +/** The SDL condition variable structure, defined in SDL_cond.c */ struct SDL_cond; typedef struct SDL_cond SDL_cond; +/*@}*/ -/* Create a condition variable */ +/** Create a condition variable */ extern DECLSPEC SDL_cond * SDLCALL SDL_CreateCond(void); -/* Destroy a condition variable */ +/** Destroy a condition variable */ extern DECLSPEC void SDLCALL SDL_DestroyCond(SDL_cond *cond); -/* Restart one of the threads that are waiting on the condition variable, - returns 0 or -1 on error. +/** Restart one of the threads that are waiting on the condition variable, + * @return 0 or -1 on error. */ extern DECLSPEC int SDLCALL SDL_CondSignal(SDL_cond *cond); -/* Restart all threads that are waiting on the condition variable, - returns 0 or -1 on error. +/** Restart all threads that are waiting on the condition variable, + * @return 0 or -1 on error. */ extern DECLSPEC int SDLCALL SDL_CondBroadcast(SDL_cond *cond); -/* Wait on the condition variable, unlocking the provided mutex. - The mutex must be locked before entering this function! - The mutex is re-locked once the condition variable is signaled. - Returns 0 when it is signaled, or -1 on error. +/** Wait on the condition variable, unlocking the provided mutex. + * The mutex must be locked before entering this function! + * The mutex is re-locked once the condition variable is signaled. + * @return 0 when it is signaled, or -1 on error. */ extern DECLSPEC int SDLCALL SDL_CondWait(SDL_cond *cond, SDL_mutex *mut); -/* Waits for at most 'ms' milliseconds, and returns 0 if the condition - variable is signaled, SDL_MUTEX_TIMEDOUT if the condition is not - signaled in the allotted time, and -1 on error. - On some platforms this function is implemented by looping with a delay - of 1 ms, and so should be avoided if possible. -*/ +/** Waits for at most 'ms' milliseconds, and returns 0 if the condition + * variable is signaled, SDL_MUTEX_TIMEDOUT if the condition is not + * signaled in the allotted time, and -1 on error. + * On some platforms this function is implemented by looping with a delay + * of 1 ms, and so should be avoided if possible. + */ extern DECLSPEC int SDLCALL SDL_CondWaitTimeout(SDL_cond *cond, SDL_mutex *mutex, Uint32 ms); +/*@}*/ + /* Ends C function definitions when using C++ */ #ifdef __cplusplus } @@ -160,3 +174,4 @@ extern DECLSPEC int SDLCALL SDL_CondWaitTimeout(SDL_cond *cond, SDL_mutex *mutex #include "close_code.h" #endif /* _SDL_mutex_h */ + diff --git a/include/SDL_opengl.h b/include/SDL_opengl.h index 36c0a3099..3d791d69b 100644 --- a/include/SDL_opengl.h +++ b/include/SDL_opengl.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -20,7 +20,9 @@ slouken@libsdl.org */ -/* This is a simple file to encapsulate the OpenGL API headers */ +/** @file SDL_opengl.h + * This is a simple file to encapsulate the OpenGL API headers + */ #include "SDL_config.h" @@ -48,10 +50,12 @@ #undef __glext_h_ #endif -/* This file taken from "GLext.h" from the Jeff Molofee OpenGL tutorials. - It is included here because glext.h is not available on some systems. - If you don't want this version included, simply define "NO_SDL_GLEXT" +/** @name GLext.h + * This file taken from "GLext.h" from the Jeff Molofee OpenGL tutorials. + * It is included here because glext.h is not available on some systems. + * If you don't want this version included, simply define "NO_SDL_GLEXT" */ +/*@{*/ #ifndef NO_SDL_GLEXT #if !defined(__glext_h_) && !defined(GL_GLEXT_LEGACY) #define __glext_h_ @@ -3104,21 +3108,35 @@ typedef char GLchar; /* native character */ #ifndef GL_VERSION_1_5 /* GL types for handling large vertex buffer objects */ +#ifdef __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 */ +#ifdef __APPLE__ +typedef long GLintptrARB; +typedef long GLsizeiptrARB; +#else typedef ptrdiff_t GLintptrARB; typedef ptrdiff_t GLsizeiptrARB; #endif +#endif #ifndef GL_ARB_shader_objects /* GL types for handling shader object handles and program/shader text */ typedef char GLcharARB; /* native character */ +#if defined(__APPLE__) +typedef void *GLhandleARB; /* shader object handle */ +#else typedef unsigned int GLhandleARB; /* shader object handle */ #endif +#endif /* GL types for "half" precision (s10e5) float data in host memory */ #ifndef GL_ARB_half_float_pixel @@ -6549,3 +6567,4 @@ typedef void (APIENTRYP PFNGLSTRINGMARKERGREMEDYPROC) (GLsizei len, const GLvoid #endif #endif /* NO_SDL_GLEXT */ +/*@}*/ diff --git a/include/SDL_platform.h b/include/SDL_platform.h index 80274bc43..48540a85d 100644 --- a/include/SDL_platform.h +++ b/include/SDL_platform.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -20,7 +20,9 @@ slouken@libsdl.org */ -/* Try to get a standard set of platform defines */ +/** @file SDL_platform.h + * Try to get a standard set of platform defines + */ #ifndef _SDL_platform_h #define _SDL_platform_h @@ -29,14 +31,14 @@ #undef __AIX__ #define __AIX__ 1 #endif -#if defined(AMIGA) || defined(__AMIGA) || defined(__amigados__) -#undef __AMIGA__ -#define __AMIGA__ 1 -#endif #if defined(__BEOS__) #undef __BEOS__ #define __BEOS__ 1 #endif +#if defined(__HAIKU__) +#undef __HAIKU__ +#define __HAIKU__ 1 +#endif #if defined(bsdi) || defined(__bsdi) || defined(__bsdi__) #undef __BSDI__ #define __BSDI__ 1 @@ -45,10 +47,14 @@ #undef __DREAMCAST__ #define __DREAMCAST__ 1 #endif -#if defined(__FreeBSD__) || defined(__DragonFly__) +#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__) #undef __FREEBSD__ #define __FREEBSD__ 1 #endif +#if defined(__HAIKU__) +#undef __HAIKU__ +#define __HAIKU__ 1 +#endif #if defined(hpux) || defined(__hpux) || defined(__hpux__) #undef __HPUX__ #define __HPUX__ 1 diff --git a/include/SDL_quit.h b/include/SDL_quit.h index fcf40fbdd..abd2ec6c9 100644 --- a/include/SDL_quit.h +++ b/include/SDL_quit.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -20,7 +20,9 @@ slouken@libsdl.org */ -/* Include file for SDL quit event handling */ +/** @file SDL_quit.h + * Include file for SDL quit event handling + */ #ifndef _SDL_quit_h #define _SDL_quit_h @@ -28,22 +30,25 @@ #include "SDL_stdinc.h" #include "SDL_error.h" -/* - An SDL_QUITEVENT is generated when the user tries to close the application - window. If it is ignored or filtered out, the window will remain open. - If it is not ignored or filtered, it is queued normally and the window - is allowed to close. When the window is closed, screen updates will - complete, but have no effect. +/** @file SDL_quit.h + * An SDL_QUITEVENT is generated when the user tries to close the application + * window. If it is ignored or filtered out, the window will remain open. + * If it is not ignored or filtered, it is queued normally and the window + * is allowed to close. When the window is closed, screen updates will + * complete, but have no effect. + * + * SDL_Init() installs signal handlers for SIGINT (keyboard interrupt) + * and SIGTERM (system termination request), if handlers do not already + * exist, that generate SDL_QUITEVENT events as well. There is no way + * to determine the cause of an SDL_QUITEVENT, but setting a signal + * handler in your application will override the default generation of + * quit events for that signal. + */ - SDL_Init() installs signal handlers for SIGINT (keyboard interrupt) - and SIGTERM (system termination request), if handlers do not already - exist, that generate SDL_QUITEVENT events as well. There is no way - to determine the cause of an SDL_QUITEVENT, but setting a signal - handler in your application will override the default generation of - quit events for that signal. -*/ +/** @file SDL_quit.h + * There are no functions directly affecting the quit event + */ -/* There are no functions directly affecting the quit event */ #define SDL_QuitRequested() \ (SDL_PumpEvents(), SDL_PeepEvents(NULL,0,SDL_PEEKEVENT,SDL_QUITMASK)) diff --git a/include/SDL_rwops.h b/include/SDL_rwops.h index d7e01d8fd..98361d7e1 100644 --- a/include/SDL_rwops.h +++ b/include/SDL_rwops.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -20,9 +20,10 @@ slouken@libsdl.org */ -/* This file provides a general interface for SDL to read and write - data sources. It can easily be extended to files, memory, etc. -*/ +/** @file SDL_rwops.h + * This file provides a general interface for SDL to read and write + * data sources. It can easily be extended to files, memory, etc. + */ #ifndef _SDL_rwops_h #define _SDL_rwops_h @@ -36,36 +37,41 @@ extern "C" { #endif -/* This is the read/write operation structure -- very basic */ +/** This is the read/write operation structure -- very basic */ typedef struct SDL_RWops { - /* Seek to 'offset' relative to whence, one of stdio's whence values: - SEEK_SET, SEEK_CUR, SEEK_END - Returns the final offset in the data source. + /** Seek to 'offset' relative to whence, one of stdio's whence values: + * SEEK_SET, SEEK_CUR, SEEK_END + * Returns the final offset in the data source. */ int (SDLCALL *seek)(struct SDL_RWops *context, int offset, int whence); - /* Read up to 'num' objects each of size 'objsize' from the data - source to the area pointed at by 'ptr'. - Returns the number of objects read, or -1 if the read failed. + /** Read up to 'maxnum' objects each of size 'size' from the data + * source to the area pointed at by 'ptr'. + * Returns the number of objects read, or -1 if the read failed. */ int (SDLCALL *read)(struct SDL_RWops *context, void *ptr, int size, int maxnum); - /* Write exactly 'num' objects each of size 'objsize' from the area - pointed at by 'ptr' to data source. - Returns 'num', or -1 if the write failed. + /** Write exactly 'num' objects each of size 'objsize' from the area + * pointed at by 'ptr' to data source. + * Returns 'num', or -1 if the write failed. */ int (SDLCALL *write)(struct SDL_RWops *context, const void *ptr, int size, int num); - /* Close and free an allocated SDL_FSops structure */ + /** Close and free an allocated SDL_FSops structure */ int (SDLCALL *close)(struct SDL_RWops *context); Uint32 type; union { -#ifdef __WIN32__ +#if defined(__WIN32__) && !defined(__SYMBIAN32__) struct { - int append; - void* h; + int append; + void *h; + struct { + void *data; + int size; + int left; + } buffer; } win32io; #endif #ifdef HAVE_STDIO_H @@ -87,7 +93,8 @@ typedef struct SDL_RWops { } SDL_RWops; -/* Functions to create SDL_RWops structures from various data sources */ +/** @name Functions to create SDL_RWops structures from various data sources */ +/*@{*/ extern DECLSPEC SDL_RWops * SDLCALL SDL_RWFromFile(const char *file, const char *mode); @@ -101,34 +108,43 @@ extern DECLSPEC SDL_RWops * SDLCALL SDL_RWFromConstMem(const void *mem, int size extern DECLSPEC SDL_RWops * SDLCALL SDL_AllocRW(void); extern DECLSPEC void SDLCALL SDL_FreeRW(SDL_RWops *area); -#define RW_SEEK_SET 0 /* Seek from the beginning of data */ -#define RW_SEEK_CUR 1 /* Seek relative to current read point */ -#define RW_SEEK_END 2 /* Seek relative to the end of data */ +/*@}*/ -/* Macros to easily read and write from an SDL_RWops structure */ +/** @name Seek Reference Points */ +/*@{*/ +#define RW_SEEK_SET 0 /**< Seek from the beginning of data */ +#define RW_SEEK_CUR 1 /**< Seek relative to current read point */ +#define RW_SEEK_END 2 /**< Seek relative to the end of data */ +/*@}*/ + +/** @name Macros to easily read and write from an SDL_RWops structure */ +/*@{*/ #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence) #define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR) #define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n) #define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n) #define SDL_RWclose(ctx) (ctx)->close(ctx) +/*@}*/ - -/* Read an item of the specified endianness and return in native format */ +/** @name Read an item of the specified endianness and return in native format */ +/*@{*/ extern DECLSPEC Uint16 SDLCALL SDL_ReadLE16(SDL_RWops *src); extern DECLSPEC Uint16 SDLCALL SDL_ReadBE16(SDL_RWops *src); extern DECLSPEC Uint32 SDLCALL SDL_ReadLE32(SDL_RWops *src); extern DECLSPEC Uint32 SDLCALL SDL_ReadBE32(SDL_RWops *src); extern DECLSPEC Uint64 SDLCALL SDL_ReadLE64(SDL_RWops *src); extern DECLSPEC Uint64 SDLCALL SDL_ReadBE64(SDL_RWops *src); +/*@}*/ -/* Write an item of native format to the specified endianness */ +/** @name Write an item of native format to the specified endianness */ +/*@{*/ extern DECLSPEC int SDLCALL SDL_WriteLE16(SDL_RWops *dst, Uint16 value); extern DECLSPEC int SDLCALL SDL_WriteBE16(SDL_RWops *dst, Uint16 value); extern DECLSPEC int SDLCALL SDL_WriteLE32(SDL_RWops *dst, Uint32 value); extern DECLSPEC int SDLCALL SDL_WriteBE32(SDL_RWops *dst, Uint32 value); extern DECLSPEC int SDLCALL SDL_WriteLE64(SDL_RWops *dst, Uint64 value); extern DECLSPEC int SDLCALL SDL_WriteBE64(SDL_RWops *dst, Uint64 value); - +/*@}*/ /* Ends C function definitions when using C++ */ #ifdef __cplusplus diff --git a/include/SDL_stdinc.h b/include/SDL_stdinc.h index 62535629f..35a4fdde5 100644 --- a/include/SDL_stdinc.h +++ b/include/SDL_stdinc.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -20,7 +20,9 @@ slouken@libsdl.org */ -/* This is a general header that includes C language support */ +/** @file SDL_stdinc.h + * This is a general header that includes C language support + */ #ifndef _SDL_stdinc_h #define _SDL_stdinc_h @@ -68,16 +70,27 @@ #ifdef HAVE_CTYPE_H # include #endif -#ifdef HAVE_ICONV_H +#if defined(HAVE_ICONV) && defined(HAVE_ICONV_H) # include #endif -/* The number of elements in an array */ +/** The number of elements in an array */ #define SDL_arraysize(array) (sizeof(array)/sizeof(array[0])) #define SDL_TABLESIZE(table) SDL_arraysize(table) -/* Basic data types */ -typedef enum SDL_bool { +/* Use proper C++ casts when compiled as C++ to be compatible with the option + -Wold-style-cast of GCC (and -Werror=old-style-cast in GCC 4.2 and above. */ +#ifdef __cplusplus +#define SDL_reinterpret_cast(type, expression) reinterpret_cast(expression) +#define SDL_static_cast(type, expression) static_cast(expression) +#else +#define SDL_reinterpret_cast(type, expression) ((type)(expression)) +#define SDL_static_cast(type, expression) ((type)(expression)) +#endif + +/** @name Basic data types */ +/*@{*/ +typedef enum { SDL_FALSE = 0, SDL_TRUE = 1 } SDL_bool; @@ -91,7 +104,9 @@ typedef uint32_t Uint32; #ifdef SDL_HAS_64BIT_TYPE typedef int64_t Sint64; +#ifndef SYMBIAN32_GCCE typedef uint64_t Uint64; +#endif #else /* This is really just a hack to prevent the compiler from complaining */ typedef struct { @@ -100,7 +115,10 @@ typedef struct { } Uint64, Sint64; #endif -/* Make sure the types really have the right sizes */ +/*@}*/ + +/** @name Make sure the types really have the right sizes */ +/*@{*/ #define SDL_COMPILE_TIME_ASSERT(name, x) \ typedef int SDL_dummy_ ## name[(x) * 2 - 1] @@ -112,12 +130,14 @@ SDL_COMPILE_TIME_ASSERT(uint32, sizeof(Uint32) == 4); SDL_COMPILE_TIME_ASSERT(sint32, sizeof(Sint32) == 4); SDL_COMPILE_TIME_ASSERT(uint64, sizeof(Uint64) == 8); SDL_COMPILE_TIME_ASSERT(sint64, sizeof(Sint64) == 8); +/*@}*/ -/* Check to make sure enums are the size of ints, for structure packing. - For both Watcom C/C++ and Borland C/C++ the compiler option that makes - enums having the size of an int must be enabled. - This is "-b" for Borland C/C++ and "-ei" for Watcom C/C++ (v11). -*/ +/** @name Enum Size Check + * Check to make sure enums are the size of ints, for structure packing. + * For both Watcom C/C++ and Borland C/C++ the compiler option that makes + * enums having the size of an int must be enabled. + * This is "-b" for Borland C/C++ and "-ei" for Watcom C/C++ (v11). + */ /* Enable enums always int in CodeWarrior (for MPW use "-enum int") */ #ifdef __MWERKS__ #pragma enumsalwaysint on @@ -127,8 +147,10 @@ typedef enum { DUMMY_ENUM_VALUE } SDL_DUMMY_ENUM; +#ifndef __NDS__ SDL_COMPILE_TIME_ASSERT(enum, sizeof(SDL_DUMMY_ENUM) == sizeof(int)); - +#endif +/*@}*/ #include "begin_code.h" /* Set up for C function definitions, even when using C++ */ @@ -170,6 +192,8 @@ extern DECLSPEC void SDLCALL SDL_free(void *mem); # define alloca _alloca # elif defined(__WATCOMC__) # include +# elif defined(__BORLANDC__) +# include # elif defined(__DMC__) # include # elif defined(__AIX__) @@ -181,10 +205,10 @@ extern DECLSPEC void SDLCALL SDL_free(void *mem); # endif #endif #ifdef HAVE_ALLOCA -#define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*count) +#define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count)) #define SDL_stack_free(data) #else -#define SDL_stack_alloc(type, count) (type*)SDL_malloc(sizeof(type)*count) +#define SDL_stack_alloc(type, count) (type*)SDL_malloc(sizeof(type)*(count)) #define SDL_stack_free(data) SDL_free(data) #endif @@ -242,7 +266,7 @@ do { \ "cld\n\t" \ "rep ; stosl\n\t" \ : "=&D" (u0), "=&a" (u1), "=&c" (u2) \ - : "0" (dst), "1" (val), "2" ((Uint32)(len)) \ + : "0" (dst), "1" (val), "2" (SDL_static_cast(Uint32, len)) \ : "memory" ); \ } while(0) #endif @@ -251,8 +275,9 @@ do { \ do { \ unsigned _count = (len); \ unsigned _n = (_count + 3) / 4; \ - Uint32 *_p = (Uint32 *)(dst); \ + Uint32 *_p = SDL_static_cast(Uint32 *, dst); \ Uint32 _val = (val); \ + if (len == 0) break; \ switch (_count % 4) { \ case 0: do { *_p++ = _val; \ case 3: *_p++ = _val; \ @@ -263,7 +288,10 @@ do { \ } while(0) #endif -#if defined(__GNUC__) && defined(i386) +/* We can count on memcpy existing on Mac OS X and being well-tuned. */ +#if defined(__MACH__) && defined(__APPLE__) +#define SDL_memcpy(dst, src, len) memcpy(dst, src, len) +#elif defined(__GNUC__) && defined(i386) #define SDL_memcpy(dst, src, len) \ do { \ int u0, u1, u2; \ @@ -278,7 +306,7 @@ do { \ "movsb\n" \ "2:" \ : "=&c" (u0), "=&D" (u1), "=&S" (u2) \ - : "0" ((unsigned)(len)/4), "q" (len), "1" (dst),"2" (src) \ + : "0" (SDL_static_cast(unsigned, len)/4), "q" (len), "1" (dst),"2" (src) \ : "memory" ); \ } while(0) #endif @@ -292,7 +320,10 @@ extern DECLSPEC void * SDLCALL SDL_memcpy(void *dst, const void *src, size_t len #endif #endif -#if defined(__GNUC__) && defined(i386) +/* We can count on memcpy existing on Mac OS X and being well-tuned. */ +#if defined(__MACH__) && defined(__APPLE__) +#define SDL_memcpy4(dst, src, len) memcpy(dst, src, (len)*4) +#elif defined(__GNUC__) && defined(i386) #define SDL_memcpy4(dst, src, len) \ do { \ int ecx, edi, esi; \ @@ -300,7 +331,7 @@ do { \ "cld\n\t" \ "rep ; movsl" \ : "=&c" (ecx), "=&D" (edi), "=&S" (esi) \ - : "0" ((unsigned)(len)), "1" (dst), "2" (src) \ + : "0" (SDL_static_cast(unsigned, len)), "1" (dst), "2" (src) \ : "memory" ); \ } while(0) #endif @@ -312,13 +343,14 @@ do { \ #define SDL_revcpy(dst, src, len) \ do { \ int u0, u1, u2; \ - char *dstp = (char *)(dst); \ - char *srcp = (char *)(src); \ + char *dstp = SDL_static_cast(char *, dst); \ + char *srcp = SDL_static_cast(char *, src); \ int n = (len); \ if ( n >= 4 ) { \ __asm__ __volatile__ ( \ "std\n\t" \ "rep ; movsl\n\t" \ + "cld\n\t" \ : "=&c" (u0), "=&D" (u1), "=&S" (u2) \ : "0" (n >> 2), \ "1" (dstp+(n-4)), "2" (srcp+(n-4)) \ @@ -551,29 +583,31 @@ extern DECLSPEC int SDLCALL SDL_snprintf(char *text, size_t maxlen, const char * extern DECLSPEC int SDLCALL SDL_vsnprintf(char *text, size_t maxlen, const char *fmt, va_list ap); #endif -/* The SDL implementation of iconv() returns these error codes */ +/** @name SDL_ICONV Error Codes + * The SDL implementation of iconv() returns these error codes + */ +/*@{*/ #define SDL_ICONV_ERROR (size_t)-1 #define SDL_ICONV_E2BIG (size_t)-2 #define SDL_ICONV_EILSEQ (size_t)-3 #define SDL_ICONV_EINVAL (size_t)-4 +/*@}*/ -#ifdef HAVE_ICONV +#if defined(HAVE_ICONV) && defined(HAVE_ICONV_H) #define SDL_iconv_t iconv_t #define SDL_iconv_open iconv_open #define SDL_iconv_close iconv_close -extern DECLSPEC size_t SDLCALL SDL_iconv(SDL_iconv_t cd, char **inbuf, size_t *inbytesleft, char **outbuf, size_t *outbytesleft); #else typedef struct _SDL_iconv_t *SDL_iconv_t; extern DECLSPEC SDL_iconv_t SDLCALL SDL_iconv_open(const char *tocode, const char *fromcode); extern DECLSPEC int SDLCALL SDL_iconv_close(SDL_iconv_t cd); -extern DECLSPEC size_t SDLCALL SDL_iconv(SDL_iconv_t cd, char **inbuf, size_t *inbytesleft, char **outbuf, size_t *outbytesleft); #endif -/* This function converts a string between encodings in one pass, returning a - string that must be freed with SDL_free() or NULL on error. -*/ -extern DECLSPEC char * SDLCALL SDL_iconv_string(const char *tocode, const char *fromcode, char *inbuf, size_t inbytesleft); -#define SDL_iconv_utf8_ascii(S) SDL_iconv_string("ASCII", "UTF-8", S, SDL_strlen(S)+1) -#define SDL_iconv_utf8_latin1(S) SDL_iconv_string("LATIN1", "UTF-8", S, SDL_strlen(S)+1) +extern DECLSPEC size_t SDLCALL SDL_iconv(SDL_iconv_t cd, const char **inbuf, size_t *inbytesleft, char **outbuf, size_t *outbytesleft); +/** This function converts a string between encodings in one pass, returning a + * string that must be freed with SDL_free() or NULL on error. + */ +extern DECLSPEC char * SDLCALL SDL_iconv_string(const char *tocode, const char *fromcode, const char *inbuf, size_t inbytesleft); +#define SDL_iconv_utf8_locale(S) SDL_iconv_string("", "UTF-8", S, SDL_strlen(S)+1) #define SDL_iconv_utf8_ucs2(S) (Uint16 *)SDL_iconv_string("UCS-2", "UTF-8", S, SDL_strlen(S)+1) #define SDL_iconv_utf8_ucs4(S) (Uint32 *)SDL_iconv_string("UCS-4", "UTF-8", S, SDL_strlen(S)+1) diff --git a/include/SDL_syswm.h b/include/SDL_syswm.h index e7f35139a..78433c6aa 100644 --- a/include/SDL_syswm.h +++ b/include/SDL_syswm.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -20,7 +20,9 @@ slouken@libsdl.org */ -/* Include file for SDL custom system window manager hooks */ +/** @file SDL_syswm.h + * Include file for SDL custom system window manager hooks + */ #ifndef _SDL_syswm_h #define _SDL_syswm_h @@ -35,11 +37,12 @@ extern "C" { #endif -/* Your application has access to a special type of event 'SDL_SYSWMEVENT', - which contains window-manager specific information and arrives whenever - an unhandled window event occurs. This event is ignored by default, but - you can enable it with SDL_EventState() -*/ +/** @file SDL_syswm.h + * Your application has access to a special type of event 'SDL_SYSWMEVENT', + * which contains window-manager specific information and arrives whenever + * an unhandled window event occurs. This event is ignored by default, but + * you can enable it with SDL_EventState() + */ #ifdef SDL_PROTOTYPES_ONLY struct SDL_SysWMinfo; typedef struct SDL_SysWMinfo SDL_SysWMinfo; @@ -60,12 +63,12 @@ typedef struct SDL_SysWMinfo SDL_SysWMinfo; #undef Cursor #endif -/* These are the various supported subsystems under UNIX */ +/** These are the various supported subsystems under UNIX */ typedef enum { SDL_SYSWM_X11 } SDL_SYSWM_TYPE; -/* The UNIX custom event structure */ +/** The UNIX custom event structure */ struct SDL_SysWMmsg { SDL_version version; SDL_SYSWM_TYPE subsystem; @@ -74,28 +77,38 @@ struct SDL_SysWMmsg { } event; }; -/* The UNIX custom window manager information structure. - When this structure is returned, it holds information about which - low level system it is using, and will be one of SDL_SYSWM_TYPE. +/** The UNIX custom window manager information structure. + * When this structure is returned, it holds information about which + * low level system it is using, and will be one of SDL_SYSWM_TYPE. */ typedef struct SDL_SysWMinfo { SDL_version version; SDL_SYSWM_TYPE subsystem; union { struct { - Display *display; /* The X11 display */ - Window window; /* The X11 display window */ - /* These locking functions should be called around - any X11 functions using the display variable. - They lock the event thread, so should not be - called around event functions or from event filters. + Display *display; /**< The X11 display */ + Window window; /**< The X11 display window */ + /** These locking functions should be called around + * any X11 functions using the display variable, + * but not the gfxdisplay variable. + * They lock the event thread, so should not be + * called around event functions or from event filters. */ + /*@{*/ void (*lock_func)(void); void (*unlock_func)(void); + /*@}*/ - /* Introduced in SDL 1.0.2 */ - Window fswindow; /* The X11 fullscreen window */ - Window wmwindow; /* The X11 managed input window */ + /** @name Introduced in SDL 1.0.2 */ + /*@{*/ + Window fswindow; /**< The X11 fullscreen window */ + Window wmwindow; /**< The X11 managed input window */ + /*@}*/ + + /** @name Introduced in SDL 1.2.12 */ + /*@{*/ + Display *gfxdisplay; /**< The X11 display to which rendering is done */ + /*@}*/ } x11; } info; } SDL_SysWMinfo; @@ -103,13 +116,13 @@ typedef struct SDL_SysWMinfo { #elif defined(SDL_VIDEO_DRIVER_NANOX) #include -/* The generic custom event structure */ +/** The generic custom event structure */ struct SDL_SysWMmsg { SDL_version version; int data; }; -/* The windows custom window manager information structure */ +/** The windows custom window manager information structure */ typedef struct SDL_SysWMinfo { SDL_version version ; GR_WINDOW_ID window ; /* The display window */ @@ -119,50 +132,50 @@ typedef struct SDL_SysWMinfo { #define WIN32_LEAN_AND_MEAN #include -/* The windows custom event structure */ +/** The windows custom event structure */ struct SDL_SysWMmsg { SDL_version version; - HWND hwnd; /* The window for the message */ - UINT msg; /* The type of message */ - WPARAM wParam; /* WORD message parameter */ - LPARAM lParam; /* LONG message parameter */ + HWND hwnd; /**< The window for the message */ + UINT msg; /**< The type of message */ + WPARAM wParam; /**< WORD message parameter */ + LPARAM lParam; /**< LONG message parameter */ }; -/* The windows custom window manager information structure */ +/** The windows custom window manager information structure */ typedef struct SDL_SysWMinfo { SDL_version version; - HWND window; /* The Win32 display window */ - HGLRC hglrc; /* The OpenGL context, if any */ + HWND window; /**< The Win32 display window */ + HGLRC hglrc; /**< The OpenGL context, if any */ } SDL_SysWMinfo; #elif defined(SDL_VIDEO_DRIVER_RISCOS) -/* RISC OS custom event structure */ +/** RISC OS custom event structure */ struct SDL_SysWMmsg { SDL_version version; - int eventCode; /* The window for the message */ + int eventCode; /**< The window for the message */ int pollBlock[64]; }; -/* The RISC OS custom window manager information structure */ +/** The RISC OS custom window manager information structure */ typedef struct SDL_SysWMinfo { SDL_version version; - int wimpVersion; /* Wimp version running under */ - int taskHandle; /* The RISC OS task handle */ - int window; /* The RISC OS display window */ + int wimpVersion; /**< Wimp version running under */ + int taskHandle; /**< The RISC OS task handle */ + int window; /**< The RISC OS display window */ } SDL_SysWMinfo; #elif defined(SDL_VIDEO_DRIVER_PHOTON) #include #include -/* The QNX custom event structure */ +/** The QNX custom event structure */ struct SDL_SysWMmsg { SDL_version version; int data; }; -/* The QNX custom window manager information structure */ +/** The QNX custom window manager information structure */ typedef struct SDL_SysWMinfo { SDL_version version; int data; @@ -170,13 +183,13 @@ typedef struct SDL_SysWMinfo { #else -/* The generic custom event structure */ +/** The generic custom event structure */ struct SDL_SysWMmsg { SDL_version version; int data; }; -/* The generic custom window manager information structure */ +/** The generic custom window manager information structure */ typedef struct SDL_SysWMinfo { SDL_version version; int data; @@ -187,16 +200,19 @@ typedef struct SDL_SysWMinfo { #endif /* SDL_PROTOTYPES_ONLY */ /* Function prototypes */ -/* +/** * This function gives you custom hooks into the window manager information. * It fills the structure pointed to by 'info' with custom information and - * returns 1 if the function is implemented. If it's not implemented, or - * the version member of the 'info' structure is invalid, it returns 0. + * returns 0 if the function is not implemented, 1 if the function is + * implemented and no error occurred, and -1 if the version member of + * the 'info' structure is not filled in or not supported. * * You typically use this function like this: - * SDL_SysWMInfo info; + * @code + * SDL_SysWMinfo info; * SDL_VERSION(&info.version); * if ( SDL_GetWMInfo(&info) ) { ... } + * @endcode */ extern DECLSPEC int SDLCALL SDL_GetWMInfo(SDL_SysWMinfo *info); diff --git a/include/SDL_thread.h b/include/SDL_thread.h index e0a35b1ab..9ebe00edd 100644 --- a/include/SDL_thread.h +++ b/include/SDL_thread.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -23,10 +23,11 @@ #ifndef _SDL_thread_h #define _SDL_thread_h -/* Header for the SDL thread management routines - - These are independent of the other SDL routines. -*/ +/** @file SDL_thread.h + * Header for the SDL thread management routines + * + * @note These are independent of the other SDL routines. + */ #include "SDL_stdinc.h" #include "SDL_error.h" @@ -40,25 +41,25 @@ extern "C" { #endif -/* The SDL thread structure, defined in SDL_thread.c */ +/** The SDL thread structure, defined in SDL_thread.c */ struct SDL_Thread; typedef struct SDL_Thread SDL_Thread; -/* Create a thread */ -#if (defined(__WIN32__) && !defined(HAVE_LIBC)) || defined(__OS2__) -/* - We compile SDL into a DLL on OS/2. This means, that it's the DLL which - creates a new thread for the calling process with the SDL_CreateThread() - API. There is a problem with this, that only the RTL of the SDL.DLL will - be initialized for those threads, and not the RTL of the calling application! - To solve this, we make a little hack here. - We'll always use the caller's _beginthread() and _endthread() APIs to - start a new thread. This way, if it's the SDL.DLL which uses this API, - then the RTL of SDL.DLL will be used to create the new thread, and if it's - the application, then the RTL of the application will be used. - So, in short: - Always use the _beginthread() and _endthread() of the calling runtime library! -*/ +/** Create a thread */ +#if ((defined(__WIN32__) && !defined(HAVE_LIBC)) || defined(__OS2__)) && !defined(__SYMBIAN32__) +/** + * We compile SDL into a DLL on OS/2. This means, that it's the DLL which + * creates a new thread for the calling process with the SDL_CreateThread() + * API. There is a problem with this, that only the RTL of the SDL.DLL will + * be initialized for those threads, and not the RTL of the calling application! + * To solve this, we make a little hack here. + * We'll always use the caller's _beginthread() and _endthread() APIs to + * start a new thread. This way, if it's the SDL.DLL which uses this API, + * then the RTL of SDL.DLL will be used to create the new thread, and if it's + * the application, then the RTL of the application will be used. + * So, in short: + * Always use the _beginthread() and _endthread() of the calling runtime library! + */ #define SDL_PASSED_BEGINTHREAD_ENDTHREAD #ifndef _WIN32_WCE #include /* This has _beginthread() and _endthread() defined! */ @@ -67,11 +68,6 @@ typedef struct SDL_Thread SDL_Thread; #ifdef __OS2__ typedef int (*pfnSDL_CurrentBeginThread)(void (*func)(void *), void *, unsigned, void *arg); typedef void (*pfnSDL_CurrentEndThread)(void); -#elif __GNUC__ -typedef unsigned long (__cdecl *pfnSDL_CurrentBeginThread) (void *, unsigned, - unsigned (__stdcall *func)(void *), void *arg, - unsigned, unsigned *threadID); -typedef void (__cdecl *pfnSDL_CurrentEndThread)(unsigned code); #else typedef uintptr_t (__cdecl *pfnSDL_CurrentBeginThread) (void *, unsigned, unsigned (__stdcall *func)(void *), void *arg, @@ -92,21 +88,21 @@ extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data); #endif -/* Get the 32-bit thread identifier for the current thread */ +/** Get the 32-bit thread identifier for the current thread */ extern DECLSPEC Uint32 SDLCALL SDL_ThreadID(void); -/* Get the 32-bit thread identifier for the specified thread, - equivalent to SDL_ThreadID() if the specified thread is NULL. +/** Get the 32-bit thread identifier for the specified thread, + * equivalent to SDL_ThreadID() if the specified thread is NULL. */ extern DECLSPEC Uint32 SDLCALL SDL_GetThreadID(SDL_Thread *thread); -/* Wait for a thread to finish. - The return code for the thread function is placed in the area - pointed to by 'status', if 'status' is not NULL. +/** Wait for a thread to finish. + * The return code for the thread function is placed in the area + * pointed to by 'status', if 'status' is not NULL. */ extern DECLSPEC void SDLCALL SDL_WaitThread(SDL_Thread *thread, int *status); -/* Forcefully kill a thread without worrying about its state */ +/** Forcefully kill a thread without worrying about its state */ extern DECLSPEC void SDLCALL SDL_KillThread(SDL_Thread *thread); diff --git a/include/SDL_timer.h b/include/SDL_timer.h index d21159fed..d764d5f38 100644 --- a/include/SDL_timer.h +++ b/include/SDL_timer.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -23,7 +23,9 @@ #ifndef _SDL_timer_h #define _SDL_timer_h -/* Header for the SDL time management routines */ +/** @file SDL_timer.h + * Header for the SDL time management routines + */ #include "SDL_stdinc.h" #include "SDL_error.h" @@ -34,24 +36,26 @@ extern "C" { #endif -/* This is the OS scheduler timeslice, in milliseconds */ +/** This is the OS scheduler timeslice, in milliseconds */ #define SDL_TIMESLICE 10 -/* This is the maximum resolution of the SDL timer on all platforms */ -#define TIMER_RESOLUTION 10 /* Experimentally determined */ +/** This is the maximum resolution of the SDL timer on all platforms */ +#define TIMER_RESOLUTION 10 /**< Experimentally determined */ -/* Get the number of milliseconds since the SDL library initialization. +/** + * Get the number of milliseconds since the SDL library initialization. * Note that this value wraps if the program runs for more than ~49 days. */ extern DECLSPEC Uint32 SDLCALL SDL_GetTicks(void); -/* Wait a specified number of milliseconds before returning */ +/** Wait a specified number of milliseconds before returning */ extern DECLSPEC void SDLCALL SDL_Delay(Uint32 ms); -/* Function prototype for the timer callback function */ +/** Function prototype for the timer callback function */ typedef Uint32 (SDLCALL *SDL_TimerCallback)(Uint32 interval); -/* Set a callback to run after the specified number of milliseconds has +/** + * Set a callback to run after the specified number of milliseconds has * elapsed. The callback function is passed the current timer interval * and returns the next timer interval. If the returned value is the * same as the one passed in, the periodic alarm continues, otherwise a @@ -68,7 +72,7 @@ typedef Uint32 (SDLCALL *SDL_TimerCallback)(Uint32 interval); * later on an unloaded system. If you wanted to set a flag signaling * a frame update at 30 frames per second (every 33 ms), you might set a * timer for 30 ms: - * SDL_SetTimer((33/10)*10, flag_update); + * @code SDL_SetTimer((33/10)*10, flag_update); @endcode * * If you use this function, you need to pass SDL_INIT_TIMER to SDL_Init(). * @@ -81,11 +85,14 @@ typedef Uint32 (SDLCALL *SDL_TimerCallback)(Uint32 interval); */ extern DECLSPEC int SDLCALL SDL_SetTimer(Uint32 interval, SDL_TimerCallback callback); -/* New timer API, supports multiple timers +/** @name New timer API + * New timer API, supports multiple timers * Written by Stephane Peter */ +/*@{*/ -/* Function prototype for the new timer callback function. +/** + * Function prototype for the new timer callback function. * The callback function is passed the current timer interval and returns * the next timer interval. If the returned value is the same as the one * passed in, the periodic alarm continues, otherwise a new alarm is @@ -93,19 +100,22 @@ extern DECLSPEC int SDLCALL SDL_SetTimer(Uint32 interval, SDL_TimerCallback call */ typedef Uint32 (SDLCALL *SDL_NewTimerCallback)(Uint32 interval, void *param); -/* Definition of the timer ID type */ +/** Definition of the timer ID type */ typedef struct _SDL_TimerID *SDL_TimerID; -/* Add a new timer to the pool of timers already running. - Returns a timer ID, or NULL when an error occurs. +/** Add a new timer to the pool of timers already running. + * Returns a timer ID, or NULL when an error occurs. */ extern DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param); -/* Remove one of the multiple timers knowing its ID. +/** + * Remove one of the multiple timers knowing its ID. * Returns a boolean value indicating success. */ extern DECLSPEC SDL_bool SDLCALL SDL_RemoveTimer(SDL_TimerID t); +/*@}*/ + /* Ends C function definitions when using C++ */ #ifdef __cplusplus } diff --git a/include/SDL_types.h b/include/SDL_types.h index 853b9ce45..79d8b28dd 100644 --- a/include/SDL_types.h +++ b/include/SDL_types.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -20,5 +20,9 @@ slouken@libsdl.org */ +/** @file SDL_types.h + * @deprecated Use SDL_stdinc.h instead. + */ + /* DEPRECATED */ #include "SDL_stdinc.h" diff --git a/include/SDL_version.h b/include/SDL_version.h index 262aa7b5e..fdc17c64c 100644 --- a/include/SDL_version.h +++ b/include/SDL_version.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -20,7 +20,9 @@ slouken@libsdl.org */ -/* This header defines the current SDL version */ +/** @file SDL_version.h + * This header defines the current SDL version + */ #ifndef _SDL_version_h #define _SDL_version_h @@ -33,11 +35,14 @@ extern "C" { #endif -/* Printable format: "%d.%d.%d", MAJOR, MINOR, PATCHLEVEL -*/ +/** @name Version Number + * Printable format: "%d.%d.%d", MAJOR, MINOR, PATCHLEVEL + */ +/*@{*/ #define SDL_MAJOR_VERSION 1 #define SDL_MINOR_VERSION 2 -#define SDL_PATCHLEVEL 11 +#define SDL_PATCHLEVEL 15 +/*@}*/ typedef struct SDL_version { Uint8 major; @@ -45,7 +50,8 @@ typedef struct SDL_version { Uint8 patch; } SDL_version; -/* This macro can be used to fill a version structure with the compile-time +/** + * This macro can be used to fill a version structure with the compile-time * version of the SDL library. */ #define SDL_VERSION(X) \ @@ -55,24 +61,24 @@ typedef struct SDL_version { (X)->patch = SDL_PATCHLEVEL; \ } -/* This macro turns the version numbers into a numeric value: - (1,2,3) -> (1203) - This assumes that there will never be more than 100 patchlevels -*/ +/** This macro turns the version numbers into a numeric value: + * (1,2,3) -> (1203) + * This assumes that there will never be more than 100 patchlevels + */ #define SDL_VERSIONNUM(X, Y, Z) \ ((X)*1000 + (Y)*100 + (Z)) -/* This is the version number macro for the current SDL version */ +/** This is the version number macro for the current SDL version */ #define SDL_COMPILEDVERSION \ SDL_VERSIONNUM(SDL_MAJOR_VERSION, SDL_MINOR_VERSION, SDL_PATCHLEVEL) -/* This macro will evaluate to true if compiled with SDL at least X.Y.Z */ +/** This macro will evaluate to true if compiled with SDL at least X.Y.Z */ #define SDL_VERSION_ATLEAST(X, Y, Z) \ (SDL_COMPILEDVERSION >= SDL_VERSIONNUM(X, Y, Z)) -/* This function gets the version of the dynamically linked SDL library. - it should NOT be used to fill a version structure, instead you should - use the SDL_Version() macro. +/** This function gets the version of the dynamically linked SDL library. + * it should NOT be used to fill a version structure, instead you should + * use the SDL_Version() macro. */ extern DECLSPEC const SDL_version * SDLCALL SDL_Linked_Version(void); diff --git a/include/SDL_video.h b/include/SDL_video.h index 720022e36..f9c4e0702 100644 --- a/include/SDL_video.h +++ b/include/SDL_video.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2006 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -20,7 +20,9 @@ slouken@libsdl.org */ -/* Header file for access to the SDL raw framebuffer window */ +/** @file SDL_video.h + * Header file for access to the SDL raw framebuffer window + */ #ifndef _SDL_video_h #define _SDL_video_h @@ -35,11 +37,16 @@ extern "C" { #endif -/* Transparency definitions: These define alpha as the opacity of a surface */ +/** @name Transparency definitions + * These define alpha as the opacity of a surface + */ +/*@{*/ #define SDL_ALPHA_OPAQUE 255 #define SDL_ALPHA_TRANSPARENT 0 +/*@}*/ -/* Useful data types */ +/** @name Useful data types */ +/*@{*/ typedef struct SDL_Rect { Sint16 x, y; Uint16 w, h; @@ -57,8 +64,9 @@ typedef struct SDL_Palette { int ncolors; SDL_Color *colors; } SDL_Palette; +/*@}*/ -/* Everything in the pixel format structure is read-only */ +/** Everything in the pixel format structure is read-only */ typedef struct SDL_PixelFormat { SDL_Palette *palette; Uint8 BitsPerPixel; @@ -76,128 +84,149 @@ typedef struct SDL_PixelFormat { Uint32 Bmask; Uint32 Amask; - /* RGB color key information */ + /** RGB color key information */ Uint32 colorkey; - /* Alpha value information (per-surface alpha) */ + /** Alpha value information (per-surface alpha) */ Uint8 alpha; } SDL_PixelFormat; -/* This structure should be treated as read-only, except for 'pixels', - which, if not NULL, contains the raw pixel data for the surface. -*/ +/** This structure should be treated as read-only, except for 'pixels', + * which, if not NULL, contains the raw pixel data for the surface. + */ typedef struct SDL_Surface { - Uint32 flags; /* Read-only */ - SDL_PixelFormat *format; /* Read-only */ - int w, h; /* Read-only */ - Uint16 pitch; /* Read-only */ - void *pixels; /* Read-write */ - int offset; /* Private */ + Uint32 flags; /**< Read-only */ + SDL_PixelFormat *format; /**< Read-only */ + int w, h; /**< Read-only */ + Uint16 pitch; /**< Read-only */ + void *pixels; /**< Read-write */ + int offset; /**< Private */ - /* Hardware-specific surface info */ + /** Hardware-specific surface info */ struct private_hwdata *hwdata; - /* clipping information */ - SDL_Rect clip_rect; /* Read-only */ - Uint32 unused1; /* for binary compatibility */ + /** clipping information */ + SDL_Rect clip_rect; /**< Read-only */ + Uint32 unused1; /**< for binary compatibility */ - /* Allow recursive locks */ - Uint32 locked; /* Private */ + /** Allow recursive locks */ + Uint32 locked; /**< Private */ - /* info for fast blit mapping to other surfaces */ - struct SDL_BlitMap *map; /* Private */ + /** info for fast blit mapping to other surfaces */ + struct SDL_BlitMap *map; /**< Private */ - /* format version, bumped at every change to invalidate blit maps */ - unsigned int format_version; /* Private */ + /** format version, bumped at every change to invalidate blit maps */ + unsigned int format_version; /**< Private */ - /* Reference count -- used when freeing surface */ - int refcount; /* Read-mostly */ + /** Reference count -- used when freeing surface */ + int refcount; /**< Read-mostly */ } SDL_Surface; -/* These are the currently supported flags for the SDL_surface */ -/* Available for SDL_CreateRGBSurface() or SDL_SetVideoMode() */ -#define SDL_SWSURFACE 0x00000000 /* Surface is in system memory */ -#define SDL_HWSURFACE 0x00000001 /* Surface is in video memory */ -#define SDL_ASYNCBLIT 0x00000004 /* Use asynchronous blits if possible */ -/* Available for SDL_SetVideoMode() */ -#define SDL_ANYFORMAT 0x10000000 /* Allow any video depth/pixel-format */ -#define SDL_HWPALETTE 0x20000000 /* Surface has exclusive palette */ -#define SDL_DOUBLEBUF 0x40000000 /* Set up double-buffered video mode */ -#define SDL_FULLSCREEN 0x80000000 /* Surface is a full screen display */ -#define SDL_OPENGL 0x00000002 /* Create an OpenGL rendering context */ -#define SDL_OPENGLBLIT 0x0000000A /* Create an OpenGL rendering context and use it for blitting */ -#define SDL_RESIZABLE 0x00000010 /* This video mode may be resized */ -#define SDL_NOFRAME 0x00000020 /* No window caption or edge frame */ -/* Used internally (read-only) */ -#define SDL_HWACCEL 0x00000100 /* Blit uses hardware acceleration */ -#define SDL_SRCCOLORKEY 0x00001000 /* Blit uses a source color key */ -#define SDL_RLEACCELOK 0x00002000 /* Private flag */ -#define SDL_RLEACCEL 0x00004000 /* Surface is RLE encoded */ -#define SDL_SRCALPHA 0x00010000 /* Blit uses source alpha blending */ -#define SDL_PREALLOC 0x01000000 /* Surface uses preallocated memory */ +/** @name SDL_Surface Flags + * These are the currently supported flags for the SDL_surface + */ +/*@{*/ -/* Evaluates to true if the surface needs to be locked before access */ +/** Available for SDL_CreateRGBSurface() or SDL_SetVideoMode() */ +/*@{*/ +#define SDL_SWSURFACE 0x00000000 /**< Surface is in system memory */ +#define SDL_HWSURFACE 0x00000001 /**< Surface is in video memory */ +#define SDL_ASYNCBLIT 0x00000004 /**< Use asynchronous blits if possible */ +/*@}*/ + +/** Available for SDL_SetVideoMode() */ +/*@{*/ +#define SDL_ANYFORMAT 0x10000000 /**< Allow any video depth/pixel-format */ +#define SDL_HWPALETTE 0x20000000 /**< Surface has exclusive palette */ +#define SDL_DOUBLEBUF 0x40000000 /**< Set up double-buffered video mode */ +#define SDL_FULLSCREEN 0x80000000 /**< Surface is a full screen display */ +#define SDL_OPENGL 0x00000002 /**< Create an OpenGL rendering context */ +#define SDL_OPENGLBLIT 0x0000000A /**< Create an OpenGL rendering context and use it for blitting */ +#define SDL_RESIZABLE 0x00000010 /**< This video mode may be resized */ +#define SDL_NOFRAME 0x00000020 /**< No window caption or edge frame */ +/*@}*/ + +/** Used internally (read-only) */ +/*@{*/ +#define SDL_HWACCEL 0x00000100 /**< Blit uses hardware acceleration */ +#define SDL_SRCCOLORKEY 0x00001000 /**< Blit uses a source color key */ +#define SDL_RLEACCELOK 0x00002000 /**< Private flag */ +#define SDL_RLEACCEL 0x00004000 /**< Surface is RLE encoded */ +#define SDL_SRCALPHA 0x00010000 /**< Blit uses source alpha blending */ +#define SDL_PREALLOC 0x01000000 /**< Surface uses preallocated memory */ +/*@}*/ + +/*@}*/ + +/** Evaluates to true if the surface needs to be locked before access */ #define SDL_MUSTLOCK(surface) \ (surface->offset || \ ((surface->flags & (SDL_HWSURFACE|SDL_ASYNCBLIT|SDL_RLEACCEL)) != 0)) -/* typedef for private surface blitting functions */ +/** typedef for private surface blitting functions */ typedef int (*SDL_blit)(struct SDL_Surface *src, SDL_Rect *srcrect, struct SDL_Surface *dst, SDL_Rect *dstrect); -/* Useful for determining the video hardware capabilities */ +/** Useful for determining the video hardware capabilities */ typedef struct SDL_VideoInfo { - Uint32 hw_available :1; /* Flag: Can you create hardware surfaces? */ - Uint32 wm_available :1; /* Flag: Can you talk to a window manager? */ + Uint32 hw_available :1; /**< Flag: Can you create hardware surfaces? */ + Uint32 wm_available :1; /**< Flag: Can you talk to a window manager? */ Uint32 UnusedBits1 :6; Uint32 UnusedBits2 :1; - Uint32 blit_hw :1; /* Flag: Accelerated blits HW --> HW */ - Uint32 blit_hw_CC :1; /* Flag: Accelerated blits with Colorkey */ - Uint32 blit_hw_A :1; /* Flag: Accelerated blits with Alpha */ - Uint32 blit_sw :1; /* Flag: Accelerated blits SW --> HW */ - Uint32 blit_sw_CC :1; /* Flag: Accelerated blits with Colorkey */ - Uint32 blit_sw_A :1; /* Flag: Accelerated blits with Alpha */ - Uint32 blit_fill :1; /* Flag: Accelerated color fill */ + Uint32 blit_hw :1; /**< Flag: Accelerated blits HW --> HW */ + Uint32 blit_hw_CC :1; /**< Flag: Accelerated blits with Colorkey */ + Uint32 blit_hw_A :1; /**< Flag: Accelerated blits with Alpha */ + Uint32 blit_sw :1; /**< Flag: Accelerated blits SW --> HW */ + Uint32 blit_sw_CC :1; /**< Flag: Accelerated blits with Colorkey */ + Uint32 blit_sw_A :1; /**< Flag: Accelerated blits with Alpha */ + Uint32 blit_fill :1; /**< Flag: Accelerated color fill */ Uint32 UnusedBits3 :16; - Uint32 video_mem; /* The total amount of video memory (in K) */ - SDL_PixelFormat *vfmt; /* Value: The format of the video surface */ - int current_w; /* Value: The current video mode width */ - int current_h; /* Value: The current video mode height */ + Uint32 video_mem; /**< The total amount of video memory (in K) */ + SDL_PixelFormat *vfmt; /**< Value: The format of the video surface */ + int current_w; /**< Value: The current video mode width */ + int current_h; /**< Value: The current video mode height */ } SDL_VideoInfo; -/* The most common video overlay formats. - For an explanation of these pixel formats, see: - http://www.webartz.com/fourcc/indexyuv.htm - - For information on the relationship between color spaces, see: - http://www.neuro.sfc.keio.ac.jp/~aly/polygon/info/color-space-faq.html +/** @name Overlay Formats + * The most common video overlay formats. + * For an explanation of these pixel formats, see: + * http://www.webartz.com/fourcc/indexyuv.htm + * + * For information on the relationship between color spaces, see: + * http://www.neuro.sfc.keio.ac.jp/~aly/polygon/info/color-space-faq.html */ -#define SDL_YV12_OVERLAY 0x32315659 /* Planar mode: Y + V + U (3 planes) */ -#define SDL_IYUV_OVERLAY 0x56555949 /* Planar mode: Y + U + V (3 planes) */ -#define SDL_YUY2_OVERLAY 0x32595559 /* Packed mode: Y0+U0+Y1+V0 (1 plane) */ -#define SDL_UYVY_OVERLAY 0x59565955 /* Packed mode: U0+Y0+V0+Y1 (1 plane) */ -#define SDL_YVYU_OVERLAY 0x55595659 /* Packed mode: Y0+V0+Y1+U0 (1 plane) */ +/*@{*/ +#define SDL_YV12_OVERLAY 0x32315659 /**< Planar mode: Y + V + U (3 planes) */ +#define SDL_IYUV_OVERLAY 0x56555949 /**< Planar mode: Y + U + V (3 planes) */ +#define SDL_YUY2_OVERLAY 0x32595559 /**< Packed mode: Y0+U0+Y1+V0 (1 plane) */ +#define SDL_UYVY_OVERLAY 0x59565955 /**< Packed mode: U0+Y0+V0+Y1 (1 plane) */ +#define SDL_YVYU_OVERLAY 0x55595659 /**< Packed mode: Y0+V0+Y1+U0 (1 plane) */ +/*@}*/ -/* The YUV hardware video overlay */ +/** The YUV hardware video overlay */ typedef struct SDL_Overlay { - Uint32 format; /* Read-only */ - int w, h; /* Read-only */ - int planes; /* Read-only */ - Uint16 *pitches; /* Read-only */ - Uint8 **pixels; /* Read-write */ + Uint32 format; /**< Read-only */ + int w, h; /**< Read-only */ + int planes; /**< Read-only */ + Uint16 *pitches; /**< Read-only */ + Uint8 **pixels; /**< Read-write */ - /* Hardware-specific surface info */ + /** @name Hardware-specific surface info */ + /*@{*/ struct private_yuvhwfuncs *hwfuncs; struct private_yuvhwdata *hwdata; + /*@{*/ - /* Special flags */ - Uint32 hw_overlay :1; /* Flag: This overlay hardware accelerated? */ + /** @name Special flags */ + /*@{*/ + Uint32 hw_overlay :1; /**< Flag: This overlay hardware accelerated? */ Uint32 UnusedBits :31; + /*@}*/ } SDL_Overlay; -/* Public enumeration for setting the OpenGL window attributes. */ +/** Public enumeration for setting the OpenGL window attributes. */ typedef enum { SDL_GL_RED_SIZE, SDL_GL_GREEN_SIZE, @@ -218,17 +247,23 @@ typedef enum { SDL_GL_SWAP_CONTROL } SDL_GLattr; -/* flags for SDL_SetPalette() */ +/** @name flags for SDL_SetPalette() */ +/*@{*/ #define SDL_LOGPAL 0x01 #define SDL_PHYSPAL 0x02 +/*@}*/ /* Function prototypes */ -/* These functions are used internally, and should not be used unless you +/** + * @name Video Init and Quit + * These functions are used internally, and should not be used unless you * have a specific need to specify the video driver you want to use. * You should normally use SDL_Init() or SDL_InitSubSystem(). - * - * SDL_VideoInit() initializes the video subsystem -- sets up a connection + */ +/*@{*/ +/** + * Initializes the video subsystem. Sets up a connection * to the window manager, etc, and determines the current video mode and * pixel format, but does not initialize a window or graphics mode. * Note that event handling is activated by this routine. @@ -239,14 +274,16 @@ typedef enum { */ extern DECLSPEC int SDLCALL SDL_VideoInit(const char *driver_name, Uint32 flags); extern DECLSPEC void SDLCALL SDL_VideoQuit(void); +/*@}*/ -/* This function fills the given character buffer with the name of the +/** + * This function fills the given character buffer with the name of the * video driver, and returns a pointer to it if the video driver has * been initialized. It returns NULL if no driver has been initialized. */ extern DECLSPEC char * SDLCALL SDL_VideoDriverName(char *namebuf, int maxlen); -/* +/** * This function returns a pointer to the current display surface. * If SDL is doing format conversion on the display surface, this * function returns the publicly visible surface, not the real video @@ -254,7 +291,7 @@ extern DECLSPEC char * SDLCALL SDL_VideoDriverName(char *namebuf, int maxlen); */ extern DECLSPEC SDL_Surface * SDLCALL SDL_GetVideoSurface(void); -/* +/** * This function returns a read-only pointer to information about the * video hardware. If this is called before SDL_SetVideoMode(), the 'vfmt' * member of the returned structure will contain the pixel format of the @@ -262,7 +299,7 @@ extern DECLSPEC SDL_Surface * SDLCALL SDL_GetVideoSurface(void); */ extern DECLSPEC const SDL_VideoInfo * SDLCALL SDL_GetVideoInfo(void); -/* +/** * Check to see if a particular video mode is supported. * It returns 0 if the requested mode is not supported under any bit depth, * or returns the bits-per-pixel of the closest available mode with the @@ -275,7 +312,7 @@ extern DECLSPEC const SDL_VideoInfo * SDLCALL SDL_GetVideoInfo(void); */ extern DECLSPEC int SDLCALL SDL_VideoModeOK(int width, int height, int bpp, Uint32 flags); -/* +/** * Return a pointer to an array of available screen dimensions for the * given format and video flags, sorted largest to smallest. Returns * NULL if there are no dimensions available for a particular format, @@ -286,7 +323,7 @@ extern DECLSPEC int SDLCALL SDL_VideoModeOK(int width, int height, int bpp, Uint */ extern DECLSPEC SDL_Rect ** SDLCALL SDL_ListModes(SDL_PixelFormat *format, Uint32 flags); -/* +/** * Set up a video mode with the specified width, height and bits-per-pixel. * * If 'bpp' is 0, it is treated as the current display bits per pixel. @@ -347,18 +384,24 @@ extern DECLSPEC SDL_Rect ** SDLCALL SDL_ListModes(SDL_PixelFormat *format, Uint3 extern DECLSPEC SDL_Surface * SDLCALL SDL_SetVideoMode (int width, int height, int bpp, Uint32 flags); -/* - * Makes sure the given list of rectangles is updated on the given screen. - * If 'x', 'y', 'w' and 'h' are all 0, SDL_UpdateRect will update the entire - * screen. +/** @name SDL_Update Functions * These functions should not be called while 'screen' is locked. */ +/*@{*/ +/** + * Makes sure the given list of rectangles is updated on the given screen. + */ extern DECLSPEC void SDLCALL SDL_UpdateRects (SDL_Surface *screen, int numrects, SDL_Rect *rects); +/** + * If 'x', 'y', 'w' and 'h' are all 0, SDL_UpdateRect will update the entire + * screen. + */ extern DECLSPEC void SDLCALL SDL_UpdateRect (SDL_Surface *screen, Sint32 x, Sint32 y, Uint32 w, Uint32 h); +/*@}*/ -/* +/** * On hardware that supports double-buffering, this function sets up a flip * and returns. The hardware will wait for vertical retrace, and then swap * video buffers before the next video surface blit or lock will return. @@ -370,7 +413,7 @@ extern DECLSPEC void SDLCALL SDL_UpdateRect */ extern DECLSPEC int SDLCALL SDL_Flip(SDL_Surface *screen); -/* +/** * Set the gamma correction for each of the color channels. * The gamma values range (approximately) between 0.1 and 10.0 * @@ -380,7 +423,7 @@ extern DECLSPEC int SDLCALL SDL_Flip(SDL_Surface *screen); */ extern DECLSPEC int SDLCALL SDL_SetGamma(float red, float green, float blue); -/* +/** * Set the gamma translation table for the red, green, and blue channels * of the video hardware. Each table is an array of 256 16-bit quantities, * representing a mapping between the input and output for that channel. @@ -394,7 +437,7 @@ extern DECLSPEC int SDLCALL SDL_SetGamma(float red, float green, float blue); */ extern DECLSPEC int SDLCALL SDL_SetGammaRamp(const Uint16 *red, const Uint16 *green, const Uint16 *blue); -/* +/** * Retrieve the current values of the gamma translation tables. * * You must pass in valid pointers to arrays of 256 16-bit quantities. @@ -405,7 +448,7 @@ extern DECLSPEC int SDLCALL SDL_SetGammaRamp(const Uint16 *red, const Uint16 *gr */ extern DECLSPEC int SDLCALL SDL_GetGammaRamp(Uint16 *red, Uint16 *green, Uint16 *blue); -/* +/** * Sets a portion of the colormap for the given 8-bit surface. If 'surface' * is not a palettized surface, this function does nothing, returning 0. * If all of the colors were set as passed to SDL_SetColors(), it will @@ -423,7 +466,7 @@ extern DECLSPEC int SDLCALL SDL_GetGammaRamp(Uint16 *red, Uint16 *green, Uint16 extern DECLSPEC int SDLCALL SDL_SetColors(SDL_Surface *surface, SDL_Color *colors, int firstcolor, int ncolors); -/* +/** * Sets a portion of the colormap for a given 8-bit surface. * 'flags' is one or both of: * SDL_LOGPAL -- set logical palette, which controls how blits are mapped @@ -443,31 +486,37 @@ extern DECLSPEC int SDLCALL SDL_SetPalette(SDL_Surface *surface, int flags, SDL_Color *colors, int firstcolor, int ncolors); -/* +/** * Maps an RGB triple to an opaque pixel value for a given pixel format */ extern DECLSPEC Uint32 SDLCALL SDL_MapRGB - (SDL_PixelFormat *format, Uint8 r, Uint8 g, Uint8 b); +(const SDL_PixelFormat * const format, + const Uint8 r, const Uint8 g, const Uint8 b); -/* +/** * Maps an RGBA quadruple to a pixel value for a given pixel format */ -extern DECLSPEC Uint32 SDLCALL SDL_MapRGBA(SDL_PixelFormat *format, - Uint8 r, Uint8 g, Uint8 b, Uint8 a); +extern DECLSPEC Uint32 SDLCALL SDL_MapRGBA +(const SDL_PixelFormat * const format, + const Uint8 r, const Uint8 g, const Uint8 b, const Uint8 a); -/* +/** * Maps a pixel value into the RGB components for a given pixel format */ -extern DECLSPEC void SDLCALL SDL_GetRGB(Uint32 pixel, SDL_PixelFormat *fmt, +extern DECLSPEC void SDLCALL SDL_GetRGB(Uint32 pixel, + const SDL_PixelFormat * const fmt, Uint8 *r, Uint8 *g, Uint8 *b); -/* +/** * Maps a pixel value into the RGBA components for a given pixel format */ -extern DECLSPEC void SDLCALL SDL_GetRGBA(Uint32 pixel, SDL_PixelFormat *fmt, - Uint8 *r, Uint8 *g, Uint8 *b, Uint8 *a); +extern DECLSPEC void SDLCALL SDL_GetRGBA(Uint32 pixel, + const SDL_PixelFormat * const fmt, + Uint8 *r, Uint8 *g, Uint8 *b, Uint8 *a); -/* +/** @sa SDL_CreateRGBSurface */ +#define SDL_AllocSurface SDL_CreateRGBSurface +/** * Allocate and free an RGB surface (must be called after SDL_SetVideoMode) * If the depth is 4 or 8 bits, an empty palette is allocated for the surface. * If the depth is greater than 8 bits, the pixel format is set using the @@ -501,16 +550,16 @@ extern DECLSPEC void SDLCALL SDL_GetRGBA(Uint32 pixel, SDL_PixelFormat *fmt, * reason the surface could not be placed in video memory, it will not have * the SDL_HWSURFACE flag set, and will be created in system memory instead. */ -#define SDL_AllocSurface SDL_CreateRGBSurface extern DECLSPEC SDL_Surface * SDLCALL SDL_CreateRGBSurface (Uint32 flags, int width, int height, int depth, Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask); +/** @sa SDL_CreateRGBSurface */ extern DECLSPEC SDL_Surface * SDLCALL SDL_CreateRGBSurfaceFrom(void *pixels, int width, int height, int depth, int pitch, Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask); extern DECLSPEC void SDLCALL SDL_FreeSurface(SDL_Surface *surface); -/* +/** * SDL_LockSurface() sets up a surface for directly accessing the pixels. * Between calls to SDL_LockSurface()/SDL_UnlockSurface(), you can write * to and read from 'surface->pixels', using the pixel format stored in @@ -531,7 +580,7 @@ extern DECLSPEC void SDLCALL SDL_FreeSurface(SDL_Surface *surface); extern DECLSPEC int SDLCALL SDL_LockSurface(SDL_Surface *surface); extern DECLSPEC void SDLCALL SDL_UnlockSurface(SDL_Surface *surface); -/* +/** * Load a surface from a seekable SDL data source (memory or file.) * If 'freesrc' is non-zero, the source will be closed after being read. * Returns the new surface, or NULL if there was an error. @@ -539,10 +588,10 @@ extern DECLSPEC void SDLCALL SDL_UnlockSurface(SDL_Surface *surface); */ extern DECLSPEC SDL_Surface * SDLCALL SDL_LoadBMP_RW(SDL_RWops *src, int freesrc); -/* Convenience macro -- load a surface from a file */ +/** Convenience macro -- load a surface from a file */ #define SDL_LoadBMP(file) SDL_LoadBMP_RW(SDL_RWFromFile(file, "rb"), 1) -/* +/** * Save a surface to a seekable SDL data source (memory or file.) * If 'freedst' is non-zero, the source will be closed after being written. * Returns 0 if successful or -1 if there was an error. @@ -550,11 +599,11 @@ extern DECLSPEC SDL_Surface * SDLCALL SDL_LoadBMP_RW(SDL_RWops *src, int freesrc extern DECLSPEC int SDLCALL SDL_SaveBMP_RW (SDL_Surface *surface, SDL_RWops *dst, int freedst); -/* Convenience macro -- save a surface to a file */ +/** Convenience macro -- save a surface to a file */ #define SDL_SaveBMP(surface, file) \ SDL_SaveBMP_RW(surface, SDL_RWFromFile(file, "wb"), 1) -/* +/** * Sets the color key (transparent pixel) in a blittable surface. * If 'flag' is SDL_SRCCOLORKEY (optionally OR'd with SDL_RLEACCEL), * 'key' will be the transparent pixel in the source image of a blit. @@ -566,7 +615,7 @@ extern DECLSPEC int SDLCALL SDL_SaveBMP_RW extern DECLSPEC int SDLCALL SDL_SetColorKey (SDL_Surface *surface, Uint32 flag, Uint32 key); -/* +/** * This function sets the alpha value for the entire surface, as opposed to * using the alpha component of each pixel. This value measures the range * of transparency of the surface, 0 being completely transparent to 255 @@ -583,7 +632,7 @@ extern DECLSPEC int SDLCALL SDL_SetColorKey */ extern DECLSPEC int SDLCALL SDL_SetAlpha(SDL_Surface *surface, Uint32 flag, Uint8 alpha); -/* +/** * Sets the clipping rectangle for the destination surface in a blit. * * If the clip rectangle is NULL, clipping will be disabled. @@ -597,14 +646,14 @@ extern DECLSPEC int SDLCALL SDL_SetAlpha(SDL_Surface *surface, Uint32 flag, Uint */ extern DECLSPEC SDL_bool SDLCALL SDL_SetClipRect(SDL_Surface *surface, const SDL_Rect *rect); -/* +/** * Gets the clipping rectangle for the destination surface in a blit. * 'rect' must be a pointer to a valid rectangle which will be filled * with the correct values. */ extern DECLSPEC void SDLCALL SDL_GetClipRect(SDL_Surface *surface, SDL_Rect *rect); -/* +/** * Creates a new surface of the specified format, and then copies and maps * the given surface to it so the blit of the converted surface will be as * fast as possible. If this function fails, it returns NULL. @@ -619,7 +668,7 @@ extern DECLSPEC void SDLCALL SDL_GetClipRect(SDL_Surface *surface, SDL_Rect *rec extern DECLSPEC SDL_Surface * SDLCALL SDL_ConvertSurface (SDL_Surface *src, SDL_PixelFormat *fmt, Uint32 flags); -/* +/** * This performs a fast blit from the source surface to the destination * surface. It assumes that the source and destination rectangles are * the same size. If either 'srcrect' or 'dstrect' are NULL, the entire @@ -675,35 +724,38 @@ extern DECLSPEC SDL_Surface * SDLCALL SDL_ConvertSurface * If either of the surfaces were in video memory, and the blit returns -2, * the video memory was lost, so it should be reloaded with artwork and * re-blitted: - while ( SDL_BlitSurface(image, imgrect, screen, dstrect) == -2 ) { - while ( SDL_LockSurface(image) < 0 ) - Sleep(10); - -- Write image pixels to image->pixels -- - SDL_UnlockSurface(image); - } + * @code + * while ( SDL_BlitSurface(image, imgrect, screen, dstrect) == -2 ) { + * while ( SDL_LockSurface(image) < 0 ) + * Sleep(10); + * -- Write image pixels to image->pixels -- + * SDL_UnlockSurface(image); + * } + * @endcode + * * This happens under DirectX 5.0 when the system switches away from your * fullscreen application. The lock will also fail until you have access * to the video memory again. + * + * You should call SDL_BlitSurface() unless you know exactly how SDL + * blitting works internally and how to use the other blit functions. */ -/* You should call SDL_BlitSurface() unless you know exactly how SDL - blitting works internally and how to use the other blit functions. -*/ #define SDL_BlitSurface SDL_UpperBlit -/* This is the public blit function, SDL_BlitSurface(), and it performs - rectangle validation and clipping before passing it to SDL_LowerBlit() -*/ +/** This is the public blit function, SDL_BlitSurface(), and it performs + * rectangle validation and clipping before passing it to SDL_LowerBlit() + */ extern DECLSPEC int SDLCALL SDL_UpperBlit (SDL_Surface *src, SDL_Rect *srcrect, SDL_Surface *dst, SDL_Rect *dstrect); -/* This is a semi-private blit function and it performs low-level surface - blitting only. -*/ +/** This is a semi-private blit function and it performs low-level surface + * blitting only. + */ extern DECLSPEC int SDLCALL SDL_LowerBlit (SDL_Surface *src, SDL_Rect *srcrect, SDL_Surface *dst, SDL_Rect *dstrect); -/* +/** * This function performs a fast fill of the given rectangle with 'color' * The given rectangle is clipped to the destination surface clip area * and the final fill rectangle is saved in the passed in pointer. @@ -715,7 +767,7 @@ extern DECLSPEC int SDLCALL SDL_LowerBlit extern DECLSPEC int SDLCALL SDL_FillRect (SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color); -/* +/** * This function takes a surface and copies it to a new surface of the * pixel format and colors of the video framebuffer, suitable for fast * blitting onto the display surface. It calls SDL_ConvertSurface() @@ -728,7 +780,7 @@ extern DECLSPEC int SDLCALL SDL_FillRect */ extern DECLSPEC SDL_Surface * SDLCALL SDL_DisplayFormat(SDL_Surface *surface); -/* +/** * This function takes a surface and copies it to a new surface of the * pixel format and colors of the video framebuffer (if possible), * suitable for fast alpha blitting onto the display surface. @@ -744,38 +796,39 @@ extern DECLSPEC SDL_Surface * SDLCALL SDL_DisplayFormatAlpha(SDL_Surface *surfac /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* YUV video surface overlay functions */ +/** @name YUV video surface overlay functions */ /*@{*/ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* This function creates a video output overlay - Calling the returned surface an overlay is something of a misnomer because - the contents of the display surface underneath the area where the overlay - is shown is undefined - it may be overwritten with the converted YUV data. -*/ +/** This function creates a video output overlay + * Calling the returned surface an overlay is something of a misnomer because + * the contents of the display surface underneath the area where the overlay + * is shown is undefined - it may be overwritten with the converted YUV data. + */ extern DECLSPEC SDL_Overlay * SDLCALL SDL_CreateYUVOverlay(int width, int height, Uint32 format, SDL_Surface *display); -/* Lock an overlay for direct access, and unlock it when you are done */ +/** Lock an overlay for direct access, and unlock it when you are done */ extern DECLSPEC int SDLCALL SDL_LockYUVOverlay(SDL_Overlay *overlay); extern DECLSPEC void SDLCALL SDL_UnlockYUVOverlay(SDL_Overlay *overlay); -/* Blit a video overlay to the display surface. - The contents of the video surface underneath the blit destination are - not defined. - The width and height of the destination rectangle may be different from - that of the overlay, but currently only 2x scaling is supported. -*/ +/** Blit a video overlay to the display surface. + * The contents of the video surface underneath the blit destination are + * not defined. + * The width and height of the destination rectangle may be different from + * that of the overlay, but currently only 2x scaling is supported. + */ extern DECLSPEC int SDLCALL SDL_DisplayYUVOverlay(SDL_Overlay *overlay, SDL_Rect *dstrect); -/* Free a video overlay */ +/** Free a video overlay */ extern DECLSPEC void SDLCALL SDL_FreeYUVOverlay(SDL_Overlay *overlay); +/*@}*/ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* OpenGL support functions. */ +/** @name OpenGL support functions. */ /*@{*/ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* +/** * Dynamically load an OpenGL library, or the default one if path is NULL * * If you do this, you need to retrieve all of the GL functions used in @@ -783,17 +836,17 @@ extern DECLSPEC void SDLCALL SDL_FreeYUVOverlay(SDL_Overlay *overlay); */ extern DECLSPEC int SDLCALL SDL_GL_LoadLibrary(const char *path); -/* +/** * Get the address of a GL function */ extern DECLSPEC void * SDLCALL SDL_GL_GetProcAddress(const char* proc); -/* +/** * Set an attribute of the OpenGL subsystem before intialization. */ extern DECLSPEC int SDLCALL SDL_GL_SetAttribute(SDL_GLattr attr, int value); -/* +/** * Get an attribute of the OpenGL subsystem from the windowing * interface, such as glX. This is of course different from getting * the values from SDL's internal OpenGL subsystem, which only @@ -804,30 +857,38 @@ extern DECLSPEC int SDLCALL SDL_GL_SetAttribute(SDL_GLattr attr, int value); */ extern DECLSPEC int SDLCALL SDL_GL_GetAttribute(SDL_GLattr attr, int* value); -/* +/** * Swap the OpenGL buffers, if double-buffering is supported. */ extern DECLSPEC void SDLCALL SDL_GL_SwapBuffers(void); -/* +/** @name OpenGL Internal Functions * Internal functions that should not be called unless you have read * and understood the source code for these functions. */ +/*@{*/ extern DECLSPEC void SDLCALL SDL_GL_UpdateRects(int numrects, SDL_Rect* rects); extern DECLSPEC void SDLCALL SDL_GL_Lock(void); extern DECLSPEC void SDLCALL SDL_GL_Unlock(void); +/*@}*/ + +/*@}*/ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* These functions allow interaction with the window manager, if any. */ +/** @name Window Manager Functions */ +/** These functions allow interaction with the window manager, if any. */ /*@{*/ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ -/* - * Sets/Gets the title and icon text of the display window (UTF-8 encoded) +/** + * Sets the title and icon text of the display window (UTF-8 encoded) */ extern DECLSPEC void SDLCALL SDL_WM_SetCaption(const char *title, const char *icon); +/** + * Gets the title and icon text of the display window (UTF-8 encoded) + */ extern DECLSPEC void SDLCALL SDL_WM_GetCaption(char **title, char **icon); -/* +/** * Sets the icon for the display window. * This function must be called before the first call to SDL_SetVideoMode(). * It takes an icon surface, and a mask in MSB format. @@ -835,14 +896,14 @@ extern DECLSPEC void SDLCALL SDL_WM_GetCaption(char **title, char **icon); */ extern DECLSPEC void SDLCALL SDL_WM_SetIcon(SDL_Surface *icon, Uint8 *mask); -/* +/** * This function iconifies the window, and returns 1 if it succeeded. * If the function succeeds, it generates an SDL_APPACTIVE loss event. * This function is a noop and returns 0 in non-windowed environments. */ extern DECLSPEC int SDLCALL SDL_WM_IconifyWindow(void); -/* +/** * Toggle fullscreen mode without changing the contents of the screen. * If the display surface does not require locking before accessing * the pixel information, then the memory pointers will not change. @@ -859,24 +920,25 @@ extern DECLSPEC int SDLCALL SDL_WM_IconifyWindow(void); */ extern DECLSPEC int SDLCALL SDL_WM_ToggleFullScreen(SDL_Surface *surface); -/* - * This function allows you to set and query the input grab state of - * the application. It returns the new input grab state. - */ typedef enum { SDL_GRAB_QUERY = -1, SDL_GRAB_OFF = 0, SDL_GRAB_ON = 1, - SDL_GRAB_FULLSCREEN /* Used internally */ + SDL_GRAB_FULLSCREEN /**< Used internally */ } SDL_GrabMode; -/* +/** + * This function allows you to set and query the input grab state of + * the application. It returns the new input grab state. + * * Grabbing means that the mouse is confined to the application window, * and nearly all keyboard input is passed directly to the application, * and not interpreted by a window manager, if any. */ extern DECLSPEC SDL_GrabMode SDLCALL SDL_WM_GrabInput(SDL_GrabMode mode); -/* Not in public API at the moment - do not use! */ +/*@}*/ + +/** @internal Not in public API at the moment - do not use! */ extern DECLSPEC int SDLCALL SDL_SoftStretch(SDL_Surface *src, SDL_Rect *srcrect, SDL_Surface *dst, SDL_Rect *dstrect); diff --git a/include/begin_code.h b/include/begin_code.h index 40279337f..27e2f7bc7 100644 --- a/include/begin_code.h +++ b/include/begin_code.h @@ -1,6 +1,6 @@ /* SDL - Simple DirectMedia Layer - Copyright (C) 1997-2004 Sam Lantinga + Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public @@ -20,22 +20,30 @@ slouken@libsdl.org */ -/* This file sets things up for C dynamic library function definitions, - static inlined functions, and structures aligned at 4-byte alignment. - If you don't like ugly C preprocessor code, don't look at this file. :) -*/ +/** + * @file begin_code.h + * This file sets things up for C dynamic library function definitions, + * static inlined functions, and structures aligned at 4-byte alignment. + * If you don't like ugly C preprocessor code, don't look at this file. :) + */ -/* This shouldn't be nested -- included it around code only. */ +/** + * @file begin_code.h + * This shouldn't be nested -- included it around code only. + */ #ifdef _begin_code_h #error Nested inclusion of begin_code.h #endif #define _begin_code_h -/* Some compilers use a special export keyword */ +/** + * @def DECLSPEC + * Some compilers use a special export keyword + */ #ifndef DECLSPEC -# if defined(__BEOS__) +# if defined(__BEOS__) || defined(__HAIKU__) # if defined(__GNUC__) -# define DECLSPEC __declspec(dllexport) +# define DECLSPEC # else # define DECLSPEC __declspec(export) # endif @@ -56,6 +64,15 @@ # else # define DECLSPEC # endif +# elif defined (__GNUC__) && __GNUC__ < 4 +# /* Added support for GCC-EMX