main: csweep.c
	cc $< -o out
	./out

beautify: csweep.c csweep.h	
	sed -i "s:[\t ]*$$::g" $^
	astyle -n -A8 $^

clean:	beautify
	rm -f *.o out
