all: crc

crc: crc_32.c Makefile
	gcc -static crc_32.c -O3 -o crc 

clean:
	rm -rf crc output*
