aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/module.mk
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2011-09-11 21:31:13 +0200
committerWillem Jan Palenstijn2011-09-11 21:31:55 +0200
commitf6f8b456e70fe7bcf24f4322f43644d4a4e34ba2 (patch)
treeba698cb6bfdf4c0c2af1e93bbb46b0ead600a710 /engines/cge/module.mk
parent3e453675e04a99043e0244d9c092cb0359f0585b (diff)
parent3b9b89a78bf65db18bdc6d0c3a1268c892d3db2c (diff)
downloadscummvm-rg350-f6f8b456e70fe7bcf24f4322f43644d4a4e34ba2.tar.gz
scummvm-rg350-f6f8b456e70fe7bcf24f4322f43644d4a4e34ba2.tar.bz2
scummvm-rg350-f6f8b456e70fe7bcf24f4322f43644d4a4e34ba2.zip
Merge branch 'cge'
This adds the CGE engine for the game Soltys. It is based on pull request https://github.com/scummvm/scummvm/pull/81 .
Diffstat (limited to 'engines/cge/module.mk')
-rw-r--r--engines/cge/module.mk31
1 files changed, 31 insertions, 0 deletions
diff --git a/engines/cge/module.mk b/engines/cge/module.mk
new file mode 100644
index 0000000000..62b319e190
--- /dev/null
+++ b/engines/cge/module.mk
@@ -0,0 +1,31 @@
+MODULE := engines/cge
+
+MODULE_OBJS := \
+ bitmap.o \
+ cge.o \
+ cge_main.o \
+ console.o \
+ detection.o \
+ events.o \
+ fileio.o \
+ game.o \
+ general.o \
+ snail.o \
+ sound.o \
+ talk.o \
+ text.o \
+ vga13h.o \
+ vmenu.o \
+ walk.o
+
+MODULE_DIRS += \
+ engines/cge
+
+# This module can be built as a plugin
+ifeq ($(ENABLE_CGE), DYNAMIC_PLUGIN)
+PLUGIN := 1
+endif
+
+# Include common rules
+include $(srcdir)/rules.mk
+