~denials/evergreen/translation-export

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh
# autogen.sh - generates configure using the autotools

: ${LIBTOOLIZE=libtoolize}
: ${ACLOCAL=aclocal}
: ${AUTOHEADER=autoheader}
: ${AUTOMAKE=automake}
: ${AUTOCONF=autoconf}


${LIBTOOLIZE} --force --copy
${ACLOCAL}
${AUTOMAKE} --add-missing --copy


${AUTOCONF}

echo 
echo "---------------------------------------------"
echo "autogen finished running, now run ./configure"
echo "---------------------------------------------"