#
# setenv OMP_NUM_THREADS 4
# execution: dot
#
all: dot

CFLAGS = -qopenmp  ## -openmp
dot: dot.c
	cc -o dot dot.c ${CFLAGS}

clean:
	rm -f dot
