aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 582ecb1c84d5185f737b6bc53575d04ae869a1a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

PATH=/sw/bin:$PATH

case `uname -s` in
    MINGW*)
# autoreconf doesn't always work on MinGW
        libtoolize --install --force \
	        && aclocal \
	        && automake --add-missing --force-missing \
	        && autoconf
        ;;
    *)
        autoreconf --install --force --verbose
    ;;
esac