Fortraneries/Modules/Makefile

19 lines
290 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 -O
spitpgm.o: spitpgm.f90 Makefile
gfortran $(GFOPT) -c $< -o $@
2022-12-01 12:03:22 +01:00
#
# programmes de testouille
#
chkpixels: chkpixels.f90 Makefile spitpgm.o
gfortran $(GFOPT) $< spitpgm.o -o $@