MPICC_PATH ?= mpicc
CC=$(MPICC_PATH)

BIN=mpi_ring mpi_multiring mpi_spawn test_mpi waitall waitany persistent mpi_ping allgather mpi_pthread

all: $(BIN)

test: all
	./run.sh

clean:
	rm -f $(BIN)
