SHELL = /bin/sh

all:
	gcc matrix_vector_openmp.c -fopenmp -o matrix_vector_openmp

clean:
	rm matrix_vector_openmp openmp_job.*
