v1:
	gcc main.c -O0 -D SIZE=10000 -D V1=1 -o v1

v2:
	gcc main.c -O0 -D SIZE=10000 -D V2=1 -o v2

all: v1 v2
	time ./v1
	time ./v2

clean:
	rm v1 v2
