Fix missing dependencies in EIG Makefiles

This commit is contained in:
Sylvain Tricot 2020-12-02 08:49:06 +01:00
parent 70eef0af8a
commit e801582beb
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ renormalization_src := $(wildcard renormalization/*.f)
eig_common_src := $(wildcard eig/common/*.f) eig_common_src := $(wildcard eig/common/*.f)
eig_mi_src := $(wildcard eig/mi/*.f) eig_mi_src := $(wildcard eig/mi/*.f)
SRCS = $(memalloc_src) $(cluster_gen_src) $(common_sub_src) $(renormalization_src) $(eig_mi_src) SRCS = $(memalloc_src) $(cluster_gen_src) $(common_sub_src) $(renormalization_src) $(eig_common_src) $(eig_mi_src)
MAIN_F = eig/mi/main.f MAIN_F = eig/mi/main.f
SO = _eig_mi.so SO = _eig_mi.so

View File

@ -5,7 +5,7 @@ renormalization_src := $(wildcard renormalization/*.f)
eig_common_src := $(wildcard eig/common/*.f) eig_common_src := $(wildcard eig/common/*.f)
eig_pw_src := $(wildcard eig/pw/*.f) eig_pw_src := $(wildcard eig/pw/*.f)
SRCS = $(memalloc_src) $(cluster_gen_src) $(common_sub_src) $(renormalization_src) $(eig_pw_src) SRCS = $(memalloc_src) $(cluster_gen_src) $(common_sub_src) $(renormalization_src) $(eig_common_src) $(eig_pw_src)
MAIN_F = eig/pw/main.f MAIN_F = eig/pw/main.f
SO = _eig_pw.so SO = _eig_pw.so