launch.a68k 289 B

12345678910111213141516171819
  1. #! /bin/sh
  2. #
  3. # Compile and install the A68K assembler
  4. #
  5. isbsd=`uname | grep "BSD"`
  6. if [ "$isbsd" = "" ]; then
  7. #Assume GNU make
  8. make=make
  9. else
  10. make=gmake
  11. fi
  12. echo Installing a68k assembler...
  13. cd ../sources/a68k/
  14. ${make} -e
  15. cp A68k $TIGCC/bin/a68k
  16. ${make} clean
  17. echo Done.