home *** CD-ROM | disk | FTP | other *** search
- #! /bin/csh
- #
- # Copyright (C) 1991 Texas Instruments Incorporated.
- #
- # Permission is granted to any individual or institution to use, copy, modify,
- # and distribute this software, provided that this complete copyright and
- # permission notice is maintained, intact, in all copies and supporting
- # documentation.
- #
- # Texas Instruments Incorporated provides this software "as is" without
- # express or implied warranty.
- #
-
- set ICE = `pwd`
-
- echo "mkdir bin; mkdir include; mkdir include/cool; mkdir lib; mkdir lib/sparc;"
- (cd $ICE; mkdir bin; mkdir include; mkdir include/cool; \
- mkdir lib; mkdir lib/sparc;)
-
- echo "cd $ICE/pisces/pimake; make -f bootstrap.sparc install clean TOP=$ICE;"
- (cd $ICE/pisces/pimake; make -f bootstrap.sparc install clean TOP=$ICE;)
-
- echo "cd $ICE/pisces/cpp; make -f bootstrap.sparc install clean TOP=$ICE"
- (cd $ICE/pisces/cpp; make -f bootstrap.sparc install clean TOP=$ICE;)
-
-