include ../../make.inc

.SUFFIXES : .mod .o .F90

test:   $(DQMCLIB) test.F90
	$(FC) $(FLAGS) -o test test.F90 $(LIB) 

cf:     $(DQMCLIB) create_file.F90
	$(FC) $(FLAGS) create_file.F90 $(LIB) 

rect:   rect_neigh.f90
	$(FC) -o rect rect_neigh.f90 

clean:
	rm -f test

