home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
-
- CDPATH=`pwd`/dist
- export CDPATH
-
- $CDPATH/WorkShop/install.WorkShop
-
- $CDPATH/Inventor/install.Inventor
-
- $CDPATH/Performer/install.Performer
-
- ./loadit X11
- if [ "$?" -ne 0 ]; then
- exit 1
- fi
-
- ./loadit networking
- if [ "$?" -ne 0 ]; then
- exit 1
- fi
-
- ./loadit audioTools
- if [ "$?" -ne 0 ]; then
- exit 1
- fi
-
- ./loadit modeling
- if [ "$?" -ne 0 ]; then
- exit 1
- fi
-
- ./loadit inventorTemplates
- if [ "$?" -ne 0 ]; then
- exit 1
- fi
-
- ./loadit games
- if [ "$?" -ne 0 ]; then
- exit 1
- fi
-
- ./loadit GLX
- if [ "$?" -ne 0 ]; then
- exit 1
- fi
-
- ./loadit audioDemos
- if [ "$?" -ne 0 ]; then
- exit 1
- fi
-
- ./loadit GL
- if [ "$?" -ne 0 ]; then
- exit 1
- fi
-
- ./loadit haeberli
- if [ "$?" -ne 0 ]; then
- exit 1
- fi
-