Skeleton implementation of text mesh for simple 1D cases.

This commit is contained in:
Jorge Gonzalez 2026-01-19 14:48:06 +01:00
commit 9f9bacca7c
6 changed files with 179 additions and 1 deletions

View file

@ -0,0 +1,7 @@
all: moduleMeshInputText.o moduleMeshOutputText.o
moduleMeshInputText.o: moduleMeshOutputText.o moduleMeshInputText.f90
$(FC) $(FCFLAGS) -c $(subst .o,.f90,$@) -o $(OBJDIR)/$@
%.o: %.f90
$(FC) $(FCFLAGS) -c $< -o $(OBJDIR)/$@