all: 
	gcc threading.c -o test -lpthread -lm
serial: 
	time ./test serial 64
parallel:
	time ./test parallel 6400
clean:
	rm test
