all: flops 

flops:
	gcc -funroll-loops -Wall -g -lpthread flops.c -o flops
clean:
	rm -f flops
uninstall:
	rm -f /usr/bin/flops
install:
	cp flops /usr/bin/
