#------------------------------------------------------------------------------ # Compilers information # FC: Fortran Compiler # CC: C Compiler # LD: Linker # FFLAGS : Fortran flags # CFLAGS : C Flags # LDFLAGS: Linker flags # COMPILE_LIB_NAME : Name of the compiled library file # INSTALL_LIB_NAME : Name of the installed library file #------------------------------------------------------------------------------ FC = ifort CC = icc LD = ifort FFLAGS=-fpic CFLAGS=-fpic LDFLAGS=-shared COMPILE_LIB_NAME=libirbem.$(OS).$(ENV).so INSTALL_LIB_NAME=libirbem.so