diff options
author | Max Horn | 2011-06-01 15:48:44 +0200 |
---|---|---|
committer | Max Horn | 2011-06-01 15:48:44 +0200 |
commit | 90f2cde9fa27b06fe7753d68d4166bc10c833942 (patch) | |
tree | 89572e4211b579c1ca493ef7a0e3bafe8238a652 /backends | |
parent | a4610df4825a89ceda39bf1156d1b97a37cceac8 (diff) | |
download | scummvm-rg350-90f2cde9fa27b06fe7753d68d4166bc10c833942.tar.gz scummvm-rg350-90f2cde9fa27b06fe7753d68d4166bc10c833942.tar.bz2 scummvm-rg350-90f2cde9fa27b06fe7753d68d4166bc10c833942.zip |
PS2: Do not add RELEASE_BUILD
First merge screw up: I meant to comment these lines out (as they area
now -- in fact, these lines did not exist pre-merge at all, I moved the
-DRELEASE_BUILD additions manually to their own lines, so I could
comment them out, and then promptly forgot. *sigh*)
On the pro side, it was very easy to spot and correct this mistake!
Diffstat (limited to 'backends')
-rw-r--r-- | backends/platform/ps2/Makefile.gdb | 3 | ||||
-rw-r--r-- | backends/platform/ps2/Makefile.ps2 | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/backends/platform/ps2/Makefile.gdb b/backends/platform/ps2/Makefile.gdb index 1009f0fe4e..1e2510d3f4 100644 --- a/backends/platform/ps2/Makefile.gdb +++ b/backends/platform/ps2/Makefile.gdb @@ -62,7 +62,8 @@ INCDIR = ../../../ # DEPDIR = .deps DEFINES = -DUSE_VORBIS -DUSE_TREMOR -DUSE_MAD -DUSE_ZLIB -DFORCE_RTL -DDISABLE_SAVEGAME_SORTING -D_EE -D__PLAYSTATION2__ -D__PS2_DEBUG__ -g -Wall -Wno-multichar -fno-rtti -fno-exceptions # -DNO_ADAPTOR -DEFINES += -DRELEASE_BUILD +# for release builds: +#DEFINES += -DRELEASE_BUILD INCLUDES = $(addprefix -I$(PS2_EXTRA),$(PS2_EXTRA_INCS)) INCLUDES += -I $(PS2GDB)/ee -I $(PS2SDK)/ee/include -I $(PS2SDK)/common/include -I ./common -I . -I $(srcdir) -I $(srcdir)/engines diff --git a/backends/platform/ps2/Makefile.ps2 b/backends/platform/ps2/Makefile.ps2 index ea966ec236..77cc735c5f 100644 --- a/backends/platform/ps2/Makefile.ps2 +++ b/backends/platform/ps2/Makefile.ps2 @@ -62,7 +62,8 @@ INCDIR = ../../../ # DEPDIR = .deps 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 += -DRELEASE_BUILD +# for release builds: +#DEFINES += -DRELEASE_BUILD 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 |