diff options
author | Max Horn | 2006-06-24 08:48:11 +0000 |
---|---|---|
committer | Max Horn | 2006-06-24 08:48:11 +0000 |
commit | 9a955180a4179237d3474a73c6829a6554a9bc09 (patch) | |
tree | 0bd1edc157e90b6b71241ef2a03642f8a0b3c827 /engines/kyra | |
parent | d210b19aec69d34711e5d473e6e4e5081955b02e (diff) | |
download | scummvm-rg350-9a955180a4179237d3474a73c6829a6554a9bc09.tar.gz scummvm-rg350-9a955180a4179237d3474a73c6829a6554a9bc09.tar.bz2 scummvm-rg350-9a955180a4179237d3474a73c6829a6554a9bc09.zip |
* Renamed config.mak to config.mk
* Renamed common.rules to rules.mk
* Removed explicit declaration of MODULE_DIRS in various spots (instead we let rules.mk compute it)
svn-id: r23275
Diffstat (limited to 'engines/kyra')
-rw-r--r-- | engines/kyra/module.mk | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/engines/kyra/module.mk b/engines/kyra/module.mk index dbede17bf6..2b83e6dc26 100644 --- a/engines/kyra/module.mk +++ b/engines/kyra/module.mk @@ -26,13 +26,10 @@ MODULE_OBJS := \ vqa.o \ wsamovie.o -MODULE_DIRS += \ - engines/kyra - # This module can be built as a plugin ifdef BUILD_PLUGINS PLUGIN := 1 endif # Include common rules -include $(srcdir)/common.rules +include $(srcdir)/rules.mk |