mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 05:38:56 +00:00
7e3d551321
With the recent v7/v8 changes in the SCUMM engine, trying to run a v7/v8 SCUMM game is not a nice user experience anymore, because the game just won't fit in the limited default memory available on Dreamcast anymore. This is also a problem for some other engines on this platform, but the SCUMM engine being one of the most popular engines, quite a lot of users end up burning a toast CD-R on their Dreamcast until they figure out that only SCUMMv6 and earlier still work nowadays (with some limitations too). Disabling v7/v8 from the SCUMM engine plugin should also free up some memory for a better experience with earlier SCUMM titles.
96 lines
2.6 KiB
Makefile
96 lines
2.6 KiB
Makefile
|
|
ronindir = /usr/local/ronin
|
|
|
|
DYNAMIC_MODULES = 1
|
|
|
|
srcdir = ../../..
|
|
VPATH = $(srcdir)
|
|
|
|
CC = sh-elf-gcc -ml -m4-single-only
|
|
CXX = sh-elf-g++ -ml -m4-single-only
|
|
LD = $(CXX)
|
|
CXXFLAGS= -O3 -Wno-multichar -funroll-loops -fschedule-insns2 -fomit-frame-pointer -fdelete-null-pointer-checks -fno-exceptions
|
|
DEFINES = -D__DC__ -DNONSTANDARD_PORT -DUSE_MAD -DUSE_ZLIB -DDISABLE_DEFAULT_SAVEFILEMANAGER -DDISABLE_TEXT_CONSOLE -DDISABLE_COMMAND_LINE -DUSE_RGB_COLOR
|
|
# For release builds:
|
|
#DEFINES += -DNOSERIAL
|
|
LDFLAGS = -Wl,-Ttext,0x8c010000 -nostartfiles $(ronindir)/lib/crt0.o
|
|
INCLUDES= -I./ -I$(srcdir) -I$(ronindir)/include/ -I$(srcdir)/engines
|
|
LIBS = -L$(ronindir)/lib -lmad -lronin -lz -lm
|
|
# For release builds:
|
|
#LIBS = -L$(ronindir)/lib -lmad -lronin-noserial -lz -lm
|
|
EXECUTABLE = scummvm.elf
|
|
DEPDIR = .deps
|
|
CXX_UPDATE_DEP_FLAG = -Wp,-MMD,"$(*D)/$(DEPDIR)/$(*F).d",-MQ,"$@",-MP
|
|
PLUGIN_PREFIX =
|
|
PLUGIN_SUFFIX = .plg
|
|
PLUGIN_EXTRA_DEPS = plugin.x plugin.syms scummvm.elf plugin_head.o
|
|
PLUGIN_LDFLAGS = -nostartfiles -Wl,-q,-Tplugin.x,--just-symbols,scummvm.elf,--retain-symbols-file,plugin.syms -L$(ronindir)/lib plugin_head.o
|
|
MKDIR = mkdir -p
|
|
RM = rm -f
|
|
RM_REC = rm -rf
|
|
AR = sh-elf-ar cru
|
|
RANLIB = sh-elf-ranlib
|
|
USE_RGB_COLOR = true
|
|
|
|
ifdef DYNAMIC_MODULES
|
|
DEFINES += -DDYNAMIC_MODULES
|
|
PRE_OBJS_FLAGS = -Wl,--whole-archive
|
|
POST_OBJS_FLAGS = -Wl,--no-whole-archive
|
|
ENABLED=DYNAMIC_PLUGIN
|
|
else
|
|
ENABLED=STATIC_PLUGIN
|
|
endif
|
|
|
|
ENABLE_SCUMM = $(ENABLED)
|
|
# Not meaningful anymore (bug #6008)
|
|
#ENABLE_SCUMM_7_8 = $(ENABLED)
|
|
ENABLE_HE = $(ENABLED)
|
|
ENABLE_AGI = $(ENABLED)
|
|
ENABLE_AGOS = $(ENABLED)
|
|
ENABLE_CINE = $(ENABLED)
|
|
ENABLE_CRUISE = $(ENABLED)
|
|
ENABLE_DRASCULA = $(ENABLED)
|
|
ENABLE_GOB = $(ENABLED)
|
|
ENABLE_GROOVIE = $(ENABLED)
|
|
ENABLE_IHNM = $(ENABLED)
|
|
ENABLE_KYRA = $(ENABLED)
|
|
ENABLE_LURE = $(ENABLED)
|
|
ENABLE_M4 = $(ENABLED)
|
|
ENABLE_MADE = $(ENABLED)
|
|
ENABLE_PARALLACTION = $(ENABLED)
|
|
ENABLE_QUEEN = $(ENABLED)
|
|
ENABLE_SAGA = $(ENABLED)
|
|
ENABLE_SKY = $(ENABLED)
|
|
ENABLE_SWORD1 = $(ENABLED)
|
|
ENABLE_SWORD2 = $(ENABLED)
|
|
ENABLE_TOUCHE = $(ENABLED)
|
|
ENABLE_TUCKER = $(ENABLED)
|
|
|
|
OBJS := dcmain.o time.o display.o audio.o input.o selector.o icon.o \
|
|
label.o vmsave.o softkbd.o dcloader.o cache.o dc-fs.o plugins.o \
|
|
dcutils.o
|
|
|
|
MODULE_DIRS += ./
|
|
|
|
BACKEND := dc
|
|
|
|
include $(srcdir)/Makefile.common
|
|
|
|
scummvm.bin : scummvm.elf
|
|
sh-elf-objcopy -S -R .stack -O binary $< $@
|
|
|
|
SCUMMVM.BIN : scummvm.bin
|
|
scramble $< $@
|
|
|
|
plugin_dist : plugins
|
|
for p in $(PLUGINS); do \
|
|
t="`basename \"$$p\" | LC_CTYPE=C tr '[:lower:]' '[:upper:]'`"; \
|
|
sh-elf-strip -g -o "$$t" "$$p"; \
|
|
./check_plugin_symbols "$$t"; \
|
|
done
|
|
|
|
dist : SCUMMVM.BIN plugin_dist
|
|
|
|
spotless : distclean
|
|
$(RM) SCUMMVM.BIN scummvm.bin *.PLG
|