vlaplex/makefile
2025-04-03 10:35:23 +02:00

15 lines
661 B
Makefile

all:
gfortran moduleConstantParameters.f90 -c -lopenblas -Ofast -fopenmp -Wall
gfortran moduleReferenceValues.f90 -c -lopenblas -Ofast -fopenmp -Wall
gfortran moduleOutput.f90 -c -lopenblas -Ofast -fopenmp -Wall
gfortran moduleTableBC.f90 -c -lopenblas -Ofast -fopenmp -Wall
gfortran moduleTableTtoZ.f90 -c -lopenblas -Ofast -fopenmp -Wall
gfortran moduleTableTtoZne.f90 -c -lopenblas -Ofast -fopenmp -Wall
gfortran vlaplex.f90 moduleConstantParameters.o moduleReferenceValues.o moduleOutput.o moduleTableBC.o moduleTableTtoZ.o moduleTableTtoZne.o -lopenblas -Ofast -fopenmp -Wall -o vlaplex
clean:
rm -f vlaplex
rm -f *.mod
rm -f *.smod
rm -f *.o