@rem -- @rem -- A script to make an executable jar file for the @rem -- edit application. @rem -- @rem -- http://bumble.sf.net @rem -- @rem -- @rem -- extract the files from the ssh jar file @rem -- because a jar cannot contain another jar @rem -- \j2sdk1.4.2_10\bin\jar xvf j2ssh-small.jar @rem -- Add an entry to the manifest file indicating which @rem -- is the main class to execute @rem -- @rem echo Main-Class: EditPanel >> META-INF\manifest.mf echo Manifest-Version: 1.0> manifest.mf echo Main-Class: EditPanel>> manifest.mf echo Created-By: 1.4.2_10 (Sun Microsystems Inc.)>> manifest.mf @rem -- @rem -- @rem -- create the new jar file including the directories @rem -- from the ssh jar file and the manifest @rem -- \j2sdk1.4.2_10\bin\jar cvfm Editor.jar manifest.mf *.class com org