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) 
	$(FC) $(FLAGS) -I../../SRC -o testmpi mpi.F90 ../../$(DQMCLIB) $(LIB) 

clean:
	rm -f testmpi

