source: bootstrap@ 9736

Last change on this file since 9736 was 9736, checked in by bless, 13 years ago
  • some checks for installed tools
  • Property svn:executable set to *
File size: 593 bytes
Line 
1#! /bin/bash
2
3fail=0
4if [ ! -x `which aclocal` ]; then
5 echo "aclocal is missing, please install automake (e.g., sudo apt-get install automake)"
6 fail=1
7fi
8
9if [ ! -x `which libtoolize` ]; then
10 echo "libtoolize is missing, please install libtool (e.g., sudo apt-get install libtool)"
11 fail=1
12fi
13
14if [ $fail -eq 1 ]; then
15 echo "Stopped."
16 exit 1;
17fi
18
19echo "Running autotools..."
20
21aclocal \
22&& libtoolize --force \
23&& autoheader \
24&& automake -a --foreign --add-missing \
25&& autoreconf
26
27echo "Done."
28echo "Now type:"
29echo "> ./configure"
30echo "> make"
31echo "> make install"
32
Note: See TracBrowser for help on using the repository browser.