aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorTony Puccinelli2010-08-13 05:58:11 +0000
committerTony Puccinelli2010-08-13 05:58:11 +0000
commit2cd99b449f9a42f8d9cc45ae4902e326f8925bd8 (patch)
tree068f35430082a246f068c4414ac906df4eb4e964 /backends
parent62d8126df0ec90a9b1f3b660fce769631c57208e (diff)
downloadscummvm-rg350-2cd99b449f9a42f8d9cc45ae4902e326f8925bd8.tar.gz
scummvm-rg350-2cd99b449f9a42f8d9cc45ae4902e326f8925bd8.tar.bz2
scummvm-rg350-2cd99b449f9a42f8d9cc45ae4902e326f8925bd8.zip
refactored NEW_PLUGIN_DESIGN_FIRST_REFINEMENT define into ONE_PLUGIN_AT_A_TIME
svn-id: r52058
Diffstat (limited to 'backends')
-rw-r--r--backends/platform/ds/arm9/makefile4
-rw-r--r--backends/platform/ps2/Makefile.ps22
-rw-r--r--backends/plugins/arm-loader.cpp2
-rw-r--r--backends/plugins/mips-loader.cpp2
4 files changed, 5 insertions, 5 deletions
diff --git a/backends/platform/ds/arm9/makefile b/backends/platform/ds/arm9/makefile
index 75a2e68ec5..3f3c46b452 100644
--- a/backends/platform/ds/arm9/makefile
+++ b/backends/platform/ds/arm9/makefile
@@ -237,7 +237,7 @@ CXXFLAGS= $(CFLAGS) -Wno-non-virtual-dtor -Wno-unknown-pragmas -Wno-reorder \
ASFLAGS = -mcpu=arm9tdmi -mthumb-interwork
-DEFINES += -D__DS__ -DNDS -DARM9 -DNONSTANDARD_PORT -DDISABLE_FANCY_THEMES -DVECTOR_RENDERER_FORMAT=1555 -DDISABLE_DOSBOX_OPL -DDISABLE_DEFAULT_SAVEFILEMANAGER -DELF_LOADER_TARGET -DARM -DARM_TARGET -DNEW_PLUGIN_DESIGN_FIRST_REFINEMENT
+DEFINES += -D__DS__ -DNDS -DARM9 -DNONSTANDARD_PORT -DDISABLE_FANCY_THEMES -DVECTOR_RENDERER_FORMAT=1555 -DDISABLE_DOSBOX_OPL -DDISABLE_DEFAULT_SAVEFILEMANAGER -DELF_LOADER_TARGET -DARM -DARM_TARGET -DONE_PLUGIN_AT_A_TIME
ifdef USE_MAD
DEFINES += -DUSE_MAD
endif
@@ -362,7 +362,7 @@ include $(srcdir)/Makefile.common
semiclean:
$(RM) $(portdir)/source/dsoptions.o $(portdir)/source/dsmain.o $(FAT_OBJS) $(DATA_OBJS) $(portdir)/source/wordcompletion.o $(portdir)/source/dsoptions.o
-clean:
+clean: #TODO: Manual removal of engine, plugins, etc. isn't very elegant!
$(RM) $(OBJS) $(EXECUTABLE)
rm -rf *.h engines plugins graphics gui common sound backends base map.txt scummvm.nds scummvm.ds.gba
diff --git a/backends/platform/ps2/Makefile.ps2 b/backends/platform/ps2/Makefile.ps2
index f836bd3eaa..53f9b51360 100644
--- a/backends/platform/ps2/Makefile.ps2
+++ b/backends/platform/ps2/Makefile.ps2
@@ -78,7 +78,7 @@ DEPDIR = .deps
TARGET = elf/scummvm.elf
DEFINES += -DUSE_VORBIS -DUSE_TREMOR -DUSE_MAD -DUSE_ZLIB -DFORCE_RTL -DDISABLE_SAVEGAME_SORTING -D_EE -D__PLAYSTATION2__ -G2 -O2 -Wall -Wno-multichar -fno-rtti -fno-exceptions -DNO_ADAPTOR
-DEFINES += -DELF_LOADER_TARGET -DMIPS_TARGET#-DNEW_PLUGIN_DESIGN_FIRST_REFINEMENT
+DEFINES += -DELF_LOADER_TARGET -DMIPS_TARGET#-DONE_PLUGIN_AT_A_TIME
INCLUDES = $(addprefix -I$(PS2_EXTRA),$(PS2_EXTRA_INCS))
INCLUDES += -I $(PS2SDK)/ee/include -I $(PS2SDK)/common/include -I ./common -I . -I $(srcdir) -I $(srcdir)/engines
diff --git a/backends/plugins/arm-loader.cpp b/backends/plugins/arm-loader.cpp
index d8ed083962..916516aed9 100644
--- a/backends/plugins/arm-loader.cpp
+++ b/backends/plugins/arm-loader.cpp
@@ -30,7 +30,7 @@
#include "dsmain.h"
#include "arm-loader.h"
-#define __DEBUG_PLUGINS__
+//#define __DEBUG_PLUGINS__
#ifdef __DEBUG_PLUGINS__
#define DBG(x,...) consolePrintf(x, ## __VA_ARGS__)
diff --git a/backends/plugins/mips-loader.cpp b/backends/plugins/mips-loader.cpp
index 7b59a2cffa..dfa2765cfa 100644
--- a/backends/plugins/mips-loader.cpp
+++ b/backends/plugins/mips-loader.cpp
@@ -27,7 +27,7 @@
#include "mips-loader.h"
-#define __DEBUG_PLUGINS__
+//#define __DEBUG_PLUGINS__
#ifdef __DEBUG_PLUGINS__
#define DBG(x,...) printf(x, ## __VA_ARGS__)