scuffed-code/tools/unicodetools/com/ibm/rbm/compile.bat
George Rhoten 2763b863be ICU-1905 Add fewer files to the JAR
X-SVN-Rev: 8646
2002-05-20 23:04:14 +00:00

26 lines
827 B
Batchfile
Executable File

@echo off
rem *****************************************************************************
rem * Copyright (C) 2000-2002, International Business Machines Corporation and *
rem * others. All Rights Reserved. *
rem *****************************************************************************
cd ..\..\..\
echo compiling source code %1
javac -d . -classpath com/ibm/rbm/lib/xerces.jar -deprecation %1 com/ibm/rbm/*.java
if errorlevel 1 goto error
echo creating jar file
erase com\ibm\rbm\RBManager.jar
jar cfm com/ibm/rbm/RBManager.jar com/ibm/rbm/manifest.stub com/ibm/rbm/*.class com/ibm/rbm/images/*.gif com/ibm/rbm/resources/RBManager*.properties
if errorlevel 1 goto error
echo cleaning up class files
cd com\ibm\rbm
erase *.class
goto end
:error
cd com\ibm\rbm
pause
:end