all: spxcrunch

spxcrunch:
	gcc -Wall -g -lm -O2 spxcrunch.c -o spxcrunch
clean:
	rm -f spxcrunch


