diff options
author | Max Horn | 2006-02-12 00:16:31 +0000 |
---|---|---|
committer | Max Horn | 2006-02-12 00:16:31 +0000 |
commit | 80cf2fa46ff638ae25fe85a3a89997ceb7f09aae (patch) | |
tree | 8877a278cfc2041cb23bb02375ca732f2127e1b2 /base | |
parent | 136ecfc1e8115d0c00f5b53acd87d873019ab4da (diff) | |
download | scummvm-rg350-80cf2fa46ff638ae25fe85a3a89997ceb7f09aae.tar.gz scummvm-rg350-80cf2fa46ff638ae25fe85a3a89997ceb7f09aae.tar.bz2 scummvm-rg350-80cf2fa46ff638ae25fe85a3a89997ceb7f09aae.zip |
Reduced data duplication in module.mk files; added module.mk files for null and x11 backends; added engines/module.mk
svn-id: r20584
Diffstat (limited to 'base')
-rw-r--r-- | base/module.mk | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/base/module.mk b/base/module.mk index 9aad4e6bb0..07b9a64453 100644 --- a/base/module.mk +++ b/base/module.mk @@ -1,20 +1,13 @@ MODULE := base MODULE_OBJS := \ - base/engine.o \ - base/gameDetector.o \ - base/main.o \ - base/plugins.o + engine.o \ + gameDetector.o \ + main.o \ + plugins.o MODULE_DIRS += \ base -# Some of the base files depend on the values of the DISABLE_* flags defined -# in config.mak. Hence we add an explicit make dependency on that file. -# -# Temporarily disabled since it causes troubles for MinGW - and -# will break Makefile.noconf -#base/gameDetector.o base/plugins.o: config.mak - # Include common rules include $(srcdir)/common.rules |