dotproduct: dotproduct.c
	cc -O3 -o dotproduct dotproduct.c -march=native
test:dotproduct
	./dotproduct

clean:
	rm -r -f dotproduct
