From 24f1f2af87f63d9abd382e51b2e77e4396f8b390 Mon Sep 17 00:00:00 2001 From: dilkins Date: Tue, 16 Oct 2018 12:09:12 +0200 Subject: [PATCH] Changes to makefile and ljpolymer header --- drivers/LJPolymer.f90 | 6 +++--- drivers/Makefile | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/LJPolymer.f90 b/drivers/LJPolymer.f90 index c3000e96..17b81183 100644 --- a/drivers/LJPolymer.f90 +++ b/drivers/LJPolymer.f90 @@ -1,7 +1,7 @@ -! This performs the calculations necessary to run a Lennard-Jones (LJ) -! simulation. +! This performs the calculations necessary to run a Lennard-Jones +! polymer simulation. ! -! Copyright (C) 2013, Joshua More and Michele Ceriotti +! Copyright (C) 2017, Mahdi Hijazi, David M. Wilkins and Michele Ceriotti ! ! Permission is hereby granted, free of charge, to any person obtaining ! a copy of this software and associated documentation files (the diff --git a/drivers/Makefile b/drivers/Makefile index c71421ba..83775f00 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -25,8 +25,8 @@ FLAGS=-g -O3 -Wall CFLAGS=$(FLAGS) FFLAGS=$(FLAGS) -ffree-line-length-none -ffixed-line-length-none -Wno-maybe-uninitialized -MODULES=distance.f90 LJ.f90 SG.f90 pes/pswater.f90 pes/LEPS.f90 LJPolymer.f90 -PES=pes/zundel.f pes/morse.f pes/qtip4pf.f pes/efield.f90 pes/eckart.f90 pes/utility.f pes/ch52008.f +MODULES=distance.f90 LJ.f90 SG.f90 pes/pswater.f90 pes/LEPS.f90 LJPolymer.f90 pes/efield.f90 pes/eckart.f90 +PES=pes/zundel.f pes/morse.f pes/qtip4pf.f pes/utility.f pes/ch52008.f OBJECTS=$(MODULES:%.f90=%.o) $(PES:%.f=%.o) FC=gfortran CC=gcc