blob: 4de9c0d20b0b641de9446223c3f23632a5f5a063 (
plain)
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
|
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
test -f mu/mu.cc || {
echo "*** Run this script from the top-level mu source directory"
exit 1
}
command -V autoreconf > /dev/null
if [ $? != 0 ]; then
echo "*** No autoreconf found, please install it ***"
exit 1
fi
rm -f config.cache
rm -rf autom4te.cache
autoreconf --force --install --verbose || exit $?
if test -z "$*"; then
echo "# Configuring without parameters"
else
echo "# Configure with parameters $*"
fi
./configure --config-cache $@
|