CC = mpicc
CFLAGS = -O2 -g -Wall
LDFLAGS =

hello: hello.c
	$(CC) $(CFLAGS) hello.c -o hello

mac:
	# This declaration may be required to run on MacOS
	export PMIX_MCA_gds=hash


clean:
	rm -f *~
	rm -rf *.dSYM
	rm -f hello
