launch.ld-tigcc 185 B

1234567891011
  1. #! /bin/sh
  2. #
  3. # Compile and install the TIGCC linker
  4. #
  5. echo Installing TIGCC linker...
  6. cd ../sources/ld-tigcc
  7. make -e
  8. cp ld-tigcc $TIGCC/bin
  9. cp ar-tigcc $TIGCC/bin
  10. make clean
  11. echo Done.