MPICC = mpicc
CFLAGS += -g
all: example
example: example.c
	$(MPICC) $(CFLAGS) $(LDFLAGS) $? $(LDLIBS) -o $@
clean:
	rm -f example
