Fix missing dependencies in EIG Makefiles
This commit is contained in:
parent
70eef0af8a
commit
e801582beb
|
@ -5,7 +5,7 @@ renormalization_src := $(wildcard renormalization/*.f)
|
|||
eig_common_src := $(wildcard eig/common/*.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
|
||||
SO = _eig_mi.so
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ renormalization_src := $(wildcard renormalization/*.f)
|
|||
eig_common_src := $(wildcard eig/common/*.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
|
||||
SO = _eig_pw.so
|
||||
|
||||
|
|
Loading…
Reference in New Issue