blob: 29db9c9806d6bc8a0347104315fd03250757f106 [file] [log] [blame]
Marc Kleine-Budde584929c2010-02-03 20:24:13 +01001#!/bin/bash
2
3#
4# usage:
5#
6# banner <target name>
7#
8banner() {
9 echo
10 TG=`echo $1 | sed -e "s,/.*/,,g"`
11 LINE=`echo $TG |sed -e "s/./-/g"`
12 echo $LINE
13 echo $TG
14 echo $LINE
15 echo
16}
17
18banner "autoreconf"
19
20autoreconf --force --install --symlink -Wall || exit $?
21
22banner "Finished"