mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-12 20:17:49 +00:00
ec5d498703
svn-id: r14566
51 lines
823 B
Makefile
51 lines
823 B
Makefile
MODULE := saga
|
|
|
|
MODULE_OBJS = \
|
|
saga/actionmap.o \
|
|
saga/actor.o \
|
|
saga/actordata.o \
|
|
saga/animation.o \
|
|
saga/console.o \
|
|
saga/cvar.o \
|
|
saga/events.o \
|
|
saga/expr.o \
|
|
saga/font.o \
|
|
saga/font_map.o \
|
|
saga/game.o \
|
|
saga/gfx.o \
|
|
saga/ihnm_introproc.o \
|
|
saga/image.o \
|
|
saga/interface.o \
|
|
saga/isomap.o \
|
|
saga/ite_introproc.o \
|
|
saga/objectmap.o \
|
|
saga/palanim.o \
|
|
saga/render.o \
|
|
saga/rscfile.o \
|
|
saga/saga.o \
|
|
saga/scene.o \
|
|
saga/script.o \
|
|
saga/sdata.o \
|
|
saga/sdebug.o \
|
|
saga/sfuncs.o \
|
|
saga/sndres.o \
|
|
saga/sprite.o \
|
|
saga/sthread.o \
|
|
saga/text.o \
|
|
saga/transitions.o \
|
|
saga/ys_dl_list.o \
|
|
saga/input.o \
|
|
saga/music.o \
|
|
saga/sound.o
|
|
|
|
MODULE_DIRS += \
|
|
saga
|
|
|
|
# This module can be built as a plugin
|
|
ifdef BUILD_PLUGINS
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/common.rules
|