diff options
author | Eugene Sandulenko | 2013-09-06 14:56:29 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2013-09-06 14:56:29 +0300 |
commit | 8b885d4c7e662699e7377e0cadb48ebf7f177d0d (patch) | |
tree | a0b2c7e0cccd34e5031e29066c341f42e3cf12f2 | |
parent | 39e126f3c42b6326cb7b42759dc60289f7d2ff97 (diff) | |
download | scummvm-rg350-8b885d4c7e662699e7377e0cadb48ebf7f177d0d.tar.gz scummvm-rg350-8b885d4c7e662699e7377e0cadb48ebf7f177d0d.tar.bz2 scummvm-rg350-8b885d4c7e662699e7377e0cadb48ebf7f177d0d.zip |
FULLPIPE: Make engine conditionally compilable as dynamic plugin
-rw-r--r-- | engines/fullpipe/module.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/module.mk b/engines/fullpipe/module.mk index 41ed3e31f6..380f582c08 100644 --- a/engines/fullpipe/module.mk +++ b/engines/fullpipe/module.mk @@ -23,7 +23,7 @@ MODULE_OBJS = \ utils.o # This module can be built as a plugin -ifdef BUILD_PLUGINS +ifeq ($(ENABLE_FULLPIPE), DYNAMIC_PLUGIN) PLUGIN := 1 endif |