using my module collection

This commit is contained in:
tTh 2024-01-07 05:58:05 +01:00
parent f95dc7ed2a
commit d040b305f8
2 changed files with 4 additions and 3 deletions

View File

@ -6,8 +6,9 @@ all: genbloubs movebloubs exportbloubs mergebloubs \
# ------------------------------------------------------------ # ------------------------------------------------------------
GFOPT = -Wall -Wextra -g -time GFOPT = -Wall -Wextra -g -time -I../Modules
OBJS = bloubspace.o povstuff.o mathstuff.o OBJS = bloubspace.o povstuff.o mathstuff.o
MYLIB = '../Modules/libtth90modules.a'
# ------------------------------------------------------------ # ------------------------------------------------------------
@ -42,7 +43,7 @@ mathstuff.o: mathstuff.f90 Makefile
# ------------------------------------------------------------ # ------------------------------------------------------------
genbloubs: genbloubs.f90 Makefile $(OBJS) genbloubs: genbloubs.f90 Makefile $(OBJS)
gfortran $(GFOPT) $< $(OBJS) -o $@ gfortran $(GFOPT) $< $(OBJS) $(MYLIB) -o $@
movebloubs: movebloubs.f90 Makefile $(OBJS) movebloubs: movebloubs.f90 Makefile $(OBJS)
gfortran $(GFOPT) $< $(OBJS) -o $@ gfortran $(GFOPT) $< $(OBJS) -o $@

View File

@ -1,7 +1,7 @@
program genbloubs program genbloubs
use bloubspace use bloubspace
use mathstuff use mathstuff2
integer :: nbbloubs integer :: nbbloubs
integer :: i integer :: i