aboutsummaryrefslogtreecommitdiff
path: root/Makefile.mingw
diff options
context:
space:
mode:
authorMax Horn2002-08-21 16:07:07 +0000
committerMax Horn2002-08-21 16:07:07 +0000
commitce46866403fdcc479cf9d67e4d430409b15dadc3 (patch)
tree75ebfaa1ed13f549959d76d3ce101c3e66f5451b /Makefile.mingw
parent662256f25dbe43abf67077a804e225738765f009 (diff)
downloadscummvm-rg350-ce46866403fdcc479cf9d67e4d430409b15dadc3.tar.gz
scummvm-rg350-ce46866403fdcc479cf9d67e4d430409b15dadc3.tar.bz2
scummvm-rg350-ce46866403fdcc479cf9d67e4d430409b15dadc3.zip
Initial revision
svn-id: r4785
Diffstat (limited to 'Makefile.mingw')
-rw-r--r--Makefile.mingw45
1 files changed, 0 insertions, 45 deletions
diff --git a/Makefile.mingw b/Makefile.mingw
deleted file mode 100644
index 5c56fa5d57..0000000000
--- a/Makefile.mingw
+++ /dev/null
@@ -1,45 +0,0 @@
-# Where is scummvm will be installed
-SCUMMVMPATH=C:/scummvm
-SRC=.
-VPATH=$(SRC)
-
-### Modify these paths
-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 = 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)
-LIBS = -lmingw32 -lwinmm -lmad $(SDL_LIBS)
-EXEEXT :=.exe
-
-# Uncomment this for SDL normal output
-OBJS = sdl.o scummvmico.o
-# Or uncomment this for SDL with OpenGL output
-#OBJS = sdl_gl.o scummvmico.o
-#LIBS += -lopengl32
-
-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.txt $(SCUMMVMPATH)
- cp readme.txt $(SCUMMVMPATH)
- cp whatsnew.txt $(SCUMMVMPATH)
- cp SDL/README-SDL.txt $(SCUMMVMPATH)
- cp SDL/lib/SDL.dll $(SCUMMVMPATH)
- u2d $(SCUMMVMPATH)/*.txt
-
-.PHONY: install dist