aboutsummaryrefslogtreecommitdiff
path: root/engines/gargoyle/module.mk
diff options
context:
space:
mode:
authorPaul Gilbert2018-10-14 13:02:24 -0700
committerPaul Gilbert2018-12-08 19:05:59 -0800
commitc4d4d48d67953687b1d21eb1f7e01fb4a508958b (patch)
tree781eeac82cced6b1260f0d25b56d0a07ac850c66 /engines/gargoyle/module.mk
parente0307e9c077154f9553d9c130eb6c16b29858f8c (diff)
downloadscummvm-rg350-c4d4d48d67953687b1d21eb1f7e01fb4a508958b.tar.gz
scummvm-rg350-c4d4d48d67953687b1d21eb1f7e01fb4a508958b.tar.bz2
scummvm-rg350-c4d4d48d67953687b1d21eb1f7e01fb4a508958b.zip
GLK: Initial skeleton engine
Diffstat (limited to 'engines/gargoyle/module.mk')
-rw-r--r--engines/gargoyle/module.mk13
1 files changed, 13 insertions, 0 deletions
diff --git a/engines/gargoyle/module.mk b/engines/gargoyle/module.mk
new file mode 100644
index 0000000000..81b1389185
--- /dev/null
+++ b/engines/gargoyle/module.mk
@@ -0,0 +1,13 @@
+MODULE := engines/gargoyle
+
+MODULE_OBJS := \
+ detection.o \
+ gargoyle.o
+
+# This module can be built as a plugin
+ifeq ($(ENABLE_GARGOYLE), DYNAMIC_PLUGIN)
+PLUGIN := 1
+endif
+
+# Include common rules
+include $(srcdir)/rules.mk