2763b863be
X-SVN-Rev: 8646
26 lines
827 B
Batchfile
Executable File
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 |