mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 05:38:56 +00:00
398a26c6c4
svn-id: r29455
44 lines
584 B
Makefile
44 lines
584 B
Makefile
MODULE := engines/saga
|
|
|
|
MODULE_OBJS := \
|
|
actor.o \
|
|
actor_path.o \
|
|
actor_walk.o \
|
|
animation.o \
|
|
console.o \
|
|
detection.o \
|
|
events.o \
|
|
font.o \
|
|
font_map.o \
|
|
gfx.o \
|
|
ihnm_introproc.o \
|
|
image.o \
|
|
interface.o \
|
|
isomap.o \
|
|
ite_introproc.o \
|
|
itedata.o \
|
|
objectmap.o \
|
|
puzzle.o \
|
|
palanim.o \
|
|
render.o \
|
|
rscfile.o \
|
|
saga.o \
|
|
saveload.o \
|
|
scene.o \
|
|
script.o \
|
|
sfuncs.o \
|
|
sndres.o \
|
|
sprite.o \
|
|
sthread.o \
|
|
input.o \
|
|
music.o \
|
|
sound.o
|
|
|
|
# This module can be built as a plugin
|
|
ifdef BUILD_PLUGINS
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|