aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2003-12-16 02:25:04 +0000
committerTravis Howell2003-12-16 02:25:04 +0000
commit850b679bd7a11c6114804c46152dd132b0a13776 (patch)
tree9230985060e3ef6d64c71ea61af361c742866675
parentcbe5c34f979849dccba6a72f57b721c7621d2b5a (diff)
downloadscummvm-rg350-850b679bd7a11c6114804c46152dd132b0a13776.tar.gz
scummvm-rg350-850b679bd7a11c6114804c46152dd132b0a13776.tar.bz2
scummvm-rg350-850b679bd7a11c6114804c46152dd132b0a13776.zip
Add sworrd 1 makefile changes
svn-id: r11667
-rw-r--r--sword1/module.mk29
1 files changed, 29 insertions, 0 deletions
diff --git a/sword1/module.mk b/sword1/module.mk
new file mode 100644
index 0000000000..2061b05984
--- /dev/null
+++ b/sword1/module.mk
@@ -0,0 +1,29 @@
+MODULE := sword1
+
+MODULE_OBJS := \
+ sword1/debug.o \
+ sword1/eventman.o \
+ sword1/logic.o \
+ sword1/memman.o \
+ sword1/menu.o \
+ sword1/mouse.o \
+ sword1/music.o \
+ sword1/objectman.o \
+ sword1/resman.o \
+ sword1/router.o \
+ sword1/screen.o \
+ sword1/sound.o \
+ sword1/staticres.o \
+ sword1/sword1.o \
+ sword1/text.o
+
+MODULE_DIRS += \
+ sword1
+
+# This module can be built as a plugin
+ifdef BUILD_PLUGINS
+PLUGIN := 1
+endif
+
+# Include common rules
+include common.rules