Skip to content

Commit e32ce3b

Browse files
committed
Merge branch 'develop'
2 parents 614c097 + 2a74838 commit e32ce3b

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

HPhiconfig.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ echo " HPhiconfig.sh will be removed in the future release,"
55
echo " and only CMake will be supported."
66
echo "######################################################"
77
echo ""
8+
echo -n " Really continue ? yes/no [no] : "
9+
read yesno
10+
if [ -z ${yesno} ] || [ ! ${yesno} = "yes" ]; then
11+
exit
12+
fi
13+
814
if [ -z ${1} ] || [ ${1} = "help" ]; then
915
echo ""
1016
echo "Usage:"

src/makefile_src

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ FileIO.o \
1919
FirstMultiply.o \
2020
HPhiMain.o \
2121
HPhiTrans.o \
22+
input.o \
2223
Lanczos_EigenValue.o \
2324
Lanczos_EigenVector.o \
2425
LogMessage.o \
@@ -110,6 +111,7 @@ include/expec_cisajscktaltdc.h \
110111
include/expec_totalspin.h \
111112
include/expec_energy_flct.h \
112113
include/global.h \
114+
include/input.h \
113115
include/lapack_diag.h \
114116
include/log.h \
115117
include/makeHam.h \

0 commit comments

Comments
 (0)