#!/bin/sh
make -C ../tools
./fetch
./makeeterm
./maketerm
if [ $# -eq 0 ]; then
	exec make fetched
else
	exec make $*
fi

