2 # Run the autotools bootstrap sequence to create the configure script
4 # Abort execution on error
7 if which libtoolize
> /dev
/null
; then
8 libtoolize
="libtoolize"
9 elif which glibtoolize
>/dev
/null
; then
10 libtoolize
="glibtoolize"
12 echo "$0: Error: libtool is required" >&2
16 if [ "$1" = "nosubmodule" ]; then
18 elif [ -n "$1" ]; then
19 echo "$0: Illegal argument $1"
20 echo "USAGE: $0 [nosubmodule]"
24 # bootstrap the autotools
27 aclocal
--warnings=all
28 # Apparently, not all versions of libtoolize support option --warnings=all .
29 ${libtoolize} --automake --copy
30 autoconf
--warnings=all
31 autoheader
--warnings=all
32 automake
--warnings=all
--gnu --add-missing --copy
35 if [ -n "$SKIP_SUBMODULE" ]; then
36 echo "Skipping submodule setup"
38 echo "Setting up submodules"
43 if [ -x src
/jtag
/drivers
/libjaylink
/autogen.sh
]; then
45 cd src
/jtag
/drivers
/libjaylink
50 echo "Bootstrap complete. Quick build instructions:"
51 echo "./configure ...."