all : bo.tgz

bo : bo.c
	gcc -Wall bo.c -o bo

bo.tgz : bo Makefile
	tar -czvf bo.tgz bo.c Makefile
