scummvm/saga/module.mk
Eugene Sandulenko 283a9f35ac Add not yet correctly working save/load. Use key F7 for saving
and F8 for loading. Now works only within current scene and restores
to entrance #0 which is wrong.

svn-id: r17726
2005-04-21 01:30:07 +00:00

47 lines
754 B
Makefile

MODULE := saga
MODULE_OBJS := \
saga/actor.o \
saga/animation.o \
saga/console.o \
saga/events.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/itedata.o \
saga/objectmap.o \
saga/palanim.o \
saga/render.o \
saga/rscfile.o \
saga/saga.o \
saga/saveload.o \
saga/scene.o \
saga/script.o \
saga/sdebug.o \
saga/sfuncs.o \
saga/sndres.o \
saga/sprite.o \
saga/sthread.o \
saga/text.o \
saga/transitions.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