# Sample script to compile totfock.f
# As it relies upon the specific location of the BLAS library (MKL), 
# modification is necessary.
# It is not known if compilers other than Intel will ever work for this code!
# D. G. Fedorov
# RICS, AIST, Japan

ifort -O3 -assume buffered_io -assume byterecl -cm -w -c totfock.f
ifort -o totfock.x -static -L/usr/global/opt/intel/mkl/10.0.4.023/lib/32 -lmkl_ia32 -lguide -lpthread -Vaxlib totfock.o
