25 lines
384 B
Makefile
25 lines
384 B
Makefile
#
|
|
# * Fortraneries *
|
|
#
|
|
# Makefile for the general purpose moduls
|
|
#
|
|
|
|
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 trials.o spitpgm.o
|
|
gfortran $(GFOPT) $< spitpgm.o trials.o -o $@
|
|
|