big commit before big mess

This commit is contained in:
tth
2022-10-28 21:53:57 +02:00
parent 7cde5e3b6b
commit 23f3eeb032
17 changed files with 225 additions and 28 deletions

View File

@@ -1,14 +1,22 @@
#
# Fortraneries by tTh -
# Fortraneries by tTh - Random Stuff
#
GFOPT = -Wall -Wextra -g -time
all: essai displaykinds
# -----------------------------------------------------
essai: essai.f90 Makefile
gfortran -Wall $< -o $@
mathstuff2.o: mathstuff2.f90 Makefile
gfortran $(GFOPT) -c $<
# -----------------------------------------------------
essai: essai.f90 Makefile mathstuff2.o
gfortran $(GFOPT) $< mathstuff2.o -o $@
displaykinds: displaykinds.f90 Makefile
gfortran -Wall $< -o $@
gfortran $(GFOPT) $< -o $@
# -----------------------------------------------------