renaming a non-working software

This commit is contained in:
tTh 2023-01-03 01:19:39 +01:00
parent da56a6d0c0
commit 0e73e47272
3 changed files with 37 additions and 6 deletions

View File

@ -1,7 +1,7 @@
mkjulia
pickover
lorentz
mklorentz
mkmandel
voxelize
evolvopick

View File

@ -1,6 +1,6 @@
all: voxelize evolvopick pickover mkjulia lorentz essai \
mkmandel
all: essai voxelize evolvopick pickover \
mkjulia mklorentz mkmandel
GFOPT = -Wall -Wextra -time -g -Imods/ -I../Modules
@ -53,7 +53,7 @@ evolvopick: evolvopick.f90 Makefile $(OBJDEP)
voxelize: voxelize.f90 Makefile $(OBJDEP)
gfortran $(GFOPT) $< $(OBJS) -o $@
lorentz: lorentz.f90 Makefile $(OBJDEP)
mklorentz: mklorentz.f90 Makefile $(OBJDEP)
gfortran $(GFOPT) $< $(OBJS) -o $@
mkmandel: mkmandel.f90 Makefile $(OBJDEP)
@ -61,8 +61,8 @@ mkmandel: mkmandel.f90 Makefile $(OBJDEP)
# ---------------------------------------------
lorentz.pgm: lorentz Makefile
./lorentz $@ > /dev/null
lorentz.pgm: mklorentz Makefile
./mklorentz $@ > /dev/null
pickover.pgm: pickover Makefile
./pickover $@ > /dev/null

31
Fraktalism/mklorentz.f90 Normal file
View File

@ -0,0 +1,31 @@
!
! this is the main programm
!
!-----------------------------------------------------
program lorentz
use spitpgm
use fraktals
implicit none
integer, dimension(800, 600) :: picz
integer :: argc
character(200) :: filename
argc = IARGC()
if (1 .NE. argc) then
STOP ": MKLORENTZ NEED A FILENAME !"
endif
call getarg(1, filename)
write (0, "(A)") "Mk Lorentz -> "//trim(filename)
call lorentz_0(picz, 50000)
call spit_as_pgm_8(picz, trim(filename))
end program
!-----------------------------------------------------