home *** CD-ROM | disk | FTP | other *** search
/ The-Coder - The Official Indigo Games / indigo_games.iso / install_all < prev    next >
Encoding:
Text File  |  1993-03-10  |  691 b   |  61 lines

  1. #!/bin/sh
  2.  
  3. CDPATH=`pwd`/dist
  4. export CDPATH
  5.  
  6. $CDPATH/WorkShop/install.WorkShop
  7.  
  8. $CDPATH/Inventor/install.Inventor
  9.  
  10. $CDPATH/Performer/install.Performer
  11.  
  12. ./loadit X11 
  13. if [ "$?" -ne 0 ]; then
  14.     exit 1
  15. fi
  16.  
  17. ./loadit networking 
  18. if [ "$?" -ne 0 ]; then
  19.     exit 1
  20. fi
  21.  
  22. ./loadit audioTools
  23. if [ "$?" -ne 0 ]; then
  24.     exit 1
  25. fi
  26.  
  27. ./loadit modeling 
  28. if [ "$?" -ne 0 ]; then
  29.     exit 1
  30. fi
  31.  
  32. ./loadit inventorTemplates
  33. if [ "$?" -ne 0 ]; then
  34.     exit 1
  35. fi
  36.  
  37. ./loadit games 
  38. if [ "$?" -ne 0 ]; then
  39.     exit 1
  40. fi
  41.  
  42. ./loadit GLX 
  43. if [ "$?" -ne 0 ]; then
  44.     exit 1
  45. fi
  46.  
  47. ./loadit audioDemos
  48. if [ "$?" -ne 0 ]; then
  49.     exit 1
  50. fi
  51.  
  52. ./loadit GL
  53. if [ "$?" -ne 0 ]; then
  54.     exit 1
  55. fi
  56.  
  57. ./loadit haeberli
  58. if [ "$?" -ne 0 ]; then
  59.     exit 1
  60. fi
  61.