aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorD G Turner2014-07-20 04:18:46 +0100
committerD G Turner2014-07-20 04:18:46 +0100
commit469eecb9eeb246b04693b275fcace8164d7adea4 (patch)
tree6e40585a02c27393f2beea1d655199fc2da22b52
parentfd89ecdba81f88b197812650efce51a0827463ba (diff)
downloadscummvm-rg350-469eecb9eeb246b04693b275fcace8164d7adea4.tar.gz
scummvm-rg350-469eecb9eeb246b04693b275fcace8164d7adea4.tar.bz2
scummvm-rg350-469eecb9eeb246b04693b275fcace8164d7adea4.zip
BUILD: Add port specific makefile for AmigaOS4.
This moves the AmigaOS4 specific packaging rules from the global ports.mk to a port specific makefile in the AmigaOS subdirectory of the SDL backend (used for AmigaOS). Previously, port specific makefiles were only used for cross compiling builds and thus had a single entry in the cross compiling section of the configure. Since AmigaOS4 is a desktop system supporting native build, this required a second entry for when the host system is detected as ppc-amigaos to support native builds. However, currently this does break packaging of cross compiled builds for Win32, OSX and Unix when done on AmigaOS4... but this is not likely and has limited impact. To fix this, default _port_mk lines would need to be added to the sections of the cross compiling switch for mingw32 etc. to override the AmigaOS4 OS setting of _port_mk.
-rw-r--r--backends/platform/sdl/amigaos/amigaos.mk12
-rwxr-xr-xconfigure3
-rw-r--r--ports.mk17
3 files changed, 15 insertions, 17 deletions
diff --git a/backends/platform/sdl/amigaos/amigaos.mk b/backends/platform/sdl/amigaos/amigaos.mk
new file mode 100644
index 0000000000..f84747c9b2
--- /dev/null
+++ b/backends/platform/sdl/amigaos/amigaos.mk
@@ -0,0 +1,12 @@
+# Special target to create an AmigaOS snapshot installation
+amigaos4dist: $(EXECUTABLE)
+ mkdir -p $(AMIGAOS4PATH)
+ mkdir -p $(AMIGAOS4PATH)/themes
+ mkdir -p $(AMIGAOS4PATH)/extras
+ $(STRIP) $(EXECUTABLE) -o $(AMIGAOS4PATH)/$(EXECUTABLE)
+ cp ${srcdir}/icons/scummvm.info $(AMIGAOS4PATH)/$(EXECUTABLE).info
+ cp $(DIST_FILES_THEMES) $(AMIGAOS4PATH)/themes/
+ifdef DIST_FILES_ENGINEDATA
+ cp $(DIST_FILES_ENGINEDATA) $(AMIGAOS4PATH)/extras/
+endif
+ cp $(DIST_FILES_DOCS) $(AMIGAOS4PATH)
diff --git a/configure b/configure
index 4f9fc4f68b..87c4a0eb7d 100755
--- a/configure
+++ b/configure
@@ -2074,6 +2074,7 @@ case $_host_os in
# Supress format warnings as the long 4 byte causes noisy warnings.
CXXFLAGS="$CXXFLAGS -Wno-format"
add_line_to_config_mk 'AMIGAOS = 1'
+ _port_mk="backends/platform/sdl/amigaos/amigaos.mk"
;;
android)
case $_host in
@@ -2752,6 +2753,8 @@ if test -n "$_host"; then
_ar="$_host-ar cru"
_as="$_host-as"
_windres=$_host-windres
+
+ _port_mk="backends/platform/sdl/amigaos/amigaos.mk"
;;
ps2)
DEFINES="$DEFINES -DDISABLE_TEXT_CONSOLE"
diff --git a/ports.mk b/ports.mk
index 66e01081a6..97b43fe92e 100644
--- a/ports.mk
+++ b/ports.mk
@@ -324,22 +324,5 @@ endif
@echo Now run
@echo "\tgit commit 'DISTS: Generated Code::Blocks and MSVC project files'"
-#
-# AmigaOS specific
-#
-
-# Special target to create an AmigaOS snapshot installation
-amigaos4dist: $(EXECUTABLE)
- mkdir -p $(AMIGAOS4PATH)
- mkdir -p $(AMIGAOS4PATH)/themes
- mkdir -p $(AMIGAOS4PATH)/extras
- $(STRIP) $(EXECUTABLE) -o $(AMIGAOS4PATH)/$(EXECUTABLE)
- cp ${srcdir}/icons/scummvm.info $(AMIGAOS4PATH)/$(EXECUTABLE).info
- cp $(DIST_FILES_THEMES) $(AMIGAOS4PATH)/themes/
-ifdef DIST_FILES_ENGINEDATA
- cp $(DIST_FILES_ENGINEDATA) $(AMIGAOS4PATH)/extras/
-endif
- cp $(DIST_FILES_DOCS) $(AMIGAOS4PATH)
-
# Mark special targets as phony
.PHONY: deb bundle osxsnap win32dist install uninstall