trials.f90: buffering is good for the planet
This commit is contained in:
@@ -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 $@
|
||||
|
||||
|
||||
Reference in New Issue
Block a user