2006-02-23 10:12:17 +00:00
/* ScummVM - Scumm Interpreter
* Copyright (C) 2003-2005 Andreas 'Sprawl' Karlsson - Original EPOC port, ESDL
* Copyright (C) 2003-2005 Lars 'AnotherGuest' Persson - Original EPOC port, Audio System
* Copyright (C) 2005 Jurgen 'SumthinWicked' Braam - EPOC/CVS maintainer
* Copyright (C) 2005-2006 The ScummVM project
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
//
// EPOC MMP makefile project for ScummVM
//
// *** Definitions
TARGET scummvm_base.lib
TARGETTYPE lib
OPTION MSVC /QIfist /Ob1 /Oy /GF // /QIfist disables use of __ftol2 to avoid linker probs with MS libc: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore/html/vcrefQIfistSuppress_ftol.asp
OPTION GCC -Wno-multichar -Wno-reorder // don't optimize for ARM, platform way too sensitive for that :( just turn off some common warnings
2008-06-26 16:51:02 +00:00
OPTION GCCE -Wno-multichar -Wno-reorder -Wno-unused -Wno-format -fsigned-char
2007-06-09 09:29:07 +00:00
ALWAYS_BUILD_AS_ARM
2006-02-23 10:12:17 +00:00
// Note: the LIB:*.lib statements are used by AdaptAllMMPs.pl, so don't remove them!
//START_AUTO_MACROS_MASTER//
// empty base file, will be updated by Perl build scripts
2008-06-26 16:51:02 +00:00
// this file will be modified first, then from here all
// MACROs will be replicated to the other MPP files.
2006-02-23 10:12:17 +00:00
//STOP_AUTO_MACROS_MASTER//
// *** Include paths
2006-09-16 19:50:41 +00:00
USERINCLUDE ..\..\..\.. ..\..\..\..\common ..\..\..\..\gui ..\..\..\..\sound
USERINCLUDE ..\..\..\..\backends\fs ..\src ..\..\..\..\backends\platform\sdl
2006-02-23 10:12:17 +00:00
2008-01-28 00:14:17 +00:00
SYSTEMINCLUDE \epoc32\include\ESDL
SYSTEMINCLUDE \epoc32\include\ZLIB // before \epoc32\include because symbian already has older version
2008-01-27 19:47:41 +00:00
SYSTEMINCLUDE \epoc32\include\libc
2006-02-23 10:12:17 +00:00
SYSTEMINCLUDE \epoc32\include\tremor
SYSTEMINCLUDE \epoc32\include
SYSTEMINCLUDE ..\src // for portdefs.h
// *** SOURCE files
2008-06-26 16:51:02 +00:00
2006-09-16 19:50:41 +00:00
SOURCEPATH ..\..\..\..\common
2006-02-23 10:12:17 +00:00
//START_AUTO_OBJECTS_COMMON_//
// empty base file, will be updated by Perl build scripts
//STOP_AUTO_OBJECTS_COMMON_//
2008-06-26 16:51:02 +00:00
2006-09-16 19:50:41 +00:00
SOURCEPATH ..\..\..\..\graphics
2006-02-23 10:12:17 +00:00
//START_AUTO_OBJECTS_GRAPHICS_//
// empty base file, will be updated by Perl build scripts
//STOP_AUTO_OBJECTS_GRAPHICS_//
2008-06-26 16:51:02 +00:00
2006-09-16 19:50:41 +00:00
SOURCEPATH ..\..\..\..\gui
2006-02-23 10:12:17 +00:00
//START_AUTO_OBJECTS_GUI_//
// empty base file, will be updated by Perl build scripts
//STOP_AUTO_OBJECTS_GUI_//
// these next three will go into gui\modules.mk and will end up in START_AUTO_OBJECTS_GUI
// for now they are in the phone platform specific MMP files because of library dependency probs during linking
//SOURCE Key.cpp
//SOURCE KeysDialog.cpp
//SOURCE Actions.cpp
2006-09-16 19:50:41 +00:00
SOURCEPATH ..\..\..\..\sound
2006-02-23 10:12:17 +00:00
//START_AUTO_OBJECTS_SOUND_//
// empty base file, will be updated by Perl build scripts
//STOP_AUTO_OBJECTS_SOUND_//
2007-09-28 20:57:04 +00:00
#if defined (WINS)
2008-06-26 16:51:02 +00:00
SOURCE rate.cpp // WINS emulator version: add regular .cpp
2007-09-28 20:57:04 +00:00
#else
2008-06-26 16:51:02 +00:00
SOURCE rate_arm.cpp // ARM version: add ASM .cpp wrapper
SOURCE rate_arm_asm.s // ARM version: add ASM routines
2007-09-28 20:57:04 +00:00
#endif
2008-06-26 16:51:02 +00:00
// add a few files manually, since they are not parsed from modules.mk files
SOURCEPATH ..\..\..\..
SOURCE backends\events\default\default-events.cpp
SOURCE backends\timer\default\default-timer.cpp
SOURCE backends\saves\savefile.cpp
SOURCE backends\saves\default\default-saves.cpp
SOURCE engines\engine.cpp
2008-09-05 13:03:31 +00:00
SOURCE engines\dialogs.cpp
2008-10-18 12:37:50 +00:00
SOURCE engines\game.cpp
2009-02-16 19:48:00 +00:00
SOURCE engines\advanceddetector.cpp
2008-09-05 11:55:58 +00:00
SOURCE backends\fs\abstract-fs.cpp
2008-09-07 12:38:35 +00:00
SOURCE backends\fs\symbian\symbianstream.cpp
2006-02-23 10:12:17 +00:00
// backend specific includes
2008-09-05 11:55:58 +00:00