moving a module

This commit is contained in:
tTh
2023-05-07 23:46:45 +02:00
parent 5c4ff9133c
commit c47b99bf7d
3 changed files with 1 additions and 59 deletions

View File

@@ -4,17 +4,13 @@
GFOPT = -Wall -Wextra -g -time
all: essai displaykinds
all: displaykinds
# -----------------------------------------------------
mathstuff2.o: mathstuff2.f90 Makefile
gfortran $(GFOPT) -c $<
# -----------------------------------------------------
essai: essai.f90 Makefile mathstuff2.o
gfortran $(GFOPT) $< mathstuff2.o -o $@
displaykinds: displaykinds.f90 Makefile
gfortran $(GFOPT) $< -o $@