home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JRUNTIME.Z / beaninfo.jar / build-jar.bat next >
DOS Batch File  |  1998-02-26  |  797b  |  33 lines

  1. REM   build-jar.bat
  2. REM    Run this script to repackage all the separate Swing .jar files 
  3. REM    into one jar file and include the BeanInfo classes and Icons. 
  4.  
  5. echo Creating swingall.jar file in current directory
  6.  
  7. @echo off
  8. if not exist .\swing.jar goto noswingjar
  9. if exist .\com  goto com
  10.  
  11. REM  unjar the existing swing.jar,motif.jar, windows.jar beaninfo.jar
  12. @echo on
  13. jar xf swing.jar
  14. jar xf motif.jar
  15. jar xf windows.jar
  16. jar xf beaninfo.jar
  17.  
  18. REM  jar all the files into swingall.jar
  19. jar cfm swingall.jar manifest com\sun
  20. rmdir /s/q  com 
  21. @echo off
  22. echo Now you can import swingall.jar into a Builder App
  23. goto done
  24.  
  25. :noswingjar
  26. echo ERROR: Can't find swing.jar in current directory
  27. goto done
  28.  
  29. :com
  30. echo ERROR: Please run this script from a directory that doesn't have one file/dir named "com"
  31.  
  32. :done
  33.