Input file

This should not have been a single commit.

Now we have input files.

Also, I've restructured the code and renamed modules.
This commit is contained in:
Jorge Gonzalez 2025-04-10 11:56:05 +02:00
commit 50b4258c8f
22 changed files with 446 additions and 251 deletions

16
src/makefile Normal file
View file

@ -0,0 +1,16 @@
OBJECTS = $(OBJDIR)/constantParameters.o \
$(OBJDIR)/input.o \
$(OBJDIR)/output.o \
$(OBJDIR)/referenceValues.o \
$(OBJDIR)/tableBoundary.o \
$(OBJDIR)/tableTNZ.o
all: $(OUTPUT)
$(OUTPUT): modules.o $(OUTPUT).f90
$(FC) $(FCFLAGS) -o $(OBJDIR)/$(OUTPUT).o -c $(OUTPUT).f90
$(FC) $(FCFLAGS) -o $(TOPDIR)/$(OUTPUT) $(OBJECTS) $(OBJDIR)/$(OUTPUT).o -lopenblas
modules.o:
$(MAKE) -C modules all