include ../../make.inc

.SUFFIXES : .mod .o .F90

#
# Make sure the base compiler of mpif90 is the same as $(FC)
#
mpi:    $(DQMCLIB) mpi.F90
	mpif90  -funroll-all-loops -O3 $(PRG_FLAGS) -I$(HOME)/SRC \
	-Bstatic -o testmpi mpi.F90 $(LIB) 

clean:
	rm -f testmpi

