diff options
author | Travis Howell | 2002-07-08 10:33:02 +0000 |
---|---|---|
committer | Travis Howell | 2002-07-08 10:33:02 +0000 |
commit | 43fab3978cf16e06f3af501272e0a883abaef1da (patch) | |
tree | 6c2759f318205813c1c3b8345aa676ef1dd50a2b | |
parent | b00225b9dca5055b3f1a70267021cbb567b4053e (diff) | |
download | scummvm-rg350-43fab3978cf16e06f3af501272e0a883abaef1da.tar.gz scummvm-rg350-43fab3978cf16e06f3af501272e0a883abaef1da.tar.bz2 scummvm-rg350-43fab3978cf16e06f3af501272e0a883abaef1da.zip |
Use correct compiler
svn-id: r4490
-rw-r--r-- | Makefile.mingw | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile.mingw b/Makefile.mingw index ee70356335..5c56fa5d57 100644 --- a/Makefile.mingw +++ b/Makefile.mingw @@ -8,14 +8,13 @@ SDL_CFLAGS=-I$(SRC)/sdl/include SDL_LIBS=-L$(SRC)/sdl/lib -lSDLmain -lSDL # If MAD (MPEG Audio Decoder) header and library isn't installed remove -lmad and -DCOMPRESSED_SOUND_FILE -CC = gcc +CC = g++ CFLAGS = -g -O -Wall -Wstrict-prototypes -Wuninitialized -Wno-long-long -Wno-multichar DEFINES = -DCOMPRESSED_SOUND_FILE LDFLAGS :=-mwindows -mconsole INCLUDES:= $(SDL_CFLAGS) -I./ -I./sound CPPFLAGS= $(DEFINES) $(INCLUDES) -#If compiling with GCC 2.95.x remove the -lstdc++ -LIBS = -lmingw32 -lwinmm -lmad -lstdc++ $(SDL_LIBS) +LIBS = -lmingw32 -lwinmm -lmad $(SDL_LIBS) EXEEXT :=.exe # Uncomment this for SDL normal output |