blob: f3f7d833b01e42c721c7c9655bca6df6d8a9e5ac (
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
|
#! /bin/bash
#source ../resources/tools/chk_bootstrap_prg.sh
echo Removing old files...
rm -f configure Makefile Makefile.in src/Makefile src/Makefile.in config.h config.status aclocal.m4 config.cache config.log
mkdir config
echo "aclocal -I config"
aclocal -I config
if test $? -ne 0; then
exit 1
fi
echo "autoconf"
autoconf
if test $? -ne 0; then
exit 1
fi
echo "autoheader"
autoheader
if test $? -ne 0; then
exit 1
fi
echo "libtoolize --force --automake"
libtoolize --force --automake
if test $? -ne 0; then
exit 1
fi
echo "automake --foreign --add-missing"
automake --foreign --add-missing
if test $? -ne 0; then
exit 1
fi
echo "BOOTSTRAP complete"
|