mirror of
https://github.com/ctm/syn68k.git
synced 2025-02-26 19:30:54 +00:00
19 lines
430 B
Bash
Executable File
19 lines
430 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# $Id: autogen.sh 65 2004-12-24 19:51:17Z ctm $
|
|
|
|
#set -o errexit -o nounset -o noclobber
|
|
|
|
test -z "$LIBTOOL" && for LIBTOOL in glibtool libtool; do
|
|
($LIBTOOL --version) < /dev/null > /dev/null 2>&1 && break
|
|
done
|
|
test -z "$LIBTOOLIZE" && for LIBTOOLIZE in glibtoolize libtoolize; do
|
|
($LIBTOOLIZE --version) < /dev/null > /dev/null 2>&1 && break
|
|
done
|
|
|
|
$LIBTOOLIZE
|
|
aclocal
|
|
autoheader
|
|
automake --add-missing
|
|
autoconf
|