Skip to content

Commit

Permalink
Initial import of the code to GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
Filippo Lipparini committed Jul 22, 2016
1 parent 6caad37 commit bb773f8
Show file tree
Hide file tree
Showing 9 changed files with 37,647 additions and 0 deletions.
28,477 changes: 28,477 additions & 0 deletions Input.txt

Large diffs are not rendered by default.

23 changes: 23 additions & 0 deletions Makefile
@@ -0,0 +1,23 @@
#
# Makefile for ddCOSMO
#
RunF77 = ifort
FFLAGS = -O3 -xHost -qopenmp
#RunF77 = gfortran
#FFLAGS = -O3 -march=native -fopenmp
#RunF77 = pgfortran
#FFLAGS = -O3 -mp

MODS = ddcosmo.o
OBJS = mkrhs.o llgnew.o main.o ddcosmo.o forces.o efld.o
#
all: $(MODS) $(OBJS)
$(RunF77) $(FFLAGS) -o main.exe $(OBJS)
#
%.o: %.f
$(RunF77) $(FFLAGS) -c $*.f
%.o: %.f90
$(RunF77) $(FFLAGS) -c $*.f90
#
clean:
rm -fr $(OBJS) *.exe *.mod

0 comments on commit bb773f8

Please sign in to comment.