CC = mpicc

CFLAGS = -std=c11 -Wall -Wextra -Wpedantic

APPS = allreduce barrier comm hello init_thread isend reduce send sendrecv

all: $(APPS)

clean:
	$(RM) $(APPS)
