Update of /cvsroot/mockpp/mockpp/mockpp
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24135/mockpp
Modified Files:
install-win.bat
Log Message:
fix for certain platform
Index: install-win.bat
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/install-win.bat,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- install-win.bat 15 Jan 2006 19:16:26 -0000 1.1
+++ install-win.bat 7 Apr 2006 16:51:15 -0000 1.2
@@ -1,27 +1,25 @@
-rem install mockpp on windows paltforms
-rem
-rem Call from within mockpp directory where this file
-rem is located.
-rem
-rem synopsys: install-win <destdir>
+@echo off
+rem Install mockpp on windows paltforms
+rem Call from within mockpp directory where this file is located.
+rem synopsys: install-win <destination-directory>
-if not "%1" == "" goto install
-echo synopsys: install-win <destination-directory>
-goto end
+if not "%1" == "" goto :install
+echo synopsys: %0 ^<destination-directory^>
+goto :EOF
:install
-md %1\mockpp
+echo on
-xcopy /Y *.h %1\mockpp
-xcopy /Y chaining\*.h %1\mockpp\chaining
-xcopy /Y visiting\*.h %1\mockpp\visiting
-xcopy /Y compat\*.h %1\mockpp\compat
-xcopy /Y util\*.h %1\mockpp\util
-xcopy /Y builder\*.h %1\mockpp\builder
-xcopy /Y constraint\*.h %1\mockpp\constraint
-xcopy /Y matcher\*.h %1\mockpp\matcher
-xcopy /Y stub\*.h %1\mockpp\stub
-xcopy /Y production\*.h %1\mockpp\production
-xcopy /Y framework\*.h %1\mockpp\framework
+md "%1\mockpp\"
-:end
\ No newline at end of file
+xcopy /Y "*.h" "%1\mockpp\"
+xcopy /Y "chaining\*.h" "%1\mockpp\chaining\"
+xcopy /Y "visiting\*.h" "%1\mockpp\visiting\"
+xcopy /Y "compat\*.h" "%1\mockpp\compat\"
+xcopy /Y "util\*.h" "%1\mockpp\util\"
+xcopy /Y "builder\*.h" "%1\mockpp\builder\"
+xcopy /Y "constraint\*.h" "%1\mockpp\constraint\"
+xcopy /Y "matcher\*.h" "%1\mockpp\matcher\"
+xcopy /Y "stub\*.h" "%1\mockpp\stub\"
+xcopy /Y "production\*.h" "%1\mockpp\production\"
+xcopy /Y "framework\*.h" "%1\mockpp\framework\"
|