2022-05-23 12:23:21 +02:00
|
|
|
#
|
2022-10-28 21:53:57 +02:00
|
|
|
# Fortraneries by tTh - Random Stuff
|
2022-05-23 12:23:21 +02:00
|
|
|
#
|
|
|
|
|
2022-10-28 21:53:57 +02:00
|
|
|
GFOPT = -Wall -Wextra -g -time
|
|
|
|
|
2022-05-23 12:23:21 +02:00
|
|
|
all: essai displaykinds
|
|
|
|
|
|
|
|
# -----------------------------------------------------
|
|
|
|
|
2022-10-28 21:53:57 +02:00
|
|
|
mathstuff2.o: mathstuff2.f90 Makefile
|
|
|
|
gfortran $(GFOPT) -c $<
|
|
|
|
|
|
|
|
# -----------------------------------------------------
|
|
|
|
|
|
|
|
essai: essai.f90 Makefile mathstuff2.o
|
|
|
|
gfortran $(GFOPT) $< mathstuff2.o -o $@
|
2022-05-23 12:23:21 +02:00
|
|
|
|
|
|
|
displaykinds: displaykinds.f90 Makefile
|
2022-10-28 21:53:57 +02:00
|
|
|
gfortran $(GFOPT) $< -o $@
|
2022-05-23 12:23:21 +02:00
|
|
|
|
2022-10-28 21:53:57 +02:00
|
|
|
# -----------------------------------------------------
|