-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure
executable file
·74 lines (63 loc) · 2.21 KB
/
configure
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/bin/bash
#
# Copyright (C) 2001-2016 Quantum ESPRESSO group
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License. See the file `License' in the root directory
# of the present distribution.
#
#
# This script is a simple wrapper calling the autoconf configuration
# script (configure) in install/
# Dependencies may be also directly generated
#
# Courtesy of A. Ferretti and G. Bussi
# Modified by F. Spiga
#
#================================================================
#
MANUAL=" Usage
configure [-h, --help] [<conf_flags>]
-h, --help print this manual
<conf_flags> these flags will be passed to
the autoconf configure
After configuration, the make.sys file will created in the
QE home (current) directory
---------------------------------------------------------------
Manual from autoconf configure :
---------------------------------------------------------------
"
#
#================================================================
#
# run from directory where this script is
auxdir=`echo $0 | sed 's/\(.*\)\/.*/\1/'` # extract pathname
if [ "$auxdir" != "configure" ] ; then cd $auxdir ; fi
#
# detect the simplest cases
#
case $1 in
("-h" | "--help" ) echo "$MANUAL" ; ./install/configure --help ; exit 0 ;;
esac
# run the autoconf configure with the
# given cong_flags
#
test -e ./install/make.sys && rm ./install/make.sys
test -e ./install/configure.msg && rm ./install/configure.msg
#test -e ./install/Makefile && rm ./install/Makefile
# SAFEGUARD: if you run configure without clean everything first there
# are chances that something goes wrong. Forcing veryclean then.
if [[ (-e make.sys) && (-e Makefile) && !($@ =~ "--help") ]] ; then
make -f Makefile veryclean
fi
./install/configure "$@"
# copy make.sys in the home dir
# and final clean up
#
test -e ./install/make.sys && mv ./install/make.sys .
test -e config.log && mv config.log ./install/
test -e config.status && mv config.status ./install/
test -e configure.msg && mv configure.msg ./install/
exit 0