PROG=hello

debug:
	icc -Wall -g -openmp ${PROG}.c -o ${PROG}.exe

release:
	icc -Wall -g -openmp -O3 ${PROG}.c -o ${PROG}.exe

run go:
	./${PROG}.exe

clean:
	rm -f ${PROG}.exe ${PROG}.o *~
