aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorMax Horn2002-11-21 04:08:37 +0000
committerMax Horn2002-11-21 04:08:37 +0000
commit69bceafc6e1a810f8f66b81bf76e2c2c6fb16fe0 (patch)
tree4e99988488f6ff40ac5b3745f8203d53ff7adc4c /gui
parentc5c1091613249d30259ca0746d9d64160487348f (diff)
downloadscummvm-rg350-69bceafc6e1a810f8f66b81bf76e2c2c6fb16fe0.tar.gz
scummvm-rg350-69bceafc6e1a810f8f66b81bf76e2c2c6fb16fe0.tar.bz2
scummvm-rg350-69bceafc6e1a810f8f66b81bf76e2c2c6fb16fe0.zip
revamped build system somewhat: 'modules' like scumm, simon, gui etc. now all build into a lib, and all have a module.mk file that lists all their file. Advantage: further modularizes the build system, seperating all parts of ScummVM
svn-id: r5653
Diffstat (limited to 'gui')
-rw-r--r--gui/module.mk14
1 files changed, 14 insertions, 0 deletions
diff --git a/gui/module.mk b/gui/module.mk
new file mode 100644
index 0000000000..ec96344ebf
--- /dev/null
+++ b/gui/module.mk
@@ -0,0 +1,14 @@
+MODULE := gui
+
+MODULE_OBJS = \
+ gui/browser.o \
+ gui/dialog.o \
+ gui/launcher.o \
+ gui/ListWidget.o \
+ gui/message.o \
+ gui/newgui.o \
+ gui/ScrollBarWidget.o \
+ gui/widget.o \
+
+# Include common rules
+include common.rules