Install_step_4 205 B

12345678910
  1. #!/bin/sh
  2. #
  3. # Install the TIGCC Tools Suite
  4. #
  5. echo TIGCC script: compiling and installing the 'TIGCC Tools Suite'
  6. cd ../tt/;
  7. ./makelinux.sh
  8. cp -Rf linuxbin/* $TIGCC/bin
  9. rm -Rf linuxbin linuxsrc
  10. echo Done.