Creating and linking the MD_suite fortran library

Creating the library from MD_suite

For the MD_suite.f90 file inside the mdwc/MD_suite_fortran_lib directory. First create the objects by compiling using gfortran

gfortran -c MD_suite.f90

This is going to create MD_suite.o

Then use the ar command to create a library named libMD_suite.a

ar crv libMD_suite.a MD_suite.o