Initial commit with working atom and lattice type parsing

This commit is contained in:
Alex Selimov 2019-09-25 20:11:10 -04:00
parent 552dd3cada
commit 624886bbe9
9 changed files with 350 additions and 1 deletions

18
src/Makefile Normal file
View file

@ -0,0 +1,18 @@
CC=ifort
FC=ifort
FFLAGS=-c -mcmodel=large -debug -O0 -stand f08 -fpe0 -traceback -check bounds,uninit -warn all -implicitnone
OBJECTS= main.o elements.o lattice.o subroutines.o precision_comm_module.o
.SUFFIXES:
.SUFFIXES: .c .f .f90 .F90 .o
builder: $(OBJECTS)
$(FC) $(OBJECTS) -o $@
.f90.o:
$(FC) $(FFLAGS) $<
main.o lattice.o elements.o region.o subroutines.o : precision_comm_module.o
lattice.o : subroutines.o
main.o : elements.o lattice.o region.o