2022-11-30 11:02:11 +11:00
|
|
|
#
|
|
|
|
# * Fortraneries *
|
|
|
|
#
|
|
|
|
# Makefile for the general purpose moduls
|
|
|
|
#
|
|
|
|
|
2023-01-07 20:40:29 +11:00
|
|
|
GFOPT = -Wall -Wextra -time -g
|
2022-12-06 11:49:45 +11:00
|
|
|
|
|
|
|
all: chkpixels
|
|
|
|
|
2022-12-17 05:26:54 +11:00
|
|
|
# -----------------------------------------------
|
2022-11-30 11:02:11 +11:00
|
|
|
|
|
|
|
spitpgm.o: spitpgm.f90 Makefile
|
|
|
|
gfortran $(GFOPT) -c $< -o $@
|
2022-12-01 22:03:22 +11:00
|
|
|
|
2022-12-17 05:26:54 +11:00
|
|
|
pixrgb.o: pixrgb.f90 Makefile
|
|
|
|
gfortran $(GFOPT) -c $< -o $@
|
|
|
|
|
2022-12-06 11:49:45 +11:00
|
|
|
trials.o: trials.f90 Makefile
|
|
|
|
gfortran $(GFOPT) -c $< -o $@
|
|
|
|
|
2022-12-01 22:03:22 +11:00
|
|
|
#
|
|
|
|
# programmes de testouille
|
|
|
|
#
|
2022-12-17 05:26:54 +11:00
|
|
|
OBJS = trials.o spitpgm.o pixrgb.o
|
2022-12-01 22:03:22 +11:00
|
|
|
|
2022-12-17 05:26:54 +11:00
|
|
|
chkpixels: chkpixels.f90 Makefile $(OBJS)
|
|
|
|
gfortran $(GFOPT) $< $(OBJS) -o $@
|
2022-12-01 22:03:22 +11:00
|
|
|
|