Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/autogen.sh
blob: e85bfeca9a68a13b7b56f4f0ce4df3ad30c41ece (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