]> git.ipfire.org Git - thirdparty/strongswan.git/blame - autogen.sh
automake: replace INCLUDES by AM_CPPFLAGS
[thirdparty/strongswan.git] / autogen.sh
CommitLineData
f0cdc48e 1#!/bin/sh
af05cc56
TB
2
3LIBTOOLIZE=`which glibtoolize 2>/dev/null`
4case "$LIBTOOLIZE" in
5 /* ) ;;
6 * ) LIBTOOLIZE=`which libtoolize 2>/dev/null`
7 case "$LIBTOOLIZE" in
8 /* ) ;;
9 * ) LIBTOOLIZE=libtoolize
10 ;;
11 esac
12 ;;
13esac
14
15$LIBTOOLIZE --force &&
dd3b7b71 16aclocal &&
d35e45b9 17autoheader &&
dd3b7b71 18automake -a &&
f0cdc48e
MW
19autoconf
20