scummvm/engines/agi/module.mk
Max Horn 9a955180a4 * Renamed config.mak to config.mk
* Renamed common.rules to rules.mk
* Removed explicit declaration of MODULE_DIRS in various spots (instead we let rules.mk compute it)

svn-id: r23275
2006-06-24 08:48:11 +00:00

40 lines
489 B
Makefile

MODULE := engines/agi
MODULE_OBJS = \
agi.o \
agi_v2.o \
agi_v3.o \
checks.o \
console.o \
cycle.o \
font.o \
global.o \
graphics.o \
id.o \
inv.o \
keyboard.o \
logic.o \
lzw.o \
menu.o \
motion.o \
objects.o \
op_cmd.o \
op_dbg.o \
op_test.o \
patches.o \
picture.o \
savegame.o \
sound.o \
sprite.o \
text.o \
view.o \
words.o
# This module can be built as a plugin
ifdef BUILD_PLUGINS
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk