2001-11-09 18:57:46 +00:00
|
|
|
# $Header$
|
2001-11-06 22:59:59 +00:00
|
|
|
|
2003-02-26 11:24:44 +00:00
|
|
|
CXX := c++
|
|
|
|
AR := ar cru
|
|
|
|
RANLIB := ranlib
|
|
|
|
RM := rm -f
|
|
|
|
MKDIR := mkdir -p
|
|
|
|
ECHO := echo -n
|
|
|
|
CAT := cat
|
|
|
|
RM := rm -f
|
2002-08-21 20:47:12 +00:00
|
|
|
# recursive version of RM
|
2003-02-26 11:24:44 +00:00
|
|
|
RM_REC := $(RM) -r
|
|
|
|
ZIP := zip -q
|
|
|
|
CP := cp
|
2002-08-21 20:47:12 +00:00
|
|
|
|
2002-10-23 00:20:11 +00:00
|
|
|
#######################################################################
|
|
|
|
# Default compilation parameters. Normally don't edit these #
|
|
|
|
#######################################################################
|
|
|
|
|
2003-05-25 16:09:26 +00:00
|
|
|
CXXFLAGS:= -g -O
|
2002-11-20 18:05:02 +00:00
|
|
|
DEFINES :=
|
2001-12-01 17:44:59 +00:00
|
|
|
LDFLAGS :=
|
2002-09-08 01:08:12 +00:00
|
|
|
INCLUDES:= -I. -Icommon
|
2002-11-20 18:05:02 +00:00
|
|
|
LIBS :=
|
|
|
|
OBJS :=
|
2002-08-21 17:35:46 +00:00
|
|
|
|
2003-05-25 16:09:26 +00:00
|
|
|
# Turn on useful warnings
|
2003-05-29 12:02:41 +00:00
|
|
|
CXXFLAGS+= -Wall -pedantic -Wpointer-arith -Wcast-qual -Wcast-align -Wconversion
|
2003-07-16 20:36:38 +00:00
|
|
|
CXXFLAGS+= -Wshadow -Wstrict-prototypes -Wuninitialized -Wimplicit -Wundef
|
2003-05-29 10:55:22 +00:00
|
|
|
CXXFLAGS+= -Wno-long-long -Wno-multichar -Wno-unknown-pragmas -Wno-reorder
|
2003-07-16 20:36:38 +00:00
|
|
|
CXXFLAGS+= -Wwrite-strings -fcheck-new -Wctor-dtor-privacy -Wnon-virtual-dtor
|
|
|
|
|
2003-05-29 10:55:22 +00:00
|
|
|
# Seems GCC 2.95 doesn't support the following, so we do not yet turn them
|
|
|
|
# on by default (but I'd strongly recommend to all GCC 2.95 users to update
|
|
|
|
# to a better compiler like GCC 3.x).
|
2003-07-16 20:36:38 +00:00
|
|
|
# CXXFLAGS+= -ansi -W -Wno-unused-parameter -Woverloaded-virtual -Wdisabled-optimization -Wfloat-equal
|
|
|
|
|
|
|
|
# The following causes problems on some systems where the system header
|
|
|
|
# contain duplicate declarations already. That's really a bug in the
|
|
|
|
# system headers, but since it causes lots of warnings on those systems,
|
|
|
|
# we don't enable it by default
|
|
|
|
#CXXFLAGS+= -Wredundant-decls
|
2003-05-25 16:09:26 +00:00
|
|
|
|
2002-08-21 17:35:46 +00:00
|
|
|
# Load the build rules & settings for the chosen backend
|
|
|
|
-include build.rules
|
2002-05-16 06:46:50 +00:00
|
|
|
|
2002-10-23 00:20:11 +00:00
|
|
|
#######################################################################
|
|
|
|
# Compile options - you can modify these to tweak ScummVM compilation #
|
|
|
|
#######################################################################
|
|
|
|
|
2002-05-16 06:46:50 +00:00
|
|
|
# Uncomment this to activate the MAD lib for compressed sound files
|
2003-02-07 19:26:03 +00:00
|
|
|
DEFINES += -DUSE_MAD
|
|
|
|
LIBS += -lmad
|
2002-05-16 06:46:50 +00:00
|
|
|
|
2002-10-27 01:12:10 +00:00
|
|
|
# Uncomment this to activate the Ogg Vorbis lib for compressed sound files
|
|
|
|
# DEFINES += -DUSE_VORBIS
|
|
|
|
# LIBS += -lvorbisfile -lvorbis
|
|
|
|
|
2002-05-16 06:46:50 +00:00
|
|
|
# Uncomment this to activate the ALSA lib for midi
|
2002-09-09 09:59:26 +00:00
|
|
|
# DEFINES += -DUSE_ALSA
|
|
|
|
# LIBS += -lasound
|
2002-05-16 06:46:50 +00:00
|
|
|
|
2003-05-25 16:09:26 +00:00
|
|
|
# Uncomment this to cause warnings to be treated as errors
|
|
|
|
# CXXFLAGS+= -Werror
|
2002-10-23 00:20:11 +00:00
|
|
|
|
2003-08-02 09:21:34 +00:00
|
|
|
# Uncomment this to use GCC 3.x specific dependency tracking (recommended)
|
|
|
|
# HAVE_GCC3 = 1
|
2002-10-23 00:20:11 +00:00
|
|
|
|
|
|
|
#######################################################################
|
2003-04-26 11:44:13 +00:00
|
|
|
# Control which modules are built - uncomment any to disable module #
|
2002-10-23 00:20:11 +00:00
|
|
|
#######################################################################
|
|
|
|
|
2003-04-26 11:44:13 +00:00
|
|
|
# DISABLE_SCUMM = 1
|
|
|
|
# DISABLE_SIMON = 1
|
|
|
|
# DISABLE_SKY = 1
|
2003-07-30 19:25:31 +00:00
|
|
|
DISABLE_SWORD2 = 1
|
2003-04-26 11:44:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# Misc stuff - you should normally never have to edit this #
|
|
|
|
#######################################################################
|
2001-10-09 14:30:12 +00:00
|
|
|
|
2002-04-26 13:39:31 +00:00
|
|
|
include Makefile.common
|
2002-04-27 11:06:27 +00:00
|
|
|
|
|
|
|
dist:
|
2002-08-21 20:47:12 +00:00
|
|
|
$(RM) $(ZIPFILE)
|
|
|
|
$(ZIP) $(ZIPFILE) $(DISTFILES)
|
2002-08-21 17:35:46 +00:00
|
|
|
|
|
|
|
# Until we add a nice configure tool, default to the SDL build rules
|
|
|
|
build.rules:
|
2002-08-21 20:47:12 +00:00
|
|
|
$(CP) backends/sdl/build.rules build.rules
|
2002-11-01 18:05:06 +00:00
|
|
|
|
|
|
|
deb:
|
|
|
|
ln -sf dists/debian;
|
|
|
|
debian/prepare
|
|
|
|
fakeroot debian/rules binary
|
2002-11-10 22:07:06 +00:00
|
|
|
|
|
|
|
# Special target to create a application wrapper for Mac OS X
|
|
|
|
bundle_name = ScummVM.app
|
2002-12-01 20:29:20 +00:00
|
|
|
bundle: scummvm-static
|
2002-11-10 22:07:06 +00:00
|
|
|
mkdir -p $(bundle_name)/Contents/MacOS
|
|
|
|
mkdir -p $(bundle_name)/Contents/Resources
|
|
|
|
echo "APPL????" > $(bundle_name)/Contents/PkgInfo
|
|
|
|
cp Info.plist $(bundle_name)/Contents/
|
|
|
|
cp scummvm.icns $(bundle_name)/Contents/Resources/
|
2002-12-01 20:29:20 +00:00
|
|
|
cp scummvm-static $(bundle_name)/Contents/MacOS/scummvm
|
|
|
|
strip $(bundle_name)/Contents/MacOS/scummvm
|
|
|
|
|
|
|
|
# Special target to create a static linked binary for Mac OS X
|
|
|
|
scummvm-static: $(OBJS)
|
2003-03-23 13:11:55 +00:00
|
|
|
$(CXX) $(LDFLAGS) -o scummvm-static $(OBJS) \
|
2003-07-12 19:13:25 +00:00
|
|
|
/sw/lib/libSDLmain.a /sw/lib/libSDL.a \
|
|
|
|
/sw/lib/libmad.a \
|
|
|
|
/sw/lib/libvorbisfile.a /sw/lib/libvorbis.a /sw/lib/libogg.a \
|
2003-03-23 13:11:55 +00:00
|
|
|
-framework Cocoa -framework Carbon -framework IOKit \
|
|
|
|
-framework OpenGL -framework AGL -framework QuickTime \
|
|
|
|
-framework AudioUnit -framework AudioToolbox
|
2002-12-01 20:29:20 +00:00
|
|
|
|
|
|
|
.PHONY: deb bundle
|