DIR = src
DEST = theDeadlySoccerBall

default:
	make -C ${DIR}
	mv ${DIR}/${DEST} .

clean:
	rm -f ${DEST}

