adding a sandbox

This commit is contained in:
tth 2022-04-11 22:23:01 +02:00
parent e71084260a
commit 85c12a1064
3 changed files with 16 additions and 2 deletions

View File

@ -5,9 +5,11 @@ lorentz
voxelize
evolvopick
henon
essai
WS/*.dat
WS/*.txt
WS/*.inc
*.pgm
*.gif

View File

@ -1,7 +1,7 @@
all: voxelize evolvopick pickover julia lorentz
all: voxelize evolvopick pickover julia lorentz essai
GFOPT = -Wall -Wextra -time -O -Imods/
GFOPT = -Wall -Wextra -time -g -O -Imods/
# ---------------------------------------------
@ -18,6 +18,9 @@ OBJS = mods/spitpgm.o mods/points3d.o fraktals.o
# ---------------------------------------------
essai: essai.f90 Makefile $(OBJS)
gfortran $(GFOPT) $< $(OBJS) -o $@
henon: henon.f90 Makefile $(OBJS)
gfortran $(GFOPT) $< $(OBJS) -o $@

9
Fraktalism/essai.f90 Normal file
View File

@ -0,0 +1,9 @@
!-----------------------------------------------------
program essai
use spitpgm
implicit none
!-----------------------------------------------------
end program