aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/symbian/AdaptAllMMPs.pl
diff options
context:
space:
mode:
authorLars Persson2007-09-28 20:55:43 +0000
committerLars Persson2007-09-28 20:55:43 +0000
commita5e8e7ff8bf61195ef8b4ce09bca3606f5ac31d4 (patch)
tree47d39d08e0809c79849d2605fbddae874863c9b3 /backends/platform/symbian/AdaptAllMMPs.pl
parent2ca3d105f398cfcabbb148830a7e6ed666ae42eb (diff)
downloadscummvm-rg350-a5e8e7ff8bf61195ef8b4ce09bca3606f5ac31d4.tar.gz
scummvm-rg350-a5e8e7ff8bf61195ef8b4ce09bca3606f5ac31d4.tar.bz2
scummvm-rg350-a5e8e7ff8bf61195ef8b4ce09bca3606f5ac31d4.zip
Updated with Drascula and new ARM asm opts.
svn-id: r29122
Diffstat (limited to 'backends/platform/symbian/AdaptAllMMPs.pl')
-rw-r--r--backends/platform/symbian/AdaptAllMMPs.pl11
1 files changed, 9 insertions, 2 deletions
diff --git a/backends/platform/symbian/AdaptAllMMPs.pl b/backends/platform/symbian/AdaptAllMMPs.pl
index a692017d05..7e78ce9e41 100644
--- a/backends/platform/symbian/AdaptAllMMPs.pl
+++ b/backends/platform/symbian/AdaptAllMMPs.pl
@@ -21,6 +21,7 @@ chdir("../../../");
"mmp/scummvm_touche.mmp",
"mmp/scummvm_parallaction.mmp",
"mmp/scummvm_cruise.mmp",
+ "mmp/scummvm_drascula.mmp",
"S60/ScummVM_S60.mmp",
"S60v3/ScummVM_S60v3.mmp",
"S80/ScummVM_S80.mmp",
@@ -62,13 +63,18 @@ my @excludes_snd = (
"partialmanager.cpp",
"synth.cpp",
"tables.cpp",
- "freeverb.cpp"
+ "freeverb.cpp"
);
my @excludes_graphics = (
"iff.cpp"
);
+my @excludes_scumm = (
+ "codec47ARM.cpp",
+ "gfxARM.cpp"
+);
+
#arseModule(mmpStr, dirStr, ifdefArray, [exclusionsArray])
ParseModule("_base", "base", \@section_empty); # now in ./TRG/ScummVM_TRG.mmp, these never change anyways...
ParseModule("_base", "common", \@section_empty);
@@ -77,7 +83,7 @@ ParseModule("_base", "graphics", \@section_empty, \@excludes_graphics);
ParseModule("_base", "sound", \@section_empty, \@excludes_snd);
chdir("engines/");
-ParseModule("_scumm", "scumm", \@sections_scumm);
+ParseModule("_scumm", "scumm", \@sections_scumm, \@excludes_scumm );
ParseModule("_queen", "queen", \@section_empty);
ParseModule("_agos", "agos", \@section_empty);
ParseModule("_sky", "sky", \@section_empty);
@@ -92,6 +98,7 @@ ParseModule("_agi", "agi", \@section_empty);
ParseModule("_touche", "touche", \@section_empty);
ParseModule("_parallaction","parallaction",\@section_empty);
ParseModule("_cruise", "cruise", \@section_empty);
+ParseModule("_drascula","drascula", \@section_empty);
print "
=======================================================================================
Done. Enjoy :P