scummvm/engines/gob/module.mk
Sven Hesse 03ef6689c0 GOB: Rewrite the AdLib players
This is a complete rewrite of the AdLib players for ADL and MDY/TBR
files in the Gob engine.

Major changes
1) The AdLib base class is now completely separated from all file
   format code and can theoretically be used by any OPL2-based
   format (within reason)
2) The new code is far better documented and more readable
3) The MDY player now actually works. The MDY/TBR format is
   in reality the MUS/SND format created by AdLib as a simpler
   alternative to the ROL format
4) Since the MAME emulator is quite buggy and leads to noticable
   wrong percussion in the Gobliins 2 title music, the new AdLib
   player will try to create a DOSBox OPL. If it's not compiled in,
   or if the user configured opl_driver to "mame", it will print
   out appropriate warnings.
2012-06-11 05:18:06 +02:00

122 lines
2.0 KiB
Makefile

MODULE := engines/gob
MODULE_OBJS := \
anifile.o \
aniobject.o \
cheater.o \
cheater_geisha.o \
cmpfile.o \
console.o \
dataio.o \
databases.o \
dbase.o \
decfile.o \
detection.o \
draw.o \
draw_v1.o \
draw_v2.o \
draw_bargon.o \
draw_fascin.o \
draw_playtoons.o \
expression.o \
game.o \
global.o \
gob.o \
goblin.o \
goblin_v1.o \
goblin_v2.o \
goblin_v3.o \
goblin_v4.o \
hotspots.o \
iniconfig.o \
init.o \
init_v1.o \
init_geisha.o \
init_v2.o \
init_fascin.o \
init_v3.o \
init_v4.o \
init_v6.o \
init_v7.o \
inter.o \
inter_v1.o \
inter_geisha.o \
inter_v2.o \
inter_bargon.o \
inter_fascin.o \
inter_inca2.o \
inter_playtoons.o \
inter_v3.o \
inter_v4.o \
inter_v5.o \
inter_v6.o \
inter_v7.o \
map.o \
map_v1.o \
map_v2.o \
mult.o \
mult_v1.o \
mult_v2.o \
palanim.o \
resources.o \
rxyfile.o \
scenery.o \
scenery_v1.o \
scenery_v2.o \
script.o \
surface.o \
totfile.o \
util.o \
variables.o \
video.o \
video_v1.o \
video_v2.o \
video_v6.o \
videoplayer.o \
demos/demoplayer.o \
demos/scnplayer.o \
demos/batplayer.o \
minigames/geisha/evilfish.o \
minigames/geisha/oko.o \
minigames/geisha/meter.o \
minigames/geisha/diving.o \
minigames/geisha/mouth.o \
minigames/geisha/submarine.o \
minigames/geisha/penetration.o \
save/savefile.o \
save/savehandler.o \
save/saveload.o \
save/saveload_v2.o \
save/saveload_v3.o \
save/saveload_v4.o \
save/saveload_v6.o \
save/saveload_v7.o \
save/saveload_geisha.o \
save/saveload_fascin.o \
save/saveload_inca2.o \
save/saveload_playtoons.o \
save/saveconverter.o \
save/saveconverter_v2.o \
save/saveconverter_v3.o \
save/saveconverter_v4.o \
sound/sound.o \
sound/sounddesc.o \
sound/pcspeaker.o \
sound/adlib.o \
sound/musplayer.o \
sound/adlplayer.o \
sound/infogrames.o \
sound/protracker.o \
sound/soundmixer.o \
sound/soundblaster.o \
sound/cdrom.o \
sound/bgatmosphere.o
# This module can be built as a plugin
ifeq ($(ENABLE_GOB), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk