CC=mpicc
CFLAGS+=-std=c99 -O2
TARGETS=meinhardt_seq meinhardt_mpi
all: ${TARGETS}
clean:
	-rm -f ${TARGETS} data/*.txt data/*.txt.png
