echo This batch file will build the Show Text JAR
echo You must have the JDK1.1x tools and the BDK tools
echo installed properly for it to work.
cd netscape
cd samples
cd showtext
echo Building Java Classes...
javac ShowText.java
echo Creating JavaDocs
javadoc -notree -noindex ShowText.java
cd ..
cd ..
cd ..
echo Creating JAR file with appropriate manifest...
jar cfm ShowText.jar ShowText.mf netscape/samples/showtext/ShowText.class
echo Done.