#
# export OMP_NUM_THREADS=4
# execution: hello
#
all: hello

CFLAGS	= -qopenmp ## -openmp

hello: omp_hello.c superlu_timer.c
	cc -o hello omp_hello.c superlu_timer.c ${CFLAGS}

clean:
	rm -f hello
