diff options
author | Robin Watts | 2007-11-05 21:07:36 +0000 |
---|---|---|
committer | Robin Watts | 2007-11-05 21:07:36 +0000 |
commit | 37aaee3593806ac45bd5965ce772dcf29c3e1175 (patch) | |
tree | 03e05861032725634acab62290ab151fa907416a /backends/platform | |
parent | 780cb2f2743f4c9b188cadafc527469cf064137a (diff) | |
download | scummvm-rg350-37aaee3593806ac45bd5965ce772dcf29c3e1175.tar.gz scummvm-rg350-37aaee3593806ac45bd5965ce772dcf29c3e1175.tar.bz2 scummvm-rg350-37aaee3593806ac45bd5965ce772dcf29c3e1175.zip |
WinCE Makefile: make deploy was copying plugins to the wrong directory.
svn-id: r29426
Diffstat (limited to 'backends/platform')
-rw-r--r-- | backends/platform/wince/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/backends/platform/wince/Makefile b/backends/platform/wince/Makefile index a6d99e2cd7..bbc5389292 100644 --- a/backends/platform/wince/Makefile +++ b/backends/platform/wince/Makefile @@ -48,13 +48,12 @@ USE_ZLIB = 1 ######################################################################## ## 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 @@ PocketSCUMM.o: 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: |