This commit is contained in:
tth 2022-02-17 10:51:56 +01:00
parent c07b5f163f
commit aa73934c72
3 changed files with 31 additions and 3 deletions

View File

@ -5,6 +5,7 @@ nbimg.inc
*.gif
*.blbs
*.mp4
*.lst
frames/*
log.*
@ -12,4 +13,6 @@ exportbloubs
genbloubs
movebloubs
mergebloubs
essai
core

View File

@ -2,25 +2,34 @@
all: genbloubs movebloubs exportbloubs mergebloubs
# ------------------------------------------------------------
GFOPT = -Wall -Wextra -g -time
OBJS = bloubspace.o povstuff.o mathstuff.o
# ------------------------------------------------------------
essai: essai.f90 Makefile mathstuff.o
gfortran $(GFOPT) $< mathstuff.o -o $@
# ------------------------------------------------------------
initial.blbs: genbloubs Makefile
./genbloubs $@ 1000
in.blbs: genbloubs Makefile
./genbloubs $@ 300
./genbloubs $@ 30000
out.blbs: in.blbs mergebloubs Makefile
./mergebloubs $< $@
out.lst: out.blbs exportbloubs Makefile
./exportbloubs $< > $@
# ------------------------------------------------------------
bloubspace.o: bloubspace.f90 Makefile
gfortran $(GFOPT) -c $<
gfortran $(GFOPT) -pg -c $<
povstuff.o: povstuff.f90 Makefile
gfortran $(GFOPT) -c $<
@ -40,7 +49,7 @@ exportbloubs: exportbloubs.f90 Makefile $(OBJS)
gfortran $(GFOPT) $< $(OBJS) -o $@
mergebloubs: mergebloubs.f90 Makefile $(OBJS)
gfortran $(GFOPT) $< $(OBJS) -o $@
gfortran $(GFOPT) $< $(OBJS) -o $@
# ------------------------------------------------------------

16
BloubWorld/essai.f90 Normal file
View File

@ -0,0 +1,16 @@
program essai
use mathstuff
implicit none
integer :: foo
real :: quux
call init_random_seed()
do foo=1, 200000
quux = rand()
print *, foo, quux
enddo
end program