all:
	@echo "Compiling [1;34mObstruct[0;34m.[1;34mC[1;32m....[0;37m"
	@gcc -o obstruct obstruct.c
	@echo "Compilation Complete."
clean:
	@echo "Cleaning house[1;32m....[0;37m"
	@rm -rf obstruct
	@echo "There dont that feel better."
