#!/bin/sh
# --------------------------------------------------------------------
# This batch script will loop through a list of all pctools and
# try to execute buildone for them.
#
# Due to memory restriction we build them in more than one loop
# I know this can be fixed by increasing the shell memory but
# I don't want to "confuse" future users.
# --------------------------------------------------------------------
for a in ttbin2hex ttbin2oth ;
do
./buildone $a
done

for a in ttextract ttstrip ttarchive ;
do
./buildone $a
done

for a in ttpack ttunpack ttdos2ebk ;
do
./buildone $a
done

for a in tthelp ttinfo ttebkgen ;
do
./buildone $a
done

for a in ttchecksum ttbin2bin ttsplit ttppggen ;
do
./buildone $a
done

for a in tttiler ttunebk ttunarchive tthex2bin ttsetname;
do
./buildone $a
done
