1@echo off 2 3rem ***************************************************************************** 4rem * Copyright (C) 2000-2002, International Business Machines Corporation and * 5rem * others. All Rights Reserved. * 6rem ***************************************************************************** 7 8call compile.bat -O 9 10echo * Making Directories 11 12mkdir zip 13cd zip 14mkdir lib 15mkdir docs 16cd docs 17mkdir Images 18cd Images 19mkdir Screenshots 20cd .. 21mkdir Tutorial 22mkdir Views 23cd .. 24mkdir Reports 25cd .. 26 27echo * Copying Files 28 29echo ** Copying Batch Files and Properties 30 31copy RBManager.jar zip 32copy RBReporter.bat zip 33copy rbmanager_scanner.xml zip 34copy resources\preferences.properties zip 35attrib -r zip/preferences.properties 36 37echo ** Copying Documentation 38 39cd docs 40copy *.html ..\zip\docs\ 41cd Images 42copy *.gif ..\..\zip\docs\Images\ 43copy *.jpg ..\..\zip\docs\Images\ 44cd Screenshots 45copy *.gif ..\..\..\zip\docs\Images\Screenshots\ 46copy *.jpg ..\..\..\zip\docs\Images\Screenshots\ 47cd ..\..\Tutorial 48copy *.html ..\..\zip\docs\Tutorial\ 49cd ..\Views 50copy *.html ..\..\zip\docs\Views\ 51cd ..\.. 52 53echo ** Copying Jar Files 54 55cd lib 56copy *.jar ..\zip\lib\ 57cd .. 58 59echo ** Copying License 60copy ..\..\..\license.html zip 61 62@echo * Directory created: zip 63@echo ** Don't forget to modify preferences.properties 64pause