[Scummvm-cvs-logs] scummvm master -> 469eecb9eeb246b04693b275fcace8164d7adea4

digitall dgturner at iee.org
Sun Jul 20 05:18:22 CEST 2014


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
469eecb9ee BUILD: Add port specific makefile for AmigaOS4.


Commit: 469eecb9eeb246b04693b275fcace8164d7adea4
    https://github.com/scummvm/scummvm/commit/469eecb9eeb246b04693b275fcace8164d7adea4
Author: D G Turner (digitall at scummvm.org)
Date: 2014-07-20T04:18:46+01:00

Commit Message:
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.

Changed paths:
  A backends/platform/sdl/amigaos/amigaos.mk
    configure
    ports.mk



diff --git a/backends/platform/sdl/amigaos/amigaos.mk b/backends/platform/sdl/amigaos/amigaos.mk
new file mode 100644
index 0000000..f84747c
--- /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 4f9fc4f..87c4a0e 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 66e0108..97b43fe 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






More information about the Scummvm-git-logs mailing list