Fortraneries/Modules/Makefile

25 lines
384 B
Makefile
Raw Normal View History

2022-11-30 01:02:11 +01:00
#
# * Fortraneries *
#
# Makefile for the general purpose moduls
#
GFOPT = -Wall -Wextra -time -g
all: chkpixels
2022-11-30 01:02:11 +01:00
spitpgm.o: spitpgm.f90 Makefile
gfortran $(GFOPT) -c $< -o $@
2022-12-01 12:03:22 +01:00
trials.o: trials.f90 Makefile
gfortran $(GFOPT) -c $< -o $@
2022-12-01 12:03:22 +01:00
#
# programmes de testouille
#
chkpixels: chkpixels.f90 Makefile trials.o spitpgm.o
gfortran $(GFOPT) $< spitpgm.o trials.o -o $@
2022-12-01 12:03:22 +01:00