aboutsummaryrefslogtreecommitdiff
path: root/engines/pegasus/module.mk
diff options
context:
space:
mode:
authorMatthew Hoops2011-02-20 02:31:34 -0500
committerMatthew Hoops2011-02-21 18:44:24 -0500
commit950676bf4c8576f63db8dc21a0c89e06981378d5 (patch)
treeee2cb731c5c5e247ccb9d9dd0a2f2b6ec0b1b31a /engines/pegasus/module.mk
parent0ec91de76df9fbe452bc62775d337114179b2fe0 (diff)
downloadscummvm-rg350-950676bf4c8576f63db8dc21a0c89e06981378d5.tar.gz
scummvm-rg350-950676bf4c8576f63db8dc21a0c89e06981378d5.tar.bz2
scummvm-rg350-950676bf4c8576f63db8dc21a0c89e06981378d5.zip
PEGASUS: Add my very WIP Pegasus Prime engine
Diffstat (limited to 'engines/pegasus/module.mk')
-rw-r--r--engines/pegasus/module.mk18
1 files changed, 18 insertions, 0 deletions
diff --git a/engines/pegasus/module.mk b/engines/pegasus/module.mk
new file mode 100644
index 0000000000..28a92aa800
--- /dev/null
+++ b/engines/pegasus/module.mk
@@ -0,0 +1,18 @@
+MODULE := engines/pegasus
+
+MODULE_OBJS = \
+ detection.o \
+ graphics.o \
+ menu.o \
+ pegasus.o \
+ sound.o \
+ video.o
+
+
+# This module can be built as a plugin
+ifeq ($(ENABLE_PEGASUS), DYNAMIC_PLUGIN)
+PLUGIN := 1
+endif
+
+# Include common rules
+include $(srcdir)/rules.mk