]> git.evergreen-ils.org Git - working/Evergreen.git/blob - autogen.sh
LP#797409: Offline Transaction - Option to Skip Old Records
[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 "---------------------------------------------"