SHELL = /bin/sh

all:
	gcc matrix_openmp.c -fopenmp -o matrix_openmp

clean:
	rm matrix_openmp openmp_job.*
