Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/autogen.sh
blob: dacf40e69cc820d69d782fe068614e3107e55d4f (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

aclocal -I m4/ $ACLOCAL_FLAGS --install || exit 1
libtoolize --copy --force || exit 1
autoheader || exit 1
autoconf || exit 1
automake -a -c || exit 1

[ "$NOCONFIGURE" ] || ./configure CFLAGS="$CFLAGS -Wall" --enable-maintainer-mode "$@"