mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
bde5404a4e
svn-id: r26870
30 lines
365 B
Makefile
30 lines
365 B
Makefile
MODULE := engines/cine
|
|
|
|
MODULE_OBJS = \
|
|
anim.o \
|
|
bg.o \
|
|
bg_list.o \
|
|
cine.o \
|
|
detection.o \
|
|
gfx.o \
|
|
main_loop.o \
|
|
msg.o \
|
|
object.o \
|
|
pal.o \
|
|
part.o \
|
|
prc.o \
|
|
rel.o \
|
|
script.o \
|
|
sound.o \
|
|
texte.o \
|
|
unpack.o \
|
|
various.o
|
|
|
|
# This module can be built as a plugin
|
|
ifdef BUILD_PLUGINS
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|