aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/module.mk
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2013-10-17 22:33:15 +0200
committerWillem Jan Palenstijn2013-10-17 22:33:15 +0200
commit17711622429c980a0c3a3c549a7b55dbab7a2239 (patch)
treedd7df2a7740ac5c4afe92b76cec4dd583827dea8 /engines/avalanche/module.mk
parent109ff80475d036ad426df9fc236de9e8108d4e00 (diff)
parent748ba2475a2486196484246dc461d435c2564aba (diff)
downloadscummvm-rg350-17711622429c980a0c3a3c549a7b55dbab7a2239.tar.gz
scummvm-rg350-17711622429c980a0c3a3c549a7b55dbab7a2239.tar.bz2
scummvm-rg350-17711622429c980a0c3a3c549a7b55dbab7a2239.zip
Merge branch 'avalanche'
This merges pull request 399 for the Avalanche engine developed during GSoC2013.
Diffstat (limited to 'engines/avalanche/module.mk')
-rw-r--r--engines/avalanche/module.mk26
1 files changed, 26 insertions, 0 deletions
diff --git a/engines/avalanche/module.mk b/engines/avalanche/module.mk
new file mode 100644
index 0000000000..9c1205df02
--- /dev/null
+++ b/engines/avalanche/module.mk
@@ -0,0 +1,26 @@
+MODULE := engines/avalanche
+
+MODULE_OBJS = \
+ animation.o \
+ avalanche.o \
+ avalot.o \
+ background.o \
+ closing.o \
+ console.o \
+ detection.o \
+ graphics.o \
+ menu.o \
+ parser.o \
+ pingo.o \
+ dialogs.o \
+ sequence.o \
+ sound.o \
+ timer.o
+
+# This module can be built as a plugin
+ifeq ($(ENABLE_AVALANCHE), DYNAMIC_PLUGIN)
+PLUGIN := 1
+endif
+
+# Include common rules
+include $(srcdir)/rules.mk