the start of a new adventure

This commit is contained in:
Tonton Th
2026-04-23 19:25:22 +02:00
parent 0f91f57beb
commit 622e9d6176
8 changed files with 180 additions and 1 deletions

19
Makefile Normal file
View File

@@ -0,0 +1,19 @@
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 $@
# -----------------------------------------------