first bloubspace run done

This commit is contained in:
tth
2022-02-06 23:45:08 +01:00
parent 91f7a07990
commit c0c031f21a
12 changed files with 432 additions and 0 deletions

33
BloubWorld/Makefile Normal file
View File

@@ -0,0 +1,33 @@
all: genbloubs movebloubs exportbloubs
GFOPT = -Wall -Wextra -g -time
OBJS = bloubspace.o povstuff.o
# ------------------------------------------------------------
initial.blbs: genbloubs Makefile
./genbloubs $@ 1000
# ------------------------------------------------------------
bloubspace.o: bloubspace.f90 Makefile
gfortran $(GFOPT) -c $<
povstuff.o: povstuff.f90 Makefile
gfortran $(GFOPT) -c $<
# ------------------------------------------------------------
genbloubs: genbloubs.f90 Makefile $(OBJS)
gfortran $(GFOPT) $(OBJS) $< -o $@
movebloubs: movebloubs.f90 Makefile bloubspace.o
gfortran $(GFOPT) $(OBJS) $< -o $@
exportbloubs: exportbloubs.f90 Makefile bloubspace.o
gfortran $(GFOPT) $(OBJS) $< -o $@
# ------------------------------------------------------------