home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / language / sozosun / makeall < prev    next >
Text File  |  1993-10-23  |  295b  |  21 lines

  1. # !/bin/sh
  2. #
  3. # Script to make all the binaries for the SUN port of Sozobon C cross compiler
  4. #
  5. echo "Making hcc.ttp"
  6. cd src/hcc
  7. make -k
  8. echo "Making jas.ttp"
  9. cd ../jas
  10. make -k
  11. echo "Making sld.ttp"
  12. cd ../ld
  13. make -k
  14. echo "Making tools"
  15. cd ../tools
  16. make -k
  17. echo "Making top.ttp"
  18. cd ../top
  19. make -k
  20.  
  21.