all:
	cc -O -o xspaceball xspaceball.c -lX11 -lm
tar:
	rm -rf ../xspaceball
	mkdir ../xspaceball
	cp xspaceball.c ../xspaceball
	cp README ../xspaceball
	cp Makefile ../xspaceball
	cd ..; tar cvf xspaceball.tar xspaceball
	rm -rf ../xspaceball
	mv ../xspaceball.tar .
	rm -f xspaceball.tar.Z
	gzip xspaceball.tar
