2009-02-15 06:10:59 +00:00
|
|
|
MODULE := engines/sci
|
|
|
|
|
|
|
|
MODULE_OBJS = \
|
2009-02-20 21:26:31 +00:00
|
|
|
console.o \
|
2009-05-15 14:07:45 +00:00
|
|
|
decompressor.o \
|
2009-02-15 11:03:21 +00:00
|
|
|
detection.o \
|
2009-02-19 12:42:32 +00:00
|
|
|
exereader.o \
|
2009-05-15 14:07:45 +00:00
|
|
|
resource.o \
|
2009-02-15 11:03:21 +00:00
|
|
|
sci.o \
|
2009-02-21 18:28:38 +00:00
|
|
|
tools.o \
|
2009-05-15 14:07:45 +00:00
|
|
|
vocabulary.o \
|
2009-02-15 06:10:59 +00:00
|
|
|
engine/game.o \
|
|
|
|
engine/gc.o \
|
|
|
|
engine/grammar.o \
|
2009-02-24 02:59:50 +00:00
|
|
|
engine/intmap.o \
|
2009-02-15 06:10:59 +00:00
|
|
|
engine/kernel.o \
|
|
|
|
engine/kevent.o \
|
|
|
|
engine/kfile.o \
|
|
|
|
engine/kgraphics.o \
|
|
|
|
engine/klists.o \
|
|
|
|
engine/kmath.o \
|
|
|
|
engine/kmenu.o \
|
2009-05-20 17:51:55 +00:00
|
|
|
engine/kmisc.o \
|
2009-02-15 06:10:59 +00:00
|
|
|
engine/kmovement.o \
|
|
|
|
engine/kpathing.o \
|
|
|
|
engine/kscripts.o \
|
|
|
|
engine/ksound.o \
|
|
|
|
engine/kstring.o \
|
2009-02-15 10:10:23 +00:00
|
|
|
engine/message.o \
|
2009-06-04 11:45:17 +00:00
|
|
|
engine/memobj.o \
|
2009-02-15 06:10:59 +00:00
|
|
|
engine/said.o \
|
|
|
|
engine/savegame.o \
|
2009-03-04 05:25:31 +00:00
|
|
|
engine/script.o \
|
2009-02-15 06:10:59 +00:00
|
|
|
engine/scriptdebug.o \
|
|
|
|
engine/seg_manager.o \
|
2009-07-11 06:33:19 +00:00
|
|
|
engine/static_selectors.o \
|
2009-03-10 14:52:02 +00:00
|
|
|
engine/stringfrag.o \
|
2009-02-27 02:23:40 +00:00
|
|
|
engine/state.o \
|
2009-02-15 06:10:59 +00:00
|
|
|
engine/vm.o \
|
|
|
|
gfx/font.o \
|
2009-02-15 11:03:21 +00:00
|
|
|
gfx/gfx_driver.o \
|
2009-03-25 12:52:03 +00:00
|
|
|
gfx/gfx_gui.o \
|
2009-05-08 16:01:25 +00:00
|
|
|
gfx/gfx_pixmap_scale.o \
|
2009-02-15 06:10:59 +00:00
|
|
|
gfx/gfx_res_options.o \
|
2009-03-18 14:04:57 +00:00
|
|
|
gfx/gfx_resmgr.o \
|
2009-02-15 06:10:59 +00:00
|
|
|
gfx/gfx_resource.o \
|
|
|
|
gfx/gfx_support.o \
|
|
|
|
gfx/gfx_tools.o \
|
2009-03-25 12:58:22 +00:00
|
|
|
gfx/gfx_widgets.o \
|
2009-02-15 06:10:59 +00:00
|
|
|
gfx/menubar.o \
|
|
|
|
gfx/operations.o \
|
2009-03-08 20:17:01 +00:00
|
|
|
gfx/palette.o \
|
2009-03-18 13:24:47 +00:00
|
|
|
gfx/res_cursor.o \
|
|
|
|
gfx/res_font.o \
|
|
|
|
gfx/res_pal.o \
|
|
|
|
gfx/res_pic.o \
|
2009-05-29 14:16:51 +00:00
|
|
|
gfx/res_view.o \
|
2009-05-21 22:03:23 +00:00
|
|
|
gfx/seq_decoder.o \
|
2009-02-15 06:10:59 +00:00
|
|
|
sfx/core.o \
|
|
|
|
sfx/iterator.o \
|
|
|
|
sfx/songlib.o \
|
2009-02-21 22:40:58 +00:00
|
|
|
sfx/seq/gm.o \
|
|
|
|
sfx/seq/instrument-map.o \
|
|
|
|
sfx/seq/map-mt32-to-gm.o \
|
2009-02-15 06:10:59 +00:00
|
|
|
sfx/seq/sequencers.o \
|
2009-05-03 21:11:09 +00:00
|
|
|
sfx/softseq/adlib.o \
|
2009-02-15 06:10:59 +00:00
|
|
|
sfx/softseq/amiga.o \
|
2009-05-26 14:43:47 +00:00
|
|
|
sfx/softseq/pcjr.o
|
2009-02-15 06:10:59 +00:00
|
|
|
|
|
|
|
# This module can be built as a plugin
|
|
|
|
ifeq ($(ENABLE_SCI), DYNAMIC_PLUGIN)
|
|
|
|
PLUGIN := 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Include common rules
|
|
|
|
include $(srcdir)/rules.mk
|