autogen.sh revision 784ee68ae5a812d9cf92553f697b2d67aa2d4faa
1#!/bin/bash
2
3set -e
4
5#
6# usage:
7#
8# banner <target name>
9#
10banner() {
11	echo
12	TG=`echo $1 | sed -e "s,/.*/,,g"`
13	LINE=`echo $TG |sed -e "s/./-/g"`
14	echo $LINE
15	echo $TG
16	echo $LINE
17	echo
18}
19
20banner "autoreconf"
21
22mkdir -p config/autoconf config/m4
23autoreconf --force --install --symlink -Wall || exit $?
24
25banner "Finished"
26