all: dot

CC	= cc   ## mpicc

dot: dot.o
	${CC} -o dot dot.c

clean:
	rm -f dot
