aboutsummaryrefslogtreecommitdiff
path: root/Makefile.mingw
diff options
context:
space:
mode:
authorTravis Howell2002-08-30 02:48:31 +0000
committerTravis Howell2002-08-30 02:48:31 +0000
commitb8d28237d7eb9fa7160fb19fdf0e8cc405a499e1 (patch)
treec82eb98c6ed6940f972cda1c64e59d88c2bcf39a /Makefile.mingw
parent41c2d6fba344f8688b9462371f13727053ccd890 (diff)
downloadscummvm-rg350-b8d28237d7eb9fa7160fb19fdf0e8cc405a499e1.tar.gz
scummvm-rg350-b8d28237d7eb9fa7160fb19fdf0e8cc405a499e1.tar.bz2
scummvm-rg350-b8d28237d7eb9fa7160fb19fdf0e8cc405a499e1.zip
mingw still requires separate makefile for now
svn-id: r4868
Diffstat (limited to 'Makefile.mingw')
-rw-r--r--Makefile.mingw61
1 files changed, 61 insertions, 0 deletions
diff --git a/Makefile.mingw b/Makefile.mingw
new file mode 100644
index 0000000000..0e32e39fb4
--- /dev/null
+++ b/Makefile.mingw
@@ -0,0 +1,61 @@
+# Where is scummvm will be installed
+SCUMMVMPATH=C:/scummvm
+SRC=.
+
+### Modify these paths
+SDL_CFLAGS=-I$(SRC)/sdl/include
+SDL_LIBS=-L$(SRC)/sdl/lib -lSDLmain -lSDL
+
+CXX = c++
+AR = ar cru
+RANLIB = ranlib
+RM = rm -f
+MKDIR = mkdir -p
+ECHO = echo -n
+CAT = cat
+RM = rm -f
+# recursive version of RM
+RM_REC = $(RM) -r
+ZIP = zip -q
+CP = cp
+
+CFLAGS = -g -O -Wall -Wstrict-prototypes -Wuninitialized -Wno-long-long -Wno-multichar
+DEFINES =
+LDFLAGS :=
+INCLUDES:= -I. -Icommon -Iscumm $(SDL_CFLAGS)
+LIBS = $(SDL_LIBS) -lmingw32 -lwinmm
+OBJS = scummvmico.o backends/sdl/sdl-common.o backends/sdl/sdl.o
+EXEEXT :=.exe
+
+# Enable this if you want ScummVM to dump all scripts it runs.
+# This is mainly interesting for developers.
+# DEFINES += -DDUMP_SCRIPTS
+
+# Uncomment this to activate the MAD lib for compressed sound files
+DEFINES += -DCOMPRESSED_SOUND_FILE
+LIBS += -lmad
+
+# Uncomment this to activate the ALSA lib for midi
+# DEFINES += -DUSE_ALSA
+# LIBS += -lasound
+
+# Concat DEFINES and INCLUDES to for the CPPFLAGS
+CPPFLAGS= $(DEFINES) $(INCLUDES)
+
+include Makefile.common
+
+scummvmico.o: scummvm.ico
+ windres scummvm.rc scummvmico.o
+
+# Some additional targets
+install: scummvm$(EXEEXT)
+ mkdir -p $(SCUMMVMPATH)
+ strip scummvm$(EXEEXT) -o $(SCUMMVMPATH)/scummvm$(EXEEXT)
+
+dist: install
+ cp COPYING $(SCUMMVMPATH)/copying.txt
+ cp README $(SCUMMVMPATH)/readme.txt
+ cp NEWS $(SCUMMVMPATH)/news.txt
+ cp SDL/README-SDL.txt $(SCUMMVMPATH)
+ cp SDL/lib/SDL.dll $(SCUMMVMPATH)
+ u2d $(SCUMMVMPATH)/*.txt