[Scummvm-cvs-logs] SF.net SVN: scummvm: [29426] scummvm/trunk/backends/platform/wince/Makefile

robinwatts at users.sourceforge.net robinwatts at users.sourceforge.net
Mon Nov 5 22:07:36 CET 2007


Revision: 29426
          http://scummvm.svn.sourceforge.net/scummvm/?rev=29426&view=rev
Author:   robinwatts
Date:     2007-11-05 13:07:36 -0800 (Mon, 05 Nov 2007)

Log Message:
-----------
WinCE Makefile: make deploy was copying plugins to the wrong directory.

Modified Paths:
--------------
    scummvm/trunk/backends/platform/wince/Makefile

Modified: scummvm/trunk/backends/platform/wince/Makefile
===================================================================
--- scummvm/trunk/backends/platform/wince/Makefile	2007-11-05 21:06:10 UTC (rev 29425)
+++ scummvm/trunk/backends/platform/wince/Makefile	2007-11-05 21:07:36 UTC (rev 29426)
@@ -48,13 +48,12 @@
 ########################################################################
 ## For remote deployment (copying the built files onto a device
 ## automatically), we need to know various things, like which
-## tools to use. I use pput, pdel and mkdir from
+## tools to use. I use pput and pdel from
 ##     http://www.xs4all.nl/~itsme/projects/xda/tools.html
 ## and I keep my installation on the storage card, but other people
 ## may prefer other things.
 
 REMOTE_COPY      = pput
-REMOTE_MKDIR     = pmkdir
 REMOTE_DELETE    = pdel
 REMOTE_DIRECTORY = \Storage Card\Program Files\Scummvm
 
@@ -217,16 +216,18 @@
 
 deploy-plugins: plugins PocketSCUMM.o plugins-stub
 	@echo Deploying DLLs
-	$(REMOTE_MKDIR) "$(REMOTE_DIRECTORY)\plugins"
-	$(REMOTE_DELETE) "$(REMOTE_DIRECTORY)\plugins\*.dll"
-	$(REMOTE_COPY) plugins/*.dll "$(REMOTE_DIRECTORY)\plugins"
+	-$(REMOTE_MKDIR) "$(REMOTE_DIRECTORY)"
+	-$(REMOTE_DELETE) "$(REMOTE_DIRECTORY)\*.dll"
+	$(REMOTE_COPY) plugins/*.dll "$(REMOTE_DIRECTORY)"
+	$(REMOTE_COPY) scummvm.dll "$(REMOTE_DIRECTORY)"
 
 deploy-exe: $(EXECUTABLE) 
 	@echo Deploying modern theme - errors are normal here!
+	-$(REMOTE_MKDIR) "$(REMOTE_DIRECTORY)"
 	@-$(REMOTE_COPY) ../../../gui/themes/modern.ini "$(REMOTE_DIRECTORY)"
 	@-$(REMOTE_COPY) ../../../gui/themes/modern.zip "$(REMOTE_DIRECTORY)"
 	@echo Deploying EXE
-	$(REMOTE_DELETE) "$(REMOTE_DIRECTORY)\scummvm.exe"
+	-$(REMOTE_DELETE) "$(REMOTE_DIRECTORY)\scummvm.exe"
 	$(REMOTE_COPY) scummvm.exe "$(REMOTE_DIRECTORY)"
 
 ARMscaler.o:


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list