mirror of
https://github.com/libretro/scummvm.git
synced 2024-11-30 12:50:51 +00:00
166ea5bcee
svn-id: r6284
73 lines
2.1 KiB
Makefile
73 lines
2.1 KiB
Makefile
# 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
|
|
|
|
#######################################################################
|
|
# Default compilation parameters. Normally don't edit these #
|
|
#######################################################################
|
|
|
|
CXXFLAGS:= -g -O -Wall -Wstrict-prototypes -Wuninitialized -Wno-long-long -Wno-multichar -Wno-unknown-pragmas
|
|
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
|
|
|
|
#######################################################################
|
|
# Compile options - you can modify these to tweak ScummVM compilation #
|
|
#######################################################################
|
|
|
|
# Uncomment this to activate the MAD lib for compressed sound files
|
|
DEFINES += -DUSE_MAD
|
|
LIBS += -lmad
|
|
|
|
# Uncomment this to activate the Ogg Vorbis lib for compressed sound files
|
|
DEFINES += -DUSE_VORBIS
|
|
LIBS += -lvorbisfile -lvorbis -logg
|
|
|
|
# Uncomment this for stricter compile time code verification
|
|
# CXXFLAGS+= -Wshadow -Werror
|
|
|
|
#######################################################################
|
|
# Misc stuff - you should normally never have to edit this #
|
|
#######################################################################
|
|
|
|
# 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
|