add rotation, need more tests

This commit is contained in:
Tonton Th
2026-05-21 16:23:06 +02:00
parent 3d4fce2ed0
commit 0bc55225fc
4 changed files with 112 additions and 21 deletions

View File

@@ -7,8 +7,11 @@ all: testbed
genplotting.o: genplotting.f90 Makefile
gfortran -Wall -c $<
testbed: testbed.f90 Makefile genplotting.o
gfortran -Wall $< genplotting.o -o $@
genp_tests.o: genp_tests.f90 genplotting.o Makefile
gfortran -Wall -c $<
testbed: testbed.f90 Makefile genp_tests.o genplotting.o
gfortran -Wall $< genplotting.o genp_tests.o -o $@
# -----------------------------------------------