scummvm/engines/simon/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

34 lines
437 B
Makefile

MODULE := engines/simon
MODULE_OBJS := \
animation.o \
charset.o \
cursor.o \
debug.o \
debugger.o \
draw.o \
event.o \
game.o \
icons.o \
items.o \
midi.o \
midiparser_s1d.o \
oracle.o \
res.o \
saveload.o \
simon.o \
sound.o \
string.o \
subroutine.o \
verb.o \
vga.o \
window.o \
# This module can be built as a plugin
ifdef BUILD_PLUGINS
PLUGIN := 1
endif
# Include common rules
include $(srcdir)/rules.mk