Files
GenPlotting90/Makefile
2026-04-23 19:25:22 +02:00

20 lines
429 B
Makefile

all: spirale.png
# -----------------------------------------------
genplotting.o: genplotting.f90 Makefile
gfortran -Wall -c $<
# -----------------------------------------------
spirale: spirale.f90 Makefile genplotting.o
gfortran -Wall $< genplotting.o -o $@
spirale.png: spirale Makefile
./spirale > s.scratch
genplot2 -s 512x512 s.scratch a.tga
convert a.tga $@
# -----------------------------------------------