summaryrefslogtreecommitdiffstats
path: root/autogen.sh
blob: 5dfa50c78853864661d76aa63572fa84b5ab3347 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
set -e
set -x

autopoint  --force || exit 1
intltoolize --copy --force || exit 1
libtoolize --automake --copy --force || exit 1
gtkdocize  --copy || exit 1 #--flavour=no-tmpl
aclocal -I m4 --force || exit 1
autoheader --force || exit 1
automake --add-missing --copy --force || exit 1
autoconf --force || exit 1
export CFLAGS="-Wall -g -O0 -Wl,--no-undefined"
export CXXFLAGS="$CFLAGS"
./configure --enable-maintainer-mode $* || exit 1