aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 4b4074f3cc4567e3a3f8935fb8108883f7efe35f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env bash

# autogen.sh 
#
# Andreas Buesching  <crunchy@tzi.de>
# $id$

# minimum needed software versions:
#
# * libtoolize (GNU libtool) 1.4.3
# * aclocal (GNU automake) 1.6.3
# * autoconf (GNU Autoconf) 2.57
# * automake (GNU automake) 1.6.3

export WANT_AUTOMAKE="1.7"

libtoolize -c -f && aclocal && autoconf && automake -a -c -f && ./configure $@

# end of autogen.sh