MPICXX=mpicxx
NPROCS=4

pi: pi_mpi.cpp Makefile
	${MPICXX} -o pi_mpi pi_mpi.cpp

run:
	mpirun -n ${NPROCS} ./pi_mpi
	
clean:
	rm pi_mpi
	