mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-09 03:10:22 +00:00
753536fa61
- talking to NPCs is now possible. - Zanthia's talks when entering a new scene for the first time now work - using items on Zanthia is now possible. svn-id: r30886
54 lines
760 B
Makefile
54 lines
760 B
Makefile
MODULE := engines/kyra
|
|
|
|
MODULE_OBJS := \
|
|
animator_v1.o \
|
|
animator_v2.o \
|
|
debugger.o \
|
|
detection.o \
|
|
gui_v1.o \
|
|
gui_v2.o \
|
|
items_v1.o \
|
|
items_v2.o \
|
|
kyra.o \
|
|
kyra_v1.o \
|
|
kyra_v2.o \
|
|
kyra_v3.o \
|
|
resource.o \
|
|
saveload_v1.o \
|
|
scene.o \
|
|
scene_v1.o \
|
|
scene_v2.o \
|
|
screen.o \
|
|
screen_v1.o \
|
|
screen_v2.o \
|
|
script_v1.o \
|
|
script_v2.o \
|
|
script.o \
|
|
seqplayer.o \
|
|
sequences_tim.o \
|
|
sequences_v1.o \
|
|
sequences_v2.o \
|
|
sound_adlib.o \
|
|
sound_digital.o \
|
|
sound_towns.o \
|
|
sound.o \
|
|
sound_v1.o \
|
|
sprites.o \
|
|
staticres.o \
|
|
text.o \
|
|
text_v1.o \
|
|
text_v2.o \
|
|
timer.o \
|
|
timer_v1.o \
|
|
timer_v2.o \
|
|
vqa.o \
|
|
wsamovie.o
|
|
|
|
# This module can be built as a plugin
|
|
ifdef BUILD_PLUGINS
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|