-
Notifications
You must be signed in to change notification settings - Fork 6
/
autogen.sh
executable file
·46 lines (37 loc) · 1.23 KB
/
autogen.sh
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
#! /bin/sh
##
## Copyright (C) by Argonne National Laboratory
## See COPYRIGHT in top-level directory
##
########################################################################
## Utility functions
########################################################################
echo_n() {
# "echo -n" isn't portable, must portably implement with printf
printf "%s" "$*"
}
error() {
echo "===> ERROR: $@"
exit
}
########################################################################
## Autotools
########################################################################
# generate configure files
echo
echo "=== generating configure files in main directory ==="
autoreconf -vif
echo "=== done === "
echo
########################################################################
## Building maint/Version
########################################################################
# build a substitute maint/Version script now that we store the single copy of
# this information in an m4 file for autoconf's benefit
echo_n "Generating a helper maint/Version... "
if autom4te -l M4sugar maint/Version.base.m4 > maint/Version ; then
echo "done"
else
echo "error"
error "unable to correctly generate maint/Version shell helper"
fi