From 00b702cdc057e91f6c643f1b9de578af0a2e246e Mon Sep 17 00:00:00 2001 From: knakos Date: Sun, 16 Oct 2005 18:36:13 +0000 Subject: [PATCH] Massive update of the wince port. Works almost correctly on smartphones, pocket pcs need some testing. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@842 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba --- stella/src/wince/FSNodeWinCE.cxx | 636 +- stella/src/wince/FrameBufferWinCE.cpp | 757 +- stella/src/wince/FrameBufferWinCE.hxx | 100 +- stella/src/wince/OSystemWinCE.cxx | 225 +- stella/src/wince/OSystemWinCE.hxx | 38 +- stella/src/wince/PocketStella.cpp | 332 +- stella/src/wince/PocketStella.vcp | 29274 ++++++++++++------------ stella/src/wince/SettingsWinCE.cpp | 38 +- stella/src/wince/SettingsWinCE.hxx | 28 +- stella/src/wince/SoundWinCE.cxx | 770 +- stella/src/wince/SoundWinCE.hxx | 172 +- stella/src/wince/missing.cpp | 257 +- stella/src/wince/missing.h | 50 +- stella/src/wince/resource.rc | 72 + stella/src/wince/resrc1.h | 16 + stella/src/wince/stella.ico | Bin 0 -> 1078 bytes 16 files changed, 16793 insertions(+), 15972 deletions(-) create mode 100644 stella/src/wince/resource.rc create mode 100644 stella/src/wince/resrc1.h create mode 100644 stella/src/wince/stella.ico diff --git a/stella/src/wince/FSNodeWinCE.cxx b/stella/src/wince/FSNodeWinCE.cxx index d59cfea97..897c7a990 100644 --- a/stella/src/wince/FSNodeWinCE.cxx +++ b/stella/src/wince/FSNodeWinCE.cxx @@ -1,331 +1,331 @@ -#include - -#include -#include -#include -#include -//#include - -#include "FSNode.hxx" - -/* - * Implementation of the Stella file system API based on Windows API. - */ - -class WindowsFilesystemNode : public AbstractFilesystemNode -{ - public: - WindowsFilesystemNode(); - WindowsFilesystemNode(const string &path); - WindowsFilesystemNode(const WindowsFilesystemNode* node); - - virtual string displayName() const { return _displayName; } - virtual bool isValid() const { return _isValid; } - virtual bool isDirectory() const { return _isDirectory; } - virtual string path() const { return _path; } - - virtual FSList listDir(ListMode) const; - virtual AbstractFilesystemNode* parent() const; - - protected: - string _displayName; - bool _isDirectory; - bool _isValid; - bool _isPseudoRoot; - string _path; - - private: - static char* toAscii(TCHAR* x); - static TCHAR* toUnicode(char* x); - static void addFile (FSList& list, ListMode mode, - const char* base, WIN32_FIND_DATA* find_data); -}; - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -static const char* lastPathComponent(const string& str) -{ - const char* start = str.c_str(); - const char* cur = start + str.size() - 2; - - while (cur > start && *cur != '\\') - --cur; - - return cur + 1; -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -static string validatePath(const string& p) - +#include + +#include +#include +#include +#include +//#include + +#include "FSNode.hxx" + +/* + * Implementation of the Stella file system API based on Windows API. + */ + +class WindowsFilesystemNode : public AbstractFilesystemNode { - + public: + WindowsFilesystemNode(); + WindowsFilesystemNode(const string &path); + WindowsFilesystemNode(const WindowsFilesystemNode* node); + + virtual string displayName() const { return _displayName; } + virtual bool isValid() const { return _isValid; } + virtual bool isDirectory() const { return _isDirectory; } + virtual string path() const { return _path; } + + virtual FSList listDir(ListMode) const; + virtual AbstractFilesystemNode* parent() const; + + protected: + string _displayName; + bool _isDirectory; + bool _isValid; + bool _isPseudoRoot; + string _path; + + private: + static char* toAscii(TCHAR* x); + static TCHAR* toUnicode(char* x); + static void addFile (FSList& list, ListMode mode, + const char* base, WIN32_FIND_DATA* find_data); +}; + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +static const char* lastPathComponent(const string& str) +{ + const char* start = str.c_str(); + const char* cur = start + str.size() - 2; + + while (cur > start && *cur != '\\') + --cur; + + return cur + 1; +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +static string validatePath(const string& p) + +{ + string path = p; - + /* if(p.size() < 2 || p[1] != ':') - + path = "c:"; -*/ +*/ return path; } - - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -char* WindowsFilesystemNode::toAscii(TCHAR* x) -{ -#ifndef UNICODE - return (char*)x; -#else - static char asciiString[MAX_PATH]; - WideCharToMultiByte(CP_ACP, 0, x, _tcslen(x) + 1, asciiString, sizeof(asciiString), NULL, NULL); - return asciiString; -#endif -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -TCHAR* WindowsFilesystemNode::toUnicode(char* x) -{ -#ifndef UNICODE - return (TCHAR*)x; -#else - static TCHAR unicodeString[MAX_PATH]; - MultiByteToWideChar(CP_ACP, 0, x, strlen(x) + 1, unicodeString, sizeof(unicodeString)); - return unicodeString; -#endif -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void WindowsFilesystemNode::addFile(FSList& list, ListMode mode, - const char* base, WIN32_FIND_DATA* find_data) -{ - WindowsFilesystemNode entry; - char* asciiName = toAscii(find_data->cFileName); - bool isDirectory; - - // Skip local directory (.) and parent (..) - if (!strcmp(asciiName, ".") || !strcmp(asciiName, "..")) - return; - - isDirectory = (find_data->dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY ? true : false); - - if ((!isDirectory && mode == kListDirectoriesOnly) || - (isDirectory && mode == kListFilesOnly)) - return; - - entry._isDirectory = isDirectory; - entry._displayName = asciiName; - entry._path = base; - entry._path += asciiName; - if (entry._isDirectory) - entry._path += "\\"; - entry._isValid = true; - entry._isPseudoRoot = false; - - list.push_back(wrap(new WindowsFilesystemNode(&entry))); -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -AbstractFilesystemNode* FilesystemNode::getRoot() -{ - return new WindowsFilesystemNode(); -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -AbstractFilesystemNode* FilesystemNode::getNodeForPath(const string& path) -{ - return new WindowsFilesystemNode(path); -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -WindowsFilesystemNode::WindowsFilesystemNode() -{ - _isDirectory = true; - - // Create a virtual root directory for standard Windows system - _isValid = false; - _path = ""; - _isPseudoRoot = true; -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -WindowsFilesystemNode::WindowsFilesystemNode(const string& path) -{ - _path = validatePath(path); - _displayName = lastPathComponent(_path); - _isValid = true; - _isDirectory = true; - _isPseudoRoot = false; -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -WindowsFilesystemNode::WindowsFilesystemNode(const WindowsFilesystemNode* node) -{ - _displayName = node->_displayName; - _isDirectory = node->_isDirectory; - _isValid = node->_isValid; - _isPseudoRoot = node->_isPseudoRoot; - _path = node->_path; -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -FSList WindowsFilesystemNode::listDir(ListMode mode) const -{ - assert(_isDirectory); - - FSList myList; - - if (_isPseudoRoot) - { - addFile(myList, mode, "\\", NULL); - // Drives enumeration -/* TCHAR drive_buffer[100]; - GetLogicalDriveStrings(sizeof(drive_buffer) / sizeof(TCHAR), drive_buffer); - - for (TCHAR *current_drive = drive_buffer; *current_drive; - current_drive += _tcslen(current_drive) + 1) - { - WindowsFilesystemNode entry; - char drive_name[2]; - - drive_name[0] = toAscii(current_drive)[0]; - drive_name[1] = '\0'; - entry._displayName = drive_name; - entry._isDirectory = true; - entry._isValid = true; - entry._isPseudoRoot = false; - entry._path = toAscii(current_drive); - myList.push_back(wrap(new WindowsFilesystemNode(&entry))); - }*/ - } - else - { - // Files enumeration - WIN32_FIND_DATA desc; - HANDLE handle; - char searchPath[MAX_PATH + 10]; - - sprintf(searchPath, "%s*", _path.c_str()); - - handle = FindFirstFile(toUnicode(searchPath), &desc); - if (handle == INVALID_HANDLE_VALUE) - return myList; - - addFile(myList, mode, _path.c_str(), &desc); - while (FindNextFile(handle, &desc)) - addFile(myList, mode, _path.c_str(), &desc); - - FindClose(handle); - } - - return myList; -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -AbstractFilesystemNode* WindowsFilesystemNode::parent() const -{ - assert(_isValid || _isPseudoRoot); - if (_isPseudoRoot) - return 0; - - WindowsFilesystemNode* p = new WindowsFilesystemNode(); - if (_path.size() > 3) - { - const char *start = _path.c_str(); - const char *end = lastPathComponent(_path); - - p = new WindowsFilesystemNode(); - p->_path = string(start, end - start); - p->_isValid = true; - p->_isDirectory = true; - p->_displayName = lastPathComponent(p->_path); - p->_isPseudoRoot = false; - } - - return p; -} - + + // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +char* WindowsFilesystemNode::toAscii(TCHAR* x) +{ +#ifndef UNICODE + return (char*)x; +#else + static char asciiString[MAX_PATH]; + WideCharToMultiByte(CP_ACP, 0, x, _tcslen(x) + 1, asciiString, sizeof(asciiString), NULL, NULL); + return asciiString; +#endif +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +TCHAR* WindowsFilesystemNode::toUnicode(char* x) +{ +#ifndef UNICODE + return (TCHAR*)x; +#else + static TCHAR unicodeString[MAX_PATH]; + MultiByteToWideChar(CP_ACP, 0, x, strlen(x) + 1, unicodeString, sizeof(unicodeString)); + return unicodeString; +#endif +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +void WindowsFilesystemNode::addFile(FSList& list, ListMode mode, + const char* base, WIN32_FIND_DATA* find_data) +{ + WindowsFilesystemNode entry; + char* asciiName = toAscii(find_data->cFileName); + bool isDirectory; + + // Skip local directory (.) and parent (..) + if (!strcmp(asciiName, ".") || !strcmp(asciiName, "..")) + return; + + isDirectory = (find_data->dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY ? true : false); + + if ((!isDirectory && mode == kListDirectoriesOnly) || + (isDirectory && mode == kListFilesOnly)) + return; + + entry._isDirectory = isDirectory; + entry._displayName = asciiName; + entry._path = base; + entry._path += asciiName; + if (entry._isDirectory) + entry._path += "\\"; + entry._isValid = true; + entry._isPseudoRoot = false; + + list.push_back(wrap(new WindowsFilesystemNode(&entry))); +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +AbstractFilesystemNode* FilesystemNode::getRoot() +{ + return new WindowsFilesystemNode(); +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +AbstractFilesystemNode* FilesystemNode::getNodeForPath(const string& path) +{ + return new WindowsFilesystemNode(path); +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +WindowsFilesystemNode::WindowsFilesystemNode() +{ + _isDirectory = true; + + // Create a virtual root directory for standard Windows system + _isValid = false; + _path = ""; + _isPseudoRoot = true; +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +WindowsFilesystemNode::WindowsFilesystemNode(const string& path) +{ + _path = validatePath(path); + _displayName = lastPathComponent(_path); + _isValid = true; + _isDirectory = true; + _isPseudoRoot = false; +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +WindowsFilesystemNode::WindowsFilesystemNode(const WindowsFilesystemNode* node) +{ + _displayName = node->_displayName; + _isDirectory = node->_isDirectory; + _isValid = node->_isValid; + _isPseudoRoot = node->_isPseudoRoot; + _path = node->_path; +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +FSList WindowsFilesystemNode::listDir(ListMode mode) const +{ + assert(_isDirectory); + + FSList myList; + + if (_isPseudoRoot) + { + addFile(myList, mode, "\\", NULL); + // Drives enumeration +/* TCHAR drive_buffer[100]; + GetLogicalDriveStrings(sizeof(drive_buffer) / sizeof(TCHAR), drive_buffer); + + for (TCHAR *current_drive = drive_buffer; *current_drive; + current_drive += _tcslen(current_drive) + 1) + { + WindowsFilesystemNode entry; + char drive_name[2]; + + drive_name[0] = toAscii(current_drive)[0]; + drive_name[1] = '\0'; + entry._displayName = drive_name; + entry._isDirectory = true; + entry._isValid = true; + entry._isPseudoRoot = false; + entry._path = toAscii(current_drive); + myList.push_back(wrap(new WindowsFilesystemNode(&entry))); + }*/ + } + else + { + // Files enumeration + WIN32_FIND_DATA desc; + HANDLE handle; + char searchPath[MAX_PATH + 10]; + + sprintf(searchPath, "%s*", _path.c_str()); + + handle = FindFirstFile(toUnicode(searchPath), &desc); + if (handle == INVALID_HANDLE_VALUE) + return myList; + + addFile(myList, mode, _path.c_str(), &desc); + while (FindNextFile(handle, &desc)) + addFile(myList, mode, _path.c_str(), &desc); + + FindClose(handle); + } + + return myList; +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +AbstractFilesystemNode* WindowsFilesystemNode::parent() const +{ + assert(_isValid || _isPseudoRoot); + if (_isPseudoRoot) + return 0; + + WindowsFilesystemNode* p = new WindowsFilesystemNode(); + if (_path.size() > 3) + { + const char *start = _path.c_str(); + const char *end = lastPathComponent(_path); + + p = new WindowsFilesystemNode(); + p->_path = string(start, end - start); + p->_isValid = true; + p->_isDirectory = true; + p->_displayName = lastPathComponent(p->_path); + p->_isPseudoRoot = false; + } + + return p; +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + bool AbstractFilesystemNode::fileExists(const string& path) - + { - - WIN32_FILE_ATTRIBUTE_DATA attr; - - static TCHAR unicodeString[MAX_PATH]; - MultiByteToWideChar(CP_ACP, 0, path.c_str(), strlen(path.c_str()) + 1, unicodeString, sizeof(unicodeString)); - - - BOOL b = GetFileAttributesEx(unicodeString, GetFileExInfoStandard, &attr); - - - return ((b != 0) && !(attr.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)); - -} - - - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -bool AbstractFilesystemNode::dirExists(const string& path) - -{ - - WIN32_FILE_ATTRIBUTE_DATA attr; - TCHAR unicodeString[MAX_PATH]; - string tmp(path); - if (tmp.at(path.size()-1) == '\\') - tmp.resize(path.size()-1); - MultiByteToWideChar(CP_ACP, 0, tmp.c_str(), strlen(path.c_str()) + 1, unicodeString, sizeof(unicodeString)); - - BOOL b = GetFileAttributesEx(unicodeString, GetFileExInfoStandard, &attr); - - - - return ((b != 0) && (attr.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)); - -} - - - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -bool AbstractFilesystemNode::makeDir(const string& path) - -{ - TCHAR unicodeString[MAX_PATH]; - string tmp(path); - if (tmp.at(path.size()-1) == '\\') - tmp.resize(path.size()-1); - MultiByteToWideChar(CP_ACP, 0, tmp.c_str(), strlen(path.c_str()) + 1, unicodeString, sizeof(unicodeString)); - - return CreateDirectory(unicodeString, NULL) != 0; - -} - - - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -string AbstractFilesystemNode::modTime(const string& path) - -{ - WIN32_FILE_ATTRIBUTE_DATA attr; - - static TCHAR unicodeString[MAX_PATH]; - MultiByteToWideChar(CP_ACP, 0, path.c_str(), strlen(path.c_str()) + 1, unicodeString, sizeof(unicodeString)); - + + static TCHAR unicodeString[MAX_PATH]; + MultiByteToWideChar(CP_ACP, 0, path.c_str(), strlen(path.c_str()) + 1, unicodeString, sizeof(unicodeString)); + + BOOL b = GetFileAttributesEx(unicodeString, GetFileExInfoStandard, &attr); - - if(b == 0) - - return ""; - - ostringstream buf; - - buf << attr.ftLastWriteTime.dwHighDateTime << attr.ftLastWriteTime.dwLowDateTime; - - return buf.str(); + + + + return ((b != 0) && !(attr.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)); + } - + + + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +bool AbstractFilesystemNode::dirExists(const string& path) + +{ + + WIN32_FILE_ATTRIBUTE_DATA attr; + TCHAR unicodeString[MAX_PATH]; + string tmp(path); + if (tmp.at(path.size()-1) == '\\') + tmp.resize(path.size()-1); + MultiByteToWideChar(CP_ACP, 0, tmp.c_str(), strlen(path.c_str()) + 1, unicodeString, sizeof(unicodeString)); + + BOOL b = GetFileAttributesEx(unicodeString, GetFileExInfoStandard, &attr); + + + + return ((b != 0) && (attr.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)); + +} + + + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +bool AbstractFilesystemNode::makeDir(const string& path) + +{ + TCHAR unicodeString[MAX_PATH]; + string tmp(path); + if (tmp.at(path.size()-1) == '\\') + tmp.resize(path.size()-1); + MultiByteToWideChar(CP_ACP, 0, tmp.c_str(), strlen(path.c_str()) + 1, unicodeString, sizeof(unicodeString)); + + return CreateDirectory(unicodeString, NULL) != 0; + +} + + + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +string AbstractFilesystemNode::modTime(const string& path) + +{ + + WIN32_FILE_ATTRIBUTE_DATA attr; + + static TCHAR unicodeString[MAX_PATH]; + MultiByteToWideChar(CP_ACP, 0, path.c_str(), strlen(path.c_str()) + 1, unicodeString, sizeof(unicodeString)); + + BOOL b = GetFileAttributesEx(unicodeString, GetFileExInfoStandard, &attr); + + if(b == 0) + + return ""; + + ostringstream buf; + + buf << attr.ftLastWriteTime.dwHighDateTime << attr.ftLastWriteTime.dwLowDateTime; + + return buf.str(); +} + diff --git a/stella/src/wince/FrameBufferWinCE.cpp b/stella/src/wince/FrameBufferWinCE.cpp index 8f313b179..57c6b1b0a 100644 --- a/stella/src/wince/FrameBufferWinCE.cpp +++ b/stella/src/wince/FrameBufferWinCE.cpp @@ -1,253 +1,504 @@ -#include -#include -#include "FrameBufferWinCE.hxx" -#include "Console.hxx" -#include "OSystem.hxx" -#include "Font.hxx" - -FrameBufferWinCE::FrameBufferWinCE(OSystem *osystem) -: FrameBuffer(osystem), myDstScreen(NULL), SubsystemInited(false), displacement(0) -{ -} - -FrameBufferWinCE::~FrameBufferWinCE() -{ -} - -void FrameBufferWinCE::setPalette(const uInt32* palette) -{ - //setup palette - GXDisplayProperties gxdp = GXGetDisplayProperties(); - for (uInt16 i=0; i<256; i++) - { - uInt8 r = (uInt8) ((palette[i] & 0xFF0000) >> 16); - uInt8 g = (uInt8) ((palette[i] & 0x00FF00) >> 8); - uInt8 b = (uInt8) (palette[i] & 0x0000FF); - if(gxdp.ffFormat & kfDirect565) - pal[i] = (uInt16) ( ((r & 0xF8) << 8) | ((g & 0xFC) << 3) | ((b & 0xF8) >> 3) ); - else if(gxdp.ffFormat & kfDirect555) - pal[i] = (uInt16) ( ((r & 0xF8) << 7) | ((g & 0xF8) << 3) | ((b & 0xF8) >> 3) ); - else - return; - } - SubsystemInited = false; -} - -bool FrameBufferWinCE::initSubsystem() -{ - GXDisplayProperties gxdp = GXGetDisplayProperties(); - for (int i=0; i> 3) ); - else if(gxdp.ffFormat & kfDirect555) - guipal[i] = (uInt16) ( ((r & 0xF8) << 7) | ((g & 0xF8) << 3) | ((b & 0xF8) >> 3) ); - else - return false; - } - // screen extents - //GXDisplayProperties gxdp = GXGetDisplayProperties(); - pixelstep = gxdp.cbxPitch; - linestep = gxdp.cbyPitch; - scrwidth = gxdp.cxWidth; - scrheight = gxdp.cyHeight; - - SubsystemInited = false; - return true; -} - -void FrameBufferWinCE::lateinit(void) -{ - myWidth = myOSystem->console().mediaSource().width(); - myHeight = myOSystem->console().mediaSource().height(); - if (scrwidth > myWidth) - displacement = (scrwidth - myWidth) / 2 * pixelstep; - else - displacement = 0; - if (scrheight > myHeight) - displacement += (scrheight - myHeight) / 2 * linestep; - - SubsystemInited = true; -} - -void FrameBufferWinCE::preFrameUpdate() -{ - myDstScreen = (uInt8 *) GXBeginDraw(); -} - -void FrameBufferWinCE::drawMediaSource() -{ - uInt8 *sc, *sp; - uInt8 *d, *pl; - - if (!SubsystemInited) - { - lateinit(); - return; - } - - if ( (d = myDstScreen) == NULL ) - return; - - d += displacement; - pl = d; - sc = myOSystem->console().mediaSource().currentFrameBuffer(); - sp = myOSystem->console().mediaSource().previousFrameBuffer(); - for (uInt16 y=0; y>2); x++) - { - if ( *((uInt32 *) sc) != *((uInt32 *) sp) ) - { - *((uInt16 *)d) = pal[*sc++]; d += pixelstep; - *((uInt16 *)d) = pal[*sc++]; d += pixelstep; - *((uInt16 *)d) = pal[*sc++]; d += pixelstep; - *((uInt16 *)d) = pal[*sc++]; d += pixelstep; - } - else - { - sc += 4; - d += (pixelstep << 2); - } - sp += 4; - } - d = pl + linestep; - pl = d; - } -} - -void FrameBufferWinCE::postFrameUpdate() -{ - GXEndDraw(); -} - -void FrameBufferWinCE::drawChar(const GUI::Font* font, uInt8 c, uInt32 x, uInt32 y, OverlayColor color) -{ - GUI::Font* myfont = (GUI::Font*)font; - const FontDesc& desc = myfont->desc(); - - if (!myDstScreen) return; - //if (!SubsystemInited) {lateinit(false); return;} - - if(c < desc.firstchar || c >= desc.firstchar + desc.size) - { - if (c == ' ') - return; - c = desc.defaultchar; - } - - const Int32 w = myfont->getCharWidth(c); - const Int32 h = myfont->getFontHeight(); - c -= desc.firstchar; - const uInt16* tmp = desc.bits + (desc.offset ? desc.offset[c] : (c * h)); - - uInt8 *d = myDstScreen + (y/* >> 1*/) * linestep + (x >> 1) * pixelstep; - uInt32 stride = (scrwidth - w) * pixelstep; - uInt16 col = guipal[((int) color) - 256]; - - for(int y2 = 0; y2 < h; y2++) - { - const uInt16 buffer = *tmp++; - uInt16 mask = 0x8000; - - for(int x2 = 0; x2 < w; x2++, mask >>= 1) - { - if ((buffer & mask) != 0) - { - *((uInt16 *)d) = col; - } - d += pixelstep; - } - d += stride; - } -} - -void FrameBufferWinCE::scanline(uInt32 row, uInt8* data) -{ - return; -} - -void FrameBufferWinCE::setAspectRatio() -{ - return; -} - -bool FrameBufferWinCE::createScreen() -{ - return true; -} - -void FrameBufferWinCE::toggleFilter() -{ - return; -} - -uInt32 FrameBufferWinCE::mapRGB(Uint8 r, Uint8 g, Uint8 b) -{ - return 0xFFFFFFFF; -} - -void FrameBufferWinCE::hLine(uInt32 x, uInt32 y, uInt32 x2, OverlayColor color) -{ - if (!myDstScreen) return; - //if (!SubsystemInited) {lateinit(false); return;} - int kx = x >> 1; int ky = y/* >> 1*/; int kx2 = x2>> 1; - uInt8 *d = myDstScreen + ky * linestep + kx * pixelstep; - uInt16 col = guipal[((int) color) - 256]; - for (;kx < kx2; kx++) - { - *((uInt16 *)d) = col; - d += pixelstep; - } -} - -void FrameBufferWinCE::vLine(uInt32 x, uInt32 y, uInt32 y2, OverlayColor color) -{ - if (!myDstScreen) return; - //if (!SubsystemInited) {lateinit(false); return;} - int kx = x >> 1; int ky = y/* >> 1*/; int ky2 = y2>> 1; - uInt8 *d = myDstScreen + ky * linestep + kx * pixelstep; - uInt16 col = guipal[((int) color) - 256]; - for (;ky < ky2; ky++) - { - *((uInt16 *)d) = col; - d += linestep; - } -} - -void FrameBufferWinCE::fillRect(uInt32 x, uInt32 y, uInt32 w, uInt32 h, OverlayColor color) -{ - if (!myDstScreen) return; - //if (!SubsystemInited) {lateinit(false); return;} - int kx = x >> 1; int ky = y/* >> 1*/; int kw = (w >> 1) - 1; int kh = h /*>> 1*/; - uInt8 *d = myDstScreen + ky * linestep + kx * pixelstep; - uInt16 col = guipal[((int) color) - 256]; - uInt32 stride = (scrwidth - kw - 1) * pixelstep; - for (int h2 = kh; h2 >= 0; h2--) - { - for (int w2 = kw; w2>=0; w2--) - { - *((uInt16 *)d) = col; - d += pixelstep; - } - d += stride; - } -} - -void FrameBufferWinCE::drawBitmap(uInt32* bitmap, Int32 x, Int32 y, OverlayColor color, Int32 h) -{ - return; -} - -void FrameBufferWinCE::translateCoords(Int32* x, Int32* y) -{ - return; -} - -void FrameBufferWinCE::addDirtyRect(uInt32 x, uInt32 y, uInt32 w, uInt32 h) -{ - return; -} +#include +#include "FrameBufferWinCE.hxx" +#include "Console.hxx" +#include "OSystem.hxx" +#include "Font.hxx" + +#define OPTPIXAVERAGE(pix1,pix2) ( ((((pix1 & optgreenmaskN) + (pix2 & optgreenmaskN)) >> 1) & optgreenmaskN) | ((((pix1 & optgreenmask) + (pix2 & optgreenmask)) >> 1) & optgreenmask) ) + +FrameBufferWinCE::FrameBufferWinCE(OSystem *osystem) +: FrameBuffer(osystem), myDstScreen(NULL), SubsystemInited(false), displacement(0), + issmartphone(true), islandscape(false), displaymode(0) +{ +} + +FrameBufferWinCE::~FrameBufferWinCE() +{ +} + +void FrameBufferWinCE::setPalette(const uInt32* palette) +{ + //setup palette + gxdp = GXGetDisplayProperties(); + for (uInt16 i=0; i<256; i++) + { + uInt8 r = (uInt8) ((palette[i] & 0xFF0000) >> 16); + uInt8 g = (uInt8) ((palette[i] & 0x00FF00) >> 8); + uInt8 b = (uInt8) (palette[i] & 0x0000FF); + if(gxdp.ffFormat & kfDirect565) + pal[i] = (uInt16) ( ((r & 0xF8) << 8) | ((g & 0xFC) << 3) | ((b & 0xF8) >> 3) ); + else if(gxdp.ffFormat & kfDirect555) + pal[i] = (uInt16) ( ((r & 0xF8) << 7) | ((g & 0xF8) << 3) | ((b & 0xF8) >> 3) ); + else + return; + } + SubsystemInited = false; +} + +bool FrameBufferWinCE::initSubsystem() +{ + gxdp = GXGetDisplayProperties(); + for (int i=0; i> 3) ); + else if(gxdp.ffFormat & kfDirect555) + guipal[i] = (uInt16) ( ((r & 0xF8) << 7) | ((g & 0xF8) << 3) | ((b & 0xF8) >> 3) ); + else + return false; + } + // screen extents + if(gxdp.ffFormat & kfDirect565) + { + optgreenmask = 0x7E0; + optgreenmaskN = 0xF81F; + } + else + { + optgreenmask = 0x3E0; + optgreenmaskN = 0x7C1F; + } + + scrwidth = gxdp.cxWidth; + scrheight = gxdp.cyHeight; + if (scrwidth == 176 && scrheight == 220) + issmartphone = true; + else + issmartphone = false; + islandscape = false; + setmode(0); + + SubsystemInited = false; + return true; +} + +void FrameBufferWinCE::setmode(uInt8 mode) +{ + displaymode = mode % 3; + switch (displaymode) + { + // portrait + case 0: + pixelstep = gxdp.cbxPitch; + linestep = gxdp.cbyPitch; + islandscape = false; + break; + + // landscape + case 1: + pixelstep = - gxdp.cbyPitch; + linestep = gxdp.cbxPitch; + islandscape = true; + break; + + // inverted landscape + case 2: + pixelstep = gxdp.cbyPitch; + linestep = - gxdp.cbxPitch; + islandscape = true; + break; + } + + pixelsteptimes5 = pixelstep * 5; + pixelsteptimes6 = pixelstep * 6; + SubsystemInited = false; +} + +int FrameBufferWinCE::rotatedisplay(void) +{ + displaymode = (displaymode + 1) % 3; + setmode(displaymode); + wipescreen(); + return displaymode; +} + +void FrameBufferWinCE::lateinit(void) +{ + int w; + myWidth = myOSystem->console().mediaSource().width(); + myHeight = myOSystem->console().mediaSource().height(); + + if (issmartphone) + if (!islandscape) + w = myWidth; + else + w = (int) ((float) myWidth * 11.0 / 8.0 + 0.5); + else + if (!islandscape) + w = (int) ((float) myWidth * 3.0 / 2.0 + 0.5); + else + w = myWidth * 2; + + switch (displaymode) + { + case 0: + if (scrwidth > w) + displacement = (scrwidth - w) / 2 * gxdp.cbxPitch; + else + displacement = 0; + if (scrheight > myHeight) + { + displacement += (scrheight - myHeight) / 2 * gxdp.cbyPitch; + minydim = myHeight; + } + else + minydim = scrheight; + break; + + case 1: + displacement = gxdp.cbyPitch*(gxdp.cyHeight-1); + if (scrwidth > myHeight) + { + minydim = myHeight; + displacement += (scrwidth - myHeight) / 2 * gxdp.cbxPitch; + } + else + minydim = scrwidth; + if (scrheight > w) + displacement -= (scrheight - w) / 2 * gxdp.cbyPitch; + break; + + case 2: + displacement = gxdp.cbxPitch*(gxdp.cxWidth-1); + if (scrwidth > myHeight) + { + minydim = myHeight; + displacement -= (scrwidth - myHeight) / 2 * gxdp.cbxPitch; + } + else + minydim = scrwidth; + if (scrheight > w) + displacement += (scrheight - w) / 2 * gxdp.cbyPitch; + break; + + } + + SubsystemInited = true; +} + +void FrameBufferWinCE::preFrameUpdate() +{ + myDstScreen = (uInt8 *) GXBeginDraw(); +} + +void FrameBufferWinCE::drawMediaSource() +{ + // TODO: define these static, also x & y + uInt8 *sc, *sp; + uInt8 *d, *pl; + uInt16 pix1, pix2; + + if (!SubsystemInited) + lateinit(); + + if ( (d = myDstScreen) == NULL ) + return; + + d += displacement; + pl = d; + sc = myOSystem->console().mediaSource().currentFrameBuffer(); + sp = myOSystem->console().mediaSource().previousFrameBuffer(); + + if (issmartphone && islandscape == 0) + { + // straight + for (uInt16 y=0; y>2); x++) + { + if ( *((uInt32 *) sc) != *((uInt32 *) sp) ) + { + *((uInt16 *)d) = pal[*sc++]; d += pixelstep; + *((uInt16 *)d) = pal[*sc++]; d += pixelstep; + *((uInt16 *)d) = pal[*sc++]; d += pixelstep; + *((uInt16 *)d) = pal[*sc++]; d += pixelstep; + } + else + { + sc += 4; + d += (pixelstep << 2); + } + sp += 4; + } + d = pl + linestep; + pl = d; + } + } + else if (issmartphone && islandscape) + { + for (uInt16 y=0; y>2); x++) + { + // 11/8 + // **X** + if ( *((uInt32 *) sc) != *((uInt32 *) sp) ) + { + *((uInt16 *)d) = pal[*sc++]; d += pixelstep; + pix1 = pal[*sc++]; pix2 = pal[*sc++]; + *((uInt16 *)d) = pix1; d += pixelstep; + *((uInt16 *)d) = OPTPIXAVERAGE(pix1,pix2); d += pixelstep; + *((uInt16 *)d) = pix2; d += pixelstep; + *((uInt16 *)d) = pal[*sc++]; d += pixelstep; + } + else + { + sc += 4; + d += pixelsteptimes5; + } + sp += 4; + if (++x>=(myWidth>>2)) break; + + // *X**X* + if ( *((uInt32 *) sc) != *((uInt32 *) sp) ) + { + pix1 = pal[*sc++]; pix2 = pal[*sc++]; + *((uInt16 *)d) = pix1; d += pixelstep; + *((uInt16 *)d) = OPTPIXAVERAGE(pix1,pix2); d += pixelstep; + *((uInt16 *)d) = pix2; d += pixelstep; + pix1 = pal[*sc++]; pix2 = pal[*sc++]; + *((uInt16 *)d) = pix1; d += pixelstep; + *((uInt16 *)d) = OPTPIXAVERAGE(pix1,pix2); d += pixelstep; + *((uInt16 *)d) = pix2; d += pixelstep; + } + else + { + sc += 4; + d += pixelsteptimes6; + } + sp += 4; + } + d = pl + linestep; + pl = d; + } + } + else if (issmartphone == 0 && islandscape == 0) + { + // 3/2 + for (uInt16 y=0; y>2); x++) + { + if ( *((uInt32 *) sc) != *((uInt32 *) sp) ) + { + pix1 = pal[*sc++]; pix2 = pal[*sc++]; + *((uInt16 *)d) = pix1; d += pixelstep; + *((uInt16 *)d) = OPTPIXAVERAGE(pix1,pix2); d += pixelstep; + *((uInt16 *)d) = pix2; d += pixelstep; + pix1 = pal[*sc++]; pix2 = pal[*sc++]; + *((uInt16 *)d) = pix1; d += pixelstep; + *((uInt16 *)d) = OPTPIXAVERAGE(pix1,pix2); d += pixelstep; + *((uInt16 *)d) = pix2; d += pixelstep; + } + else + { + sc += 4; + d += pixelsteptimes6; + } + sp += 4; + } + d = pl + linestep; + pl = d; + } + } + else if (issmartphone == 0 && islandscape) + { + // 2/1 + for (uInt16 y=0; y>2); x++) + { + if ( *((uInt32 *) sc) != *((uInt32 *) sp) ) + { + pix1 = pal[*sc++]; pix2 = pal[*sc++]; + *((uInt16 *)d) = pix1; d += pixelstep; + *((uInt16 *)d) = OPTPIXAVERAGE(pix1,pix2); d += pixelstep; + pix1 = pal[*sc++]; + *((uInt16 *)d) = pix2; d += pixelstep; + *((uInt16 *)d) = OPTPIXAVERAGE(pix1,pix2); d += pixelstep; + pix2 = pal[*sc++]; + *((uInt16 *)d) = pix1; d += pixelstep; + *((uInt16 *)d) = OPTPIXAVERAGE(pix1,pix2); d += pixelstep; + pix1 = pal[*sc++]; + *((uInt16 *)d) = pix2; d += pixelstep; + *((uInt16 *)d) = OPTPIXAVERAGE(pix1,pix2); d += pixelstep; + } + else + { + sc += 4; + d += (pixelstep << 3); + } + sp += 4; + } + d = pl + linestep; + pl = d; + } + } + +} + +void FrameBufferWinCE::wipescreen(void) +{ + uInt8 *d; + + if (!SubsystemInited) + lateinit(); + + if (&(myOSystem->console().mediaSource()) != NULL) + { + uInt8 *s = myOSystem->console().mediaSource().currentFrameBuffer(); + memset(s, 0, myWidth*myHeight-1); + } + + if ( (d = (uInt8 *) GXBeginDraw()) == NULL ) + return; + for (int i=0; i < scrwidth*scrheight; i++, *((uInt16 *)d) = 0, d += 2); + GXEndDraw(); +} + +void FrameBufferWinCE::postFrameUpdate() +{ + GXEndDraw(); +} + +void FrameBufferWinCE::drawChar(const GUI::Font* font, uInt8 c, uInt32 x, uInt32 y, OverlayColor color) +{ + GUI::Font* myfont = (GUI::Font*)font; + const FontDesc& desc = myfont->desc(); + + if (!myDstScreen) return; + + if(c < desc.firstchar || c >= desc.firstchar + desc.size) + { + if (c == ' ') + return; + c = desc.defaultchar; + } + + const Int32 w = myfont->getCharWidth(c) >> 1; + const Int32 h = myfont->getFontHeight(); + c -= desc.firstchar; + const uInt16* tmp = desc.bits + (desc.offset ? desc.offset[c] : (c * h)); + + if (x<0 || y<0 || (x>>1)+w>scrwidth || y+h>scrheight) return; + + uInt8 *d = myDstScreen + (y/* >> 1*/) * linestep + (x >> 1) * pixelstep; + uInt32 stride = (scrwidth - w) * pixelstep; + uInt16 col = guipal[((int) color) - 256]; + uInt16 col2 = (col >> 1) & 0xFFE0; + + for(int y2 = 0; y2 < h; y2++) + { + const uInt16 buffer = *tmp++; + uInt16 mask = 0x8000; + + for(int x2 = 0; x2 < w; x2++, mask >>= 2) + { + if (((buffer & mask) != 0) ^ ((buffer & mask>>1) != 0)) + *((uInt16 *)d) = col2; + else if (((buffer & mask) != 0) && ((buffer & mask>>1) != 0)) + *((uInt16 *)d) = col; + d += pixelstep; + } + d += stride; + } +} + +void FrameBufferWinCE::scanline(uInt32 row, uInt8* data) +{ + return; +} + +void FrameBufferWinCE::setAspectRatio() +{ + return; +} + +bool FrameBufferWinCE::createScreen() +{ + return true; +} + +void FrameBufferWinCE::toggleFilter() +{ + return; +} + +uInt32 FrameBufferWinCE::mapRGB(Uint8 r, Uint8 g, Uint8 b) +{ + return 0xFFFFFFFF; +} + +void FrameBufferWinCE::hLine(uInt32 x, uInt32 y, uInt32 x2, OverlayColor color) +{ + if (!myDstScreen) return; + int kx = x >> 1; int ky = y/* >> 1*/; int kx2 = x2>> 1; + + //if (kx<0 || ky<0 || kx2<0 || kx+kx2>scrwidth || ky>scrheight) return; + if (kx<0) kx=0; if (ky<0) ky=0; if (ky>scrheight-1) return; if (kx2>scrwidth-1) kx2=scrwidth-1; + + uInt8 *d = myDstScreen + ky * linestep + kx * pixelstep; + uInt16 col = guipal[((int) color) - 256]; + for (;kx < kx2; kx++, *((uInt16 *)d) = col, d += pixelstep); +} + +void FrameBufferWinCE::vLine(uInt32 x, uInt32 y, uInt32 y2, OverlayColor color) +{ + if (!myDstScreen) return; + int kx = x >> 1; int ky = y/* >> 1*/; int ky2 = y2 /*>> 1*/; + + //if (kx<0 || ky<0 || ky2<0 || ky+ky2>scrheight || kx>scrwidth) return; + if (kx<0) kx=0; if (ky<0) ky=0; if (kx>scrwidth-1) return; if (ky2>scrheight-1) ky2=scrheight-1; + + uInt8 *d = myDstScreen + ky * linestep + kx * pixelstep; + uInt16 col = guipal[((int) color) - 256]; + for (;ky < ky2; ky++, *((uInt16 *)d) = col, d += linestep); +} + +void FrameBufferWinCE::fillRect(uInt32 x, uInt32 y, uInt32 w, uInt32 h, OverlayColor color) +{ + if (!myDstScreen) return; + int kx = x >> 1; int ky = y/* >> 1*/; int kw = (w >> 1) - 1; int kh = h /*>> 1*/; + + //if (kx<0 || ky<0 || kw<0 || kh<0 || kx+kw>scrwidth || ky+kh>scrheight) return; + if (kx<0) kx=0; if (ky<0) ky=0;if (kw<0) kw=0; if (kh<0) kh=0; + if (kx+kw>scrwidth-1) kw=scrwidth-kx-1; if (ky+kh>scrheight-1) kh=scrheight-ky-1; + + uInt8 *d = myDstScreen + ky * linestep + kx * pixelstep; + uInt16 col = guipal[((int) color) - 256]; + uInt32 stride = (scrwidth - kw - 1) * pixelstep; + for (int h2 = kh; h2 >= 0; h2--) + { + for (int w2 = kw; w2>=0; w2--) + { + *((uInt16 *)d) = col; + d += pixelstep; + } + d += stride; + } +} + +void FrameBufferWinCE::drawBitmap(uInt32* bitmap, Int32 x, Int32 y, OverlayColor color, Int32 h) +{ + return; +} + +void FrameBufferWinCE::translateCoords(Int32* x, Int32* y) +{ + return; +} + +void FrameBufferWinCE::addDirtyRect(uInt32 x, uInt32 y, uInt32 w, uInt32 h) +{ + return; +} + +uInt32 FrameBufferWinCE::lineDim() +{ + return 1; +} + + diff --git a/stella/src/wince/FrameBufferWinCE.hxx b/stella/src/wince/FrameBufferWinCE.hxx index 195aa5eb1..b16e82726 100644 --- a/stella/src/wince/FrameBufferWinCE.hxx +++ b/stella/src/wince/FrameBufferWinCE.hxx @@ -1,44 +1,56 @@ -#ifndef FRAMEBUFFER_WINCE_HXX -#define FRAMEBUFFER_WINCE_HXX - -#include "bspf.hxx" -#include "FrameBuffer.hxx" -#include "OSystem.hxx" - -class FrameBufferWinCE : public FrameBuffer -{ - public: - - FrameBufferWinCE(OSystem *osystem); - ~FrameBufferWinCE(); - virtual void setPalette(const uInt32* palette); - virtual bool initSubsystem(); - virtual void setAspectRatio() ; - virtual bool createScreen(); - virtual void toggleFilter(); - virtual void drawMediaSource(); - virtual void preFrameUpdate(); - virtual void postFrameUpdate(); - virtual void scanline(uInt32 row, uInt8* data); - virtual Uint32 mapRGB(Uint8 r, Uint8 g, Uint8 b); - virtual void hLine(uInt32 x, uInt32 y, uInt32 x2, OverlayColor color); - virtual void vLine(uInt32 x, uInt32 y, uInt32 y2, OverlayColor color); - virtual void fillRect(uInt32 x, uInt32 y, uInt32 w, uInt32 h, OverlayColor color); - virtual void drawChar(const GUI::Font* font, uInt8 c, uInt32 x, uInt32 y, OverlayColor color); - virtual void drawBitmap(uInt32* bitmap, Int32 x, Int32 y, OverlayColor color, Int32 h = 8); - virtual void translateCoords(Int32* x, Int32* y); - virtual void addDirtyRect(uInt32 x, uInt32 y, uInt32 w, uInt32 h); - - private: - - void FrameBufferWinCE::lateinit(void); - -// uInt32 myXstart, myYstart; -// uInt8 *currentFrame, *previousFrame; - uInt16 pal[256], myWidth, myHeight, guipal[kNumColors-256], scrwidth, scrheight; - uInt32 pixelstep, linestep, displacement; - bool SubsystemInited; - uInt8 *myDstScreen; -}; - -#endif +#ifndef FRAMEBUFFER_WINCE_HXX +#define FRAMEBUFFER_WINCE_HXX + +#include +#include "bspf.hxx" +#include "FrameBuffer.hxx" +#include "OSystem.hxx" + +class FrameBufferWinCE : public FrameBuffer +{ + public: + + FrameBufferWinCE(OSystem *osystem); + ~FrameBufferWinCE(); + virtual void setPalette(const uInt32* palette); + virtual bool initSubsystem(); + virtual void setAspectRatio() ; + virtual bool createScreen(); + virtual void toggleFilter(); + virtual void drawMediaSource(); + virtual void preFrameUpdate(); + virtual void postFrameUpdate(); + virtual void scanline(uInt32 row, uInt8* data); + virtual Uint32 mapRGB(Uint8 r, Uint8 g, Uint8 b); + virtual void hLine(uInt32 x, uInt32 y, uInt32 x2, OverlayColor color); + virtual void vLine(uInt32 x, uInt32 y, uInt32 y2, OverlayColor color); + virtual void fillRect(uInt32 x, uInt32 y, uInt32 w, uInt32 h, OverlayColor color); + virtual void drawChar(const GUI::Font* font, uInt8 c, uInt32 x, uInt32 y, OverlayColor color); + virtual void drawBitmap(uInt32* bitmap, Int32 x, Int32 y, OverlayColor color, Int32 h = 8); + virtual void translateCoords(Int32* x, Int32* y); + virtual void addDirtyRect(uInt32 x, uInt32 y, uInt32 w, uInt32 h); + virtual uInt32 lineDim(); + void wipescreen(void); + void setmode(uInt8 mode); + int rotatedisplay(void); + + private: + + void FrameBufferWinCE::lateinit(void); + +// uInt32 myXstart, myYstart; +// uInt8 *currentFrame, *previousFrame; + uInt16 pal[256], myWidth, myHeight, guipal[kNumColors-256], scrwidth, scrheight; + Int32 pixelstep, linestep; + uInt32 displacement; + bool SubsystemInited; + uInt8 *myDstScreen; + + bool issmartphone, islandscape; + uInt16 minydim, optgreenmaskN, optgreenmask; + Int32 pixelsteptimes5, pixelsteptimes6; + GXDisplayProperties gxdp; + uInt8 displaymode; +}; + +#endif \ No newline at end of file diff --git a/stella/src/wince/OSystemWinCE.cxx b/stella/src/wince/OSystemWinCE.cxx index be4d53c19..2377fff16 100644 --- a/stella/src/wince/OSystemWinCE.cxx +++ b/stella/src/wince/OSystemWinCE.cxx @@ -1,111 +1,114 @@ -#include -#include - -#include "bspf.hxx" -#include "OSystem.hxx" -#include "OSystemWinCE.hxx" -#include "SoundWinCE.hxx" -//#include -extern void KeyCheck(void); -int EventHandlerState; - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -OSystemWinCE::OSystemWinCE() -{ - string basedir = ((string) getcwd()) + '\\'; - setBaseDir(basedir); - - string stateDir = basedir + "state\\"; - setStateDir(stateDir); - - setPropertiesDir(basedir, basedir); - - string configFile = basedir + "stella.ini"; - setConfigFiles(configFile, configFile); // Input and output are the same - - string cacheFile = basedir + "stella.cache"; - setCacheFile(cacheFile); -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -OSystemWinCE::~OSystemWinCE() -{ -} - -void OSystemWinCE::setFramerate(uInt32 framerate) -{ - myDisplayFrameRate = framerate; - myTimePerFrame = (uInt32)(1000.0 / (double)myDisplayFrameRate); -} - - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void OSystemWinCE::mainLoop() -{ - - // These variables are common to both timing options - // and are needed to calculate the overall frames per second. - uInt32 frameTime = 0, numberOfFrames = 0; - - // Set up less accurate timing stuff - uInt32 startTime, virtualTime, currentTime; - - // Set the base for the timers - virtualTime = GetTickCount(); - frameTime = 0; - - // Main game loop - MSG msg; - for(;;) - { - while (PeekMessage(&msg, NULL, 0U, 0U, PM_REMOVE)) - { - if (msg.message == WM_QUIT) - break; - TranslateMessage(&msg); - DispatchMessage(&msg); - } - if (msg.message == WM_QUIT) - break; - - if(myEventHandler->doQuit()) - break; - - KeyCheck(); - - startTime = GetTickCount(); - - EventHandlerState = (int) myEventHandler->state(); - myEventHandler->poll(startTime); - myFrameBuffer->update(); - ((SoundWinCE *)mySound)->update(); - - currentTime = GetTickCount(); - virtualTime += myTimePerFrame; - if(currentTime < virtualTime) - Sleep(virtualTime - currentTime); - - currentTime = GetTickCount() - startTime; - frameTime += currentTime; - ++numberOfFrames; - } - - /* { - double executionTime = (double) frameTime / 1000000.0; - double framesPerSecond = (double) numberOfFrames / executionTime; - ostringstream a; - a << endl; - a << numberOfFrames << " total frames drawn\n"; - a << framesPerSecond << " frames/second\n"; - a << endl; - TCHAR unicodeString[MAX_PATH]; - MultiByteToWideChar(CP_ACP, 0, a.str().c_str(), strlen(a.str().c_str()) + 1, unicodeString, sizeof(unicodeString)); - MessageBox(GetDesktopWindow(),unicodeString, _T("..."),0); - } -*/ -} - -uInt32 OSystemWinCE::getTicks(void) -{ - return GetTickCount(); -} +#include +#include + +#include "bspf.hxx" +#include "OSystem.hxx" +#include "OSystemWinCE.hxx" +#include "SoundWinCE.hxx" +#include "FrameBufferWinCE.hxx" +//#include +extern void KeyCheck(void); +extern int EventHandlerState; + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +OSystemWinCE::OSystemWinCE() +{ + string basedir = ((string) getcwd()) + '\\'; + setBaseDir(basedir); + + string stateDir = basedir;// + "state\\"; + setStateDir(stateDir); + + setPropertiesDir(basedir, basedir); + + string configFile = basedir + "stella.ini"; + setConfigFiles(configFile, configFile); // Input and output are the same + + string cacheFile = basedir + "stella.cache"; + setCacheFile(cacheFile); +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +OSystemWinCE::~OSystemWinCE() +{ +} + +void OSystemWinCE::setFramerate(uInt32 framerate) +{ + myDisplayFrameRate = framerate; + myTimePerFrame = (uInt32)(1000.0 / (double)myDisplayFrameRate); +} + + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +void OSystemWinCE::mainLoop() +{ + + uInt32 frameTime = 0, numberOfFrames = 0; + uInt32 startTime, virtualTime, currentTime; + + virtualTime = GetTickCount(); + frameTime = 0; + + // Main game loop + MSG msg; + int laststate = -1; + for(;;) + { + while (PeekMessage(&msg, NULL, 0U, 0U, PM_REMOVE)) + { + if (msg.message == WM_QUIT) + break; + TranslateMessage(&msg); + DispatchMessage(&msg); + } + if (msg.message == WM_QUIT) + break; + + if(myEventHandler->doQuit()) + break; + + KeyCheck(); + + startTime = GetTickCount(); + + EventHandlerState = (int) myEventHandler->state(); + if ((laststate != -1) && (laststate != EventHandlerState) && (EventHandlerState != 2)) + ((FrameBufferWinCE *)myFrameBuffer)->wipescreen(); + laststate = EventHandlerState; + + myEventHandler->poll(startTime); + myFrameBuffer->update(); + ((SoundWinCE *)mySound)->update(); + + currentTime = GetTickCount(); + virtualTime += myTimePerFrame; + if(currentTime < virtualTime) + Sleep(virtualTime - currentTime); + else + virtualTime = currentTime; + + currentTime = GetTickCount() - startTime; + frameTime += currentTime; + ++numberOfFrames; + } + + /* { + double executionTime = (double) frameTime / 1000000.0; + double framesPerSecond = (double) numberOfFrames / executionTime; + ostringstream a; + a << endl; + a << numberOfFrames << " total frames drawn\n"; + a << framesPerSecond << " frames/second\n"; + a << endl; + TCHAR unicodeString[MAX_PATH]; + MultiByteToWideChar(CP_ACP, 0, a.str().c_str(), strlen(a.str().c_str()) + 1, unicodeString, sizeof(unicodeString)); + MessageBox(GetDesktopWindow(),unicodeString, _T("..."),0); + } +*/ +} + +uInt32 OSystemWinCE::getTicks(void) +{ + return GetTickCount(); +} diff --git a/stella/src/wince/OSystemWinCE.hxx b/stella/src/wince/OSystemWinCE.hxx index ebcdbbbaa..664895382 100644 --- a/stella/src/wince/OSystemWinCE.hxx +++ b/stella/src/wince/OSystemWinCE.hxx @@ -1,19 +1,19 @@ -#ifndef OSYSTEM_WINCE_HXX -#define OSYSTEM_WINCE_HXX - -#include "bspf.hxx" -#include "OSystem.hxx" - -class OSystemWinCE : public OSystem -{ - public: - OSystemWinCE(); - virtual ~OSystemWinCE(); - - public: - virtual void mainLoop(); - virtual uInt32 getTicks(void); - virtual void setFramerate(uInt32 framerate); -}; - -#endif +#ifndef OSYSTEM_WINCE_HXX +#define OSYSTEM_WINCE_HXX + +#include "bspf.hxx" +#include "OSystem.hxx" + +class OSystemWinCE : public OSystem +{ + public: + OSystemWinCE(); + virtual ~OSystemWinCE(); + + public: + virtual void mainLoop(); + virtual uInt32 getTicks(void); + virtual void setFramerate(uInt32 framerate); +}; + +#endif diff --git a/stella/src/wince/PocketStella.cpp b/stella/src/wince/PocketStella.cpp index 51880ef8a..a90d912bd 100644 --- a/stella/src/wince/PocketStella.cpp +++ b/stella/src/wince/PocketStella.cpp @@ -1,161 +1,171 @@ -#include -#include -#include "EventHandler.hxx" -#include "OSystemWinCE.hxx" -#include "SettingsWinCE.hxx" -#include "PropsSet.hxx" -#include "FSNode.hxx" - -#define KEYSCHECK_ASYNC - -struct key2event -{ - UINT keycode; - SDLKey sdlkey; - uInt8 state; - SDLKey launcherkey; -}; -extern key2event keycodes[2][MAX_KEYS]; -extern void KeySetup(void); - -OSystemWinCE* theOSystem = (OSystemWinCE*) NULL; -HWND hWnd; - -void KeyCheck(void) -{ -#ifdef KEYSCHECK_ASYNC - if (GetAsyncKeyState(keycodes[0][K_QUIT].keycode) & 0x8000) - { - PostQuitMessage(0); - return; - } - for (int i=0; i> 15; -#endif -} - - -void CleanUp(void) -{ - if(theOSystem) delete theOSystem; - GXCloseDisplay(); - GXCloseInput(); -} - -LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam ) -{ - static PAINTSTRUCT ps; - - switch (uMsg) - { - case WM_KEYDOWN: -#ifndef KEYSCHECK_ASYNC - uInt8 i; - if (wParam == keycodes[K_QUIT].keycode) - PostQuitMessage(0); - else - for (i=0; ieventHandler().event()->set(keycodes[i].event,1); - break; - } -#endif - return 0; - - case WM_KEYUP: -#ifndef KEYSCHECK_ASYNC - for (i=0; ieventHandler().event()->set(keycodes[i].event,0); - break; - } -#endif - return 0; - - case WM_DESTROY: - PostQuitMessage(0); - return 0; - - case WM_CLOSE: - PostQuitMessage(0); - return 0; - - case WM_SETFOCUS: - case WM_ACTIVATE: - GXSuspend(); - return 0; - - case WM_KILLFOCUS: - case WM_HIBERNATE: - GXResume(); - return 0; - - case WM_PAINT: - BeginPaint(hWnd, &ps); - EndPaint(hWnd, &ps); - return 0; - - } - return DefWindowProc(hwnd, uMsg, wParam, lParam); -} - -int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nShowCmd ) -{ - LPTSTR wndname = _T("PocketStella"); - WNDCLASS wc = { CS_HREDRAW | CS_VREDRAW, WindowProc, 0, 0, hInstance, NULL, NULL, - (HBRUSH)GetStockObject(BLACK_BRUSH), NULL, wndname}; - RegisterClass(&wc); - hWnd = CreateWindow(wndname, wndname, WS_VISIBLE, 0, 0, GetSystemMetrics(SM_CXSCREEN), - GetSystemMetrics(SM_CYSCREEN), NULL, NULL, hInstance, NULL); - if (!hWnd) return 1; - SetWindowPos(hWnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE); - - MSG msg; - while (PeekMessage(&msg, NULL, 0U, 0U, PM_REMOVE)) - { - TranslateMessage(&msg); - DispatchMessage(&msg); - } - - theOSystem = new OSystemWinCE(); - SettingsWinCE theSettings(theOSystem); - theOSystem->settings().loadConfig(); - theOSystem->settings().validate(); - EventHandler theEventHandler(theOSystem); - PropertiesSet propertiesSet; - propertiesSet.load(theOSystem->systemProperties(), false); - theOSystem->attach(&propertiesSet); - - if ( !GXOpenDisplay(hWnd, GX_FULLSCREEN) || !GXOpenInput() ) - { - CleanUp(); - return 1; - } - KeySetup(); - - if(!theOSystem->createFrameBuffer()) - { - CleanUp(); - return 1; - } - theOSystem->createSound(); - - string romfile = ((string) getcwd()) + ((string) "\\") + theSettings.getString("GameFilename"); - if (!FilesystemNode::fileExists(romfile)) - theOSystem->createLauncher(); - else - { - /*TCHAR tmp[200]; - MultiByteToWideChar(CP_ACP, 0, romfile.c_str(), strlen(romfile.c_str()) + 1, tmp, 200); - MessageBox(hWnd, tmp, _T("..."),0);*/ - theOSystem->createConsole(romfile); - } - - theOSystem->mainLoop(); - - CleanUp(); - - return 0; -} +#include +#include "EventHandler.hxx" +#include "OSystemWinCE.hxx" +#include "SettingsWinCE.hxx" +#include "PropsSet.hxx" +#include "FSNode.hxx" +#include "FrameBufferWinCE.hxx" + +#define KEYSCHECK_ASYNC + +struct key2event +{ + UINT keycode; + SDLKey sdlkey; + uInt8 state; + SDLKey launcherkey; +}; +extern key2event keycodes[2][MAX_KEYS]; +extern void KeySetup(void); +extern void KeySetMode(int); + +OSystemWinCE* theOSystem = (OSystemWinCE*) NULL; +HWND hWnd; +uInt16 rotkeystate = 0; + + +void KeyCheck(void) +{ +#ifdef KEYSCHECK_ASYNC + if (GetAsyncKeyState(VK_F3)) + { + if (rotkeystate == 0) + KeySetMode( ((FrameBufferWinCE *) (&(theOSystem->frameBuffer())))->rotatedisplay() ); + rotkeystate = 1; + } + else + rotkeystate = 0; + + for (int i=0; iframeBuffer())))->rotatedisplay() ); + rotkeystate = 1; + } + else + rotkeystate = 0; +#ifndef KEYSCHECK_ASYNC + uInt8 i; + for (i=0; isettings().loadConfig(); + theOSystem->settings().validate(); + EventHandler theEventHandler(theOSystem); + PropertiesSet propertiesSet; + propertiesSet.load(theOSystem->systemProperties(), false); + theOSystem->attach(&propertiesSet); + + if ( !GXOpenDisplay(hWnd, GX_FULLSCREEN) || !GXOpenInput() ) + { + CleanUp(); + return 1; + } + KeySetup(); + + if(!theOSystem->createFrameBuffer()) + { + CleanUp(); + return 1; + } + theOSystem->createSound(); + + string romfile = ((string) getcwd()) + ((string) "\\") + theSettings.getString("GameFilename"); + if (!FilesystemNode::fileExists(romfile)) + theOSystem->createLauncher(); + else + theOSystem->createConsole(romfile); + + theOSystem->mainLoop(); + + CleanUp(); + + return 0; +} diff --git a/stella/src/wince/PocketStella.vcp b/stella/src/wince/PocketStella.vcp index c0f23dde1..fe92896ec 100644 --- a/stella/src/wince/PocketStella.vcp +++ b/stella/src/wince/PocketStella.vcp @@ -1,14432 +1,14842 @@ -# Microsoft eMbedded Visual Tools Project File - Name="PocketStella" - 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 - -CFG=PocketStella - Win32 (WCE ARM) 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 "PocketStella.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 "PocketStella.vcn" CFG="PocketStella - Win32 (WCE ARM) Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "PocketStella - Win32 (WCE ARM) Release" (based on "Win32 (WCE ARM) Application") -!MESSAGE "PocketStella - Win32 (WCE ARM) Debug" (based on "Win32 (WCE ARM) Application") -!MESSAGE "PocketStella - Win32 (WCE x86) Release" (based on "Win32 (WCE x86) Application") -!MESSAGE "PocketStella - 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)" == "PocketStella - 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 Sec_AlwaysSign 0 -# PROP Sec_ConfigureDevice 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 /I "port" /I "../emucore" /I "../emucore/m6502/src" /I "../gui" /I "zlib" /I "sdl" /I "../common" /I "../debugger" /I "../debugger/gui" /I "../yacc" /D "ARM" /D "_ARM_" /D "NDEBUG" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /D "BSPF_WIN32" /D "SOUND_SUPPORT" /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 zlib/arm/zlibce.lib gx.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /libpath:"f:\a\stlport\lib\evc3-arm" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM - -!ELSEIF "$(CFG)" == "PocketStella - 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 "port" /I "../emucore" /I "../emucore/m6502/src" /I "../gui" /I "zlib" /I "sdl" /I "../common" /I "../debugger" /I "../debugger/gui" /I "../yacc" /D "DEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /D "BSPF_WIN32" /D "SOUND_SUPPORT" /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)" /libpath:"f:\a\stlport\lib\evc3-x86" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM - -!ELSEIF "$(CFG)" == "PocketStella - 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 Sec_AlwaysSign 0 -# PROP Sec_ConfigureDevice 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 /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 /I "port" /I "../emucore" /I "../emucore/m6502/src" /I "../gui" /I "zlib" /I "sdl" /I "../common" /I "../debugger" /I "../debugger/gui" /I "../yacc" /D "_i386_" /D "i_386_" /D "_X86_" /D "x86" /D "NDEBUG" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /D "BSPF_WIN32" /D "SOUND_SUPPORT" /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) gx.lib zlib/x86/zlibce.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /libpath:"f:\a\stlport\lib\evc3-x86" /subsystem:$(CESubsystem) /MACHINE:IX86 - -!ELSEIF "$(CFG)" == "PocketStella - 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 Ignore_Export_Lib 0 -# PROP Sec_AlwaysSign 0 -# PROP Sec_ConfigureDevice 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 "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 /I "port" /I "../emucore" /I "../emucore/m6502/src" /I "../gui" /I "zlib" /I "sdl" /I "../common" /I "../debugger" /I "../debugger/gui" /I "../yacc" /D "DEBUG" /D "_i386_" /D "i_386_" /D "_X86_" /D "x86" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /D "BSPF_WIN32" /D "SOUND_SUPPORT" /FR /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) zlib/x86/zlibce.lib gx.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /libpath:"f:\a\stlport\lib\evc3-x86" /subsystem:$(CESubsystem) /MACHINE:IX86 - -!ENDIF - -# Begin Target - -# Name "PocketStella - Win32 (WCE ARM) Release" -# Name "PocketStella - Win32 (WCE ARM) Debug" -# Name "PocketStella - Win32 (WCE x86) Release" -# Name "PocketStella - Win32 (WCE x86) Debug" -# Begin Group "Core Source Files" - -# PROP Default_Filter "" -# Begin Group "Gui" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=..\gui\AboutDialog.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_ABOUT=\ - "..\common\Version.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\AboutDialog.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_ABOUT=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_ABOUT=\ - "..\common\Version.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\AboutDialog.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_ABOUT=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_ABOUT=\ - "..\common\Version.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\AboutDialog.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_ABOUT=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_ABOUT=\ - "..\common\Version.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\AboutDialog.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_ABOUT=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\AboutDialog.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\Array.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\AudioDialog.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_AUDIO=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\AudioDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\PopUpWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_AUDIO=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_AUDIO=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\AudioDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\PopUpWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_AUDIO=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_AUDIO=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\AudioDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\PopUpWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_AUDIO=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_AUDIO=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\AudioDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\PopUpWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_AUDIO=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\AudioDialog.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\BrowserDialog.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_BROWS=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\FSNode.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\BrowserDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\ListWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\StringListWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_BROWS=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_BROWS=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\FSNode.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\BrowserDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\ListWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\StringListWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_BROWS=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_BROWS=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\FSNode.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\BrowserDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\ListWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\StringListWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_BROWS=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_BROWS=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\FSNode.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\BrowserDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\ListWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\StringListWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_BROWS=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\BrowserDialog.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\CheatCodeDialog.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CHEAT=\ - "..\common\Cheat.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\CheatCodeDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_CHEAT=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CHEAT=\ - "..\common\Cheat.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\CheatCodeDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_CHEAT=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CHEAT=\ - "..\common\Cheat.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\CheatCodeDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_CHEAT=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CHEAT=\ - "..\common\Cheat.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\CheatCodeDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_CHEAT=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\CheatCodeDialog.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\CheckListWidget.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CHECK=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\CheckListWidget.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\ListWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_CHECK=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CHECK=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\CheckListWidget.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\ListWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_CHECK=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CHECK=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\CheckListWidget.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\ListWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_CHECK=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CHECK=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\CheckListWidget.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\ListWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_CHECK=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\CheckListWidget.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\Command.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\CommandDialog.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_COMMA=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\CommandDialog.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_COMMA=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_COMMA=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\CommandDialog.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_COMMA=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_COMMA=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\CommandDialog.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_COMMA=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_COMMA=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\CommandDialog.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_COMMA=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\CommandDialog.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\CommandMenu.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_COMMAN=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\CommandDialog.hxx"\ - "..\gui\CommandMenu.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_COMMAN=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_COMMAN=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\CommandDialog.hxx"\ - "..\gui\CommandMenu.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_COMMAN=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_COMMAN=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\CommandDialog.hxx"\ - "..\gui\CommandMenu.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_COMMAN=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_COMMAN=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\CommandDialog.hxx"\ - "..\gui\CommandMenu.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_COMMAN=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\CommandMenu.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\ConsoleFont.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\Dialog.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_DIALO=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\TabWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_DIALO=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_DIALO=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\TabWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_DIALO=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_DIALO=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\TabWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_DIALO=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_DIALO=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\TabWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_DIALO=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\Dialog.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\DialogContainer.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_DIALOG=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_DIALOG=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_DIALOG=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_DIALOG=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_DIALOG=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_DIALOG=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_DIALOG=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_DIALOG=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\DialogContainer.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\EditableWidget.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_EDITA=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_EDITA=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_EDITA=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_EDITA=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_EDITA=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_EDITA=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_EDITA=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_EDITA=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\EditableWidget.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\EditNumWidget.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_EDITN=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\EditNumWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_EDITN=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_EDITN=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\EditNumWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_EDITN=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_EDITN=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\EditNumWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_EDITN=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_EDITN=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\EditNumWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_EDITN=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\EditNumWidget.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\EditTextWidget.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_EDITT=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\EditTextWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_EDITT=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_EDITT=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\EditTextWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_EDITT=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_EDITT=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\EditTextWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_EDITT=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_EDITT=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\EditTextWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_EDITT=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\EditTextWidget.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\EventMappingDialog.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_EVENT=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\EventMappingDialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\ListWidget.hxx"\ - "..\gui\PopUpWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\StringListWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_EVENT=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_EVENT=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\EventMappingDialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\ListWidget.hxx"\ - "..\gui\PopUpWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\StringListWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_EVENT=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_EVENT=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\EventMappingDialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\ListWidget.hxx"\ - "..\gui\PopUpWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\StringListWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_EVENT=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_EVENT=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\EventMappingDialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\ListWidget.hxx"\ - "..\gui\PopUpWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\StringListWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_EVENT=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\EventMappingDialog.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\Font.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_FONT_=\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_FONT_=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_FONT_=\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_FONT_=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_FONT_=\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_FONT_=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_FONT_=\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_FONT_=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\Font.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\GameInfoDialog.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_GAMEI=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GameInfoDialog.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_GAMEI=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_GAMEI=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GameInfoDialog.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_GAMEI=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_GAMEI=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GameInfoDialog.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_GAMEI=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_GAMEI=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GameInfoDialog.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_GAMEI=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\GameInfoDialog.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\GameList.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_GAMEL=\ - "..\gui\Array.hxx"\ - "..\gui\GameList.hxx"\ - "..\gui\GuiUtils.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_GAMEL=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_GAMEL=\ - "..\gui\Array.hxx"\ - "..\gui\GameList.hxx"\ - "..\gui\GuiUtils.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_GAMEL=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_GAMEL=\ - "..\gui\Array.hxx"\ - "..\gui\GameList.hxx"\ - "..\gui\GuiUtils.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_GAMEL=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_GAMEL=\ - "..\gui\Array.hxx"\ - "..\gui\GameList.hxx"\ - "..\gui\GuiUtils.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_GAMEL=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\GameList.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\GuiObject.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\GuiUtils.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\HelpDialog.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_HELPD=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\HelpDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_HELPD=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_HELPD=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\HelpDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_HELPD=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_HELPD=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\HelpDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_HELPD=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_HELPD=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\HelpDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_HELPD=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\HelpDialog.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\InputTextDialog.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_INPUT=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\EditTextWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\InputTextDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_INPUT=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_INPUT=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\EditTextWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\InputTextDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_INPUT=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_INPUT=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\EditTextWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\InputTextDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_INPUT=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_INPUT=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\EditTextWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\InputTextDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_INPUT=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\InputTextDialog.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\Launcher.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_LAUNC=\ - "..\common\Version.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GameList.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Launcher.hxx"\ - "..\gui\LauncherDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_LAUNC=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_LAUNC=\ - "..\common\Version.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GameList.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Launcher.hxx"\ - "..\gui\LauncherDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_LAUNC=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_LAUNC=\ - "..\common\Version.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GameList.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Launcher.hxx"\ - "..\gui\LauncherDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_LAUNC=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_LAUNC=\ - "..\common\Version.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GameList.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Launcher.hxx"\ - "..\gui\LauncherDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_LAUNC=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\Launcher.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\LauncherDialog.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_LAUNCH=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\FSNode.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MD5.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\PropsSet.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\BrowserDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GameList.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\LauncherDialog.hxx"\ - "..\gui\LauncherOptionsDialog.hxx"\ - "..\gui\ListWidget.hxx"\ - "..\gui\ProgressDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\StringListWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_LAUNCH=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_LAUNCH=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\FSNode.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MD5.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\PropsSet.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\BrowserDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GameList.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\LauncherDialog.hxx"\ - "..\gui\LauncherOptionsDialog.hxx"\ - "..\gui\ListWidget.hxx"\ - "..\gui\ProgressDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\StringListWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_LAUNCH=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_LAUNCH=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\FSNode.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MD5.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\PropsSet.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\BrowserDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GameList.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\LauncherDialog.hxx"\ - "..\gui\LauncherOptionsDialog.hxx"\ - "..\gui\ListWidget.hxx"\ - "..\gui\ProgressDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\StringListWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_LAUNCH=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_LAUNCH=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\FSNode.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MD5.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\PropsSet.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\BrowserDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GameList.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\LauncherDialog.hxx"\ - "..\gui\LauncherOptionsDialog.hxx"\ - "..\gui\ListWidget.hxx"\ - "..\gui\ProgressDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\StringListWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_LAUNCH=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\LauncherDialog.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\LauncherOptionsDialog.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_LAUNCHE=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\FSNode.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\BrowserDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GameList.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\LauncherDialog.hxx"\ - "..\gui\LauncherOptionsDialog.hxx"\ - "..\gui\PopUpWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\TabWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_LAUNCHE=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_LAUNCHE=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\FSNode.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\BrowserDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GameList.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\LauncherDialog.hxx"\ - "..\gui\LauncherOptionsDialog.hxx"\ - "..\gui\PopUpWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\TabWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_LAUNCHE=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_LAUNCHE=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\FSNode.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\BrowserDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GameList.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\LauncherDialog.hxx"\ - "..\gui\LauncherOptionsDialog.hxx"\ - "..\gui\PopUpWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\TabWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_LAUNCHE=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_LAUNCHE=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\FSNode.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\BrowserDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GameList.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\LauncherDialog.hxx"\ - "..\gui\LauncherOptionsDialog.hxx"\ - "..\gui\PopUpWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\TabWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_LAUNCHE=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\LauncherOptionsDialog.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\ListWidget.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_LISTW=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\ListWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_LISTW=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_LISTW=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\ListWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_LISTW=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_LISTW=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\ListWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_LISTW=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_LISTW=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\ListWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_LISTW=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\ListWidget.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\Menu.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_MENU_=\ - "..\common\Cheat.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\CheatCodeDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GameInfoDialog.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\OptionsDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_MENU_=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_MENU_=\ - "..\common\Cheat.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\CheatCodeDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GameInfoDialog.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\OptionsDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_MENU_=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_MENU_=\ - "..\common\Cheat.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\CheatCodeDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GameInfoDialog.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\OptionsDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_MENU_=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_MENU_=\ - "..\common\Cheat.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\CheatCodeDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GameInfoDialog.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\OptionsDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_MENU_=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\Menu.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\OptionsDialog.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_OPTIO=\ - "..\common\Cheat.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\AboutDialog.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\AudioDialog.hxx"\ - "..\gui\CheatCodeDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\EventMappingDialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GameInfoDialog.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\HelpDialog.hxx"\ - "..\gui\OptionsDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\VideoDialog.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_OPTIO=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_OPTIO=\ - "..\common\Cheat.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\AboutDialog.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\AudioDialog.hxx"\ - "..\gui\CheatCodeDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\EventMappingDialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GameInfoDialog.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\HelpDialog.hxx"\ - "..\gui\OptionsDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\VideoDialog.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_OPTIO=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_OPTIO=\ - "..\common\Cheat.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\AboutDialog.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\AudioDialog.hxx"\ - "..\gui\CheatCodeDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\EventMappingDialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GameInfoDialog.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\HelpDialog.hxx"\ - "..\gui\OptionsDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\VideoDialog.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_OPTIO=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_OPTIO=\ - "..\common\Cheat.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\AboutDialog.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\AudioDialog.hxx"\ - "..\gui\CheatCodeDialog.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\EventMappingDialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GameInfoDialog.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\HelpDialog.hxx"\ - "..\gui\OptionsDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\VideoDialog.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_OPTIO=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\OptionsDialog.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\PopUpWidget.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_POPUP=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\PopUpWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_POPUP=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_POPUP=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\PopUpWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_POPUP=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_POPUP=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\PopUpWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_POPUP=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_POPUP=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\PopUpWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_POPUP=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\PopUpWidget.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\ProgressDialog.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_PROGR=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\ProgressDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_PROGR=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_PROGR=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\ProgressDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_PROGR=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_PROGR=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\ProgressDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_PROGR=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_PROGR=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\ProgressDialog.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_PROGR=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\ProgressDialog.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\Rect.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\ScrollBarWidget.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_SCROL=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_SCROL=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_SCROL=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_SCROL=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_SCROL=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_SCROL=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_SCROL=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_SCROL=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\ScrollBarWidget.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\Stack.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\StellaFont.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\StringList.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\StringListWidget.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_STRIN=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\ListWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\StringListWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_STRIN=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_STRIN=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\ListWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\StringListWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_STRIN=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_STRIN=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\ListWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\StringListWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_STRIN=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_STRIN=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\EditableWidget.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\ListWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\ScrollBarWidget.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\StringListWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_STRIN=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\StringListWidget.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\TabWidget.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_TABWI=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\TabWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_TABWI=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_TABWI=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\TabWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_TABWI=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_TABWI=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\TabWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_TABWI=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_TABWI=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\TabWidget.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_TABWI=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\TabWidget.hxx -# End Source File -# Begin Source File - -SOURCE=..\common\Version.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\VideoDialog.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_VIDEO=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\PopUpWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\VideoDialog.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_VIDEO=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_VIDEO=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\PopUpWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\VideoDialog.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_VIDEO=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_VIDEO=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\PopUpWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\VideoDialog.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_VIDEO=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_VIDEO=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\PopUpWidget.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\VideoDialog.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_VIDEO=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\VideoDialog.hxx -# End Source File -# Begin Source File - -SOURCE=..\gui\Widget.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_WIDGE=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_WIDGE=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_WIDGE=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_WIDGE=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_WIDGE=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_WIDGE=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_WIDGE=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_WIDGE=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\gui\Widget.hxx -# End Source File -# End Group -# Begin Group "Cheat" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=..\common\Cheat.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CHEAT_=\ - "..\common\Cheat.hxx"\ - "..\common\CheetahCheat.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CHEAT_=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CHEAT_=\ - "..\common\Cheat.hxx"\ - "..\common\CheetahCheat.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CHEAT_=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CHEAT_=\ - "..\common\Cheat.hxx"\ - "..\common\CheetahCheat.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CHEAT_=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CHEAT_=\ - "..\common\Cheat.hxx"\ - "..\common\CheetahCheat.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CHEAT_=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\common\Cheat.hxx -# End Source File -# Begin Source File - -SOURCE=..\common\CheetahCheat.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CHEET=\ - "..\common\Cheat.hxx"\ - "..\common\CheetahCheat.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CHEET=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CHEET=\ - "..\common\Cheat.hxx"\ - "..\common\CheetahCheat.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CHEET=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CHEET=\ - "..\common\Cheat.hxx"\ - "..\common\CheetahCheat.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CHEET=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CHEET=\ - "..\common\Cheat.hxx"\ - "..\common\CheetahCheat.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CHEET=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\common\CheetahCheat.hxx -# End Source File -# End Group -# Begin Source File - -SOURCE=..\emucore\Booster.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_BOOST=\ - "..\emucore\Booster.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_BOOST=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_BOOST=\ - "..\emucore\Booster.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_BOOST=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_BOOST=\ - "..\emucore\Booster.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_BOOST=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_BOOST=\ - "..\emucore\Booster.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_BOOST=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\Cart.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CART_=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Cart2K.hxx"\ - "..\emucore\Cart3E.hxx"\ - "..\emucore\Cart3F.hxx"\ - "..\emucore\Cart4K.hxx"\ - "..\emucore\CartAR.hxx"\ - "..\emucore\CartCV.hxx"\ - "..\emucore\CartDPC.hxx"\ - "..\emucore\CartE0.hxx"\ - "..\emucore\CartE7.hxx"\ - "..\emucore\CartF4.hxx"\ - "..\emucore\CartF4SC.hxx"\ - "..\emucore\CartF6.hxx"\ - "..\emucore\CartF6SC.hxx"\ - "..\emucore\CartF8.hxx"\ - "..\emucore\CartF8SC.hxx"\ - "..\emucore\CartFASC.hxx"\ - "..\emucore\CartFE.hxx"\ - "..\emucore\CartMB.hxx"\ - "..\emucore\CartMC.hxx"\ - "..\emucore\CartUA.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\MD5.hxx"\ - "..\emucore\Props.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CART_=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CART_=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Cart2K.hxx"\ - "..\emucore\Cart3E.hxx"\ - "..\emucore\Cart3F.hxx"\ - "..\emucore\Cart4K.hxx"\ - "..\emucore\CartAR.hxx"\ - "..\emucore\CartCV.hxx"\ - "..\emucore\CartDPC.hxx"\ - "..\emucore\CartE0.hxx"\ - "..\emucore\CartE7.hxx"\ - "..\emucore\CartF4.hxx"\ - "..\emucore\CartF4SC.hxx"\ - "..\emucore\CartF6.hxx"\ - "..\emucore\CartF6SC.hxx"\ - "..\emucore\CartF8.hxx"\ - "..\emucore\CartF8SC.hxx"\ - "..\emucore\CartFASC.hxx"\ - "..\emucore\CartFE.hxx"\ - "..\emucore\CartMB.hxx"\ - "..\emucore\CartMC.hxx"\ - "..\emucore\CartUA.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\MD5.hxx"\ - "..\emucore\Props.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CART_=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CART_=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Cart2K.hxx"\ - "..\emucore\Cart3E.hxx"\ - "..\emucore\Cart3F.hxx"\ - "..\emucore\Cart4K.hxx"\ - "..\emucore\CartAR.hxx"\ - "..\emucore\CartCV.hxx"\ - "..\emucore\CartDPC.hxx"\ - "..\emucore\CartE0.hxx"\ - "..\emucore\CartE7.hxx"\ - "..\emucore\CartF4.hxx"\ - "..\emucore\CartF4SC.hxx"\ - "..\emucore\CartF6.hxx"\ - "..\emucore\CartF6SC.hxx"\ - "..\emucore\CartF8.hxx"\ - "..\emucore\CartF8SC.hxx"\ - "..\emucore\CartFASC.hxx"\ - "..\emucore\CartFE.hxx"\ - "..\emucore\CartMB.hxx"\ - "..\emucore\CartMC.hxx"\ - "..\emucore\CartUA.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\MD5.hxx"\ - "..\emucore\Props.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CART_=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CART_=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Cart2K.hxx"\ - "..\emucore\Cart3E.hxx"\ - "..\emucore\Cart3F.hxx"\ - "..\emucore\Cart4K.hxx"\ - "..\emucore\CartAR.hxx"\ - "..\emucore\CartCV.hxx"\ - "..\emucore\CartDPC.hxx"\ - "..\emucore\CartE0.hxx"\ - "..\emucore\CartE7.hxx"\ - "..\emucore\CartF4.hxx"\ - "..\emucore\CartF4SC.hxx"\ - "..\emucore\CartF6.hxx"\ - "..\emucore\CartF6SC.hxx"\ - "..\emucore\CartF8.hxx"\ - "..\emucore\CartF8SC.hxx"\ - "..\emucore\CartFASC.hxx"\ - "..\emucore\CartFE.hxx"\ - "..\emucore\CartMB.hxx"\ - "..\emucore\CartMC.hxx"\ - "..\emucore\CartUA.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\MD5.hxx"\ - "..\emucore\Props.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CART_=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\Cart2K.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CART2=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Cart2K.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CART2=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CART2=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Cart2K.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CART2=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CART2=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Cart2K.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CART2=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CART2=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Cart2K.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CART2=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\Cart3E.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CART3=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Cart3E.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CART3=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CART3=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Cart3E.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CART3=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CART3=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Cart3E.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CART3=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CART3=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Cart3E.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CART3=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\Cart3F.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CART3F=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Cart3F.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CART3F=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CART3F=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Cart3F.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CART3F=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CART3F=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Cart3F.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CART3F=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CART3F=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Cart3F.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CART3F=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\Cart4K.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CART4=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Cart4K.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CART4=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CART4=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Cart4K.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CART4=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CART4=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Cart4K.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CART4=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CART4=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Cart4K.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CART4=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartAR.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CARTA=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartAR.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\M6502Hi.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTA=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CARTA=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartAR.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\M6502Hi.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTA=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CARTA=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartAR.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\M6502Hi.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTA=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CARTA=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartAR.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\M6502Hi.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTA=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartCV.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CARTC=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartCV.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTC=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CARTC=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartCV.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTC=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CARTC=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartCV.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTC=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CARTC=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartCV.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTC=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartDPC.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CARTD=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartDPC.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTD=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CARTD=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartDPC.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTD=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CARTD=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartDPC.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTD=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CARTD=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartDPC.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTD=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartE0.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CARTE=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartE0.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTE=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CARTE=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartE0.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTE=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CARTE=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartE0.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTE=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CARTE=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartE0.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTE=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartE7.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CARTE7=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartE7.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTE7=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CARTE7=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartE7.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTE7=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CARTE7=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartE7.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTE7=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CARTE7=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartE7.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTE7=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartF4.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CARTF=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartF4.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTF=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CARTF=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartF4.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTF=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CARTF=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartF4.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTF=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CARTF=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartF4.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTF=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartF4SC.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CARTF4=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartF4SC.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTF4=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CARTF4=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartF4SC.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTF4=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CARTF4=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartF4SC.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTF4=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CARTF4=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartF4SC.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTF4=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartF6.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CARTF6=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartF6.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTF6=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CARTF6=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartF6.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTF6=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CARTF6=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartF6.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTF6=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CARTF6=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartF6.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTF6=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartF6SC.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CARTF6S=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartF6SC.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTF6S=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CARTF6S=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartF6SC.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTF6S=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CARTF6S=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartF6SC.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTF6S=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CARTF6S=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartF6SC.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTF6S=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartF8.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CARTF8=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartF8.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTF8=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CARTF8=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartF8.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTF8=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CARTF8=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartF8.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTF8=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CARTF8=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartF8.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTF8=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartF8SC.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CARTF8S=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartF8SC.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTF8S=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CARTF8S=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartF8SC.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTF8S=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CARTF8S=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartF8SC.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTF8S=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CARTF8S=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartF8SC.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTF8S=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartFASC.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CARTFA=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartFASC.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTFA=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CARTFA=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartFASC.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTFA=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CARTFA=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartFASC.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTFA=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CARTFA=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartFASC.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTFA=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartFE.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CARTFE=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartFE.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTFE=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CARTFE=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartFE.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTFE=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CARTFE=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartFE.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTFE=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CARTFE=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartFE.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTFE=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartMB.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CARTM=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartMB.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTM=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CARTM=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartMB.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTM=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CARTM=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartMB.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTM=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CARTM=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartMB.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTM=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartMC.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CARTMC=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartMC.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTMC=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CARTMC=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartMC.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTMC=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CARTMC=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartMC.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTMC=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CARTMC=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartMC.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTMC=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartUA.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CARTU=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartUA.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTU=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CARTU=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartUA.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTU=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CARTU=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartUA.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTU=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CARTU=\ - "..\emucore\Cart.hxx"\ - "..\emucore\CartUA.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CARTU=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\Console.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CONSO=\ - "..\common\Snapshot.hxx"\ - "..\common\Version.hxx"\ - "..\debugger\Debugger.hxx"\ - "..\debugger\DebuggerParser.hxx"\ - "..\debugger\Equate.hxx"\ - "..\debugger\EquateList.hxx"\ - "..\debugger\gui\PromptWidget.hxx"\ - "..\debugger\PackedBitArray.hxx"\ - "..\emucore\Booster.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Driving.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\Joystick.hxx"\ - "..\emucore\Keyboard.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\M6502Hi.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MD5.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Paddles.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\PropsSet.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\Switches.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\CommandMenu.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_CONSO=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CONSO=\ - "..\common\Snapshot.hxx"\ - "..\common\Version.hxx"\ - "..\debugger\Debugger.hxx"\ - "..\debugger\DebuggerParser.hxx"\ - "..\debugger\Equate.hxx"\ - "..\debugger\EquateList.hxx"\ - "..\debugger\gui\PromptWidget.hxx"\ - "..\debugger\PackedBitArray.hxx"\ - "..\emucore\Booster.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Driving.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\Joystick.hxx"\ - "..\emucore\Keyboard.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\M6502Hi.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MD5.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Paddles.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\PropsSet.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\Switches.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\CommandMenu.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_CONSO=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CONSO=\ - "..\common\Snapshot.hxx"\ - "..\common\Version.hxx"\ - "..\debugger\Debugger.hxx"\ - "..\debugger\DebuggerParser.hxx"\ - "..\debugger\Equate.hxx"\ - "..\debugger\EquateList.hxx"\ - "..\debugger\gui\PromptWidget.hxx"\ - "..\debugger\PackedBitArray.hxx"\ - "..\emucore\Booster.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Driving.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\Joystick.hxx"\ - "..\emucore\Keyboard.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\M6502Hi.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MD5.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Paddles.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\PropsSet.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\Switches.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\CommandMenu.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_CONSO=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CONSO=\ - "..\common\Snapshot.hxx"\ - "..\common\Version.hxx"\ - "..\debugger\Debugger.hxx"\ - "..\debugger\DebuggerParser.hxx"\ - "..\debugger\Equate.hxx"\ - "..\debugger\EquateList.hxx"\ - "..\debugger\gui\PromptWidget.hxx"\ - "..\debugger\PackedBitArray.hxx"\ - "..\emucore\Booster.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Driving.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\Joystick.hxx"\ - "..\emucore\Keyboard.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\M6502Hi.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MD5.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Paddles.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\PropsSet.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\Switches.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\CommandMenu.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_CONSO=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\Control.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_CONTR=\ - "..\emucore\Control.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CONTR=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_CONTR=\ - "..\emucore\Control.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CONTR=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_CONTR=\ - "..\emucore\Control.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CONTR=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_CONTR=\ - "..\emucore\Control.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_CONTR=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\Deserializer.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_DESER=\ - "..\emucore\Deserializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_DESER=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_DESER=\ - "..\emucore\Deserializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_DESER=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_DESER=\ - "..\emucore\Deserializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_DESER=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_DESER=\ - "..\emucore\Deserializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_DESER=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\m6502\src\Device.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_DEVIC=\ - "..\emucore\m6502\src\Device.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_DEVIC=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_DEVIC=\ - "..\emucore\m6502\src\Device.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_DEVIC=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_DEVIC=\ - "..\emucore\m6502\src\Device.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_DEVIC=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_DEVIC=\ - "..\emucore\m6502\src\Device.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_DEVIC=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\Driving.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_DRIVI=\ - "..\emucore\Control.hxx"\ - "..\emucore\Driving.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_DRIVI=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_DRIVI=\ - "..\emucore\Control.hxx"\ - "..\emucore\Driving.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_DRIVI=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_DRIVI=\ - "..\emucore\Control.hxx"\ - "..\emucore\Driving.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_DRIVI=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_DRIVI=\ - "..\emucore\Control.hxx"\ - "..\emucore\Driving.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_DRIVI=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\Event.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_EVENT_=\ - "..\emucore\Event.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_EVENT_=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_EVENT_=\ - "..\emucore\Event.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_EVENT_=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_EVENT_=\ - "..\emucore\Event.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_EVENT_=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_EVENT_=\ - "..\emucore\Event.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_EVENT_=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\FrameBuffer.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_FRAME=\ - "..\common\stella.xpm"\ - "..\debugger\Debugger.hxx"\ - "..\debugger\DebuggerParser.hxx"\ - "..\debugger\Equate.hxx"\ - "..\debugger\EquateList.hxx"\ - "..\debugger\gui\PromptWidget.hxx"\ - "..\debugger\PackedBitArray.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\CommandMenu.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Launcher.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_FRAME=\ - "..\emucore\DisplayPSP.hxx"\ - "..\emucore\macOSXDisplay.h"\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_FRAME=\ - "..\common\stella.xpm"\ - "..\debugger\Debugger.hxx"\ - "..\debugger\DebuggerParser.hxx"\ - "..\debugger\Equate.hxx"\ - "..\debugger\EquateList.hxx"\ - "..\debugger\gui\PromptWidget.hxx"\ - "..\debugger\PackedBitArray.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\CommandMenu.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Launcher.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_FRAME=\ - "..\emucore\DisplayPSP.hxx"\ - "..\emucore\macOSXDisplay.h"\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_FRAME=\ - "..\common\stella.xpm"\ - "..\debugger\Debugger.hxx"\ - "..\debugger\DebuggerParser.hxx"\ - "..\debugger\Equate.hxx"\ - "..\debugger\EquateList.hxx"\ - "..\debugger\gui\PromptWidget.hxx"\ - "..\debugger\PackedBitArray.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\CommandMenu.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Launcher.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_FRAME=\ - "..\emucore\DisplayPSP.hxx"\ - "..\emucore\macOSXDisplay.h"\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_FRAME=\ - "..\common\stella.xpm"\ - "..\debugger\Debugger.hxx"\ - "..\debugger\DebuggerParser.hxx"\ - "..\debugger\Equate.hxx"\ - "..\debugger\EquateList.hxx"\ - "..\debugger\gui\PromptWidget.hxx"\ - "..\debugger\PackedBitArray.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\CommandMenu.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Launcher.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_FRAME=\ - "..\emucore\DisplayPSP.hxx"\ - "..\emucore\macOSXDisplay.h"\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\FSNode.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_FSNOD=\ - "..\emucore\FSNode.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\GuiUtils.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_FSNOD=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_FSNOD=\ - "..\emucore\FSNode.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\GuiUtils.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_FSNOD=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_FSNOD=\ - "..\emucore\FSNode.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\GuiUtils.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_FSNOD=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_FSNOD=\ - "..\emucore\FSNode.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\GuiUtils.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_FSNOD=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\Joystick.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_JOYST=\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\Joystick.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_JOYST=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_JOYST=\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\Joystick.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_JOYST=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_JOYST=\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\Joystick.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_JOYST=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_JOYST=\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\Joystick.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_JOYST=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\Keyboard.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_KEYBO=\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\Keyboard.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_KEYBO=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_KEYBO=\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\Keyboard.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_KEYBO=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_KEYBO=\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\Keyboard.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_KEYBO=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_KEYBO=\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\Keyboard.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_KEYBO=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\m6502\src\M6502.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_M6502=\ - "..\debugger\Expression.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_M6502=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_M6502=\ - "..\debugger\Expression.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_M6502=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_M6502=\ - "..\debugger\Expression.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_M6502=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_M6502=\ - "..\debugger\Expression.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_M6502=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\m6502\src\M6502Hi.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_M6502H=\ - "..\debugger\Debugger.hxx"\ - "..\debugger\DebuggerParser.hxx"\ - "..\debugger\Equate.hxx"\ - "..\debugger\EquateList.hxx"\ - "..\debugger\gui\PromptWidget.hxx"\ - "..\debugger\PackedBitArray.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\M6502Hi.hxx"\ - "..\emucore\m6502\src\M6502Hi.ins"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_M6502H=\ - ".\port\pspstdint.h"\ - -# ADD CPP /U "DEBUG" - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_M6502H=\ - "..\debugger\Debugger.hxx"\ - "..\debugger\DebuggerParser.hxx"\ - "..\debugger\Equate.hxx"\ - "..\debugger\EquateList.hxx"\ - "..\debugger\gui\PromptWidget.hxx"\ - "..\debugger\PackedBitArray.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\M6502Hi.hxx"\ - "..\emucore\m6502\src\M6502Hi.ins"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_M6502H=\ - ".\port\pspstdint.h"\ - -# ADD CPP /U "DEBUG" - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_M6502H=\ - "..\debugger\Debugger.hxx"\ - "..\debugger\DebuggerParser.hxx"\ - "..\debugger\Equate.hxx"\ - "..\debugger\EquateList.hxx"\ - "..\debugger\gui\PromptWidget.hxx"\ - "..\debugger\PackedBitArray.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\M6502Hi.hxx"\ - "..\emucore\m6502\src\M6502Hi.ins"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_M6502H=\ - ".\port\pspstdint.h"\ - -# ADD CPP /U "DEBUG" - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_M6502H=\ - "..\debugger\Debugger.hxx"\ - "..\debugger\DebuggerParser.hxx"\ - "..\debugger\Equate.hxx"\ - "..\debugger\EquateList.hxx"\ - "..\debugger\gui\PromptWidget.hxx"\ - "..\debugger\PackedBitArray.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\M6502Hi.hxx"\ - "..\emucore\m6502\src\M6502Hi.ins"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_M6502H=\ - ".\port\pspstdint.h"\ - -# ADD CPP /U "DEBUG" - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\M6532.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_M6532=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\Switches.hxx"\ - "..\emucore\TIA.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_M6532=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_M6532=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\Switches.hxx"\ - "..\emucore\TIA.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_M6532=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_M6532=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\Switches.hxx"\ - "..\emucore\TIA.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_M6532=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_M6532=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Random.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\Switches.hxx"\ - "..\emucore\TIA.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_M6532=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\MD5.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_MD5_C=\ - "..\emucore\MD5.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_MD5_C=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_MD5_C=\ - "..\emucore\MD5.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_MD5_C=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_MD5_C=\ - "..\emucore\MD5.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_MD5_C=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_MD5_C=\ - "..\emucore\MD5.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_MD5_C=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\MediaSrc.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_MEDIA=\ - "..\emucore\MediaSrc.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_MEDIA=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_MEDIA=\ - "..\emucore\MediaSrc.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_MEDIA=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_MEDIA=\ - "..\emucore\MediaSrc.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_MEDIA=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_MEDIA=\ - "..\emucore\MediaSrc.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_MEDIA=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\m6502\src\NullDev.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_NULLD=\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_NULLD=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_NULLD=\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_NULLD=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_NULLD=\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_NULLD=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_NULLD=\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_NULLD=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\OSystem.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_OSYST=\ - "..\common\FrameBufferGL.hxx"\ - "..\common\FrameBufferSoft.hxx"\ - "..\common\SoundNull.hxx"\ - "..\common\SoundSDL.hxx"\ - "..\debugger\Debugger.hxx"\ - "..\debugger\DebuggerParser.hxx"\ - "..\debugger\Equate.hxx"\ - "..\debugger\EquateList.hxx"\ - "..\debugger\gui\PromptWidget.hxx"\ - "..\debugger\PackedBitArray.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\FSNode.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\PropsSet.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\emucore\TIASnd.hxx"\ - "..\emucore\unzip.h"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\CommandMenu.hxx"\ - "..\gui\ConsoleFont.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Launcher.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StellaFont.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\FrameBufferWinCE.hxx"\ - ".\port\missing.h"\ - ".\port\SoundWinCE.hxx"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_opengl.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - ".\zlib\zconf.h"\ - ".\zlib\zlib.h"\ - -NODEP_CPP_OSYST=\ - "..\emucore\FrameBufferPSP.hxx"\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_OSYST=\ - "..\common\FrameBufferGL.hxx"\ - "..\common\FrameBufferSoft.hxx"\ - "..\common\SoundNull.hxx"\ - "..\common\SoundSDL.hxx"\ - "..\debugger\Debugger.hxx"\ - "..\debugger\DebuggerParser.hxx"\ - "..\debugger\Equate.hxx"\ - "..\debugger\EquateList.hxx"\ - "..\debugger\gui\PromptWidget.hxx"\ - "..\debugger\PackedBitArray.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\FSNode.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\PropsSet.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\emucore\TIASnd.hxx"\ - "..\emucore\unzip.h"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\CommandMenu.hxx"\ - "..\gui\ConsoleFont.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Launcher.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StellaFont.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_opengl.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - ".\zlib\zconf.h"\ - ".\zlib\zlib.h"\ - -NODEP_CPP_OSYST=\ - "..\emucore\FrameBufferPSP.hxx"\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_OSYST=\ - "..\common\FrameBufferGL.hxx"\ - "..\common\FrameBufferSoft.hxx"\ - "..\common\SoundNull.hxx"\ - "..\common\SoundSDL.hxx"\ - "..\debugger\Debugger.hxx"\ - "..\debugger\DebuggerParser.hxx"\ - "..\debugger\Equate.hxx"\ - "..\debugger\EquateList.hxx"\ - "..\debugger\gui\PromptWidget.hxx"\ - "..\debugger\PackedBitArray.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\FSNode.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\PropsSet.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\emucore\TIASnd.hxx"\ - "..\emucore\unzip.h"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\CommandMenu.hxx"\ - "..\gui\ConsoleFont.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Launcher.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StellaFont.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\FrameBufferWinCE.hxx"\ - ".\port\missing.h"\ - ".\port\SoundWinCE.hxx"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_opengl.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - ".\zlib\zconf.h"\ - ".\zlib\zlib.h"\ - -NODEP_CPP_OSYST=\ - "..\emucore\FrameBufferPSP.hxx"\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_OSYST=\ - "..\common\FrameBufferGL.hxx"\ - "..\common\FrameBufferSoft.hxx"\ - "..\common\SoundNull.hxx"\ - "..\common\SoundSDL.hxx"\ - "..\debugger\Debugger.hxx"\ - "..\debugger\DebuggerParser.hxx"\ - "..\debugger\Equate.hxx"\ - "..\debugger\EquateList.hxx"\ - "..\debugger\gui\PromptWidget.hxx"\ - "..\debugger\PackedBitArray.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\FSNode.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\PropsSet.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\emucore\TIASnd.hxx"\ - "..\emucore\unzip.h"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\CommandMenu.hxx"\ - "..\gui\ConsoleFont.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Launcher.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StellaFont.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\FrameBufferWinCE.hxx"\ - ".\port\missing.h"\ - ".\port\SoundWinCE.hxx"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_opengl.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - ".\zlib\zconf.h"\ - ".\zlib\zlib.h"\ - -NODEP_CPP_OSYST=\ - "..\emucore\FrameBufferPSP.hxx"\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\Paddles.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_PADDL=\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\Paddles.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_PADDL=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_PADDL=\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\Paddles.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_PADDL=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_PADDL=\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\Paddles.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_PADDL=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_PADDL=\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\Paddles.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_PADDL=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\Props.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_PROPS=\ - "..\emucore\Props.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_PROPS=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_PROPS=\ - "..\emucore\Props.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_PROPS=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_PROPS=\ - "..\emucore\Props.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_PROPS=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_PROPS=\ - "..\emucore\Props.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_PROPS=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\PropsSet.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_PROPSS=\ - "..\emucore\Props.hxx"\ - "..\emucore\PropsSet.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_PROPSS=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_PROPSS=\ - "..\emucore\Props.hxx"\ - "..\emucore\PropsSet.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_PROPSS=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_PROPSS=\ - "..\emucore\Props.hxx"\ - "..\emucore\PropsSet.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_PROPSS=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_PROPSS=\ - "..\emucore\Props.hxx"\ - "..\emucore\PropsSet.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_PROPSS=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\Random.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_RANDO=\ - "..\emucore\Random.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_RANDO=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_RANDO=\ - "..\emucore\Random.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_RANDO=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_RANDO=\ - "..\emucore\Random.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_RANDO=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_RANDO=\ - "..\emucore\Random.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_RANDO=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\Serializer.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_SERIA=\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_SERIA=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_SERIA=\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_SERIA=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_SERIA=\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_SERIA=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_SERIA=\ - "..\emucore\Serializer.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_SERIA=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\Settings.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_SETTI=\ - "..\common\Version.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_SETTI=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_SETTI=\ - "..\common\Version.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_SETTI=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_SETTI=\ - "..\common\Version.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_SETTI=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_SETTI=\ - "..\common\Version.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_SETTI=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\common\SoundNull.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_SOUND=\ - "..\common\SoundNull.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_SOUND=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_SOUND=\ - "..\common\SoundNull.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_SOUND=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_SOUND=\ - "..\common\SoundNull.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_SOUND=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_SOUND=\ - "..\common\SoundNull.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_SOUND=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\Switches.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_SWITC=\ - "..\emucore\Event.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Switches.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_SWITC=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_SWITC=\ - "..\emucore\Event.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Switches.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_SWITC=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_SWITC=\ - "..\emucore\Event.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Switches.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_SWITC=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_SWITC=\ - "..\emucore\Event.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Switches.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_SWITC=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\m6502\src\System.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_SYSTE=\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_SYSTE=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_SYSTE=\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_SYSTE=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_SYSTE=\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_SYSTE=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_SYSTE=\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_SYSTE=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\TIA.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_TIA_C=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_TIA_C=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_TIA_C=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_TIA_C=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_TIA_C=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_TIA_C=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_TIA_C=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_TIA_C=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\TIASnd.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_TIASN=\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\TIASnd.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_TIASN=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_TIASN=\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\TIASnd.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_TIASN=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_TIASN=\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\TIASnd.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_TIASN=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_TIASN=\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\TIASnd.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_TIASN=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=..\emucore\unzip.c - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_UNZIP=\ - "..\emucore\unzip.h"\ - ".\zlib\zconf.h"\ - ".\zlib\zlib.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_UNZIP=\ - "..\emucore\unzip.h"\ - ".\zlib\zconf.h"\ - ".\zlib\zlib.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_UNZIP=\ - "..\emucore\unzip.h"\ - ".\zlib\zconf.h"\ - ".\zlib\zlib.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_UNZIP=\ - "..\emucore\unzip.h"\ - ".\zlib\zconf.h"\ - ".\zlib\zlib.h"\ - - -!ENDIF - -# End Source File -# End Group -# Begin Group "Core Header Files" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=..\emucore\Booster.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\Cart.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\Cart2K.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\Cart3E.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\Cart3F.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\Cart4K.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartAR.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartCV.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartDPC.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartE0.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartE7.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartF4.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartF4SC.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartF6.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartF6SC.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartF8.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartF8SC.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartFASC.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartFE.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartMB.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartMC.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\CartUA.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\Console.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\Control.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\Deserializer.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\m6502\src\Device.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\Driving.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\Event.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\FrameBuffer.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\FSNode.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\Joystick.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\Keyboard.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\m6502\src\M6502.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\m6502\src\M6502Hi.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\M6532.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\MD5.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\MediaSrc.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\m6502\src\NullDev.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\OSystem.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\Paddles.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\Props.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\PropsSet.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\Random.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\Serializer.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\Settings.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\Sound.hxx -# End Source File -# Begin Source File - -SOURCE=..\common\SoundNull.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\Switches.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\m6502\src\System.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\TIA.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\TIASnd.hxx -# End Source File -# Begin Source File - -SOURCE=..\emucore\unzip.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 -# Begin Group "Port Sources" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\port\bspf.hxx -# End Source File -# Begin Source File - -SOURCE=.\port\EventHandler.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_EVENTH=\ - "..\common\Snapshot.hxx"\ - "..\debugger\Debugger.hxx"\ - "..\debugger\DebuggerParser.hxx"\ - "..\debugger\Equate.hxx"\ - "..\debugger\EquateList.hxx"\ - "..\debugger\gui\PromptWidget.hxx"\ - "..\debugger\PackedBitArray.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\FSNode.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\CommandMenu.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Launcher.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_EVENTH=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_EVENTH=\ - "..\common\Snapshot.hxx"\ - "..\debugger\Debugger.hxx"\ - "..\debugger\DebuggerParser.hxx"\ - "..\debugger\Equate.hxx"\ - "..\debugger\EquateList.hxx"\ - "..\debugger\gui\PromptWidget.hxx"\ - "..\debugger\PackedBitArray.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\FSNode.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\CommandMenu.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Launcher.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_EVENTH=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_EVENTH=\ - "..\common\Snapshot.hxx"\ - "..\debugger\Debugger.hxx"\ - "..\debugger\DebuggerParser.hxx"\ - "..\debugger\Equate.hxx"\ - "..\debugger\EquateList.hxx"\ - "..\debugger\gui\PromptWidget.hxx"\ - "..\debugger\PackedBitArray.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\FSNode.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\CommandMenu.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Launcher.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_EVENTH=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_EVENTH=\ - "..\common\Snapshot.hxx"\ - "..\debugger\Debugger.hxx"\ - "..\debugger\DebuggerParser.hxx"\ - "..\debugger\Equate.hxx"\ - "..\debugger\EquateList.hxx"\ - "..\debugger\gui\PromptWidget.hxx"\ - "..\debugger\PackedBitArray.hxx"\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\FSNode.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\M6502.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Command.hxx"\ - "..\gui\CommandMenu.hxx"\ - "..\gui\Dialog.hxx"\ - "..\gui\DialogContainer.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiObject.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\Launcher.hxx"\ - "..\gui\Menu.hxx"\ - "..\gui\Rect.hxx"\ - "..\gui\Stack.hxx"\ - "..\gui\StringList.hxx"\ - "..\gui\Widget.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_EVENTH=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\port\EventHandler.hxx -# End Source File -# Begin Source File - -SOURCE=.\port\FrameBufferWinCE.cpp - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_FRAMEB=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\FrameBufferWinCE.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - {$(INCLUDE)}"gx.h"\ - -NODEP_CPP_FRAMEB=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_FRAMEB=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\FrameBufferWinCE.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_FRAMEB=\ - ".\port\pspstdint.h"\ - ".\x.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_FRAMEB=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\FrameBufferWinCE.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - {$(INCLUDE)}"gx.h"\ - -NODEP_CPP_FRAMEB=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_FRAMEB=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\FrameBufferWinCE.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - {$(INCLUDE)}"gx.h"\ - -NODEP_CPP_FRAMEB=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\port\FrameBufferWinCE.hxx -# End Source File -# Begin Source File - -SOURCE=.\port\FSNodeWinCE.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_FSNODE=\ - "..\emucore\FSNode.hxx"\ - "..\gui\Array.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_FSNODE=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_FSNODE=\ - "..\emucore\FSNode.hxx"\ - "..\gui\Array.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_FSNODE=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_FSNODE=\ - "..\emucore\FSNode.hxx"\ - "..\gui\Array.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_FSNODE=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_FSNODE=\ - "..\emucore\FSNode.hxx"\ - "..\gui\Array.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - -NODEP_CPP_FSNODE=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\port\missing.cpp - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_MISSI=\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - {$(INCLUDE)}"gx.h"\ - -NODEP_CPP_MISSI=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_MISSI=\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_MISSI=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_MISSI=\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - {$(INCLUDE)}"gx.h"\ - -NODEP_CPP_MISSI=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_MISSI=\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - {$(INCLUDE)}"gx.h"\ - -NODEP_CPP_MISSI=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\port\missing.h -# End Source File -# Begin Source File - -SOURCE=.\port\OSystemWinCE.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_OSYSTE=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\emucore\TIASnd.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\port\OSystemWinCE.hxx"\ - ".\port\SoundWinCE.hxx"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_OSYSTE=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_OSYSTE=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\port\OSystemWinCE.hxx"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_OSYSTE=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_OSYSTE=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\port\OSystemWinCE.hxx"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_OSYSTE=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_OSYSTE=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\emucore\TIASnd.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\port\OSystemWinCE.hxx"\ - ".\port\SoundWinCE.hxx"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_OSYSTE=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\port\OSystemWinCE.hxx -# End Source File -# Begin Source File - -SOURCE=.\port\PocketStella.cpp - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_POCKE=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\FSNode.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\PropsSet.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\port\OSystemWinCE.hxx"\ - ".\port\SettingsWinCE.hxx"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - {$(INCLUDE)}"gx.h"\ - -NODEP_CPP_POCKE=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_POCKE=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\FSNode.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\PropsSet.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\port\OSystemWinCE.hxx"\ - ".\port\SettingsWinCE.hxx"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_POCKE=\ - ".\port\pspstdint.h"\ - ".\x.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_POCKE=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\FSNode.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\PropsSet.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\port\OSystemWinCE.hxx"\ - ".\port\SettingsWinCE.hxx"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - {$(INCLUDE)}"gx.h"\ - -NODEP_CPP_POCKE=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_POCKE=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\FSNode.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\PropsSet.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\EventHandler.hxx"\ - ".\port\missing.h"\ - ".\port\OSystemWinCE.hxx"\ - ".\port\SettingsWinCE.hxx"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - {$(INCLUDE)}"gx.h"\ - -NODEP_CPP_POCKE=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\port\SettingsWinCE.cpp - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_SETTIN=\ - "..\emucore\Settings.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\port\SettingsWinCE.hxx"\ - -NODEP_CPP_SETTIN=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_SETTIN=\ - "..\emucore\Settings.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\port\SettingsWinCE.hxx"\ - -NODEP_CPP_SETTIN=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_SETTIN=\ - "..\emucore\Settings.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\port\SettingsWinCE.hxx"\ - -NODEP_CPP_SETTIN=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_SETTIN=\ - "..\emucore\Settings.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\port\SettingsWinCE.hxx"\ - -NODEP_CPP_SETTIN=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\port\SettingsWinCE.hxx -# End Source File -# Begin Source File - -SOURCE=.\port\SoundWinCE.cxx - -!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" - -DEP_CPP_SOUNDW=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\emucore\TIASnd.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\port\SoundWinCE.hxx"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_SOUNDW=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" - -DEP_CPP_SOUNDW=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\emucore\TIASnd.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\port\SoundWinCE.hxx"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_SOUNDW=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" - -DEP_CPP_SOUNDW=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\emucore\TIASnd.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\port\SoundWinCE.hxx"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_SOUNDW=\ - ".\port\pspstdint.h"\ - - -!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" - -DEP_CPP_SOUNDW=\ - "..\emucore\Cart.hxx"\ - "..\emucore\Console.hxx"\ - "..\emucore\Control.hxx"\ - "..\emucore\Deserializer.hxx"\ - "..\emucore\Event.hxx"\ - "..\emucore\EventHandler.hxx"\ - "..\emucore\FrameBuffer.hxx"\ - "..\emucore\m6502\src\Device.hxx"\ - "..\emucore\m6502\src\NullDev.hxx"\ - "..\emucore\m6502\src\System.hxx"\ - "..\emucore\M6532.hxx"\ - "..\emucore\MediaSrc.hxx"\ - "..\emucore\OSystem.hxx"\ - "..\emucore\Props.hxx"\ - "..\emucore\Serializer.hxx"\ - "..\emucore\Settings.hxx"\ - "..\emucore\Sound.hxx"\ - "..\emucore\TIA.hxx"\ - "..\emucore\TIASnd.hxx"\ - "..\gui\Array.hxx"\ - "..\gui\Font.hxx"\ - "..\gui\GuiUtils.hxx"\ - "..\gui\StringList.hxx"\ - ".\port\bspf.hxx"\ - ".\port\missing.h"\ - ".\port\SoundWinCE.hxx"\ - ".\sdl\begin_code.h"\ - ".\sdl\close_code.h"\ - ".\sdl\SDL.h"\ - ".\sdl\SDL_active.h"\ - ".\sdl\SDL_audio.h"\ - ".\sdl\SDL_byteorder.h"\ - ".\sdl\SDL_cdrom.h"\ - ".\sdl\SDL_error.h"\ - ".\sdl\SDL_events.h"\ - ".\sdl\SDL_getenv.h"\ - ".\sdl\SDL_joystick.h"\ - ".\sdl\SDL_keyboard.h"\ - ".\sdl\SDL_keysym.h"\ - ".\sdl\SDL_main.h"\ - ".\sdl\SDL_mouse.h"\ - ".\sdl\SDL_mutex.h"\ - ".\sdl\SDL_quit.h"\ - ".\sdl\SDL_rwops.h"\ - ".\sdl\SDL_syswm.h"\ - ".\sdl\SDL_timer.h"\ - ".\sdl\SDL_types.h"\ - ".\sdl\SDL_version.h"\ - ".\sdl\SDL_video.h"\ - -NODEP_CPP_SOUNDW=\ - ".\port\pspstdint.h"\ - - -!ENDIF - -# End Source File -# Begin Source File - -SOURCE=.\port\SoundWinCE.hxx -# End Source File -# End Group -# End Target -# End Project +# Microsoft eMbedded Visual Tools Project File - Name="PocketStella" - 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 + +CFG=PocketStella - Win32 (WCE ARM) 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 "PocketStella.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 "PocketStella.vcn" CFG="PocketStella - Win32 (WCE ARM) Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "PocketStella - Win32 (WCE ARM) Release" (based on "Win32 (WCE ARM) Application") +!MESSAGE "PocketStella - Win32 (WCE ARM) Debug" (based on "Win32 (WCE ARM) Application") +!MESSAGE "PocketStella - Win32 (WCE x86) Release" (based on "Win32 (WCE x86) Application") +!MESSAGE "PocketStella - 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)" == "PocketStella - 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 Sec_AlwaysSign 0 +# PROP Sec_ConfigureDevice 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 /I "port" /I "../emucore" /I "../emucore/m6502/src" /I "../gui" /I "zlib" /I "sdl" /I "../common" /I "../debugger" /I "../debugger/gui" /I "../yacc" /D "ARM" /D "_ARM_" /D "NDEBUG" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /D "BSPF_WIN32" /D "SOUND_SUPPORT" /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 zlib/arm/zlibce.lib gx.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /libpath:"f:\a\stlport\lib\evc3-arm" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM + +!ELSEIF "$(CFG)" == "PocketStella - 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 "port" /I "../emucore" /I "../emucore/m6502/src" /I "../gui" /I "zlib" /I "sdl" /I "../common" /I "../debugger" /I "../debugger/gui" /I "../yacc" /D "DEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /D "BSPF_WIN32" /D "SOUND_SUPPORT" /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)" /libpath:"f:\a\stlport\lib\evc3-x86" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM + +!ELSEIF "$(CFG)" == "PocketStella - 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 Sec_AlwaysSign 0 +# PROP Sec_ConfigureDevice 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 /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 /I "port" /I "../emucore" /I "../emucore/m6502/src" /I "../gui" /I "zlib" /I "sdl" /I "../common" /I "../debugger" /I "../debugger/gui" /I "../yacc" /D "_i386_" /D "i_386_" /D "_X86_" /D "x86" /D "NDEBUG" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /D "BSPF_WIN32" /D "SOUND_SUPPORT" /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) gx.lib zlib/x86/zlibce.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /libpath:"f:\a\stlport\lib\evc3-x86" /subsystem:$(CESubsystem) /MACHINE:IX86 + +!ELSEIF "$(CFG)" == "PocketStella - 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 Ignore_Export_Lib 0 +# PROP Sec_AlwaysSign 0 +# PROP Sec_ConfigureDevice 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 "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 /I "port" /I "../emucore" /I "../emucore/m6502/src" /I "../gui" /I "zlib" /I "sdl" /I "../common" /I "../debugger" /I "../debugger/gui" /I "../yacc" /D "DEBUG" /D "_i386_" /D "i_386_" /D "_X86_" /D "x86" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /D "BSPF_WIN32" /D "SOUND_SUPPORT" /FR /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) zlib/x86/zlibce.lib gx.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /libpath:"f:\a\stlport\lib\evc3-x86" /subsystem:$(CESubsystem) /MACHINE:IX86 + +!ENDIF + +# Begin Target + +# Name "PocketStella - Win32 (WCE ARM) Release" +# Name "PocketStella - Win32 (WCE ARM) Debug" +# Name "PocketStella - Win32 (WCE x86) Release" +# Name "PocketStella - Win32 (WCE x86) Debug" +# Begin Group "Core Source Files" + +# PROP Default_Filter "" +# Begin Group "Gui" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=..\gui\AboutDialog.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_ABOUT=\ + "..\common\Version.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\AboutDialog.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_ABOUT=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_ABOUT=\ + "..\common\Version.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\AboutDialog.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_ABOUT=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_ABOUT=\ + "..\common\Version.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\AboutDialog.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_ABOUT=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_ABOUT=\ + "..\common\Version.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\AboutDialog.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_ABOUT=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\AboutDialog.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\Array.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\AudioDialog.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_AUDIO=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\AudioDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\PopUpWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_AUDIO=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_AUDIO=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\AudioDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\PopUpWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_AUDIO=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_AUDIO=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\AudioDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\PopUpWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_AUDIO=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_AUDIO=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\AudioDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\PopUpWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_AUDIO=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\AudioDialog.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\BrowserDialog.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_BROWS=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\FSNode.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\BrowserDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\ListWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\StringListWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_BROWS=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_BROWS=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\FSNode.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\BrowserDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\ListWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\StringListWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_BROWS=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_BROWS=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\FSNode.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\BrowserDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\ListWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\StringListWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_BROWS=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_BROWS=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\FSNode.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\BrowserDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\ListWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\StringListWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_BROWS=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\BrowserDialog.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\CheatCodeDialog.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CHEAT=\ + "..\common\Cheat.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\CheatCodeDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\EditTextWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_CHEAT=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CHEAT=\ + "..\common\Cheat.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\CheatCodeDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_CHEAT=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CHEAT=\ + "..\common\Cheat.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\CheatCodeDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_CHEAT=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CHEAT=\ + "..\common\Cheat.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\CheatCodeDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\EditTextWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_CHEAT=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\CheatCodeDialog.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\CheckListWidget.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CHECK=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\CheckListWidget.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\ListWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_CHECK=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CHECK=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\CheckListWidget.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\ListWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_CHECK=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CHECK=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\CheckListWidget.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\ListWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_CHECK=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CHECK=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\CheckListWidget.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\ListWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_CHECK=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\CheckListWidget.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\Command.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\CommandDialog.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_COMMA=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\CommandDialog.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_COMMA=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_COMMA=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\CommandDialog.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_COMMA=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_COMMA=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\CommandDialog.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_COMMA=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_COMMA=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\CommandDialog.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_COMMA=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\CommandDialog.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\CommandMenu.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_COMMAN=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\CommandDialog.hxx"\ + "..\gui\CommandMenu.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_COMMAN=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_COMMAN=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\CommandDialog.hxx"\ + "..\gui\CommandMenu.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_COMMAN=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_COMMAN=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\CommandDialog.hxx"\ + "..\gui\CommandMenu.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_COMMAN=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_COMMAN=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\CommandDialog.hxx"\ + "..\gui\CommandMenu.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_COMMAN=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\CommandMenu.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\ConsoleFont.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\Dialog.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_DIALO=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\TabWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_DIALO=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_DIALO=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\TabWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_DIALO=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_DIALO=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\TabWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_DIALO=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_DIALO=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\TabWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_DIALO=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\Dialog.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\DialogContainer.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_DIALOG=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_DIALOG=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_DIALOG=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_DIALOG=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_DIALOG=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_DIALOG=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_DIALOG=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_DIALOG=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\DialogContainer.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\EditableWidget.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_EDITA=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_EDITA=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_EDITA=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_EDITA=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_EDITA=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_EDITA=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_EDITA=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_EDITA=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\EditableWidget.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\EditNumWidget.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_EDITN=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\EditNumWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_EDITN=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_EDITN=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\EditNumWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_EDITN=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_EDITN=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\EditNumWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_EDITN=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_EDITN=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\EditNumWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_EDITN=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\EditNumWidget.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\EditTextWidget.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_EDITT=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\EditTextWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_EDITT=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_EDITT=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\EditTextWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_EDITT=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_EDITT=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\EditTextWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_EDITT=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_EDITT=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\EditTextWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_EDITT=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\EditTextWidget.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\EventMappingDialog.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_EVENT=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\EventMappingDialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\ListWidget.hxx"\ + "..\gui\PopUpWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\StringListWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_EVENT=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_EVENT=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\EventMappingDialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\ListWidget.hxx"\ + "..\gui\PopUpWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\StringListWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_EVENT=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_EVENT=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\EventMappingDialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\ListWidget.hxx"\ + "..\gui\PopUpWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\StringListWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_EVENT=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_EVENT=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\EventMappingDialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\ListWidget.hxx"\ + "..\gui\PopUpWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\StringListWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_EVENT=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\EventMappingDialog.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\Font.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_FONT_=\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_FONT_=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_FONT_=\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_FONT_=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_FONT_=\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_FONT_=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_FONT_=\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_FONT_=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\Font.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\GameInfoDialog.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_GAMEI=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\EditTextWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GameInfoDialog.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\PopUpWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\TabWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_GAMEI=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_GAMEI=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GameInfoDialog.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_GAMEI=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_GAMEI=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GameInfoDialog.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_GAMEI=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_GAMEI=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\EditTextWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GameInfoDialog.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\PopUpWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\TabWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_GAMEI=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\GameInfoDialog.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\GameList.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_GAMEL=\ + "..\gui\Array.hxx"\ + "..\gui\GameList.hxx"\ + "..\gui\GuiUtils.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_GAMEL=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_GAMEL=\ + "..\gui\Array.hxx"\ + "..\gui\GameList.hxx"\ + "..\gui\GuiUtils.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_GAMEL=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_GAMEL=\ + "..\gui\Array.hxx"\ + "..\gui\GameList.hxx"\ + "..\gui\GuiUtils.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_GAMEL=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_GAMEL=\ + "..\gui\Array.hxx"\ + "..\gui\GameList.hxx"\ + "..\gui\GuiUtils.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_GAMEL=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\GameList.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\GuiObject.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\GuiUtils.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\HelpDialog.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_HELPD=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\HelpDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_HELPD=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_HELPD=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\HelpDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_HELPD=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_HELPD=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\HelpDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_HELPD=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_HELPD=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\HelpDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_HELPD=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\HelpDialog.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\InputTextDialog.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_INPUT=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\EditTextWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\InputTextDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_INPUT=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_INPUT=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\EditTextWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\InputTextDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_INPUT=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_INPUT=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\EditTextWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\InputTextDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_INPUT=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_INPUT=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\EditTextWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\InputTextDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_INPUT=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\InputTextDialog.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\Launcher.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_LAUNC=\ + "..\common\Version.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GameList.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Launcher.hxx"\ + "..\gui\LauncherDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_LAUNC=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_LAUNC=\ + "..\common\Version.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GameList.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Launcher.hxx"\ + "..\gui\LauncherDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_LAUNC=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_LAUNC=\ + "..\common\Version.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GameList.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Launcher.hxx"\ + "..\gui\LauncherDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_LAUNC=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_LAUNC=\ + "..\common\Version.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GameList.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Launcher.hxx"\ + "..\gui\LauncherDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_LAUNC=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\Launcher.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\LauncherDialog.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_LAUNCH=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\FSNode.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MD5.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\PropsSet.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\BrowserDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GameList.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\LauncherDialog.hxx"\ + "..\gui\LauncherOptionsDialog.hxx"\ + "..\gui\ListWidget.hxx"\ + "..\gui\ProgressDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\StringListWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_LAUNCH=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_LAUNCH=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\FSNode.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MD5.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\PropsSet.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\BrowserDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GameList.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\LauncherDialog.hxx"\ + "..\gui\LauncherOptionsDialog.hxx"\ + "..\gui\ListWidget.hxx"\ + "..\gui\ProgressDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\StringListWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_LAUNCH=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_LAUNCH=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\FSNode.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MD5.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\PropsSet.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\BrowserDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GameList.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\LauncherDialog.hxx"\ + "..\gui\LauncherOptionsDialog.hxx"\ + "..\gui\ListWidget.hxx"\ + "..\gui\ProgressDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\StringListWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_LAUNCH=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_LAUNCH=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\FSNode.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MD5.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\PropsSet.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\BrowserDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GameList.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\LauncherDialog.hxx"\ + "..\gui\LauncherOptionsDialog.hxx"\ + "..\gui\ListWidget.hxx"\ + "..\gui\ProgressDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\StringListWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_LAUNCH=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\LauncherDialog.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\LauncherOptionsDialog.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_LAUNCHE=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\FSNode.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\BrowserDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GameList.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\LauncherDialog.hxx"\ + "..\gui\LauncherOptionsDialog.hxx"\ + "..\gui\PopUpWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\TabWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_LAUNCHE=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_LAUNCHE=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\FSNode.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\BrowserDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GameList.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\LauncherDialog.hxx"\ + "..\gui\LauncherOptionsDialog.hxx"\ + "..\gui\PopUpWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\TabWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_LAUNCHE=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_LAUNCHE=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\FSNode.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\BrowserDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GameList.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\LauncherDialog.hxx"\ + "..\gui\LauncherOptionsDialog.hxx"\ + "..\gui\PopUpWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\TabWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_LAUNCHE=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_LAUNCHE=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\FSNode.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\BrowserDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GameList.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\LauncherDialog.hxx"\ + "..\gui\LauncherOptionsDialog.hxx"\ + "..\gui\PopUpWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\TabWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_LAUNCHE=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\LauncherOptionsDialog.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\ListWidget.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_LISTW=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\ListWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_LISTW=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_LISTW=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\ListWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_LISTW=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_LISTW=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\ListWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_LISTW=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_LISTW=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\ListWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_LISTW=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\ListWidget.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\Menu.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_MENU_=\ + "..\common\Cheat.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\CheatCodeDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\EditTextWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GameInfoDialog.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\OptionsDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_MENU_=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_MENU_=\ + "..\common\Cheat.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\CheatCodeDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GameInfoDialog.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\OptionsDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_MENU_=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_MENU_=\ + "..\common\Cheat.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\CheatCodeDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GameInfoDialog.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\OptionsDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_MENU_=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_MENU_=\ + "..\common\Cheat.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\CheatCodeDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\EditTextWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GameInfoDialog.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\OptionsDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_MENU_=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\Menu.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\OptionsDialog.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_OPTIO=\ + "..\common\Cheat.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\AboutDialog.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\AudioDialog.hxx"\ + "..\gui\CheatCodeDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\EditTextWidget.hxx"\ + "..\gui\EventMappingDialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GameInfoDialog.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\HelpDialog.hxx"\ + "..\gui\OptionsDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\VideoDialog.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_OPTIO=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_OPTIO=\ + "..\common\Cheat.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\AboutDialog.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\AudioDialog.hxx"\ + "..\gui\CheatCodeDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\EventMappingDialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GameInfoDialog.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\HelpDialog.hxx"\ + "..\gui\OptionsDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\VideoDialog.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_OPTIO=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_OPTIO=\ + "..\common\Cheat.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\AboutDialog.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\AudioDialog.hxx"\ + "..\gui\CheatCodeDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\EventMappingDialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GameInfoDialog.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\HelpDialog.hxx"\ + "..\gui\OptionsDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\VideoDialog.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_OPTIO=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_OPTIO=\ + "..\common\Cheat.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\AboutDialog.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\AudioDialog.hxx"\ + "..\gui\CheatCodeDialog.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\EditTextWidget.hxx"\ + "..\gui\EventMappingDialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GameInfoDialog.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\HelpDialog.hxx"\ + "..\gui\OptionsDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\VideoDialog.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_OPTIO=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\OptionsDialog.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\PopUpWidget.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_POPUP=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\ListWidget.hxx"\ + "..\gui\PopUpWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\StringListWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_POPUP=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_POPUP=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\PopUpWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_POPUP=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_POPUP=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\PopUpWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_POPUP=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_POPUP=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\ListWidget.hxx"\ + "..\gui\PopUpWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\StringListWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_POPUP=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\PopUpWidget.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\ProgressDialog.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_PROGR=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\ProgressDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_PROGR=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_PROGR=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\ProgressDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_PROGR=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_PROGR=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\ProgressDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_PROGR=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_PROGR=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\ProgressDialog.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_PROGR=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\ProgressDialog.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\Rect.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\ScrollBarWidget.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_SCROL=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_SCROL=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_SCROL=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_SCROL=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_SCROL=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_SCROL=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_SCROL=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_SCROL=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\ScrollBarWidget.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\Stack.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\StellaFont.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\StringList.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\StringListWidget.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_STRIN=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\ListWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\StringListWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_STRIN=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_STRIN=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\ListWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\StringListWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_STRIN=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_STRIN=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\ListWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\StringListWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_STRIN=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_STRIN=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\ListWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\ScrollBarWidget.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\StringListWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_STRIN=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\StringListWidget.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\TabWidget.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_TABWI=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\TabWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_TABWI=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_TABWI=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\TabWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_TABWI=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_TABWI=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\TabWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_TABWI=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_TABWI=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\TabWidget.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_TABWI=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\TabWidget.hxx +# End Source File +# Begin Source File + +SOURCE=..\common\Version.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\VideoDialog.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_VIDEO=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\PopUpWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\VideoDialog.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_VIDEO=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_VIDEO=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\PopUpWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\VideoDialog.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_VIDEO=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_VIDEO=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\PopUpWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\VideoDialog.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_VIDEO=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_VIDEO=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\PopUpWidget.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\VideoDialog.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_VIDEO=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\VideoDialog.hxx +# End Source File +# Begin Source File + +SOURCE=..\gui\Widget.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_WIDGE=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_WIDGE=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_WIDGE=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_WIDGE=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_WIDGE=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_WIDGE=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_WIDGE=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\EditableWidget.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_WIDGE=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\gui\Widget.hxx +# End Source File +# End Group +# Begin Group "Cheat" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=..\common\BankRomCheat.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_BANKR=\ + "..\common\BankRomCheat.hxx"\ + "..\common\Cheat.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_BANKR=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_BANKR=\ + "..\common\BankRomCheat.hxx"\ + "..\common\Cheat.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_BANKR=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_BANKR=\ + "..\common\BankRomCheat.hxx"\ + "..\common\Cheat.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_BANKR=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_BANKR=\ + "..\common\BankRomCheat.hxx"\ + "..\common\Cheat.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_BANKR=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\common\BankRomCheat.hxx +# End Source File +# Begin Source File + +SOURCE=..\common\Cheat.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CHEAT_=\ + "..\common\BankRomCheat.hxx"\ + "..\common\Cheat.hxx"\ + "..\common\CheetahCheat.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_CHEAT_=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CHEAT_=\ + "..\common\Cheat.hxx"\ + "..\common\CheetahCheat.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CHEAT_=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CHEAT_=\ + "..\common\Cheat.hxx"\ + "..\common\CheetahCheat.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CHEAT_=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CHEAT_=\ + "..\common\BankRomCheat.hxx"\ + "..\common\Cheat.hxx"\ + "..\common\CheetahCheat.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_CHEAT_=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\common\Cheat.hxx +# End Source File +# Begin Source File + +SOURCE=..\common\CheetahCheat.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CHEET=\ + "..\common\Cheat.hxx"\ + "..\common\CheetahCheat.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_CHEET=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CHEET=\ + "..\common\Cheat.hxx"\ + "..\common\CheetahCheat.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CHEET=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CHEET=\ + "..\common\Cheat.hxx"\ + "..\common\CheetahCheat.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CHEET=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CHEET=\ + "..\common\Cheat.hxx"\ + "..\common\CheetahCheat.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_CHEET=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\common\CheetahCheat.hxx +# End Source File +# End Group +# Begin Source File + +SOURCE=..\emucore\Booster.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_BOOST=\ + "..\emucore\Booster.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_BOOST=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_BOOST=\ + "..\emucore\Booster.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_BOOST=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_BOOST=\ + "..\emucore\Booster.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_BOOST=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_BOOST=\ + "..\emucore\Booster.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_BOOST=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\Cart.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CART_=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Cart2K.hxx"\ + "..\emucore\Cart3E.hxx"\ + "..\emucore\Cart3F.hxx"\ + "..\emucore\Cart4K.hxx"\ + "..\emucore\CartAR.hxx"\ + "..\emucore\CartCV.hxx"\ + "..\emucore\CartDPC.hxx"\ + "..\emucore\CartE0.hxx"\ + "..\emucore\CartE7.hxx"\ + "..\emucore\CartF4.hxx"\ + "..\emucore\CartF4SC.hxx"\ + "..\emucore\CartF6.hxx"\ + "..\emucore\CartF6SC.hxx"\ + "..\emucore\CartF8.hxx"\ + "..\emucore\CartF8SC.hxx"\ + "..\emucore\CartFASC.hxx"\ + "..\emucore\CartFE.hxx"\ + "..\emucore\CartMB.hxx"\ + "..\emucore\CartMC.hxx"\ + "..\emucore\CartUA.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\MD5.hxx"\ + "..\emucore\Props.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CART_=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CART_=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Cart2K.hxx"\ + "..\emucore\Cart3E.hxx"\ + "..\emucore\Cart3F.hxx"\ + "..\emucore\Cart4K.hxx"\ + "..\emucore\CartAR.hxx"\ + "..\emucore\CartCV.hxx"\ + "..\emucore\CartDPC.hxx"\ + "..\emucore\CartE0.hxx"\ + "..\emucore\CartE7.hxx"\ + "..\emucore\CartF4.hxx"\ + "..\emucore\CartF4SC.hxx"\ + "..\emucore\CartF6.hxx"\ + "..\emucore\CartF6SC.hxx"\ + "..\emucore\CartF8.hxx"\ + "..\emucore\CartF8SC.hxx"\ + "..\emucore\CartFASC.hxx"\ + "..\emucore\CartFE.hxx"\ + "..\emucore\CartMB.hxx"\ + "..\emucore\CartMC.hxx"\ + "..\emucore\CartUA.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\MD5.hxx"\ + "..\emucore\Props.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CART_=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CART_=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Cart2K.hxx"\ + "..\emucore\Cart3E.hxx"\ + "..\emucore\Cart3F.hxx"\ + "..\emucore\Cart4K.hxx"\ + "..\emucore\CartAR.hxx"\ + "..\emucore\CartCV.hxx"\ + "..\emucore\CartDPC.hxx"\ + "..\emucore\CartE0.hxx"\ + "..\emucore\CartE7.hxx"\ + "..\emucore\CartF4.hxx"\ + "..\emucore\CartF4SC.hxx"\ + "..\emucore\CartF6.hxx"\ + "..\emucore\CartF6SC.hxx"\ + "..\emucore\CartF8.hxx"\ + "..\emucore\CartF8SC.hxx"\ + "..\emucore\CartFASC.hxx"\ + "..\emucore\CartFE.hxx"\ + "..\emucore\CartMB.hxx"\ + "..\emucore\CartMC.hxx"\ + "..\emucore\CartUA.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\MD5.hxx"\ + "..\emucore\Props.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CART_=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CART_=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Cart2K.hxx"\ + "..\emucore\Cart3E.hxx"\ + "..\emucore\Cart3F.hxx"\ + "..\emucore\Cart4K.hxx"\ + "..\emucore\CartAR.hxx"\ + "..\emucore\CartCV.hxx"\ + "..\emucore\CartDPC.hxx"\ + "..\emucore\CartE0.hxx"\ + "..\emucore\CartE7.hxx"\ + "..\emucore\CartF4.hxx"\ + "..\emucore\CartF4SC.hxx"\ + "..\emucore\CartF6.hxx"\ + "..\emucore\CartF6SC.hxx"\ + "..\emucore\CartF8.hxx"\ + "..\emucore\CartF8SC.hxx"\ + "..\emucore\CartFASC.hxx"\ + "..\emucore\CartFE.hxx"\ + "..\emucore\CartMB.hxx"\ + "..\emucore\CartMC.hxx"\ + "..\emucore\CartUA.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\MD5.hxx"\ + "..\emucore\Props.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CART_=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\Cart2K.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CART2=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Cart2K.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CART2=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CART2=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Cart2K.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CART2=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CART2=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Cart2K.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CART2=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CART2=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Cart2K.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CART2=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\Cart3E.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CART3=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Cart3E.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CART3=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CART3=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Cart3E.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CART3=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CART3=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Cart3E.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CART3=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CART3=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Cart3E.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CART3=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\Cart3F.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CART3F=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Cart3F.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CART3F=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CART3F=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Cart3F.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CART3F=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CART3F=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Cart3F.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CART3F=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CART3F=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Cart3F.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CART3F=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\Cart4K.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CART4=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Cart4K.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CART4=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CART4=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Cart4K.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CART4=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CART4=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Cart4K.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CART4=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CART4=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Cart4K.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CART4=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartAR.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CARTA=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartAR.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\M6502Hi.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTA=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CARTA=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartAR.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\M6502Hi.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTA=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CARTA=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartAR.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\M6502Hi.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTA=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CARTA=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartAR.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\M6502Hi.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTA=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartCV.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CARTC=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartCV.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTC=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CARTC=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartCV.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTC=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CARTC=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartCV.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTC=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CARTC=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartCV.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTC=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartDPC.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CARTD=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartDPC.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTD=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CARTD=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartDPC.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTD=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CARTD=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartDPC.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTD=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CARTD=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartDPC.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTD=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartE0.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CARTE=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartE0.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTE=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CARTE=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartE0.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTE=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CARTE=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartE0.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTE=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CARTE=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartE0.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTE=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartE7.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CARTE7=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartE7.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTE7=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CARTE7=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartE7.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTE7=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CARTE7=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartE7.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTE7=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CARTE7=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartE7.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTE7=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartF4.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CARTF=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartF4.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTF=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CARTF=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartF4.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTF=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CARTF=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartF4.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTF=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CARTF=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartF4.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTF=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartF4SC.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CARTF4=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartF4SC.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTF4=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CARTF4=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartF4SC.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTF4=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CARTF4=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartF4SC.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTF4=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CARTF4=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartF4SC.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTF4=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartF6.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CARTF6=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartF6.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTF6=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CARTF6=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartF6.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTF6=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CARTF6=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartF6.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTF6=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CARTF6=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartF6.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTF6=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartF6SC.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CARTF6S=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartF6SC.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTF6S=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CARTF6S=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartF6SC.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTF6S=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CARTF6S=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartF6SC.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTF6S=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CARTF6S=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartF6SC.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTF6S=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartF8.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CARTF8=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartF8.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTF8=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CARTF8=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartF8.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTF8=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CARTF8=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartF8.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTF8=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CARTF8=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartF8.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTF8=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartF8SC.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CARTF8S=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartF8SC.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTF8S=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CARTF8S=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartF8SC.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTF8S=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CARTF8S=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartF8SC.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTF8S=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CARTF8S=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartF8SC.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTF8S=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartFASC.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CARTFA=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartFASC.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTFA=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CARTFA=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartFASC.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTFA=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CARTFA=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartFASC.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTFA=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CARTFA=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartFASC.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTFA=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartFE.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CARTFE=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartFE.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTFE=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CARTFE=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartFE.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTFE=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CARTFE=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartFE.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTFE=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CARTFE=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartFE.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTFE=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartMB.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CARTM=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartMB.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTM=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CARTM=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartMB.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTM=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CARTM=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartMB.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTM=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CARTM=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartMB.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTM=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartMC.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CARTMC=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartMC.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTMC=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CARTMC=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartMC.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTMC=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CARTMC=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartMC.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTMC=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CARTMC=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartMC.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTMC=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartUA.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CARTU=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartUA.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTU=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CARTU=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartUA.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTU=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CARTU=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartUA.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTU=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CARTU=\ + "..\emucore\Cart.hxx"\ + "..\emucore\CartUA.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CARTU=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\Console.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CONSO=\ + "..\common\Snapshot.hxx"\ + "..\common\Version.hxx"\ + "..\debugger\Debugger.hxx"\ + "..\debugger\DebuggerParser.hxx"\ + "..\debugger\Equate.hxx"\ + "..\debugger\EquateList.hxx"\ + "..\debugger\gui\PromptWidget.hxx"\ + "..\debugger\PackedBitArray.hxx"\ + "..\emucore\Booster.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Driving.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\Joystick.hxx"\ + "..\emucore\Keyboard.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\M6502Hi.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MD5.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Paddles.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\PropsSet.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\Switches.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\CommandMenu.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_CONSO=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CONSO=\ + "..\common\Snapshot.hxx"\ + "..\common\Version.hxx"\ + "..\debugger\Debugger.hxx"\ + "..\debugger\DebuggerParser.hxx"\ + "..\debugger\Equate.hxx"\ + "..\debugger\EquateList.hxx"\ + "..\debugger\gui\PromptWidget.hxx"\ + "..\debugger\PackedBitArray.hxx"\ + "..\emucore\Booster.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Driving.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\Joystick.hxx"\ + "..\emucore\Keyboard.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\M6502Hi.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MD5.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Paddles.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\PropsSet.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\Switches.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\CommandMenu.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_CONSO=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CONSO=\ + "..\common\Snapshot.hxx"\ + "..\common\Version.hxx"\ + "..\debugger\Debugger.hxx"\ + "..\debugger\DebuggerParser.hxx"\ + "..\debugger\Equate.hxx"\ + "..\debugger\EquateList.hxx"\ + "..\debugger\gui\PromptWidget.hxx"\ + "..\debugger\PackedBitArray.hxx"\ + "..\emucore\Booster.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Driving.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\Joystick.hxx"\ + "..\emucore\Keyboard.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\M6502Hi.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MD5.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Paddles.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\PropsSet.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\Switches.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\CommandMenu.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_CONSO=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CONSO=\ + "..\common\Snapshot.hxx"\ + "..\common\Version.hxx"\ + "..\debugger\Debugger.hxx"\ + "..\debugger\DebuggerParser.hxx"\ + "..\debugger\Equate.hxx"\ + "..\debugger\EquateList.hxx"\ + "..\debugger\gui\PromptWidget.hxx"\ + "..\debugger\PackedBitArray.hxx"\ + "..\emucore\Booster.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Driving.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\Joystick.hxx"\ + "..\emucore\Keyboard.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\M6502Hi.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MD5.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Paddles.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\PropsSet.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\Switches.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\CommandMenu.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_CONSO=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\Control.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_CONTR=\ + "..\emucore\Control.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CONTR=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_CONTR=\ + "..\emucore\Control.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CONTR=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_CONTR=\ + "..\emucore\Control.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CONTR=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_CONTR=\ + "..\emucore\Control.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_CONTR=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\Deserializer.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_DESER=\ + "..\emucore\Deserializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_DESER=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_DESER=\ + "..\emucore\Deserializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_DESER=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_DESER=\ + "..\emucore\Deserializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_DESER=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_DESER=\ + "..\emucore\Deserializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_DESER=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\m6502\src\Device.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_DEVIC=\ + "..\emucore\m6502\src\Device.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_DEVIC=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_DEVIC=\ + "..\emucore\m6502\src\Device.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_DEVIC=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_DEVIC=\ + "..\emucore\m6502\src\Device.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_DEVIC=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_DEVIC=\ + "..\emucore\m6502\src\Device.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_DEVIC=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\Driving.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_DRIVI=\ + "..\emucore\Control.hxx"\ + "..\emucore\Driving.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_DRIVI=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_DRIVI=\ + "..\emucore\Control.hxx"\ + "..\emucore\Driving.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_DRIVI=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_DRIVI=\ + "..\emucore\Control.hxx"\ + "..\emucore\Driving.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_DRIVI=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_DRIVI=\ + "..\emucore\Control.hxx"\ + "..\emucore\Driving.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_DRIVI=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\Event.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_EVENT_=\ + "..\emucore\Event.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_EVENT_=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_EVENT_=\ + "..\emucore\Event.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_EVENT_=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_EVENT_=\ + "..\emucore\Event.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_EVENT_=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_EVENT_=\ + "..\emucore\Event.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_EVENT_=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\EventHandler.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_EVENTH=\ + "..\common\Snapshot.hxx"\ + "..\debugger\Debugger.hxx"\ + "..\debugger\DebuggerParser.hxx"\ + "..\debugger\Equate.hxx"\ + "..\debugger\EquateList.hxx"\ + "..\debugger\gui\PromptWidget.hxx"\ + "..\debugger\PackedBitArray.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\FSNode.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\CommandMenu.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Launcher.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_EVENTH=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_EVENTH=\ + "..\common\Snapshot.hxx"\ + "..\debugger\Debugger.hxx"\ + "..\debugger\DebuggerParser.hxx"\ + "..\debugger\Equate.hxx"\ + "..\debugger\EquateList.hxx"\ + "..\debugger\gui\PromptWidget.hxx"\ + "..\debugger\PackedBitArray.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\FSNode.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\CommandMenu.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Launcher.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_EVENTH=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_EVENTH=\ + "..\common\Snapshot.hxx"\ + "..\debugger\Debugger.hxx"\ + "..\debugger\DebuggerParser.hxx"\ + "..\debugger\Equate.hxx"\ + "..\debugger\EquateList.hxx"\ + "..\debugger\gui\PromptWidget.hxx"\ + "..\debugger\PackedBitArray.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\FSNode.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\CommandMenu.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Launcher.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_EVENTH=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_EVENTH=\ + "..\common\Snapshot.hxx"\ + "..\debugger\Debugger.hxx"\ + "..\debugger\DebuggerParser.hxx"\ + "..\debugger\Equate.hxx"\ + "..\debugger\EquateList.hxx"\ + "..\debugger\gui\PromptWidget.hxx"\ + "..\debugger\PackedBitArray.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\FSNode.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\CommandMenu.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Launcher.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_EVENTH=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\FrameBuffer.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_FRAME=\ + "..\common\stella.xpm"\ + "..\debugger\Debugger.hxx"\ + "..\debugger\DebuggerParser.hxx"\ + "..\debugger\Equate.hxx"\ + "..\debugger\EquateList.hxx"\ + "..\debugger\gui\PromptWidget.hxx"\ + "..\debugger\PackedBitArray.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\CommandMenu.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Launcher.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_FRAME=\ + "..\emucore\DisplayPSP.hxx"\ + "..\emucore\macOSXDisplay.h"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_FRAME=\ + "..\common\stella.xpm"\ + "..\debugger\Debugger.hxx"\ + "..\debugger\DebuggerParser.hxx"\ + "..\debugger\Equate.hxx"\ + "..\debugger\EquateList.hxx"\ + "..\debugger\gui\PromptWidget.hxx"\ + "..\debugger\PackedBitArray.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\CommandMenu.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Launcher.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_FRAME=\ + "..\emucore\DisplayPSP.hxx"\ + "..\emucore\macOSXDisplay.h"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_FRAME=\ + "..\common\stella.xpm"\ + "..\debugger\Debugger.hxx"\ + "..\debugger\DebuggerParser.hxx"\ + "..\debugger\Equate.hxx"\ + "..\debugger\EquateList.hxx"\ + "..\debugger\gui\PromptWidget.hxx"\ + "..\debugger\PackedBitArray.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\CommandMenu.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Launcher.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_FRAME=\ + "..\emucore\DisplayPSP.hxx"\ + "..\emucore\macOSXDisplay.h"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_FRAME=\ + "..\common\stella.xpm"\ + "..\debugger\Debugger.hxx"\ + "..\debugger\DebuggerParser.hxx"\ + "..\debugger\Equate.hxx"\ + "..\debugger\EquateList.hxx"\ + "..\debugger\gui\PromptWidget.hxx"\ + "..\debugger\PackedBitArray.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\CommandMenu.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Launcher.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_FRAME=\ + "..\emucore\DisplayPSP.hxx"\ + "..\emucore\macOSXDisplay.h"\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\FSNode.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_FSNOD=\ + "..\emucore\FSNode.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\GuiUtils.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_FSNOD=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_FSNOD=\ + "..\emucore\FSNode.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\GuiUtils.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_FSNOD=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_FSNOD=\ + "..\emucore\FSNode.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\GuiUtils.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_FSNOD=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_FSNOD=\ + "..\emucore\FSNode.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\GuiUtils.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_FSNOD=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\Joystick.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_JOYST=\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\Joystick.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_JOYST=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_JOYST=\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\Joystick.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_JOYST=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_JOYST=\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\Joystick.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_JOYST=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_JOYST=\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\Joystick.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_JOYST=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\Keyboard.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_KEYBO=\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\Keyboard.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_KEYBO=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_KEYBO=\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\Keyboard.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_KEYBO=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_KEYBO=\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\Keyboard.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_KEYBO=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_KEYBO=\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\Keyboard.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_KEYBO=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\m6502\src\M6502.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_M6502=\ + "..\debugger\Expression.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_M6502=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_M6502=\ + "..\debugger\Expression.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_M6502=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_M6502=\ + "..\debugger\Expression.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_M6502=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_M6502=\ + "..\debugger\Expression.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_M6502=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\m6502\src\M6502Hi.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_M6502H=\ + "..\debugger\Debugger.hxx"\ + "..\debugger\DebuggerParser.hxx"\ + "..\debugger\Equate.hxx"\ + "..\debugger\EquateList.hxx"\ + "..\debugger\gui\PromptWidget.hxx"\ + "..\debugger\PackedBitArray.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\M6502Hi.hxx"\ + "..\emucore\m6502\src\M6502Hi.ins"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_M6502H=\ + ".\port\pspstdint.h"\ + +# ADD CPP /U "DEBUG" + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_M6502H=\ + "..\debugger\Debugger.hxx"\ + "..\debugger\DebuggerParser.hxx"\ + "..\debugger\Equate.hxx"\ + "..\debugger\EquateList.hxx"\ + "..\debugger\gui\PromptWidget.hxx"\ + "..\debugger\PackedBitArray.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\M6502Hi.hxx"\ + "..\emucore\m6502\src\M6502Hi.ins"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_M6502H=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + +# ADD CPP /U "DEBUG" + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_M6502H=\ + "..\debugger\Debugger.hxx"\ + "..\debugger\DebuggerParser.hxx"\ + "..\debugger\Equate.hxx"\ + "..\debugger\EquateList.hxx"\ + "..\debugger\gui\PromptWidget.hxx"\ + "..\debugger\PackedBitArray.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\M6502Hi.hxx"\ + "..\emucore\m6502\src\M6502Hi.ins"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_M6502H=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + +# ADD CPP /U "DEBUG" + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_M6502H=\ + "..\debugger\Debugger.hxx"\ + "..\debugger\DebuggerParser.hxx"\ + "..\debugger\Equate.hxx"\ + "..\debugger\EquateList.hxx"\ + "..\debugger\gui\PromptWidget.hxx"\ + "..\debugger\PackedBitArray.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\M6502Hi.hxx"\ + "..\emucore\m6502\src\M6502Hi.ins"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_M6502H=\ + ".\port\pspstdint.h"\ + +# ADD CPP /U "DEBUG" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\M6532.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_M6532=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\Switches.hxx"\ + "..\emucore\TIA.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_M6532=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_M6532=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\Switches.hxx"\ + "..\emucore\TIA.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_M6532=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_M6532=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\Switches.hxx"\ + "..\emucore\TIA.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_M6532=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_M6532=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Random.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\Switches.hxx"\ + "..\emucore\TIA.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_M6532=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\MD5.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_MD5_C=\ + "..\emucore\MD5.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_MD5_C=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_MD5_C=\ + "..\emucore\MD5.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_MD5_C=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_MD5_C=\ + "..\emucore\MD5.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_MD5_C=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_MD5_C=\ + "..\emucore\MD5.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_MD5_C=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\MediaSrc.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_MEDIA=\ + "..\emucore\MediaSrc.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_MEDIA=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_MEDIA=\ + "..\emucore\MediaSrc.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_MEDIA=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_MEDIA=\ + "..\emucore\MediaSrc.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_MEDIA=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_MEDIA=\ + "..\emucore\MediaSrc.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_MEDIA=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\m6502\src\NullDev.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_NULLD=\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_NULLD=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_NULLD=\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_NULLD=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_NULLD=\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_NULLD=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_NULLD=\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_NULLD=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\OSystem.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_OSYST=\ + "..\common\FrameBufferGL.hxx"\ + "..\common\FrameBufferSoft.hxx"\ + "..\common\SoundNull.hxx"\ + "..\common\SoundSDL.hxx"\ + "..\debugger\Debugger.hxx"\ + "..\debugger\DebuggerParser.hxx"\ + "..\debugger\Equate.hxx"\ + "..\debugger\EquateList.hxx"\ + "..\debugger\gui\PromptWidget.hxx"\ + "..\debugger\PackedBitArray.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\FSNode.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\PropsSet.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\emucore\TIASnd.hxx"\ + "..\emucore\unzip.h"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\CommandMenu.hxx"\ + "..\gui\ConsoleFont.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Launcher.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StellaFont.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\FrameBufferWinCE.hxx"\ + ".\port\missing.h"\ + ".\port\SoundWinCE.hxx"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_opengl.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + ".\zlib\zconf.h"\ + ".\zlib\zlib.h"\ + {$(INCLUDE)}"gx.h"\ + +NODEP_CPP_OSYST=\ + "..\emucore\FrameBufferPSP.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_OSYST=\ + "..\common\FrameBufferGL.hxx"\ + "..\common\FrameBufferSoft.hxx"\ + "..\common\SoundNull.hxx"\ + "..\common\SoundSDL.hxx"\ + "..\debugger\Debugger.hxx"\ + "..\debugger\DebuggerParser.hxx"\ + "..\debugger\Equate.hxx"\ + "..\debugger\EquateList.hxx"\ + "..\debugger\gui\PromptWidget.hxx"\ + "..\debugger\PackedBitArray.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\FSNode.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\PropsSet.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\emucore\TIASnd.hxx"\ + "..\emucore\unzip.h"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\CommandMenu.hxx"\ + "..\gui\ConsoleFont.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Launcher.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StellaFont.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_opengl.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + ".\zlib\zconf.h"\ + ".\zlib\zlib.h"\ + +NODEP_CPP_OSYST=\ + "..\emucore\FrameBufferPSP.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_OSYST=\ + "..\common\FrameBufferGL.hxx"\ + "..\common\FrameBufferSoft.hxx"\ + "..\common\SoundNull.hxx"\ + "..\common\SoundSDL.hxx"\ + "..\debugger\Debugger.hxx"\ + "..\debugger\DebuggerParser.hxx"\ + "..\debugger\Equate.hxx"\ + "..\debugger\EquateList.hxx"\ + "..\debugger\gui\PromptWidget.hxx"\ + "..\debugger\PackedBitArray.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\FSNode.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\PropsSet.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\emucore\TIASnd.hxx"\ + "..\emucore\unzip.h"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\CommandMenu.hxx"\ + "..\gui\ConsoleFont.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Launcher.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StellaFont.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\FrameBufferWinCE.hxx"\ + ".\port\missing.h"\ + ".\port\SoundWinCE.hxx"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_opengl.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + ".\zlib\zconf.h"\ + ".\zlib\zlib.h"\ + +NODEP_CPP_OSYST=\ + "..\emucore\FrameBufferPSP.hxx"\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_OSYST=\ + "..\common\FrameBufferGL.hxx"\ + "..\common\FrameBufferSoft.hxx"\ + "..\common\SoundNull.hxx"\ + "..\common\SoundSDL.hxx"\ + "..\debugger\Debugger.hxx"\ + "..\debugger\DebuggerParser.hxx"\ + "..\debugger\Equate.hxx"\ + "..\debugger\EquateList.hxx"\ + "..\debugger\gui\PromptWidget.hxx"\ + "..\debugger\PackedBitArray.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\FSNode.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\PropsSet.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\emucore\TIASnd.hxx"\ + "..\emucore\unzip.h"\ + "..\gui\Array.hxx"\ + "..\gui\Command.hxx"\ + "..\gui\CommandMenu.hxx"\ + "..\gui\ConsoleFont.hxx"\ + "..\gui\Dialog.hxx"\ + "..\gui\DialogContainer.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiObject.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\Launcher.hxx"\ + "..\gui\Menu.hxx"\ + "..\gui\Rect.hxx"\ + "..\gui\Stack.hxx"\ + "..\gui\StellaFont.hxx"\ + "..\gui\StringList.hxx"\ + "..\gui\Widget.hxx"\ + ".\port\bspf.hxx"\ + ".\port\FrameBufferWinCE.hxx"\ + ".\port\missing.h"\ + ".\port\SoundWinCE.hxx"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_opengl.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + ".\zlib\zconf.h"\ + ".\zlib\zlib.h"\ + +NODEP_CPP_OSYST=\ + "..\emucore\FrameBufferPSP.hxx"\ + ".\port\pspstdint.h"\ + ".\x.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\Paddles.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_PADDL=\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\Paddles.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_PADDL=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_PADDL=\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\Paddles.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_PADDL=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_PADDL=\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\Paddles.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_PADDL=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_PADDL=\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\Paddles.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_PADDL=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\Props.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_PROPS=\ + "..\emucore\Props.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_PROPS=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_PROPS=\ + "..\emucore\Props.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_PROPS=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_PROPS=\ + "..\emucore\Props.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_PROPS=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_PROPS=\ + "..\emucore\Props.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_PROPS=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\PropsSet.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_PROPSS=\ + "..\emucore\Props.hxx"\ + "..\emucore\PropsSet.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_PROPSS=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_PROPSS=\ + "..\emucore\Props.hxx"\ + "..\emucore\PropsSet.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_PROPSS=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_PROPSS=\ + "..\emucore\Props.hxx"\ + "..\emucore\PropsSet.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_PROPSS=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_PROPSS=\ + "..\emucore\Props.hxx"\ + "..\emucore\PropsSet.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_PROPSS=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\Random.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_RANDO=\ + "..\emucore\Random.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_RANDO=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_RANDO=\ + "..\emucore\Random.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_RANDO=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_RANDO=\ + "..\emucore\Random.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_RANDO=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_RANDO=\ + "..\emucore\Random.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_RANDO=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\Serializer.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_SERIA=\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_SERIA=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_SERIA=\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_SERIA=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_SERIA=\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_SERIA=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_SERIA=\ + "..\emucore\Serializer.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_SERIA=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\Settings.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_SETTI=\ + "..\common\Version.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_SETTI=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_SETTI=\ + "..\common\Version.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_SETTI=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_SETTI=\ + "..\common\Version.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_SETTI=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_SETTI=\ + "..\common\Version.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_SETTI=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\common\SoundNull.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_SOUND=\ + "..\common\SoundNull.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_SOUND=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_SOUND=\ + "..\common\SoundNull.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_SOUND=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_SOUND=\ + "..\common\SoundNull.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_SOUND=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_SOUND=\ + "..\common\SoundNull.hxx"\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_SOUND=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\Switches.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_SWITC=\ + "..\emucore\Event.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Switches.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_SWITC=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_SWITC=\ + "..\emucore\Event.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Switches.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_SWITC=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_SWITC=\ + "..\emucore\Event.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Switches.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_SWITC=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_SWITC=\ + "..\emucore\Event.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Switches.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_SWITC=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\m6502\src\System.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_SYSTE=\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_SYSTE=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_SYSTE=\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_SYSTE=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_SYSTE=\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_SYSTE=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_SYSTE=\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_SYSTE=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\TIA.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_TIA_C=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_TIA_C=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_TIA_C=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_TIA_C=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_TIA_C=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_TIA_C=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_TIA_C=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\M6502.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_TIA_C=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\TIASnd.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_TIASN=\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\TIASnd.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_TIASN=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_TIASN=\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\TIASnd.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_TIASN=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_TIASN=\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\TIASnd.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_TIASN=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_TIASN=\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\TIASnd.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_TIASN=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=..\emucore\unzip.c + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_UNZIP=\ + "..\emucore\unzip.h"\ + ".\zlib\zconf.h"\ + ".\zlib\zlib.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_UNZIP=\ + "..\emucore\unzip.h"\ + ".\zlib\zconf.h"\ + ".\zlib\zlib.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_UNZIP=\ + "..\emucore\unzip.h"\ + ".\zlib\zconf.h"\ + ".\zlib\zlib.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_UNZIP=\ + "..\emucore\unzip.h"\ + ".\zlib\zconf.h"\ + ".\zlib\zlib.h"\ + + +!ENDIF + +# End Source File +# End Group +# Begin Group "Core Header Files" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=..\emucore\Booster.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\Cart.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\Cart2K.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\Cart3E.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\Cart3F.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\Cart4K.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartAR.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartCV.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartDPC.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartE0.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartE7.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartF4.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartF4SC.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartF6.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartF6SC.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartF8.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartF8SC.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartFASC.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartFE.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartMB.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartMC.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\CartUA.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\Console.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\Control.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\Deserializer.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\m6502\src\Device.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\Driving.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\Event.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\EventHandler.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\FrameBuffer.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\FSNode.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\Joystick.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\Keyboard.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\m6502\src\M6502.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\m6502\src\M6502Hi.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\M6532.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\MD5.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\MediaSrc.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\m6502\src\NullDev.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\OSystem.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\Paddles.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\Props.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\PropsSet.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\Random.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\Serializer.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\Settings.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\Sound.hxx +# End Source File +# Begin Source File + +SOURCE=..\common\SoundNull.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\Switches.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\m6502\src\System.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\TIA.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\TIASnd.hxx +# End Source File +# Begin Source File + +SOURCE=..\emucore\unzip.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" +# Begin Source File + +SOURCE=.\resource.rc + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\stella.ico +# End Source File +# End Group +# Begin Group "Port Sources" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\port\bspf.hxx +# End Source File +# Begin Source File + +SOURCE=.\port\FrameBufferWinCE.cpp + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_FRAMEB=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\FrameBufferWinCE.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + {$(INCLUDE)}"gx.h"\ + +NODEP_CPP_FRAMEB=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_FRAMEB=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\FrameBufferWinCE.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_FRAMEB=\ + ".\port\pspstdint.h"\ + ".\x.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_FRAMEB=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\FrameBufferWinCE.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_FRAMEB=\ + ".\port\pspstdint.h"\ + ".\x.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_FRAMEB=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\FrameBufferWinCE.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_FRAMEB=\ + ".\port\pspstdint.h"\ + ".\x.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\port\FrameBufferWinCE.hxx +# End Source File +# Begin Source File + +SOURCE=.\port\FSNodeWinCE.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_FSNODE=\ + "..\emucore\FSNode.hxx"\ + "..\gui\Array.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_FSNODE=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_FSNODE=\ + "..\emucore\FSNode.hxx"\ + "..\gui\Array.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_FSNODE=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_FSNODE=\ + "..\emucore\FSNode.hxx"\ + "..\gui\Array.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_FSNODE=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_FSNODE=\ + "..\emucore\FSNode.hxx"\ + "..\gui\Array.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + +NODEP_CPP_FSNODE=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\port\missing.cpp + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_MISSI=\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + {$(INCLUDE)}"gx.h"\ + +NODEP_CPP_MISSI=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_MISSI=\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_MISSI=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_MISSI=\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_MISSI=\ + ".\port\pspstdint.h"\ + ".\x.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_MISSI=\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_MISSI=\ + ".\port\pspstdint.h"\ + ".\x.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\port\missing.h +# End Source File +# Begin Source File + +SOURCE=.\port\OSystemWinCE.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_OSYSTE=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\emucore\TIASnd.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\FrameBufferWinCE.hxx"\ + ".\port\missing.h"\ + ".\port\OSystemWinCE.hxx"\ + ".\port\SoundWinCE.hxx"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + {$(INCLUDE)}"gx.h"\ + +NODEP_CPP_OSYSTE=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_OSYSTE=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\port\OSystemWinCE.hxx"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_OSYSTE=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_OSYSTE=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\port\OSystemWinCE.hxx"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_OSYSTE=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_OSYSTE=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\emucore\TIASnd.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\FrameBufferWinCE.hxx"\ + ".\port\missing.h"\ + ".\port\OSystemWinCE.hxx"\ + ".\port\SoundWinCE.hxx"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_OSYSTE=\ + ".\port\pspstdint.h"\ + ".\x.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\port\OSystemWinCE.hxx +# End Source File +# Begin Source File + +SOURCE=.\port\PocketStella.cpp + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_POCKE=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\FSNode.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\PropsSet.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\FrameBufferWinCE.hxx"\ + ".\port\missing.h"\ + ".\port\OSystemWinCE.hxx"\ + ".\port\SettingsWinCE.hxx"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + {$(INCLUDE)}"gx.h"\ + +NODEP_CPP_POCKE=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_POCKE=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\FSNode.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\PropsSet.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\port\OSystemWinCE.hxx"\ + ".\port\SettingsWinCE.hxx"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_POCKE=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + ".\x.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_POCKE=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\FSNode.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\PropsSet.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\port\OSystemWinCE.hxx"\ + ".\port\SettingsWinCE.hxx"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_POCKE=\ + ".\port\EventHandler.hxx"\ + ".\port\pspstdint.h"\ + ".\x.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_POCKE=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\FSNode.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\PropsSet.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\FrameBufferWinCE.hxx"\ + ".\port\missing.h"\ + ".\port\OSystemWinCE.hxx"\ + ".\port\SettingsWinCE.hxx"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_POCKE=\ + ".\port\pspstdint.h"\ + ".\x.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\port\SettingsWinCE.cpp + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_SETTIN=\ + "..\emucore\Settings.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\port\SettingsWinCE.hxx"\ + +NODEP_CPP_SETTIN=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_SETTIN=\ + "..\emucore\Settings.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\port\SettingsWinCE.hxx"\ + +NODEP_CPP_SETTIN=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_SETTIN=\ + "..\emucore\Settings.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\port\SettingsWinCE.hxx"\ + +NODEP_CPP_SETTIN=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_SETTIN=\ + "..\emucore\Settings.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\port\SettingsWinCE.hxx"\ + +NODEP_CPP_SETTIN=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\port\SettingsWinCE.hxx +# End Source File +# Begin Source File + +SOURCE=.\port\SoundWinCE.cxx + +!IF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Release" + +DEP_CPP_SOUNDW=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\emucore\TIASnd.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\port\SoundWinCE.hxx"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_SOUNDW=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE ARM) Debug" + +DEP_CPP_SOUNDW=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\emucore\TIASnd.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\port\SoundWinCE.hxx"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_SOUNDW=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Release" + +DEP_CPP_SOUNDW=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\emucore\TIASnd.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\port\SoundWinCE.hxx"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_SOUNDW=\ + ".\port\pspstdint.h"\ + + +!ELSEIF "$(CFG)" == "PocketStella - Win32 (WCE x86) Debug" + +DEP_CPP_SOUNDW=\ + "..\emucore\Cart.hxx"\ + "..\emucore\Console.hxx"\ + "..\emucore\Control.hxx"\ + "..\emucore\Deserializer.hxx"\ + "..\emucore\Event.hxx"\ + "..\emucore\EventHandler.hxx"\ + "..\emucore\FrameBuffer.hxx"\ + "..\emucore\m6502\src\Device.hxx"\ + "..\emucore\m6502\src\NullDev.hxx"\ + "..\emucore\m6502\src\System.hxx"\ + "..\emucore\M6532.hxx"\ + "..\emucore\MediaSrc.hxx"\ + "..\emucore\OSystem.hxx"\ + "..\emucore\Props.hxx"\ + "..\emucore\Serializer.hxx"\ + "..\emucore\Settings.hxx"\ + "..\emucore\Sound.hxx"\ + "..\emucore\TIA.hxx"\ + "..\emucore\TIASnd.hxx"\ + "..\gui\Array.hxx"\ + "..\gui\Font.hxx"\ + "..\gui\GuiUtils.hxx"\ + "..\gui\StringList.hxx"\ + ".\port\bspf.hxx"\ + ".\port\missing.h"\ + ".\port\SoundWinCE.hxx"\ + ".\sdl\begin_code.h"\ + ".\sdl\close_code.h"\ + ".\sdl\SDL.h"\ + ".\sdl\SDL_active.h"\ + ".\sdl\SDL_audio.h"\ + ".\sdl\SDL_byteorder.h"\ + ".\sdl\SDL_cdrom.h"\ + ".\sdl\SDL_error.h"\ + ".\sdl\SDL_events.h"\ + ".\sdl\SDL_getenv.h"\ + ".\sdl\SDL_joystick.h"\ + ".\sdl\SDL_keyboard.h"\ + ".\sdl\SDL_keysym.h"\ + ".\sdl\SDL_main.h"\ + ".\sdl\SDL_mouse.h"\ + ".\sdl\SDL_mutex.h"\ + ".\sdl\SDL_quit.h"\ + ".\sdl\SDL_rwops.h"\ + ".\sdl\SDL_syswm.h"\ + ".\sdl\SDL_timer.h"\ + ".\sdl\SDL_types.h"\ + ".\sdl\SDL_version.h"\ + ".\sdl\SDL_video.h"\ + +NODEP_CPP_SOUNDW=\ + ".\port\pspstdint.h"\ + + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\port\SoundWinCE.hxx +# End Source File +# End Group +# End Target +# End Project diff --git a/stella/src/wince/SettingsWinCE.cpp b/stella/src/wince/SettingsWinCE.cpp index a133eed4b..f33d6e795 100644 --- a/stella/src/wince/SettingsWinCE.cpp +++ b/stella/src/wince/SettingsWinCE.cpp @@ -1,19 +1,19 @@ -#include -#include - -#include "bspf.hxx" -#include "Settings.hxx" -#include "SettingsWinCE.hxx" - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -SettingsWinCE::SettingsWinCE(OSystem* osystem) : Settings(osystem) -{ - //set("GameFilename", "Mega Force (1982) (20th Century Fox).bin"); - //set("GameFilename", "Enduro (1983) (Activision).bin"); - //set("GameFilename", "Night Driver (1978) (Atari).bin"); - set("romdir", (string) getcwd() + '\\'); -} - -SettingsWinCE::~SettingsWinCE() -{ -} +#include +#include + +#include "bspf.hxx" +#include "Settings.hxx" +#include "SettingsWinCE.hxx" + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +SettingsWinCE::SettingsWinCE(OSystem* osystem) : Settings(osystem) +{ + //set("GameFilename", "Mega Force (1982) (20th Century Fox).bin"); + //set("GameFilename", "Enduro (1983) (Activision).bin"); + //set("GameFilename", "Night Driver (1978) (Atari).bin"); + set("romdir", (string) getcwd() + '\\'); +} + +SettingsWinCE::~SettingsWinCE() +{ +} diff --git a/stella/src/wince/SettingsWinCE.hxx b/stella/src/wince/SettingsWinCE.hxx index 992748568..4d1434e65 100644 --- a/stella/src/wince/SettingsWinCE.hxx +++ b/stella/src/wince/SettingsWinCE.hxx @@ -1,14 +1,14 @@ -#ifndef SETTINGS_WINCE_HXX -#define SETTINGS_WINCE_HXX - -#include "bspf.hxx" -#include "Settings.hxx" - -class SettingsWinCE : public Settings -{ - public: - SettingsWinCE(OSystem* osystem); - virtual ~SettingsWinCE(); -}; - -#endif +#ifndef SETTINGS_WINCE_HXX +#define SETTINGS_WINCE_HXX + +#include "bspf.hxx" +#include "Settings.hxx" + +class SettingsWinCE : public Settings +{ + public: + SettingsWinCE(OSystem* osystem); + virtual ~SettingsWinCE(); +}; + +#endif diff --git a/stella/src/wince/SoundWinCE.cxx b/stella/src/wince/SoundWinCE.cxx index 6b2dd584e..d2f5d5bae 100644 --- a/stella/src/wince/SoundWinCE.cxx +++ b/stella/src/wince/SoundWinCE.cxx @@ -1,378 +1,392 @@ -#ifdef SOUND_SUPPORT - -#include "TIASnd.hxx" -#include "FrameBuffer.hxx" -#include "Serializer.hxx" -#include "Deserializer.hxx" -#include "Settings.hxx" -#include "System.hxx" -#include "OSystem.hxx" -#include "TIASnd.hxx" - -#include "SoundWinCE.hxx" - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -SoundWinCE::SoundWinCE(OSystem* osystem) - : Sound(osystem), - myIsEnabled(osystem->settings().getBool("sound")), - myIsInitializedFlag(false), - myLastRegisterSetCycle(0), - myDisplayFrameRate(60), - myNumChannels(1), - myFragmentSizeLogBase2(0), - myIsMuted(false), - myVolume(100), - myLatency(100), myMixRate(22050), myBuffnum(0) -{ -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -SoundWinCE::~SoundWinCE() -{ - close(); -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void SoundWinCE::setEnabled(bool state) -{ - myIsEnabled = state; - myOSystem->settings().setBool("sound", state); -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void SoundWinCE::initialize() -{ - if(!myIsEnabled) - { - close(); - return; - } - - myRegWriteQueue.clear(); - myTIASound.reset(); - - // init wave out - WAVEFORMATEX wf; - MMRESULT err; - memset(&wf, 0, sizeof(wf)); - wf.wFormatTag = WAVE_FORMAT_PCM; - wf.nChannels = 1; - wf.nSamplesPerSec = myMixRate; - wf.nAvgBytesPerSec = myMixRate; - wf.nBlockAlign = 2; - wf.wBitsPerSample = 8; - wf.cbSize = 0; - err = waveOutOpen(&myWout, WAVE_MAPPER, &wf, NULL, NULL, CALLBACK_NULL); - if (err != MMSYSERR_NOERROR) - return; - - myBuffnum = ((wf.nAvgBytesPerSec * myLatency / 1000) >> 9) + 1; - myBuffers = (WAVEHDR *) malloc(myBuffnum * sizeof(*myBuffers)); - for (int i = 0; i < myBuffnum; i++) - { - memset(&myBuffers[i], 0, sizeof (myBuffers[i])); - if (!(myBuffers[i].lpData = (LPSTR) malloc(512))) - return; - memset(myBuffers[i].lpData, 128, 512); - myBuffers[i].dwBufferLength = 512; - err = waveOutPrepareHeader(myWout, &myBuffers[i], sizeof(myBuffers[i])); - if (err != MMSYSERR_NOERROR) - return; - myBuffers[i].dwFlags |= WHDR_DONE; - } - - myIsInitializedFlag = true; - myIsMuted = false; - - myTIASound.outputFrequency(myMixRate); - myTIASound.channels(1); - - for (i=0; i= 0) && (percent <= 100)) - { - myOSystem->settings().setInt("volume", percent); - myVolume = percent; - myTIASound.volume(percent); - } - } -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void SoundWinCE::adjustVolume(Int8 direction) -{ - Int32 percent = myVolume; - - if(direction == -1) - percent -= 2; - else if(direction == 1) - percent += 2; - - if((percent < 0) || (percent > 100)) - return; - - setVolume(percent); -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void SoundWinCE::adjustCycleCounter(Int32 amount) -{ - myLastRegisterSetCycle += amount; -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void SoundWinCE::setChannels(uInt32 channels) -{ -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void SoundWinCE::setFrameRate(uInt32 framerate) -{ - myDisplayFrameRate = framerate; - myLastRegisterSetCycle = 0; -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void SoundWinCE::set(uInt16 addr, uInt8 value, Int32 cycle) -{ - float delta = (((double)(cycle - myLastRegisterSetCycle)) / (1193191.66666667)); - delta = delta * (myDisplayFrameRate / (double)myOSystem->frameRate()); - RegWrite info; - info.addr = addr; - info.value = value; - info.delta = delta; - myRegWriteQueue.enqueue(info); - myLastRegisterSetCycle = cycle; -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void SoundWinCE::processFragment(uInt8* stream, Int32 length) -{ - if(!myIsInitializedFlag) - return; - - float position = 0.0; - float remaining = length; - - while(remaining > 0.0) - { - if(myRegWriteQueue.size() == 0) - { - myTIASound.process(stream + ((uInt32)position),length - (uInt32)position); - myLastRegisterSetCycle = 0; - break; - } - else - { - RegWrite& info = myRegWriteQueue.front(); - float duration = remaining / (float) myMixRate; - if(info.delta <= duration) - { - if(info.delta > 0.0) - { - float samples = (myMixRate * info.delta); - myTIASound.process(stream + ((uInt32)position), - (uInt32)samples + (uInt32)(position + samples) - - ((uInt32)position + (uInt32)samples)); - position += samples; - remaining -= samples; - } - myTIASound.set(info.addr, info.value); - myRegWriteQueue.dequeue(); - } - else - { - myTIASound.process(stream + ((uInt32)position), length - (uInt32)position); - info.delta -= duration; - break; - } - } - } -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -/*void CALLBACK SoundWinCE::waveOutProc(HWAVEOUT hwo, UINT uMsg, DWORD dwInstance, - DWORD dwParam1, DWORD dwParam2) -{ - if (uMsg == WOM_DONE) - { - SoundWinCE *sound = (SoundWinCE *) dwInstance; - sound->processFragment( (uInt8 *) ((WAVEHDR *) dwParam2)->lpData, 512); - waveOutWrite(sound->myWout, (WAVEHDR *) dwParam2, sizeof(WAVEHDR)); - } -} -*/ -void SoundWinCE::update(void) -{ - for (int i=0; i 0) - { - myHead = (myHead + 1) % myCapacity; - --mySize; - } -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -float SoundWinCE::RegWriteQueue::duration() -{ - float duration = 0.0; - for(uInt32 i = 0; i < mySize; ++i) - { - duration += myBuffer[(myHead + i) % myCapacity].delta; - } - return duration; -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void SoundWinCE::RegWriteQueue::enqueue(const RegWrite& info) -{ - if(mySize == myCapacity) - grow(); - myBuffer[myTail] = info; - myTail = (myTail + 1) % myCapacity; - ++mySize; -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -RegWrite& SoundWinCE::RegWriteQueue::front() -{ - assert(mySize != 0); - return myBuffer[myHead]; -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -uInt32 SoundWinCE::RegWriteQueue::size() const -{ - return mySize; -} - -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -void SoundWinCE::RegWriteQueue::grow() -{ - RegWrite* buffer = new RegWrite[myCapacity * 2]; - for(uInt32 i = 0; i < mySize; ++i) - { - buffer[i] = myBuffer[(myHead + i) % myCapacity]; - } - myHead = 0; - myTail = mySize; - myCapacity = myCapacity * 2; - delete[] myBuffer; - myBuffer = buffer; -} - -#endif +#ifdef SOUND_SUPPORT + +#include "TIASnd.hxx" +#include "FrameBuffer.hxx" +#include "Serializer.hxx" +#include "Deserializer.hxx" +#include "Settings.hxx" +#include "System.hxx" +#include "OSystem.hxx" +#include "TIASnd.hxx" + +#include "SoundWinCE.hxx" + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +SoundWinCE::SoundWinCE(OSystem* osystem) + : Sound(osystem), + myIsEnabled(osystem->settings().getBool("sound")), + myIsInitializedFlag(false), + myLastRegisterSetCycle(0), + myDisplayFrameRate(60), + myNumChannels(1), + myFragmentSizeLogBase2(0), + myIsMuted(false), + myVolume(100), + myLatency(100), myMixRate(22050), myBuffnum(0) +{ +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +SoundWinCE::~SoundWinCE() +{ + close(); +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +void SoundWinCE::setEnabled(bool state) +{ + myIsEnabled = state; + myOSystem->settings().setBool("sound", state); +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +void SoundWinCE::initialize() +{ + if(!myIsEnabled) + { + close(); + return; + } + + myRegWriteQueue.clear(); + myTIASound.reset(); + + // init wave out + WAVEFORMATEX wf; + MMRESULT err; + memset(&wf, 0, sizeof(wf)); + wf.wFormatTag = WAVE_FORMAT_PCM; + wf.nChannels = 1; + wf.nSamplesPerSec = myMixRate; + wf.nAvgBytesPerSec = myMixRate; + wf.nBlockAlign = 2; + wf.wBitsPerSample = 8; + wf.cbSize = 0; + err = waveOutOpen(&myWout, WAVE_MAPPER, &wf, NULL, NULL, CALLBACK_NULL); + if (err != MMSYSERR_NOERROR) + return; + + myBuffnum = ((wf.nAvgBytesPerSec * myLatency / 1000) >> 9) + 1; + myBuffers = (WAVEHDR *) malloc(myBuffnum * sizeof(*myBuffers)); + for (int i = 0; i < myBuffnum; i++) + { + memset(&myBuffers[i], 0, sizeof (myBuffers[i])); + if (!(myBuffers[i].lpData = (LPSTR) malloc(512))) + return; + memset(myBuffers[i].lpData, 128, 512); + myBuffers[i].dwBufferLength = 512; + err = waveOutPrepareHeader(myWout, &myBuffers[i], sizeof(myBuffers[i])); + if (err != MMSYSERR_NOERROR) + return; + myBuffers[i].dwFlags |= WHDR_DONE; + } + + myIsInitializedFlag = true; + myIsMuted = false; + + myTIASound.outputFrequency(myMixRate); + myTIASound.channels(1); + + for (i=0; i= 0) && (percent <= 100)) + { + myOSystem->settings().setInt("volume", percent); + myVolume = percent; + myTIASound.volume(percent); + } + } +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +void SoundWinCE::adjustVolume(Int8 direction) +{ + Int32 percent = myVolume; + + if(direction == -1) + percent -= 2; + else if(direction == 1) + percent += 2; + + if((percent < 0) || (percent > 100)) + return; + + setVolume(percent); +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +void SoundWinCE::adjustCycleCounter(Int32 amount) +{ + myLastRegisterSetCycle += amount; +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +void SoundWinCE::setChannels(uInt32 channels) +{ +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +void SoundWinCE::setFrameRate(uInt32 framerate) +{ + myDisplayFrameRate = framerate; + myLastRegisterSetCycle = 0; +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +void SoundWinCE::set(uInt16 addr, uInt8 value, Int32 cycle) +{ + float delta = (((double)(cycle - myLastRegisterSetCycle)) / (1193191.66666667)); + delta = delta * (myDisplayFrameRate / (double)myOSystem->frameRate()); + RegWrite info; + info.addr = addr; + info.value = value; + info.delta = delta; + myRegWriteQueue.enqueue(info); + myLastRegisterSetCycle = cycle; +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +void SoundWinCE::processFragment(uInt8* stream, Int32 length) +{ + if(!myIsInitializedFlag) + return; + + float position = 0.0; + float remaining = length; + + if(myRegWriteQueue.duration() > + (9.0 / myDisplayFrameRate)) + { + float removed = 0.0; + while(removed < ((9.0 - 1) / myDisplayFrameRate)) + { + RegWrite& info = myRegWriteQueue.front(); + removed += info.delta; + myTIASound.set(info.addr, info.value); + myRegWriteQueue.dequeue(); + } +// cout << "Removed Items from RegWriteQueue!" << endl; + } + + while(remaining > 0.0) + { + if(myRegWriteQueue.size() == 0) + { + myTIASound.process(stream + ((uInt32)position),length - (uInt32)position); + myLastRegisterSetCycle = 0; + break; + } + else + { + RegWrite& info = myRegWriteQueue.front(); + float duration = remaining / (float) myMixRate; + if(info.delta <= duration) + { + if(info.delta > 0.0) + { + float samples = (myMixRate * info.delta); + myTIASound.process(stream + ((uInt32)position), + (uInt32)samples + (uInt32)(position + samples) - + ((uInt32)position + (uInt32)samples)); + position += samples; + remaining -= samples; + } + myTIASound.set(info.addr, info.value); + myRegWriteQueue.dequeue(); + } + else + { + myTIASound.process(stream + ((uInt32)position), length - (uInt32)position); + info.delta -= duration; + break; + } + } + } +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +/*void CALLBACK SoundWinCE::waveOutProc(HWAVEOUT hwo, UINT uMsg, DWORD dwInstance, + DWORD dwParam1, DWORD dwParam2) +{ + if (uMsg == WOM_DONE) + { + SoundWinCE *sound = (SoundWinCE *) dwInstance; + sound->processFragment( (uInt8 *) ((WAVEHDR *) dwParam2)->lpData, 512); + waveOutWrite(sound->myWout, (WAVEHDR *) dwParam2, sizeof(WAVEHDR)); + } +} +*/ +void SoundWinCE::update(void) +{ + for (int i=0; i 0) + { + myHead = (myHead + 1) % myCapacity; + --mySize; + } +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +float SoundWinCE::RegWriteQueue::duration() +{ + float duration = 0.0; + for(uInt32 i = 0; i < mySize; ++i) + { + duration += myBuffer[(myHead + i) % myCapacity].delta; + } + return duration; +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +void SoundWinCE::RegWriteQueue::enqueue(const RegWrite& info) +{ + if(mySize == myCapacity) + grow(); + myBuffer[myTail] = info; + myTail = (myTail + 1) % myCapacity; + ++mySize; +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +RegWrite& SoundWinCE::RegWriteQueue::front() +{ + assert(mySize != 0); + return myBuffer[myHead]; +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +uInt32 SoundWinCE::RegWriteQueue::size() const +{ + return mySize; +} + +// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +void SoundWinCE::RegWriteQueue::grow() +{ + RegWrite* buffer = new RegWrite[myCapacity * 2]; + for(uInt32 i = 0; i < mySize; ++i) + { + buffer[i] = myBuffer[(myHead + i) % myCapacity]; + } + myHead = 0; + myTail = mySize; + myCapacity = myCapacity * 2; + delete[] myBuffer; + myBuffer = buffer; +} + +#endif diff --git a/stella/src/wince/SoundWinCE.hxx b/stella/src/wince/SoundWinCE.hxx index a8b89c048..d2d067401 100644 --- a/stella/src/wince/SoundWinCE.hxx +++ b/stella/src/wince/SoundWinCE.hxx @@ -1,86 +1,86 @@ -#ifndef SOUNDWINCE_HXX -#define SOUNDWINCE_HXX - -#ifdef SOUND_SUPPORT - -class OSystem; - -#include "Sound.hxx" -#include "bspf.hxx" -#include "MediaSrc.hxx" -#include "TIASnd.hxx" - -struct RegWrite -{ - uInt16 addr; - uInt8 value; - double delta; -}; - - -class SoundWinCE : public Sound -{ - public: - SoundWinCE(OSystem* osystem); - virtual ~SoundWinCE(); - void setEnabled(bool state); - void adjustCycleCounter(Int32 amount); - void setChannels(uInt32 channels); - void setFrameRate(uInt32 framerate); - void initialize(); - void close(); - bool isSuccessfullyInitialized() const; - void mute(bool state); - void reset(); - void set(uInt16 addr, uInt8 value, Int32 cycle); - void setVolume(Int32 percent); - void adjustVolume(Int8 direction); - bool load(Deserializer& in); - bool save(Serializer& out); - void update(void); - - protected: - void processFragment(uInt8* stream, Int32 length); - // Struct to hold information regarding a TIA sound register write - class RegWriteQueue - { - public: - RegWriteQueue(uInt32 capacity = 512); - virtual ~RegWriteQueue(); - void clear(); - void dequeue(); - float duration(); - void enqueue(const RegWrite& info); - RegWrite& front(); - uInt32 size() const; - - private: - void grow(); - - private: - uInt32 myCapacity; - RegWrite* myBuffer; - uInt32 mySize; - uInt32 myHead; - uInt32 myTail; - }; - - private: - TIASound myTIASound; - bool myIsEnabled; - bool myIsInitializedFlag; - Int32 myLastRegisterSetCycle; - uInt32 myDisplayFrameRate; - uInt32 myNumChannels; - double myFragmentSizeLogBase2; - bool myIsMuted; - uInt32 myVolume; - RegWriteQueue myRegWriteQueue; - //static void CALLBACK SoundWinCE::waveOutProc(HWAVEOUT hwo, UINT uMsg, DWORD dwInstance, DWORD dwParam1, DWORD dwParam2); - int myLatency, myMixRate, myBuffnum; - WAVEHDR *myBuffers; - HWAVEOUT myWout; -}; - -#endif // SOUND_SUPPORT -#endif +#ifndef SOUNDWINCE_HXX +#define SOUNDWINCE_HXX + +#ifdef SOUND_SUPPORT + +class OSystem; + +#include "Sound.hxx" +#include "bspf.hxx" +#include "MediaSrc.hxx" +#include "TIASnd.hxx" + +struct RegWrite +{ + uInt16 addr; + uInt8 value; + double delta; +}; + + +class SoundWinCE : public Sound +{ + public: + SoundWinCE(OSystem* osystem); + virtual ~SoundWinCE(); + void setEnabled(bool state); + void adjustCycleCounter(Int32 amount); + void setChannels(uInt32 channels); + void setFrameRate(uInt32 framerate); + void initialize(); + void close(); + bool isSuccessfullyInitialized() const; + void mute(bool state); + void reset(); + void set(uInt16 addr, uInt8 value, Int32 cycle); + void setVolume(Int32 percent); + void adjustVolume(Int8 direction); + bool load(Deserializer& in); + bool save(Serializer& out); + void update(void); + + protected: + void processFragment(uInt8* stream, Int32 length); + // Struct to hold information regarding a TIA sound register write + class RegWriteQueue + { + public: + RegWriteQueue(uInt32 capacity = 512); + virtual ~RegWriteQueue(); + void clear(); + void dequeue(); + float duration(); + void enqueue(const RegWrite& info); + RegWrite& front(); + uInt32 size() const; + + private: + void grow(); + + private: + uInt32 myCapacity; + RegWrite* myBuffer; + uInt32 mySize; + uInt32 myHead; + uInt32 myTail; + }; + + private: + TIASound myTIASound; + bool myIsEnabled; + bool myIsInitializedFlag; + Int32 myLastRegisterSetCycle; + uInt32 myDisplayFrameRate; + uInt32 myNumChannels; + double myFragmentSizeLogBase2; + bool myIsMuted; + uInt32 myVolume; + RegWriteQueue myRegWriteQueue; + //static void CALLBACK SoundWinCE::waveOutProc(HWAVEOUT hwo, UINT uMsg, DWORD dwInstance, DWORD dwParam1, DWORD dwParam2); + int myLatency, myMixRate, myBuffnum; + WAVEHDR *myBuffers; + HWAVEOUT myWout; +}; + +#endif // SOUND_SUPPORT +#endif diff --git a/stella/src/wince/missing.cpp b/stella/src/wince/missing.cpp index d06d78c0e..1ce63ff07 100644 --- a/stella/src/wince/missing.cpp +++ b/stella/src/wince/missing.cpp @@ -1,113 +1,146 @@ -#include "bspf.hxx" -#include "SDL.h" -#include "gx.h" - -char *msg = NULL; -extern int EventHandlerState; - -int time(int dummy) -{ - return GetTickCount(); -} - -char *getcwd(void) -{ - TCHAR fileUnc[MAX_PATH+1]; - static char cwd[MAX_PATH+1] = ""; - char *plast; - -// if(cwd[0] == 0) -// { - GetModuleFileName(NULL, fileUnc, MAX_PATH); - WideCharToMultiByte(CP_ACP, 0, fileUnc, -1, cwd, MAX_PATH, NULL, NULL); - plast = strrchr(cwd, '\\'); - if(plast) - *plast = 0; - -// } - - return cwd; -} - - -struct key2event -{ - UINT keycode; - SDLKey sdlkey; - uInt8 state; - SDLKey launcherkey; -}; -key2event keycodes[2][MAX_KEYS]; - -void KeySetup(void) -{ - GXKeyList klist = GXGetDefaultKeys(GX_NORMALKEYS); - - for (int i=0; i<2; i++) - { - for (int j=0; jtype = event->key.type = SDL_KEYDOWN; - else - event->type = event->key.type = SDL_KEYUP; - if (EventHandlerState == 0) - event->key.keysym.sym = keycodes[0][i].sdlkey; - else - event->key.keysym.sym = keycodes[0][i].launcherkey; - event->key.keysym.mod = (SDLMod) 0; - event->key.keysym.unicode = 0; - return 1; - } - } - event->type = SDL_NOEVENT; - return 0; +#include "bspf.hxx" +#include "SDL.h" +#include "gx.h" + +char *msg = NULL; +int EventHandlerState; + +int time(int dummy) +{ + return GetTickCount(); +} + +char *getcwd(void) +{ + TCHAR fileUnc[MAX_PATH+1]; + static char cwd[MAX_PATH+1] = ""; + char *plast; + + GetModuleFileName(NULL, fileUnc, MAX_PATH); + WideCharToMultiByte(CP_ACP, 0, fileUnc, -1, cwd, MAX_PATH, NULL, NULL); + plast = strrchr(cwd, '\\'); + if(plast) + *plast = 0; + + return cwd; +} + + +struct key2event +{ + UINT keycode; + SDLKey sdlkey; + uInt8 state; + SDLKey launcherkey; +}; +key2event keycodes[2][MAX_KEYS]; + +void KeySetup(void) +{ + GXKeyList klist = GXGetDefaultKeys(GX_NORMALKEYS); + + for (int i=0; i<2; i++) + { + for (int j=0; jtype = event->key.type = SDL_KEYDOWN; + else + event->type = event->key.type = SDL_KEYUP; + } + else if (keycodes[1][i].state == 1) + event->type = SDL_QUIT; + if (EventHandlerState != 2) + event->key.keysym.sym = keycodes[0][i].sdlkey; + else + event->key.keysym.sym = keycodes[0][i].launcherkey; + event->key.keysym.mod = (SDLMod) 0; + event->key.keysym.unicode = '\n'; // hack + return 1; + } + } + event->type = SDL_NOEVENT; + return 0; } \ No newline at end of file diff --git a/stella/src/wince/missing.h b/stella/src/wince/missing.h index f4faab8ee..baa0992f5 100644 --- a/stella/src/wince/missing.h +++ b/stella/src/wince/missing.h @@ -1,25 +1,25 @@ -#ifndef _WCE_MISSING_H_ -#define _WCE_MISSING_H_ - -#include - -/* WCE 300 does not support exception handling well */ -#define try if (1) -#define catch(a) else if (0) -extern char *msg; -#define throw // - -#pragma warning(disable: 4800) -#pragma warning(disable: 4244) -#pragma warning(disable: 4786) - -typedef unsigned int uintptr_t; - -int time(int dummy); -char *getcwd(void); - - -#define MAX_KEYS 8 -enum key {K_UP = 0, K_DOWN, K_LEFT, K_RIGHT, K_FIRE, K_RESET, K_SELECT, K_QUIT}; - -#endif +#ifndef _WCE_MISSING_H_ +#define _WCE_MISSING_H_ + +#include + +/* WCE 300 does not support exception handling well */ +#define try if (1) +#define catch(a) else if (0) +extern char *msg; +#define throw // + +#pragma warning(disable: 4800) +#pragma warning(disable: 4244) +#pragma warning(disable: 4786) + +typedef unsigned int uintptr_t; + +int time(int dummy); +char *getcwd(void); + + +#define MAX_KEYS 8 +enum key {K_UP = 0, K_DOWN, K_LEFT, K_RIGHT, K_FIRE, K_RESET, K_SELECT, K_QUIT}; + +#endif diff --git a/stella/src/wince/resource.rc b/stella/src/wince/resource.rc new file mode 100644 index 000000000..b59e34457 --- /dev/null +++ b/stella/src/wince/resource.rc @@ -0,0 +1,72 @@ +//Microsoft Developer Studio generated resource script. +// +#include "resrc1.h" + +#define APSTUDIO_READONLY_SYMBOLS +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 2 resource. +// +#include "resource.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 +*/ +#ifdef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// TEXTINCLUDE +// + +1 TEXTINCLUDE DISCARDABLE +BEGIN + "resrc1.h\0" +END + +2 TEXTINCLUDE DISCARDABLE +BEGIN + "#include ""resource.h""\r\n" + "\0" +END + +3 TEXTINCLUDE DISCARDABLE +BEGIN + "\r\n" + "\0" +END + +#endif // APSTUDIO_INVOKED + + +///////////////////////////////////////////////////////////////////////////// +// +// Icon +// + +// Icon with lowest ID value placed first to ensure application icon +// remains consistent on all systems. +IDI_STELLA ICON DISCARDABLE "stella.ico" +//#endif // English (U.S.) resources +///////////////////////////////////////////////////////////////////////////// + + + +#ifndef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 3 resource. +// + + +///////////////////////////////////////////////////////////////////////////// +#endif // not APSTUDIO_INVOKED + diff --git a/stella/src/wince/resrc1.h b/stella/src/wince/resrc1.h new file mode 100644 index 000000000..9d904f01b --- /dev/null +++ b/stella/src/wince/resrc1.h @@ -0,0 +1,16 @@ +//{{NO_DEPENDENCIES}} +// Microsoft Developer Studio generated include file. +// Used by resource.rc +// +#define IDI_ICON1 102 + +// Next default values for new objects +// +#ifdef APSTUDIO_INVOKED +#ifndef APSTUDIO_READONLY_SYMBOLS +#define _APS_NEXT_RESOURCE_VALUE 104 +#define _APS_NEXT_COMMAND_VALUE 40001 +#define _APS_NEXT_CONTROL_VALUE 1000 +#define _APS_NEXT_SYMED_VALUE 101 +#endif +#endif diff --git a/stella/src/wince/stella.ico b/stella/src/wince/stella.ico new file mode 100644 index 0000000000000000000000000000000000000000..9f71e29eebdcf43f42d482dd6badb8344d9b608d GIT binary patch literal 1078 zcmds!%Mrpb3`92!cc%oOn3O>U)a24!4##w0-pXN^gk1O>7-UJSl`JJuq(KLb<0#8C zNGCAo&aVgQLT)1GOvVNs@lp-H=Zb`?ln!`8)mlLpTBurcgmIj*+en%fnwqiA3AN*L znteYRXHNm${3>o9_#yS4GIqx9dn)X3UkW>-!cGG4gm3MMDc=?EnC*sh_{<|4m0n-- n-s}FDvCLX=8sL4f>l^Mw|JTcxZ8_aOOEsSGTm126e;3^ViQ}dw literal 0 HcmV?d00001