]> git.evergreen-ils.org Git - working/Evergreen.git/blob - autogen.sh
Merge remote-tracking branch 'eg-working/collab/berick/lp_888239_prevent_post-capture...
[working/Evergreen.git] / autogen.sh
1 #!/bin/sh
2 # autogen.sh - generates configure using the autotools
3
4 : ${LIBTOOLIZE=libtoolize}
5 : ${ACLOCAL=aclocal}
6 : ${AUTOHEADER=autoheader}
7 : ${AUTOMAKE=automake}
8 : ${AUTOCONF=autoconf}
9
10
11 ${LIBTOOLIZE} --force --copy
12 ${ACLOCAL}
13 ${AUTOMAKE} --add-missing --copy
14
15
16 ${AUTOCONF}
17
18 echo 
19 echo "---------------------------------------------"
20 echo "autogen finished running, now run ./configure"
21 echo "---------------------------------------------"