diff options
author | Marcus Comstedt | 2009-03-21 15:15:29 +0000 |
---|---|---|
committer | Marcus Comstedt | 2009-03-21 15:15:29 +0000 |
commit | 760133e8caea4872ebdb379f90193755b36336fa (patch) | |
tree | 4ab3557506867a92436f31068032219bd1c03ac3 /backends/platform/dc | |
parent | c3bac3d851c25a0a1389d97fc24f8f1c56d6d87a (diff) | |
download | scummvm-rg350-760133e8caea4872ebdb379f90193755b36336fa.tar.gz scummvm-rg350-760133e8caea4872ebdb379f90193755b36336fa.tar.bz2 scummvm-rg350-760133e8caea4872ebdb379f90193755b36336fa.zip |
Added support for dynamic plugins on Dreamcast to the configure script.
svn-id: r39587
Diffstat (limited to 'backends/platform/dc')
-rw-r--r-- | backends/platform/dc/dreamcast.mk | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/backends/platform/dc/dreamcast.mk b/backends/platform/dc/dreamcast.mk index dbf1e8b701..1879573764 100644 --- a/backends/platform/dc/dreamcast.mk +++ b/backends/platform/dc/dreamcast.mk @@ -6,6 +6,14 @@ ronindir = /usr/local/ronin CC := $(CXX) ASFLAGS := $(CXXFLAGS) + +dist : SCUMMVM.BIN plugins plugin_dist + +plugin_dist : + for p in plugins/*.plg; do \ + if [ x'plugins/*.plg' != x"$$p" ]; then sh-elf-strip -g -o "`basename \"$$p\" | LC_CTYPE=C tr '[:lower:]' '[:upper:]'`" "$$p"; fi ; \ + done + SCUMMVM.BIN : scummvm.bin scramble $< $@ |