SHELL = /bin/sh

all:
	g++ dot_product_openmp.cpp -fopenmp -o openmp

clean:
	rm openmp openmp_job.*
