trials.f90: buffering is good for the planet

This commit is contained in:
tTh
2022-12-06 01:49:45 +01:00
parent 5b6df523fc
commit cc71a55ccb
5 changed files with 84 additions and 14 deletions

View File

@@ -4,15 +4,21 @@
# Makefile for the general purpose moduls
#
GFOPT = -Wall -Wextra -time -g -O
GFOPT = -Wall -Wextra -time -g
all: chkpixels
spitpgm.o: spitpgm.f90 Makefile
gfortran $(GFOPT) -c $< -o $@
trials.o: trials.f90 Makefile
gfortran $(GFOPT) -c $< -o $@
#
# programmes de testouille
#
chkpixels: chkpixels.f90 Makefile spitpgm.o
gfortran $(GFOPT) $< spitpgm.o -o $@
chkpixels: chkpixels.f90 Makefile trials.o spitpgm.o
gfortran $(GFOPT) $< spitpgm.o trials.o -o $@