#------------------------------------------------------------------------------ # 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 = gfortran CC = gcc LD = gfortran FFLAGS=-fpic -fno-second-underscore -std=legacy -ffixed-line-length-none -Wl,--add-stdcall-alias -fno-second-underscore -w -m64 CFLAGS=-fpic LDFLAGS=-shared COMPILE_LIB_NAME=libirbem.$(OS).$(ENV).dll INSTALL_LIB_NAME=libirbem.dll