summaryrefslogtreecommitdiffstats
path: root/autogen.sh
blob: c3491666ef01c5c44c50f40ca8c72eb313eb71b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#! /bin/sh
mkdir -p m4
echo "Creating m4/aclocal.m4 ..."
test -r m4/aclocal.m4 || touch m4/aclocal.m4

echo "Running autopoint"
autopoint --force || exit 1

echo "Running intltoolize..."
intltoolize --force --copy --automake || exit 1

echo "Running aclocal..."
aclocal || exit 1

echo "Running libtoolize..."
libtoolize || exit 1

echo "Running autoheader..."
autoheader || return 1

echo "Running autoconf..."
autoconf --force || exit 1

echo "Running automake..."
automake --add-missing --force --copy || exit 1
#! /bin/sh
mkdir -p m4
echo "Creating m4/aclocal.m4 ..."
test -r m4/aclocal.m4 || touch m4/aclocal.m4

echo "Running autopoint"
autopoint --force || exit 1

echo "Running intltoolize..."
intltoolize --force --copy --automake || exit 1

echo "Running aclocal..."
aclocal || exit 1

echo "Running libtoolize..."
libtoolize || exit 1

echo "Running autoheader..."
autoheader || return 1

echo "Running autoconf..."
autoconf --force || exit 1

echo "Running automake..."
automake --add-missing --force --copy || exit 1