# !/bin/sh
#
# Script to make all the binaries for the SUN port of Sozobon C cross compiler
#
echo "Making hcc.ttp"
cd src/hcc
make -k
echo "Making jas.ttp"
cd ../jas
make -k
echo "Making sld.ttp"
cd ../ld
make -k
echo "Making tools"
cd ../tools
make -k
echo "Making top.ttp"
cd ../top
make -k

