mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-03 17:33:05 +00:00
1bbad356ef
- gets rid of GameFlags::hasAudioCD svn-id: r25258
39 lines
526 B
Makefile
39 lines
526 B
Makefile
MODULE := engines/kyra
|
|
|
|
MODULE_OBJS := \
|
|
animator.o \
|
|
debugger.o \
|
|
gui.o \
|
|
items.o \
|
|
kyra.o \
|
|
kyra2.o \
|
|
kyra3.o \
|
|
plugin.o \
|
|
resource.o \
|
|
saveload.o \
|
|
scene.o \
|
|
screen.o \
|
|
script_v1.o \
|
|
script.o \
|
|
seqplayer.o \
|
|
sequences_v1.o \
|
|
sequences_v2.o \
|
|
sound_adlib.o \
|
|
sound_digital.o \
|
|
sound_towns.o \
|
|
sound.o \
|
|
sprites.o \
|
|
staticres.o \
|
|
text.o \
|
|
timer.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
|