aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorMax Horn2002-12-09 13:38:01 +0000
committerMax Horn2002-12-09 13:38:01 +0000
commit098b1d52ca7ad394eaee0481c6c43ed0234166f6 (patch)
tree387525288eb73f5f7752270316590b962233d99a /backends
parent90b844d95e82f70e31bb59abf05252d86f5849ec (diff)
downloadscummvm-rg350-098b1d52ca7ad394eaee0481c6c43ed0234166f6.tar.gz
scummvm-rg350-098b1d52ca7ad394eaee0481c6c43ed0234166f6.tar.bz2
scummvm-rg350-098b1d52ca7ad394eaee0481c6c43ed0234166f6.zip
change CFLAGS to CXXFLAGS
svn-id: r5896
Diffstat (limited to 'backends')
-rw-r--r--backends/dc/Makefile2
-rw-r--r--backends/gp32/build.rules2
-rw-r--r--backends/morphos/build.rules10
3 files changed, 7 insertions, 7 deletions
diff --git a/backends/dc/Makefile b/backends/dc/Makefile
index 2dc9f8dd03..9a8595a95e 100644
--- a/backends/dc/Makefile
+++ b/backends/dc/Makefile
@@ -5,7 +5,7 @@ ronindir = /usr/local/ronin
VPATH = ../..
CXX = sh-elf-g++ -ml -m4-single-only
-CFLAGS = -O1 -Wno-multichar
+CXXFLAGS= -O1 -Wno-multichar
DEFINES = -D__DC__ -DNONSTANDARD_PORT -DNONSTANDARD_SAVE
LDFLAGS := -Wl,-Ttext,0x8c010000 -nostartfiles ronin/crt0.o
INCLUDES:= -I./ -I../.. -I../../common
diff --git a/backends/gp32/build.rules b/backends/gp32/build.rules
index 4c94b34a61..628c2f67fd 100644
--- a/backends/gp32/build.rules
+++ b/backends/gp32/build.rules
@@ -6,7 +6,7 @@
CCBASE=c:/devkitadv
CXX = $(CCBASE)/bin/g++
-CFLAGS = -mcpu=arm9tdmi \
+CXXFLAGS= -mcpu=arm9tdmi \
-mtune=arm9tdmi \
-mapcs \
-O2 \
diff --git a/backends/morphos/build.rules b/backends/morphos/build.rules
index b1fa9185f3..eb0b290af4 100644
--- a/backends/morphos/build.rules
+++ b/backends/morphos/build.rules
@@ -1,8 +1,8 @@
-CXX = g++
-CFLAGS = -Wno-multichar -fstrength-reduce -fno-rtti -O2
-DEFINES = -DNDEBUG
-LDFLAGS = -noixemul -s
-LIBS = -lamiga -lamigastubs -lcdda -lcybergraphics
+CXX = g++
+CXXFLAGS = -Wno-multichar -fstrength-reduce -fno-rtti -O2
+DEFINES = -DNDEBUG
+LDFLAGS = -noixemul -s
+LIBS = -lamiga -lamigastubs -lcdda -lcybergraphics
INCLUDES += -Ibackends/morphos
MODULES += backends/morphos
OBJS += backends/morphos/morphos.o backends/morphos/morphos_scaler.o \