mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-05 09:10:29 +00:00
8fc913c21d
cleaned up a bit, but it'll do for now. svn-id: r18946
25 lines
370 B
Makefile
25 lines
370 B
Makefile
MODULE := kyra
|
|
|
|
MODULE_OBJS := \
|
|
kyra/kyra.o \
|
|
kyra/resource.o \
|
|
kyra/screen.o \
|
|
kyra/script_v1.o \
|
|
kyra/script.o \
|
|
kyra/seqplayer.o \
|
|
kyra/sound.o \
|
|
kyra/staticres.o \
|
|
kyra/sprites.o \
|
|
kyra/wsamovie.o
|
|
|
|
MODULE_DIRS += \
|
|
kyra
|
|
|
|
# This module can be built as a plugin
|
|
ifdef BUILD_PLUGINS
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/common.rules
|