Minor improvement in mesh structure to allow different imput formats.

Organization of meshes per geometry type.
This commit is contained in:
Jorge Gonzalez 2020-12-08 18:28:24 +01:00
commit 3b125d0952
14 changed files with 158 additions and 100 deletions

11
src/modules/mesh/makefile Normal file
View file

@ -0,0 +1,11 @@
all: moduleMesh.o Cyl.o 1DCart.o
Cyl.o:
$(MAKE) -C Cyl all
1DCart.o:
$(MAKE) -C 1DCart all
moduleMesh.o: moduleMesh.f95
$(FC) $(FCFLAGS) -c $(subst .o,.f95,$@) -o $(OBJDIR)/$@