first real run, make a gif89a, need more tweaking

This commit is contained in:
tTh
2022-11-30 02:52:16 +01:00
parent fa8b28daae
commit b68207631c
5 changed files with 86 additions and 37 deletions

View File

@@ -2,7 +2,8 @@
# Fortraneries by tTh - Gravity Field
#
GFOPT = -Wall -Wextra -g -time
GFOPT = -Wall -Wextra -g -time -pg -I../Modules
MODOBJ = '../Modules/spitpgm.o'
all: essai
@@ -10,6 +11,6 @@ realfield.o: realfield.f90 Makefile
gfortran $(GFOPT) -c $<
essai: essai.f90 Makefile realfield.o
gfortran $(GFOPT) $< realfield.o -o $@
gfortran $(GFOPT) $< realfield.o $(MODOBJ) -o $@