2001-11-09 18:57:46 +00:00
|
|
|
# $Header$
|
2001-11-06 22:59:59 +00:00
|
|
|
|
2002-08-21 16:07:07 +00:00
|
|
|
CXX = c++
|
2002-08-21 20:47:12 +00:00
|
|
|
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
|
|
|
|
|
2002-10-23 00:20:11 +00:00
|
|
|
#######################################################################
|
|
|
|
# Default compilation parameters. Normally don't edit these #
|
|
|
|
#######################################################################
|
|
|
|
|
2002-10-08 00:13:04 +00:00
|
|
|
CFLAGS = -g -O -Wall -Wstrict-prototypes -Wuninitialized -Wno-long-long -Wno-multichar -Wno-unknown-pragmas
|
2002-05-25 18:35:56 +00:00
|
|
|
DEFINES =
|
2001-12-01 17:44:59 +00:00
|
|
|
LDFLAGS :=
|
2002-09-08 01:08:12 +00:00
|
|
|
INCLUDES:= -I. -Icommon
|
2002-08-24 13:52:16 +00:00
|
|
|
LIBS =
|
2002-08-21 17:35:46 +00:00
|
|
|
OBJS =
|
|
|
|
|
|
|
|
# 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-08-21 16:53:11 +00:00
|
|
|
# Enable this if you want ScummVM to dump all scripts it runs.
|
|
|
|
# This is mainly interesting for developers.
|
2002-09-09 09:59:26 +00:00
|
|
|
# DEFINES += -DDUMP_SCRIPTS
|
2002-08-21 16:53:11 +00:00
|
|
|
|
2002-05-16 06:46:50 +00:00
|
|
|
# Uncomment this to activate the MAD lib for compressed sound files
|
2002-10-27 01:12:10 +00:00
|
|
|
DEFINES += -DUSE_MAD
|
2002-08-21 16:07:07 +00:00
|
|
|
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
|
|
|
|
2002-10-22 12:06:54 +00:00
|
|
|
# Uncomment this to activate extended debugging support in Simon
|
|
|
|
DEFINES += -DSIMONDEBUG
|
|
|
|
|
2002-10-23 00:20:11 +00:00
|
|
|
# Uncomment this for stricter compile time code verification
|
|
|
|
# CFLAGS += -Wshadow -Werror
|
|
|
|
|
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# Misc stuff - you should normally never have to edit this #
|
|
|
|
#######################################################################
|
|
|
|
|
2002-08-21 17:35:46 +00:00
|
|
|
# Concat DEFINES and INCLUDES to for the CPPFLAGS
|
2002-05-16 06:46:50 +00:00
|
|
|
CPPFLAGS= $(DEFINES) $(INCLUDES)
|
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
|