more useless work done

This commit is contained in:
tTh
2023-05-07 23:48:37 +02:00
parent c47b99bf7d
commit c2d6abdedb
5 changed files with 98 additions and 10 deletions

View File

@@ -1,29 +1,44 @@
#
# * Fortraneries *
# * Fortraneries from tTh *
#
# Makefile for the general purpose moduls
#
GFOPT = -Wall -Wextra -time -g
GFOPT = -Wall -Wextra -g -I.
all: chkpixels
all: chkpixels t
# -----------------------------------------------
spitpgm.o: spitpgm.f90 Makefile
gfortran $(GFOPT) -c $< -o $@
gfortran $(GFOPT) -c $<
pixrgb.o: pixrgb.f90 Makefile
gfortran $(GFOPT) -c $< -o $@
gfortran $(GFOPT) -c $<
centermag.o: centermag.f90 Makefile
gfortran $(GFOPT) -c $<
dummy.o: dummy.f90 Makefile
gfortran $(GFOPT) -c $<
trials.o: trials.f90 Makefile
gfortran $(GFOPT) -c $< -o $@
gfortran $(GFOPT) -c $<
mathstuff2.o: mathstuff2.f90 Makefile
gfortran $(GFOPT) -c $<
#
# programmes de testouille
#
OBJS = trials.o spitpgm.o pixrgb.o
OBJS = trials.o spitpgm.o pixrgb.o centermag.o dummy.o \
mathstuff2.o
chkpixels: chkpixels.f90 Makefile $(OBJS)
gfortran $(GFOPT) $< $(OBJS) -o $@
t: t.f90 Makefile $(OBJS)
gfortran $(GFOPT) $< $(OBJS) -o $@
trnd: trnd.f90 Makefile $(OBJS)
gfortran $(GFOPT) $< $(OBJS) -o $@