first dry run

This commit is contained in:
tTh
2022-11-28 13:47:44 +01:00
parent f81c5675fa
commit f16d6e6163
5 changed files with 101 additions and 49 deletions

View File

@@ -1,8 +1,15 @@
#
# Fortraneries by tTh - Gravity Field
# Fortraneries by tTh - Gravity Field
#
GFOPT = -Wall -Wextra -g -time
essai: essai.f90 Makefile
gfortran $(GFOPT) $< -o $@
all: essai
realfield.o: realfield.f90 Makefile
gfortran $(GFOPT) -c $<
essai: essai.f90 Makefile realfield.o
gfortran $(GFOPT) $< realfield.o -o $@