run: bits.c
	gcc -Wall -Wextra bits.c -o bits
	./bits

clean:
	rm -f bits

.PHONY: run clean
