#! /bin/sh

for i in *.c
do
	if [ "$i" != "trans.c" ]
	then
		./compile $i
	fi
done
