scummvm/engines/wage/module.mk
Alexander Tkachev a5fc17f0b1 WAGE: Add saveGameState() sketch
Copy-pasted from asvitkine/wage-engine (on java). I've managed filling
in some values, the others are 0 for now.
2016-07-26 20:07:45 +06:00

33 lines
456 B
Makefile

MODULE := engines/wage
MODULE_OBJS := \
combat.o \
debugger.o \
design.o \
detection.o \
dialog.o \
entities.o \
gui.o \
gui-console.o \
macmenu.o \
macwindow.o \
macwindowmanager.o \
randomhat.o \
saveload.o \
script.o \
sound.o \
util.o \
wage.o \
world.o
MODULE_DIRS += \
engines/wage
# This module can be built as a plugin
ifeq ($(ENABLE_WAGE), DYNAMIC_PLUGIN)
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk