diff options
author | Jordi Vilalta Prat | 2008-05-06 03:11:01 +0000 |
---|---|---|
committer | Jordi Vilalta Prat | 2008-05-06 03:11:01 +0000 |
commit | 38f200fc55fc8a05c848feeec52e5c28224311ba (patch) | |
tree | 3fbc067923417bfa79d02cd20dc26a0ce1805de2 /backends/platform/dc | |
parent | 38a8aa516e0fa315e318801e5399f82e51efa8df (diff) | |
download | scummvm-rg350-38f200fc55fc8a05c848feeec52e5c28224311ba.tar.gz scummvm-rg350-38f200fc55fc8a05c848feeec52e5c28224311ba.tar.bz2 scummvm-rg350-38f200fc55fc8a05c848feeec52e5c28224311ba.zip |
Unified BUILD_PLUGINS and DYNAMIC_MODULES in the makefiles
svn-id: r31889
Diffstat (limited to 'backends/platform/dc')
-rw-r--r-- | backends/platform/dc/Makefile | 4 | ||||
-rw-r--r-- | backends/platform/dc/README | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/backends/platform/dc/Makefile b/backends/platform/dc/Makefile index db56035b7b..0a048c45e9 100644 --- a/backends/platform/dc/Makefile +++ b/backends/platform/dc/Makefile @@ -3,7 +3,7 @@ ronindir = /usr/local/ronin -BUILD_PLUGINS = 1 +DYNAMIC_MODULES = 1 srcdir = ../../.. VPATH = $(srcdir) @@ -28,7 +28,7 @@ RANLIB = sh-elf-ranlib HAVE_GCC3 = true DISABLE_SCALERS = true -ifdef BUILD_PLUGINS +ifdef DYNAMIC_MODULES DEFINES += -DDYNAMIC_MODULES PRE_OBJS_FLAGS = -Wl,--whole-archive POST_OBJS_FLAGS = -Wl,--no-whole-archive diff --git a/backends/platform/dc/README b/backends/platform/dc/README index 56579b74db..e4ebda840e 100644 --- a/backends/platform/dc/README +++ b/backends/platform/dc/README @@ -21,6 +21,6 @@ Edit the Makefile to contain the path to libronin if you installed it somewhere other than /usr/local/ronin, then run `make dist', and you should get a scrambled binary SCUMMVM.BIN and some plugins *.PLG. -For serial/IP upload, remove the "BUILD_PLUGINS" line and just run `make', +For serial/IP upload, remove the "DYNAMIC_MODULES" line and just run `make', to get a static binary with the name `scummvm.elf'. |