# test CC = mpicc CFLAGS = -g SOURCES = prime.c all: prime prime: $(CC) $(CFLAGS) -o prime $(SOURCES) -lm clean: -rm -f prime prime.o